* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
   height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: grid;
  grid-template-rows: auto 12vh 1fr auto;
}

/*FONTS*/
/*Big Text*/
.bebas-neue-regular {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
}

/*Regular Text*/
.space-grotesk-a-unique-class-name {
    font-family: "Space Grotesk", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/*CSS*/
h1 {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
}

h3 {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
}

.top-bar-notification {
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: rgb(51, 51, 51);
    color: white;
    text-align: center;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px;
}

.navbar {
    background-color: black;
    overflow: visible;
    display: flex;
    flex-direction: row;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    font-family: "Space Grotesk", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    align-items: center;
    z-index: 1000;
    max-width: 100vw;
}

.navbar > .nav-item {
    position: relative;
    padding: 14px 20px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px;
    flex-direction: row;
}

.navbar > .nav-item:hover {
    background-color: #222222;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: black;
    display: none;
    min-width: 200px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    border-radius: 8px;
}

.dropdown .dropdown-item {
    padding: 10px;
    display: block;
    color: white;
    text-decoration: none;
    background: black;
    cursor: pointer;
    border-radius: 8px;
}

.dropdown .dropdown-item:hover {
    background: white;
    border-radius: 8px;
}

.nav-item a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-item:hover > .dropdown {
    display: block;
    border-radius: 8px;
}

.navbar-image {
    height: 40px;
}

.dropdown .sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    min-width: 200px;
    background: black;
    border: 1px solid #ddd;
    z-index: 1000;
    border-radius: 8px;
}

.dropdown-item:hover > .sub-dropdown {
    display: block;
    border-radius: 8px;
}

.sub-dropdown .sub-sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    min-width: 200px;
    background: black;
    border: 1px solid #ddd;
    z-index: 1000;
    border-radius: 8px;
}

.sub-dropdown .dropdown-item:hover > .sub-sub-dropdown {
    display: block;
    border-radius: 8px;
}

.dropdown-item,
.dropdown-item:hover {
    position: relative;
    padding: 10px 15px;
    white-space: nowrap;
}

.dropdown, .sub-dropdown, .sub-sub-dropdown {
    z-index: 9999;
}

.dropdown-item {
    position: relative;
    padding: 10px 15px;
    color: white;
}

.dropdown-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

.dropdown-link:hover {
    color: black;
} 

.dropdown-item {
    position: relative;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.3s ease;
    background: black;
    border-radius: 8px;
}

.dropdown-item:hover {
    background-color: white;
    color: black;
    border-radius: 8px;
}


.dropdown-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 15px;
}

.dropdown-link:hover {
    color: black;
}

.sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    background: black;
    border: 1px solid #ddd;
    z-index: 1000;
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover > .sub-dropdown {
    display: block;
}

.sub-dropdown .dropdown-item {
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sub-dropdown .dropdown-item:hover {
    background-color: white;
    color: black;
}

.dropdown-item:hover > .dropdown-link {
    color: black;
}

/* Cart Icon Styling */
.cart-icon {
    margin-left: 15px;
}

.cart-icon a {
    font-size: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon i {
    color: white;
    transition: transform 0.3s ease;
}

.cart-icon:hover i {
    transform: scale(1.2);
}

/* Mobile Header Styles */
.mobile-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 10px 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
}

.mobile-logo {
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    flex: 1;
}

.mobile-navbar-image {
    height: 30px;
    max-width: 100%;
}

.menu-icon, .mobile-cart-icon {
    font-size: 24px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    overflow: hidden;
}

.mobile-cart-icon a {
    color: white;
    text-decoration: none;
}

.mobile-cart-icon i {
    color: white;
    transition: color 0.3s ease;
}

.mobile-cart-icon .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #14274c;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 2000;
    display: none;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-content {
    padding: 15px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Search */
.mobile-search-container {
    margin-bottom: 20px;
}

.mobile-search-container form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    padding: 5px 10px;
}

.mobile-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px;
    font-size: 16px;
    font-family: "Space Grotesk", serif;
}

.mobile-search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 16px;
}

/* Mobile Navigation Menu */
.mobile-menu-nav {
    margin-top: 20px;
}

.mobile-menu-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-category {
    margin-bottom: 10px;
}

.mobile-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-category-header a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
}

.mobile-dropdown-toggle {
    color: white;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.mobile-submenu.active {
    max-height: 1000px;
}

.mobile-submenu-item {
    margin: 5px 0;
    padding-left: 15px;
}

.mobile-submenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.mobile-submenu-header a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.mobile-submenu-dropdown {
    list-style: none;
    padding-left: 15px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.mobile-submenu-dropdown.active {
    max-height: 500px;
}

.mobile-submenu-dropdown li {
    margin: 8px 0;
}

.mobile-submenu-dropdown a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
}

.mobile-submenu-dropdown a:hover {
    color: #14274c;
}

/*Carousel*/
.carousel {
    position: relative;
    width: 99.8vw;
    overflow: hidden;
    z-index: 1;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    max-width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    position: relative;
    text-align: center;
}

.carousel-slide img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.carousel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 8px;
    text-align: center;
    z-index: 5;
}

.carousel-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-family: "Space Grotesk", serif;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
    pointer-events: none;
}

.carousel-controls button {
    background: white;
    color: black;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
    font-size: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-controls button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    position: relative;
    bottom: 40px;
    width: 100%;
    border-radius: 8px;
}

.indicator {
    width: 160px;
    height: 8px;
    margin: 0 10px;
    background: #ddd;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.1s ease-in-out;
}

.indicator:hover {
    transform: scaleY(1.5);
    transform: translateY(-4);
}

.indicator.active {
    background: #ddd;
}

.indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #315395;
    transition: width 5s linear;
    border-radius: 8px;
}

.search-container {
    display: flex;
    align-items: center;
    margin-left: auto;
    background: white;
    padding: 5px;
    border-radius: 20px;
    border: 1px solid #ddd;
}

.search-input {
    border: none;
    outline: none;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 20px;
    width: 200px;
    
    font-family: "Space Grotesk", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.search-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin-left: 5px;
    padding-right: 5px;
}

/*Footer Section*/
footer {
    background-color: black;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.footer-section {
    margin: 10px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.footer-section h3:hover {
    transform: scale(1.1);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-top: 5px;
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.footer-section ul li a:hover {
    color: white;
    background-color: #14274c;
    border-radius: 5px;
    padding: 5px 10px;
}

.footer-section p a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-section p a:hover {
    color: white;
    background-color: #14274c;
    border-radius: 8px;
    transform: scale(1.05);
}

.footer-section p i {
    font-size: 18px;
    color: white;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    font-size: 24px;
    color: white;
    padding: 5px 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: rotate(360deg) scale(1.2);
    color: white;
    background-color: #14274c;
    border-radius: 100px;
    padding: 5px 10px;
}

.payment-methods img {
    width: 50px;
    margin: 5px;
    transition: transform 0.3s ease;
}

.payment-methods img:hover {
    transform: scale(1.1);
}

/*Filters/Search/Collections Page*/
#content_seperator {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

#filters {
    width: 25%;
    background: white;
    color: black;
    padding: 1rem;
    /*border-radius: 8px;*/
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 70vh;
    overflow: auto;
}

#filters::-webkit-scrollbar {
    width: 10px;
}

#filters::-webkit-scrollbar-track {
    background: #AAA;
    border-radius: 5px;
}

#filters::-webkit-scrollbar-thumb {
    background: #14274c;
    border-radius: 10px;
    /*border: 2px solid #222;*/
}

#filters h3 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#filters h4 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    font-weight: bold;
}

#filters label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.3rem 0;
}

#filters input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
}

/* Price Range */
input[type="range"] {
    width: 100%;
    margin-bottom: 0.5rem;
}

.price-range-filter {
    margin-bottom: 1rem;
}

.price-range-filter h4 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    font-weight: bold;
    color: #000;
}

.price-range-filter form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-range-filter label {
    font-family: "Space Grotesk", serif;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #000;
}

.price-range-filter input[type="number"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-family: "Space Grotesk", serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.price-range-filter input[type="number"]:focus {
    border-color: #14274c;
    outline: none;
}

.price-range-filter button {
    background-color: #14274c;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-family: "Space Grotesk", serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.price-range-filter button:hover {
    background-color: #315395;
}


#search_grid {
    margin-right: 1rem;
    padding: 20px;
    /*border: 2px solid #000;*/
    border-radius: 8px;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
/*
    max-height: 70vh;
    overflow: auto;
*/
    transition: border 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 16px;
/*    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);*/
    max-height: none;
    overflow: visible;
    justify-content: center;
}

/*
#search_grid:hover {
    transform: scale(1.01);
}
*/

#search_grid::-webkit-scrollbar {
    width: 10px;
}

#search_grid::-webkit-scrollbar-track {
    background: #AAA;
    border-radius: 5px;
}

#search_grid::-webkit-scrollbar-thumb {
    background: #14274c;
    border-radius: 10px;
    /*border: 2px solid #222;*/
}


.searchbar-div {
    display: flex;
    margin: 10px auto;
    max-width: 90vw;
    justify-content: center;
}

.long-search {
    max-width: 60vw;
    border-radius: 30px;
    margin-right: 5px;
}

.long-search-button {
    background: #14274c;
    width: 40px;
    height: 40px;
    color: white;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.long-search-button:hover {
    background: #315395;
    transform: scale(1.1);
}

.product {
    background: white;
    max-width: 308px;
    color: black;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    width: calc(33.333% - 1rem);
}

.product:hover {
    background: #EEE
}

.add-to-cart-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #14274c;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.add-to-cart-btn:hover {
    background: #315395;
    transform: scale(1.1);
}

.add-to-cart-btn i {
    font-size: 20px;
    color: white;
}

.add-to-cart-btn:disabled {
    background-color: #666;
    cursor: not-allowed;
}

@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.product:hover::after, .product:hover::before {
    transform: translate(-50%, -50%);
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), transparent 50%, #14274c);
    top: 50%;
    left: 50%;
    
    z-index: -1;
    padding: 3px;
    border-radius: 8px;
    animation: 3s spin linear infinite;
}

.product::before {
    filter: blur(1rem);
    opacity: 0.5;
}

@keyframes spin {
    from{
        --angle: 0deg;
    }
    to{
        --angle: 360deg;
    }
}

.product h3 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.product img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.product p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    position: absolute;
    bottom: 5px;
    margin-top: 20px;
}

.product p.price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #14274c;
}

/* Styling the slider track */
.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #14274c;
    outline: none;
    border-radius: 5px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.custom-slider:hover {
    opacity: 1;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: white;
    border: 2px solid #14274c;
    border-radius: 50%;
    cursor: pointer;
}

.custom-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: white;
    border: 2px solid #14274c;
    border-radius: 50%;
    cursor: pointer;
}


/* ------------------- Faqs Page ------------------------*/
/* General FAQ Section Styling */
#faq-body {
    max-width: 900px;
    margin: auto;
    padding: 2rem;
}

/* FAQ Title */
#faq-title {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* FAQ Description */
#faq-description {
    text-align: center;
    font-size: 1.2rem;
    color: #000000;
    /* Black */
    /* margin-bottom: 2rem; */
}

/* FAQ Section Titles */
.faq-titles {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000;
    /* Red */
    /* border-bottom: 3px solid #b24642; */
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* FAQ Items */
.faq-item {
    background-color: #222;
    border-left: 5px solid #14274c;
    padding: 10px;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
}

/* FAQ Item Titles */
.faq-item-title {
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
}

/* Hover effect for question */
.faq-item:hover {
    background-color: #14274c;
}

/* FAQ Answers */
.faq-item-description {
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Links inside FAQ */
.faq-item-description a {
    color: #b24642;
    /* Red */
    font-weight: bold;
    text-decoration: none;
}

.faq-item-description a:hover {
    text-decoration: underline;
}

/* about-us Page */
#about-us-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.about-us-title {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    padding-bottom: 50px;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
}

.about-us-description {
    font-family: "Space Grotesk", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
}

.about-us-img-container {
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    margin-top: 1rem;
}

.about-us-img {
    width: 100%;
}

.about-us-schedule {
    margin: 1rem 0 0 0;
    width: 70%;
    border: 1px solid #000;
    padding: 15px;
}

.schedule-title {
    font-size: 18px;
    font-weight: bold;
}

.about-us-address {
    margin: 10px 0;
    font-family: sans-serif;
}

.about-us-hours,
.holiday-hours {
    margin-bottom: 10px;
}

.about-us-directions {
    display: inline-block;
    padding: 10px;
    background: black;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

/* ------------------- contact-us Page form ------------------- */ 

.contact-us-title, #important-note {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
}

.contact-us-description, .vancouver-contact, #response-time {
    font-family: "Space Grotesk", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* contact-us Page */
#contact-us-body {
    font-family: "Space Grotesk", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    padding: 2rem;
    max-width: 600px;
    margin: auto;
}

.contact-us-content {
    font-family: space-grotesk;
    padding: 3%;
    border: 1px solid black;
}

/* Title Centering */
.contact-us-form-title {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

/* Form Styling */
.contact-us-form {
    display: flex;
    flex-direction: column;
    background: #333;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.contact-us-form::after, .contact-us-form::before {
    transform: translate(-50%, -50%);
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), transparent 50%, #14274c);
    top: 50%;
    left: 50%;
    z-index: -1;
    padding: 5px;
    border-radius: 8px;
    animation: 3s spin linear infinite;
}

.contact-us-form::before {
    filter: blur(1.5rem);
    opacity: 0.5;
}

@keyframes spin {
    from {
        --angle: 0deg;
    }
    to {
        --angle: 360deg;
    }
}

.contact-us-input {
    padding: 10px;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
}

/* Name & Email Row */
.contact-us-row>div {
    flex: 1;
    
    min-width: 0;
}

/* Make Name & Email Equal Width */
#contact-us-name,
#contact-us-email {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

/* Phone input takes full width */
#contact-us-phone {
    width: 100%;
}

/* Textarea Styling */
#contact-us-message {
    width: 100%;
    height: 150px;
    resize: vertical;
    overflow: auto;
    box-sizing: border-box;
}

/* Input Fields */
.contact-us-input {
    height: 2.5rem;
    padding: 0.5em;
    border: 1px solid #ccc;
    /* border-radius: 5px; */
    width: 100%;
}

/* Submit Button */
.contact-us-submit-btn {
    background: white;
    color: black;
    font-weight: bold;
    padding: 10px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.contact-us-submit-btn:hover {
    background: #ddd;
}


/* ---------------- refund us page ------------------- */ 

/* General Styling - Scoped Inside the Container */
.refund-policy-body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    /* border: 1px solid #ddd; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Title Styling */
.refund-policy-body .refund-policy-title {
    font-size: 28px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Section Titles */
.refund-policy-body .refund-policy-miniTitle {
    font-size: 20px;
    font-weight: bold;
    margin-top: 25px;
    padding-bottom: 5px;
    border-bottom: 2px solid #000;
}

/* Paragraph Styling */
.refund-policy-body .refund-policy-description,
.refund-policy-body .refund-policy-intro {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* List Styling */
.refund-policy-body .refund-policy-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.refund-policy-body .refund-policy-list li {
    font-size: 16px;
    margin-bottom: 8px;
}

/* Links */
.refund-policy-body .refund-policy-description a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.refund-policy-body .refund-policy-description a:hover {
    text-decoration: underline;
}

/* Return Address */
.refund-policy-body .refund-policy-address {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .refund-policy-body {
        max-width: 95%;
        padding: 15px;
    }
    
    .refund-policy-body .refund-policy-title {
        font-size: 24px;
    }
    
    .refund-policy-body .refund-policy-miniTitle {
        font-size: 18px;
    }
    
    .refund-policy-body .refund-policy-description {
        font-size: 15px;
    }
}

/* ---------------- refund us page ------------------- */ 

/* General Styling - Contained Inside the Container */
.skate-sharpening-body {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Page Title */
.skate-sharpening-body h1.skate-sharpening-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #14274c;
}

/* Introductory Text */
.skate-sharpening-intro {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #333;
}

/* Section Subtitles */
.skate-sharpening-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  margin: 30px 0 10px;
  color: #14274c;
}

/* Main Descriptions */
.skate-sharpening-description {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

/* Blockquote Styling */
.skate-sharpening-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin: 30px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 4px solid #14274c;
  border-radius: 8px;
  color: #333;
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .skate-sharpening-body {
        max-width: 95%;
        padding: 15px;
    }

    .skate-sharpening-title {
        font-size: 24px;
    }

    .skate-sharpening-subtitle {
        font-size: 18px;
    }

    .skate-sharpening-description {
        font-size: 15px;
    }
}

/* ---------------- nhl-jersey-customization ------------------- */

/* General Styling - Contained Inside the Container */
/* Services Page New Styles */

.nhl-customization-body {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Page Title */
.nhl-customization-body h1.nhl-customization-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  margin-bottom: 30px;
  color: #14274c;
}

/* Service Card Styling */
.nhl-customization-body a {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.nhl-customization-body a:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

/* Service Title (inside each card) */
.nhl-customization-body h2.nhl-customization-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
  color: #14274c;
}

/* Service Description */
.nhl-customization-body p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

/* Error Page */
#errordiv {
    text-align: center;
    padding: 20vh 20px;
    background: black;
    color: white;
}

#errordiv h2 {
    font-family: "Space Grotesk", serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#big404 {
    font-family: "Bebas Neue", serif;
    font-size: 6rem;
    font-weight: 400;
    color: #315395;
/*    text-shadow: 2px 2px 10px rgba(255, 50, 51, 0.8);*/
    text-shadow: 2px 2px 10px #315395;
    margin-bottom: 20px;
}

#errordiv a {
    color: #315395;;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.2s ease;
    transform: scale(1);
    display: inline-block;
}

#errordiv a:hover {
    color: #315395;
    transform: scale(1.05);
}

/* ---------------- free shipping --------------------- */

.free-shipping-body {
    max-width: 800px;
    display: flex;
    gap: 3em;
    flex-direction: column;
    margin: 0 auto 2rem auto;
}

.free-shipping-title {
    margin: 0 auto;
}

/* ---------------- newsletter response --------------------- */

.modal.fade {
    background-color: rgba(0, 0, 0, 0.4);
}

.newsletter-response-dialog {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.newsletter-response-content {
    background-color: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-response-header h5 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
}

.newsletter-response-body {
    margin-top: 16px;
    font-size: 1rem;
    text-align: center;
    color: #555;
}

.newsletter-response-footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.newsletter-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.newsletter-btn:hover {
    background-color: #0056b3;
}

/* ---------------- login & register page --------------------- */

.login-body,
.register-body {
    margin: 4rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    padding: 20px;
    gap: 1rem;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 25px;
}

.login-form,
.register-form {
    width: 100%;
    text-align: center;
}

.login-title,
.register-title {
    font-family: "Bebas Neue", serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

.login-label,
.register-label {
    font-family: "Space Grotesk", serif;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
    display: block;
}

.login-input,
.register-input {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-size: 18px;
    font-family: "Space Grotesk", serif;
    transition: border-color 0.3s ease;
}

.login-input:focus,
.register-input:focus {
    border-color: #14274c;
    outline: none;
}

.login-submit-btn,
.register-submit-btn {
    background-color: #14274c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    padding: 10px;
    margin: 20px 0;
    transition: background-color 0.3s ease;
}

.login-submit-btn:hover,
.register-submit-btn:hover {
    background-color: #315395;
}

.auth-switch {
    font-family: "Space Grotesk", serif;
    font-size: 16px;
    color: #000;
    text-align: center;
}

.auth-switch a {
    color: #14274c;
    font-weight: bold;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

body {
    font-family: "Space Grotesk", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: white;
    color: black;
}

/*Mobile/Desktop Filters Styling*/
.collection-link {
    border: none;
    background:inherit;
}

.frontBK, .frontAG, .front {
    display: block;
    margin: 0 auto;
    background: #14274c;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 16px;
    font-weight: bold;
    font-size: 1rem;
    padding-bottom: 10px;
    text-decoration: none;
    margin-bottom: 5px;
    margin-top: 5px;
}

.frontBK:hover, .frontAG:hover, .front:hover {
    background: #315395;
}


.mobile-filter-container {
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem;
}

.clear-filters-button {
    display: block;
    margin: 0 auto;
    background: #14274c;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 20px;
}

.clear-filters-button:hover {
    background-color: #315395;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* allows the buttons to wrap to the next line if needed */
    gap: 1rem;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.filter-tab {
    flex: 0 0 auto;
    background: #14274c;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    white-space: nowrap;
}

.filter-panel {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 1rem;
}

.filter-panel h4 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.filter-panel label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.filter-panel.open {
    display: block;
}

/* Popular Categories */
.popular-categories-title {
  font-family: "Bebas Neue", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.row-of-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.category {
  background: white;
  color: black;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.category:hover {
  background: #eee;
  transform: scale(1.1);  /* Keep a noticeable hover scale effect */
}

.category img {
  width: 120px;           /* Larger images */
  height: 120px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.category span {
  font-family: "Bebas Neue", serif;
  font-weight: 400;
  font-size: 1.4rem;      /* Slightly larger text */
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 768px) {
  .row-of-categories {
    gap: 1.5rem;          /* Slightly smaller gap on mobile */
    margin: 2rem auto;    /* Slightly smaller margin on mobile */
  }

  .category {
    padding: 1rem;
  }

  .category img {
    width: 80px;
    height: 80px;
  }

  .category span {
    font-size: 1.1rem;
  }
}

/* Cart */
.cart-title {
    text-align: center;
    margin: 10px;
}

.cart-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 60vh;
}

.cart-items-section {
    flex: 2;
}

.cart-summary-section {
    flex: 1;
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

#cart-items-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease-in-out;
}

.cart-item-card:hover {
    transform: scale(1.02);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-family: "Bebas Neue", serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: normal;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: bold;
    color: #14274c;
    margin-bottom: 10px;
}

.cart-actions {
    display: flex;
    align-items: center;
}

.remove-button {
    background: #14274c;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.remove-button:hover {
    background: #315395;
}

.add-button {
    background: #080;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-button:hover {
    background: #0A0;
}

.cart-summary {
    text-align: center;
}

.subtotal {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.checkout-button {
    background: #14274c;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.checkout-button:hover {
    background: #315395;
}

/*     background: #14274c;*/

/* Popup for Homepage */
.popup {
    position: fixed;
    bottom: 20px;
    right: -500px; /* Start off-screen to the right */
    bottom: 20px;
    right: -500px; /* Start off-screen to the right */
    background: #000;
    color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
    text-align: center;
    width: 90%; 
    max-width: 400px;
    border-style: solid;
    border-color: white;
    border-width: 2px;
    transition: right 0.5s ease-in-out; /* Smooth transition for sliding effect */
}

.popup.show {
    right: 20px; /* Final position when visible */
    transition: right 0.5s ease-in-out; /* Smooth transition for sliding effect */
}

.popup.show {
    right: 20px; /* Final position when visible */
}

.pop-up-close-button {
    margin-top: 10px;
    padding: 5px 10px;
    border: none;
    background: #ff3233;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.pop-up-close-button:hover {
    background: #ff6161;
}

/* Overlay styling */
.pop-up-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none; /* Hidden by default */
}

.pop-up-overlay.show {
    display: block; /* Show when active */
}

/* Mobile View (Screen width less than 768px) */
@media (max-width: 768px) {
    .popup {
        width: 90%; 
        max-width: none;
        padding: 15px; 
        font-size: 1.2em; 
        bottom: 10px;
    }
    
    .popup.show {
        right: 5%; /* Center more on mobile */
    }

    .pop-up-close-button {
        padding: 8px 16px; 
        font-size: 1em; 
    }
}

.subscribe-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    gap: 3rem;
    font-size: 1.8rem;
}

.subscribe-text {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
}

.subscribe-form {
    display: flex;
    flex-direction: row;
}

.subscribe-input {
    font-family: "Space Grotesk", serif;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0;
    outline: none;
    width: 220px;
}

.subscribe-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    margin-left: -1px;
    transition: background 0.3s ease;
}

.subscribe-button:hover {
    background: #14274c;
    color: #fff;
}

@media (max-width: 768px) {
    .subscribe-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .subscribe-text {
        margin-bottom: 0.5rem;
        white-space: normal;
    }

    .subscribe-form {
        width: 100%;
    }

    .subscribe-input {
        flex: 1;
        margin-bottom: 0.5rem;
    }

    .subscribe-button {
        margin-left: 0;
        width: 100%;
    }
}

/* TODO: Product Page */

/* Fix for desktop navbar items stacking vertically */
.navbar.desktop-only-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.navbar > .nav-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
}

.navbar, .mobile-navbar {
    margin: 0;
    padding: 10px 20px;
}

/* Display Controls */
.desktop-only {
    display: block;
    margin: 10px;
}

.desktop-only-header {
    display: flex;
}

.mobile-only {
    display: none;
}

/* MOBILE NAVBAR STYLES */
.mobile-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 10px 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

.menu-icon {
    font-size: 24px;
    color: white;
    cursor: pointer;
    width: 40px;
    display: flex;
    justify-content: flex-start;
}

.mobile-logo {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    flex: 1;
}

.mobile-cart-icon {
    font-size: 24px;
    color: white;
    cursor: pointer;
    width: 40px;
    display: flex;
    justify-content: flex-end;
}

/* MOBILE MENU OVERLAY STYLES */
.mobile-menu-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 2000;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding-top: 60px;
    padding-bottom: 100px;
    box-sizing: border-box;
    max-height: 100vh;
    margin-top: 0;
}

.mobile-menu-nav.active {
    transform: translateX(0);
}

/* Header and Close Button */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 2001;
    box-sizing: border-box;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Search */
.mobile-menu-search {
    margin: 15px 0;
    padding: 10px 15px;
    padding-top: 40px;
}

.mobile-search-form {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-search-input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
    font-family: "Space Grotesk", serif;
}

.mobile-search-button {
    background: none;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    font-size: 18px;
}

/* MOBILE MENU CATEGORIES & DROPDOWNS */
.mobile-menu-category {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    transition: margin 0.3s ease-in-out;
    padding-left: 30px;
    padding-right: 30px;
}

.mobile-category-header {
    padding: 12px 0;
}

/* Submenu Items */
.mobile-submenu-item {
    padding-left: 15px;
    margin: 10px 0;
}

/* Menu Item Styles */
.mobile-menu-categories .mobile-menu-category .mobile-submenu li a,
.mobile-menu-categories .mobile-menu-category:nth-child(n+3) .mobile-submenu li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.mobile-menu-categories .mobile-menu-category .mobile-submenu li a:hover,
.mobile-menu-categories .mobile-menu-category:nth-child(n+3) .mobile-submenu li a:hover {
    color: #14274c;
}

/* Submenu and Dropdown Animation */
.mobile-submenu,
.mobile-submenu-dropdown {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
/*    transition: max-height 0.3s ease-in-out, opacity 0.3s ease;*/
}

.mobile-submenu.active,
.mobile-submenu-dropdown.active {
    max-height: none !important;
    height: auto;
    opacity: 1;
    display: block;
}

.mobile-submenu-dropdown.active {
    position: relative;
    z-index: 10;
}

.mobile-submenu {
  display: none;
}
.mobile-submenu.active {
  display: block;
}

/* MEDIA QUERIES */
/* Tablet and Desktop */
@media (min-width: 992px) {
    .desktop-only, 
    .desktop-only-header {
        display: flex !important;
    }

    .mobile-only,
    .mobile-navbar {
        display: none !important;
    }
}

/* Mobile Devices */
@media (max-width: 991px) {
    .desktop-only, 
    .desktop-only-header, 
    .navbar.desktop-only-header {
        display: none !important;
    }

    .mobile-navbar {
        display: flex !important;
    }
    
    .mobile-only {
        display:block;
    }
    
    .product {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .product-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    #search_grid {
        max-height: none;
        overflow: visible;
        justify-content: center;
        justify-items: center;
        margin: 0px;
    }
}

/* Small Mobile Devices */
@media (max-width: 768px) {
    .product-details {
        align-items: center;
    }

    .product-bottom-row {
        width: 100%;
        justify-content: space-between;
    }

    .cart-container {
        flex-direction: column;
    }

    .cart-summary-section {
        width: 100%;
        margin-top: 20px;
    }

    .popup {
        width: 90%; 
        max-width: none;
        padding: 15px; 
        font-size: 1.2em; 
    }

    .pop-up-close-button {
        padding: 8px 16px; 
        font-size: 1em; 
    }

    /* Page-specific responsive styles */
    .nhl-customization-body {
        max-width: 95%;
        padding: 15px;
    }

    .nhl-customization-title {
        font-size: 24px;
    }

    .nhl-customization-subtitle {
        font-size: 18px;
    }

    .nhl-customization-description {
        font-size: 15px;
    }
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}