:root {
    --primary-color: #1c1c1c;
    --secondary-color: #000000;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --transition-speed: 0.4s;
    --mega-menu-width: 50vw;
    --easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    margin: 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Shipping Banner */
.shipping-banner {
    background-color: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 10px;
    min-height: 19px;
}

.shipping-text {
    position: relative;
    padding: 0 5px;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.25;
    color: #f0f0f0;
    font-weight: 500;
    letter-spacing: 1px;
}

.shipping-text::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: pulse 3.5s var(--easing) infinite;
    transform-origin: center;
}

@keyframes pulse {

    0%,
    100% {
        transform: scaleX(0.1);
        opacity: 0.2;
    }

    50% {
        transform: scaleX(1.1);
        opacity: 0.8;
    }
}

/* Brand Banner */
.brand-banner {
    position: relative;
    background-color: white;
    padding: 15px 20px;
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: var(--primary-color);
    transition: all var(--transition-speed) var(--easing);
    display: flex;
    align-items: center;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-menu-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.75;
    stroke-linecap: round;
    transition: all 0.2s var(--easing);
}

.flag-circle {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.flag-circle .flag-icon {
    transform: scale(1.2);
}

.language-dropdown {
    position: relative;
    z-index: 1100;
    display: inline-block;
}

.language-dropbtn {
    background: none;
    border: none;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    transition: all var(--transition-speed) var(--easing);
    border-radius: 4px;
    letter-spacing: 1px;
}

.language-dropbtn:hover {
    background-color: var(--light-gray);
}

.language-dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 110px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 1;
    left: -10;
    border-radius: 4px;
    overflow: hidden;
    opacity: 10;
    transform: translateY(-10px);
    transition: all 0.3s var(--easing);
}

.language-dropdown:hover .language-dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.language-dropdown-content a.selected {
    background-color: rgba(255, 255, 255, 0.15);
    color: black;
    padding-bottom: 4px;
}

.language-dropdown-content a {
    color: var(--text-color);
    padding: 8px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    transition: all 0.2s var(--easing);
    letter-spacing: 1px;
}

.language-dropdown-content a .flag-circle {
    width: 20px;
    height: 20px;
}

.language-dropdown-content a:hover,
.language-dropdown-content a.selected {
    background-color: var(--primary-color);
    color: white;
}

.brand-logo-container {
    position: absolute;
    left: 50%;
    margin-top: 15px;
    padding-bottom: 15px;
    transform: translateX(-50%);
}

.brand-logo img {
    max-width: 200px;
    height: auto;
    display: inline-block;
    transition: opacity var(--transition-speed) ease;
}

.brand-logo img:hover {
    opacity: 0.8;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.user-actions {
    padding-left: 30px;
    align-items: center;
    gap: 4px;
}

.user-action {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s var(--easing);
}

.user-action:hover {
    transform: translateY(-2px) scale(1.11);
}

.user-action:active {
    transform: translateY(0) scale(0.95);
}

.nav-icon {
    width: 21px;
    height: 21px;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all var(--transition-speed) ease;
}

.user-action:hover .nav-icon {
    stroke: var(--secondary-color);
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
    background-color: white;
    padding: 0 15px;
    position: relative;
    z-index: 100;
    margin-top: -10px;
    /* Reduce gap between brand banner and nav */
}

.desktop-nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.desktop-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1px;
}

.desktop-menu>li {
    position: relative;
}

.desktop-menu>li>a {
    display: flex;
    align-items: center;
    padding: 12px 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 550;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-speed) var(--easing);
    position: relative;
    font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.desktop-menu>li>a:hover {
    color: var(--secondary-color);
    letter-spacing: 1.5px;
}

.desktop-menu>li>a .menu-arrow {
    margin-left: 8px;
    font-size: 12px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.desktop-menu>li:hover>a .menu-arrow {
    transform: rotate(180deg);
}

.desktop-menu>li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: var(--mega-menu-width);
    background-color: white;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s var(--easing);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mega-menu-column h3 {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-links li {
    margin-bottom: 10px;
}

.mega-menu-links a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.25s var(--easing);
    padding: 8px 0;
    position: relative;
    letter-spacing: 1px;
}

.mega-menu-links a:hover {
    color: var(--secondary-color);
    transform: translateX(8px);
}

.mega-menu-links a::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--transition-speed) ease;
}

.mega-menu-links a:hover::before {
    opacity: 1;
    left: -15px;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 1000;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
}

.mobile-sidebar.open {
    transform: translateX(0);
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.sidebar-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.menu-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: white;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s var(--easing);
}

.menu-category.selected {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.1);
}

.submenu-item.selected,
.mega-menu-links a.selected {
    background-color: rgba(255, 255, 255, 0.15);
    color: black;
    border-left: none;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 4px;
}

.menu-category:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.menu-category i {
    font-size: 12px;
    opacity: 0.7;
    transition: all var(--transition-speed) ease;
}

.menu-category:hover i {
    opacity: 1;
    transform: translateX(5px);
}

.submenu {
    display: none;
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.4s var(--easing);
}

.submenu.active {
    display: block;
    animation: fadeIn 0.4s var(--easing) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submenu-item {
    display: block;
    padding: 16px 20px 16px 35px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s var(--easing);
    border-left: 3px solid transparent;
    position: relative;
    letter-spacing: 1px;
}

.submenu-item:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    border-left: 3px solid var(--secondary-color);
    padding-left: 38px;
}

.submenu-item::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
    opacity: 0;
}

.submenu-item:hover::before {
    opacity: 1;
    left: 22px;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    margin-right: 10px;
    transition: all var(--transition-speed) ease;
}

.sidebar-close:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.sidebar-back {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    margin-right: 10px;
    display: none;
    transition: all var(--transition-speed) ease;
}

.sidebar-back:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.sidebar-title {
    color: white;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    flex-grow: 1;
    text-align: center;
    letter-spacing: 0.5px;
}

.sidebar-social {
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icon {
    color: white;
    font-size: 22px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.social-icon:hover {
    color: var(--secondary-color);
    transform: translateY(-5px) scale(1.15);
}

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    height: 76vh;
    max-height: 100vh;
    min-height: 400px;
    overflow: hidden;
    margin: 0 auto;
    background-color: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateY(20px) scale(1.1);
    transition: all 1.2s cubic-bezier(0.33, 0.85, 0.4, 0.96);
    will-change: transform, opacity;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 2;
}

.shop-now-btn {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    padding: 15px 20px;
    background: rgba(0, 0, 0, 1);
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    z-index: 10;
    border: 1px solid black;
    overflow: hidden;
    transition: all 0.5s ease;
}

.slide.active .shop-now-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.shop-now-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    transition: transform 0.5s ease;
    z-index: -1;
}

.shop-now-btn:hover {
    background: rgba(0, 0, 0, 0);
    color: white;
}

.shop-now-btn:hover::before {
    transform: translateX(-100%);
}

.shop-now-btn:not(:hover)::before {
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.shop-now-btn span {
    position: relative;
    z-index: 1;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    right: 15px;
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 8px 16px;
    border-radius: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slider-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #fff;
    transition: width 3.5s linear;
}

.slider-dot.active::after {
    width: 100%;
}

.slider-dot.active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.3);
}

/* Footer */
.site-footer {
    background-color: #f8f8f8;
    color: #333;
    padding: 40px;
    font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    width: 65%;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-title {
    font-size: 14px;
    letter-spacing: 3px;
    font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #1c1c1c;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 3px;
}

.footer-list a:hover {
    color: #000;
}

.footer-newsletter {
    width: 30%;
    min-width: 280px;
}

.newsletter-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #1c1c1c;
}

.newsletter-button {
    background-color: #1c1c1c;
    color: white;
    border: none;
    padding: 12px 15px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: #000;
}

.footer-middle {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviews-count {
    font-size: 14px;
    font-weight: 600;
}

.reviews-powered {
    font-size: 12px;
    color: #999;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
}

.footer-about {
    margin-bottom: 20px;
}

.about-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 13px;
    color: #666;
}

.contact-info a {
    color: #1c1c1c;
    text-decoration: none;
    font-weight: 600;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: #999;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Subcategory Grid */
.subcategory-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    position: relative;
    box-sizing: border-box;
}

.subcategory-section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 20px 0;
    color: #111;
    position: relative;
    padding: 0 10px;
}

.subcategory-section-title:after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #111;
    margin: 15px auto 0;
    opacity: 0.2;
}

.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 100%;
}

.subcategory-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.subcategory-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.subcategory-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.subcategory-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}

.subcategory-card:hover .subcategory-image {
    transform: scale(1.04);
}

.subcategory-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    box-sizing: border-box;
}

.subcategory-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 420;
    letter-spacing: 1.5px;
    color: white;
    margin-bottom: 5px;
    text-transform: uppercase;
    margin-left: 10px;
}

.subcategory-button {
    position: relative;
    display: inline-block;
    margin: 0 0 10px 10px;
    padding: 12px 20px;
    background-color: transparent;
    color: #111;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid #ffffff;
}

.subcategory-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 0;
    animation: slideIn 0.6s forwards;
}

.subcategory-button span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

@keyframes slideIn {
    0% {
        left: 100%;
    }

    100% {
        left: 0;
    }
}

@keyframes slideOut {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

.subcategory-button:hover::before {
    animation: slideOut 0.6s forwards;
}

.subcategory-button:hover span {
    color: #ffffff;
}

/* Mobile Slider Layout */
@media (max-width: 768px) {

    .desktop-nav {
        display: none !important;
    }

    .subcategory-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 5px;
        padding: 0 20px 20px;
    }

    .subcategory-grid::-webkit-scrollbar {
        display: none;
    }

    .subcategory-card {
        flex: 0 0 calc(85% - 10px);
        scroll-snap-align: start;
        margin-right: 10px;
    }

    .subcategory-image-container {
        aspect-ratio: 3/5;
    }

    .subcategory-content-overlay {
        padding: 15px;
    }

    .subcategory-title {
        font-size: 1.2rem;
        margin-left: 5px;
    }

    .subcategory-button {
        margin: 0 0 5px 5px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* Navigation Arrows for Mobile */
.subcategory-slider-nav {
    display: none;
}

@media (max-width: 768px) {
    .subcategory-slider-nav {
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        z-index: 1;
        pointer-events: none;
    }

    .subcategory-slider-arrow {
        pointer-events: all;
        background: rgba(255, 255, 255, 0.8);
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        margin: 0px 15px;
    }

    .subcategory-slider-arrow:hover {
        background: white;
        transform: scale(1.1);
    }

    .subcategory-slider-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */

/* Extra Small Devices (320px and below) */
@media (max-width: 320px) {
    .shipping-banner {
        padding: 6px 8px;
        min-height: 16px;
    }

    .shipping-text {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .brand-banner {
        padding: 8px 10px;
        margin-top: 30px;
    }

    .brand-logo img {
        max-width: 70px;
    }

    .mobile-menu-btn svg {
        width: 16px;
        height: 16px;
    }

    .flag-circle {
        width: 18px;
        height: 18px;
    }

    .language-dropbtn {
        padding: 4px 5px;
        font-size: 10px;
    }

    .nav-icon {
        width: 16px;
        height: 16px;
    }

    .banner-slider {
        height: 50vh;
        min-height: 250px;
    }

    .shop-now-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
        bottom: 60px;
    }

    .slider-dots {
        bottom: 20px;
        right: 10px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .subcategory-section-title {
        font-size: 1.2rem;
        margin: 15px 0;
    }

    .subcategory-title {
        font-size: 1rem;
    }

    .subcategory-button {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    .footer-container {
        padding: 0 10px;
    }

    .site-footer {
        padding: 20px 15px;
    }

    .footer-title {
        font-size: 12px;
    }

    .footer-list a {
        font-size: 11px;
    }
}

/* Small Devices (321px to 480px) */
@media (min-width: 321px) and (max-width: 480px) {
    .shipping-banner {
        padding: 7px 9px;
    }

    .shipping-text {
        font-size: 10px;
    }

    .brand-banner {
        padding: 10px 12px;
    }

    .brand-logo img {
        max-width: 90px;
    }

    .mobile-menu-btn svg {
        width: 17px;
        height: 17px;
    }

    .flag-circle {
        width: 20px;
        height: 20px;
    }

    .language-dropbtn {
        font-size: 11px;
    }

    .banner-slider {
        height: 55vh;
        min-height: 280px;
    }

    .shop-now-btn {
        padding: 11px 16px;
        font-size: 0.85rem;
        bottom: 70px;
    }

    .subcategory-section-title {
        font-size: 1.3rem;
    }

    .subcategory-title {
        font-size: 1.1rem;
    }

    .footer-container {
        padding: 0 15px;
    }
}

/* Medium Devices (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .shipping-banner {
        font-size: 12px;
        padding: 9px 12px;
    }

    .brand-banner {
        padding: 12px 15px;
    }

    .brand-logo img {
        max-width: 120px;
    }

    .banner-slider {
        height: 65vh;
        min-height: 350px;
    }

    .shop-now-btn {
        padding: 13px 18px;
        bottom: 90px;
    }

    .subcategory-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .subcategory-section-title {
        font-size: 1.4rem;
    }

    .subcategory-title {
        font-size: 1.2rem;
    }

    .footer-links {
        width: 100%;
    }

    .footer-newsletter {
        width: 100%;
        margin-top: 20px;
    }
}

/* Tablets (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

    .mobile-sidebar,
    .sidebar-overlay,
    .mobile-menu-btn {
        display: none;
    }

    .desktop-nav {
        display: block;
    }

    .brand-banner {
        margin-top: 40px;
        padding: 15px 25px;
    }

    .brand-logo img {
        max-width: 180px;
    }

    .banner-slider {
        height: 70vh;
    }

    .subcategory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .subcategory-section-title {
        font-size: 1.6rem;
        margin: 30px 0;
    }

    .mega-menu {
        width: 70vw;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        width: 60%;
    }

    .footer-newsletter {
        width: 35%;
    }



}

/* Large Devices (1025px to 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .subcategory-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mobile-menu-btn {
        display: none;
    }

    .mega-menu {
        width: 60vw;
    }

    .brand-logo img {
        max-width: 220px;
    }
}

/* Extra Large Devices (1201px and above) */
@media (min-width: 1201px) {
    .subcategory-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .mobile-menu-btn {
        display: none;
    }

    .subcategory-container {
        max-width: 1200px;
        padding: 20px;
    }

    .subcategory-section-title {
        font-size: 2rem;
        margin: 40px 0 30px;
    }

    .subcategory-section-title:after {
        width: 60px;
        margin: 20px auto 0;
    }

    .subcategory-content-overlay {
        padding: 30px;
    }

    .subcategory-title {
        font-size: 1.55rem;
        margin-left: 30px;
    }

    .subcategory-button {
        margin: 0 0 20px 30px;
        padding: 15px 25px;
        font-size: 1rem;
    }

    .desktop-nav-container {
        max-width: 1200px;
    }

    .footer-container {
        max-width: 1200px;
    }
}

/* High Resolution/Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .brand-logo img {
        transform: translateZ(0);
        image-rendering: -webkit-optimize-contrast;
    }

    .subcategory-image {
        image-rendering: auto;
    }
}

/* Landscape Orientation for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .banner-slider {
        height: 100vh;
        min-height: 300px;
    }

    .shop-now-btn {
        bottom: 50px;
        padding: 10px 15px;
    }

    .mobile-sidebar {
        width: 60%;
        left: -60%;
    }
}

@media print {

    .shipping-banner,
    .mobile-menu-btn,
    .user-actions,
    .slider-dots,
    .shop-now-btn,
    .subcategory-button,
    .sidebar-social {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .subcategory-image {
        filter: grayscale(100%);
    }
}