/* Main Styles */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--rubik-arial);
    color: var(--color-body);
    font-size: var(--font-size-md);
    line-height: var(--line-height-base);
    letter-spacing: var(--letter-spacing-base);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    padding-top: var(--header-height);
    background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--rubik-arial);
    color: var(--color-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: var(--font-size-hero);
}

h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: var(--font-size-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h4 {
    font-family: var(--rubik-arial);
    color: #8e8e8e;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: var(--space-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}



/* --- Main Header --- */
.main-header {
    background: var(--color-white);
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    transition: transform 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}


/* Fixed Main Header */
.custom-navbar-fixed.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.main-header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    animation: slideDown 0.3s ease forwards;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Row 1: Logo and Icons */
.smasher-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    /* Reduced for more compact desktop view */
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-actions a {
    color: var(--color-heading);
    font-size: 18px;
    /* Slightly larger for clarity */
    transition: color 0.3s ease;
}

.header-actions a:hover {
    color: var(--color-accent);
}

.cart-trigger {
    position: relative;
}

.navbar-login-link {
    font-family: var(--rubik-arial);
    font-size: 12px;
    font-weight: 100;
    text-transform: uppercase;
    color: var(--color-heading);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 0px;
    letter-spacing: 1px;
}

.navbar-login-link:hover {
    color: var(--color-accent);
}

/* Search Box Styles */
.search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    background: #ebebeb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-input {
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 14px;
    width: 200px;
    outline: none;
    color: var(--color-heading);
    font-family: var(--rubik-arial);
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--color-heading);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--color-accent);
}


/* Row 2: Navigation Links */
.smasher-header-bottom {
    display: flex;
    justify-content: center;
    /* THE FIX: Keep it centered */
    align-items: center;
    padding: 8px 0;
    width: 100%;
    border-top: 1px solid #f2f2f2;
}

.smasher-nav {
    display: flex;
    justify-content: center;
    width: auto;
    /* THE FIX: Remove width 100% to allow centering */
}

.smasher-nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.smasher-nav-link {
    font-family: var(--rubik-arial);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.smasher-nav-link:hover,
.smasher-nav-link.active {
    color: var(--color-accent);
}

/* Modern underline animation */
.smasher-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.smasher-nav-link:hover::after,
.smasher-nav-link.active::after {
    width: 100%;
}

.smasher-nav-link i {
    font-size: 10px;
    margin-left: 5px;
}

/* Responsive Optimizations */
@media (max-width: 1400px) {
    .nav-list {
        gap: 25px;
    }
}

/* Header Visibility Toggle */
.header-mobile {
    display: none;
}

@media (max-width: 1266px) {
    body {
        padding-top: 70px !important;
        /* Matches mobile header height precisely */
    }

    .header-desktop {
        display: none !important;
    }

    .header-mobile {
        display: block !important;
        background: #fff;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Hide non-essential items on mobile */
    .language-dropdown,
    .social-icons,
    .separator-vertical {
        display: none !important;
    }





    /* Fixed navigation adjustment for mobile */
    .custom-navbar-fixed.main-header {
        top: 0px !important;
    }

    .mobile-header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        /* Strict 3-column layout */
        align-items: center;
        height: 70px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    #mobile-menu-btn.mobile-hamburger {
        grid-column: 1;
        justify-self: start;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--color-heading);
        cursor: pointer;
        padding: 0;
        display: flex !important;
        align-items: center;
    }

    .mobile-logo {
        grid-column: 2;
        justify-self: center;
        display: flex;
        align-items: center;
    }

    .mobile-logo .logo-img {
        height: min(35px, 8vw);
        /* Fluid height */
        width: auto;
        object-fit: contain;
    }

    .mobile-actions {
        grid-column: 3;
        justify-self: end;
        display: flex;
        align-items: center;
        gap: clamp(10px, 4vw, 20px);
        /* Responsive gap */
    }

    .mobile-action-btn {
        position: relative;
        color: var(--color-heading);
        font-size: min(20px, 5.5vw);
        /* Responsive icon size */
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    /* Mobile Search Bar (Hidden by default) */
    .mobile-search-bar {
        position: absolute;
        top: 100%;
        /* Slide down from header */
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 15px 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-search-bar.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-search-inner {
        display: flex;
        align-items: center;
        gap: 15px;
        max-width: 100%;
    }

    .mobile-search-input {
        flex: 1;
        border: 1px solid #eee;
        padding: 12px 18px;
        border-radius: 4px;
        font-family: var(--rubik-arial);
        font-size: 15px;
        outline: none;
        background: #f9f9f9;
        transition: border-color 0.3s ease;
    }

    .mobile-search-input:focus {
        border-color: #000080;
        background: #fff;
    }

    .mobile-search-close {
        background: none;
        border: none;
        font-size: 20px;
        color: #999;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .mobile-search-close:hover {
        color: #e31e24;
    }
}

/* Adjustments for even smaller screens */
@media (max-width: 375px) {
    .mobile-header-inner {
        padding: 0 10px;
    }

    .mobile-actions {
        gap: 8px;
    }
}

.wishlist-trigger {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-heading);
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wishlist-trigger:hover {
    color: var(--color-accent);
}

.wishlist-count,
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #000080;
    /* Red from screenshot */
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 1px solid #fff;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--color-heading);
    margin-left: 10px;
}

/* --- Utility Classes --- */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    box-sizing: border-box;
}

.section {
    padding: 50px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 40px;
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    cursor: pointer;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background-color: var(--color-heading);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 48px;
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    text-decoration: none;
    line-height: 1;
    transition: var(--transition-base);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
}

/* --- Hero Slider - Modern Full Banner --- */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    background-color: #0a0a0a;
}

.slider-wrapper {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 100px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Modern Gradient Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 128, 0.7) 0%,
            rgba(26, 26, 26, 0.5) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

/* Content Container */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: left;
    padding: 40px 0;
}

.slide-text-wrapper {
    height: 320px;
    /* Rigid height to prevent any vertical shift */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.slide-title-large {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInDown 0.8s ease-out 0.2s both;
}

.slide-subtitle-text {
    font-family: var(--font-primary);
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    /* Padding-top/bottom only, width is fixed */
    width: 250px;
    /* Fixed width to prevent horizontal expansion/contraction */
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: fadeInOnly 0.8s ease-out 0.6s both;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.slider-arrow {
    display: none;
}

.prev-slide {
    left: 50px;
}

.next-slide {
    right: 50px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

/* Modern Pagination Dots */
.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.dot.active {
    background-color: #fff;
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

/* Modern Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInOnly {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .slide-content {
        padding: 30px;
    }

    .slide-title-large {
        font-size: clamp(40px, 7vw, 72px);
        margin-bottom: 25px;
    }

    .slide-subtitle-text {
        font-size: clamp(15px, 1.8vw, 20px);
        margin-bottom: 35px;
    }

    .slide-btn {
        padding: 16px 40px;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 16px 0px;
        /* Reduced padding for mobile */
    }

    .slide-content {
        padding: 30px 0;
        max-width: 100%;
    }

    .slide-title-large {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .slide-subtitle-text {
        font-size: 15px;
        margin-bottom: 25px;
        max-width: 100%;
        line-height: 1.6;
    }

    .slide-text-wrapper {
        height: auto;
        /* Allow natural height on mobile */
        min-height: auto;
    }

    .slide-btn {
        width: 100%;
        /* Full width button on small mobile for easier tapping, or auto? */
        max-width: 280px;
        /* Cap it but keep it left aligned */
        padding: 15px 0;
        font-size: 13px;
    }

    .slider-dots {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 20px 15px;
    }

    .slide-title-large {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .slide-subtitle-text {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .slide-btn {
        padding: 12px 30px;
        min-width: 140px;
        font-size: 12px;
    }

    .slider-dots {
        bottom: 25px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 35px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Sections --- */
.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: #8e8e8e;
    /* Specific subtitle gray */
    display: block;
}

/* --- Categories Grid --- */
.categories-grid {
    width: 100%;
}

.category-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .category-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-row {
        grid-template-columns: 1fr;
    }
}

.category-item {
    /* height: 400px; */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.category-item:hover {
    transform: scale(1.02);
}

.cat-content {
    text-align: center;
    background: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    opacity: 0;
    transition: var(--transition-base);
    min-width: 240px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.category-item:hover .cat-content {
    opacity: 1;
}

.cat-content h3 {
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: var(--color-heading);
}

.cat-content a {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-body);
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.cat-content a:hover {
    color: var(--color-accent);
}

/* --- Product Cards --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    text-align: center;
    transition: var(--transition-base);
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    border: 1px solid var(--color-border-light);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    margin-bottom: var(--space-sm);
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 15px;
    transition: bottom 0.4s ease;
}

.product-card:hover .product-actions {
    bottom: 0;
}

.add-to-cart {
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-heading);
    cursor: pointer;
}

.add-to-cart:hover {
    color: var(--color-accent);
}

.product-category {
    font-family: var(--font-primary);
    font-size: 11px;
    text-transform: uppercase;
    color: #adadad;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: var(--color-heading);
}

.product-price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-style: normal;
    color: var(--color-accent);
    font-size: 16px;
}

/* --- Blog Section --- */
/* --- Blog Section (Premium Redesign) --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


/* Premium Blog Card used in Slider */
.premium-blog-card {
    flex: 0 0 calc(25% - 22.5px);
    /* Match product card sizing */
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.blog-media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f5f5f5;
}

.blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-blog-card:hover .blog-media img {
    transform: scale(1.05);
}

.blog-details {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #333;
}

.blog-excerpt {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Distinct "Read Now" Button Style */
.blog-read-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 0;
    background-color: #ffffff;
    border: 1px solid #000080;
    color: #000080;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-btn:hover {
    background-color: #000080;
    color: #ffffff;
}

/* Responsive Blog Slider */
@media (max-width: 1200px) {
    /* No generic blog-grid media queries needed as we reuse slider logic */
}

@media (max-width: 767px) {
    .premium-blog-card {
        flex: 0 0 calc(75% - 15px);
        /* Show part of next card on mobile */
    }

    .blog-media {
        aspect-ratio: 16/9;
    }
}

/* === Professional Footer Redesign === */
.main-footer {
    background-color: #fff;
    color: #1a1a1a;
    padding: 80px 0 50px;
    border-top: 1px solid #f0f0f0;
    font-family: var(--font-primary);
}

.smasher-footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

/* Left Section: Branding & Links */
.smasher-footer-left {
    flex: 2;
    display: flex;
    gap: 100px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
    display: block;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.footer-social-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.smasher-footer-social {
    display: flex;
    gap: 18px;
}

.smasher-footer-social a {
    color: #1a1a1a;
    font-size: 16px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.smasher-footer-social a:hover {
    color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-links-group {
    display: flex;
    gap: 80px;
    flex: 1;
}

.footer-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}

.footer-toggle {
    display: none;
    /* Hidden on desktop */
    font-size: 14px;
    color: #1a1a1a;
}

.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

/* Right Section: Newsletter */
.smasher-footer-right {
    flex: 1;
    max-width: 380px;
    padding-left: 80px;
    border-left: 1px solid #f0f0f0;
}

.newsletter-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input-group input {
    height: 50px;
    border: 1px solid #e0e0e0;
    padding: 0 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input-group input:focus {
    border-color: #1a1a1a;
}

.newsletter-btn {
    height: 50px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--color-accent);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .smasher-footer-grid {
        gap: 40px;
    }

    .smasher-footer-left {
        gap: 60px;
    }

    .smasher-footer-right {
        padding-left: 40px;
    }
}

@media (max-width: 1024px) {
    .smasher-footer-grid {
        flex-direction: column;
        gap: 0;
        /* Removed gap to eliminate double spacing */
    }

    .smasher-footer-left {
        flex-direction: column;
        gap: 0;
    }

    .footer-links-group {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .smasher-footer-right {
        padding-left: 0;
        border-left: none;
        max-width: 100%;
        border-top: none;
        /* Removed redundant border */
        padding-top: 0;
        /* Removed redundant padding */
    }

    /* Accordion Styles for Mobile */
    .footer-accordion-header {
        cursor: pointer;
        padding: 10px 0;
        /* Reduced further */
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .footer-toggle {
        display: block;
        transition: transform 0.3s ease;
    }

    .footer-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        padding-top: 0;
        margin-top: 0;
    }

    .footer-col.footer-active .footer-accordion-content,
    .footer-branding.footer-active .footer-accordion-content {
        max-height: 500px;
        opacity: 1;
        padding-top: 10px;
        /* Reduced further */
        padding-bottom: 10px;
        /* Reduced further */
        border-bottom: 1px solid #f0f0f0;
    }

    .footer-col.footer-active .footer-accordion-header,
    .footer-branding.footer-active .footer-accordion-header {
        border-bottom: none;
    }

    .footer-widget-title,
    .footer-social-title {
        margin: 0 !important;
        flex: 1;
    }

    .footer-branding {
        text-align: center;
        margin-bottom: 10px;
        /* Reduced further */
    }

    .footer-logo {
        margin: 0 auto 10px !important;
        height: 40px !important;
    }

    .footer-branding .footer-social-title {
        margin-bottom: 5px !important;
        /* Reduced from 15px */
        justify-content: center;
        display: flex;
    }

    .footer-branding .smasher-footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .smasher-footer-left {
        flex-direction: column;
        gap: 0;
    }

    .footer-links-group {
        gap: 0;
        flex-wrap: wrap;
    }
}

/* Divider & Bottom */
.footer-divider {
    height: 1px;
    background-color: #E6E6E6;
    margin-bottom: 30px;
    width: 100%;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 12px;
    color: #000;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
}

.copyright-text a {
    font-weight: 600;
    color: #000;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 26px;
}

.footer-legal-links {
    text-align: center;
    font-size: 12px;
    color: #666;
}

.footer-legal-links a {
    color: #444;
    margin: 0 8px;
}

/* --- Responsive --- */
/* --- Responsive --- */
@media (max-width: 992px) {
    /* Nav adjustments removed from here to enforce strict 768px separation */
    /* Kept grids for tablet responsiveness */



    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .columns-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-inner {
        padding: 0 20px;
        height: 70px;
    }

    .main-header {
        position: relative;
        /* Unstick on mobile if needed, or keep sticky */
    }

    /* Hero Responsive */
    .hero-slider {
        height: 500px;
    }

    .slider-content-wrapper {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }

    .slide-content-left {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .slide-title-large {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .slide-subtitle-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .container {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .category-row {
        flex-direction: column;
        gap: 15px;
    }

    .category-item {
        height: 300px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .free-shipping-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .free-shipping-title {
        font-size: 24px;
    }

    .parallax-section {
        padding: 60px 0;
    }

    .parallax-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .parallax-description {
        font-size: 16px;
        line-height: 1.5;
    }

    /* Footer Mobile adjustments */
    .main-footer {
        padding: 50px 0 30px;
    }

    .footer-col {
        text-align: left;
        /* Changed from center to support accordion headers */
    }

    .footer-widget-title {
        justify-content: flex-start;
        /* Changed from center */
        display: flex;
    }

    .footer-social-icons {
        justify-content: flex-start;
        /* Changed from center */
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: 15px;
    }

    .payment-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
}



.btn-outline-white {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-heading);
    border-color: var(--color-white);
}

/* --- Best Sellers --- */
/* Reuse product-grid, add price styles */
.product-price del {
    color: #999;
    font-size: 14px;
    margin-right: 5px;
    text-decoration: line-through;
}

.product-price ins {
    text-decoration: none;
    color: var(--color-accent);
}

/* --- Free Shipping --- */
.free-shipping {
    background-color: #1a1a1a;
    /* Dark background */
    color: var(--color-white);
    padding: 60px 0;
}

.free-shipping-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.free-shipping-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

/* --- Mixed Columns --- */
.columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.column-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: #8e8e8e;
    /* Subtitle color */
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

/* --- Modern Triptych Redesign --- */
.mixed-columns {

    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 80px 0;
}

.columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.column-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000080;
    /* Navy Blue Accent */
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Small Product Cards - Premium Polish */
.product-list-small {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-small {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: #fff;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-small:hover {
    border-color: #e1e1e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.product-small-image {
    width: 70px;
    height: 75px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f9f9f9;
}

.product-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-small:hover .product-small-image img {
    transform: scale(1.1);
}

.product-small-info {
    flex: 1;
}

.product-small-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.2;
}

.product-small-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-small:hover .product-small-title a {
    color: #000080;
}

.product-small-category {
    font-family: var(--font-primary);
    font-size: 10px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Trending Immersive Spotlight */
.trending-spotlight {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

.trending-spotlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0, 0.2, 1);
}

.trending-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 80, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 1;
    transition: background 0.4s ease;
}

.trending-tag {
    background: #000080;
    color: #fff;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
}

.trending-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.trending-btn {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    border-bottom: 2px solid #fff;
    width: fit-content;
    transition: all 0.3s ease;
}

.trending-spotlight:hover img {
    transform: scale(1.05);
}

.trending-btn:hover {
    padding-left: 10px;
    border-bottom-color: transparent;
}

/* --- Mobile Sidebar --- */
/* --- Mobile Sidebar --- */
#mobile-menu-btn {
    display: none;
    /* Hidden by default (desktop) - controlled by media query below */
    background-color: transparent;
    color: #000;
    border: none;
    padding: 0;
    /* Remove padding to match other icons */
    font-size: 20px;
    /* Match other icons size */
    cursor: pointer;
    box-shadow: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-left: 15px;
    /* Spacing from cart */
}

#mobile-menu-btn i {
    font-size: 20px;
}

#mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

#mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    /* More responsive width for mobile */
    max-width: 320px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 2001;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
    /* Shadow on the right since sidebar is on left */
    padding: 80px 0 20px;
    /* More breathable top padding */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Premium ease-out */
    transform: translateX(-100%);
    /* Start off-screen to the left */
    overflow-y: auto;
}

#mobile-sidebar.active {
    transform: translateX(0);
    /* Slide in */
}

#mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #555;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s;
}

#mobile-menu-close:hover {
    color: #000080;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    width: 100%;
}

.mobile-nav-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    /* Better vertical breathing */
    color: #333;
    font-family: var(--font-heading);
    font-size: 15px;
    /* Slightly larger for readability */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list li a i {
    color: #ccc;
    font-size: 12px;
}

.mobile-nav-list li a:hover {
    background-color: #fcfcfc;
    color: var(--color-accent);
    padding-left: 35px;
}

/* === MOBILE RESPONSIVE STYLES === */
/* Consolidated mobile styles into upper media query for consistency */
@media (max-width: 768px) {
    /* Retain only non-header responsive needs here if any, 
       otherwise keep clean to avoid specificity wars */
}

/* Ensure Mobile Elements are hidden and Desktop elements are visible on larger screens */
@media (min-width: 1267px) {
    #mobile-menu-btn {
        display: none !important;
    }

    #mobile-sidebar {
        display: none !important;
        pointer-events: none;
        opacity: 0;
    }

    .smasher-nav {
        display: flex !important;
    }
}

/* === INTERACTIVE PRODUCT SHOWCASE SECTION === */
.product-showcase {
    background-color: #f9f9f9;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-heading);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.showcase-description {
    font-family: var(--font-primary);
    font-size: 1rem;

    max-width: 730px;
    margin: 0 auto;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0px 40px 20px 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #999;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000080;
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: #333;
}

.tab-btn.active {
    color: #000;
    font-weight: 600;
}

.tab-btn.active::after {
    width: 100%;
}

/* Two Column Layout */
.showcase-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.showcase-nav-buttons {
    display: none;
    /* Hidden on desktop */
    gap: 15px;
}

.showcase-nav-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.showcase-nav-btn:hover {
    background: #000080;
    color: #fff;
    border-color: #000080;
}

.showcase-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* Identical to .lg:grid-cols-2 */
    column-gap: 1.25rem;
    /* Identical to .gap-x-5 */
    margin-top: 0px;
    align-items: stretch;
    max-width: 1400px;
    /* Using full container width as it's a showcase */
    margin-left: auto;
    margin-right: auto;
}

/* Left Column: Dynamic Image */
.showcase-image-container {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    /* Required for lg:absolute */
    height: 100%;
    min-height: 480px;
}

.showcase-image {
    position: absolute;
    /* Identical to lg:absolute */
    inset: 0;
    /* Identical to lg:inset-0 */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.showcase-image.fade-out {
    opacity: 0;
}

/* Right Column: Scrollable Product List */
.showcase-products-container {
    background-color: #fff;
    border-radius: 0;
    /* Match screenshot's sharp edges */
    box-shadow: none;
    height: 480px;
    overflow: hidden;
    position: relative;
    /* For absolute arrow positioning */
}

/* Overlay Arrows */
.showcase-arrow-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    /* Hidden by default on desktop */
    pointer-events: none;
}

.showcase-arrow-overlay.prev-showcase {
    left: 10px;
}

.showcase-arrow-overlay.next-showcase {
    right: 10px;
}

.showcase-arrow-overlay:hover {
    background: #000080;
    color: #fff;
}

.showcase-products-scroll {
    height: 100%;
    overflow-y: auto;
    padding: 0 15px 0 0;
    /* Space for scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #000080 #f5f5f5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    /* Identical to .gap-x-5 */
    row-gap: 1rem;
    /* Identical to .gap-y-4 */
}

/* Custom Scrollbar for Webkit browsers */
.showcase-products-scroll::-webkit-scrollbar {
    width: 4px;
}

.showcase-products-scroll::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.showcase-products-scroll::-webkit-scrollbar-thumb {
    background-color: #e31e24;
    /* Red scrollbar from screenshot */
    border-radius: 0;
}

.showcase-products-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #000080;
}

/* Product Cards */
.showcase-product-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin-bottom: 30px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-product-card:hover {
    transform: translateY(-5px);
}

.showcase-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f6f6f6;
    overflow: hidden;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0px;
    transition: transform 0.5s ease;
}

.showcase-product-card:hover .showcase-product-image img {
    transform: scale(1.05);
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #1a1a1a;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 5;
    padding: 0;
    box-shadow: none;
}

.wishlist-icon:hover {
    color: #e31e24;
    transform: scale(1.2);
    background: transparent;
}

.showcase-product-info {
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.showcase-swatch {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-bottom: 8px;
    display: inline-block;
}

.showcase-product-title {
    font-family: var(--rubik-arial);
    font-size: 15px;
    font-weight: 700;
    /* Bold as per request */
    line-height: 1.3;
    margin-bottom: 4px;
    color: #000;
}

.showcase-product-price {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 400;
}



/* === RESPONSIVE: MOBILE === */
@media (max-width: 768px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }



    .showcase-image-container {
        min-height: 350px;
    }

    .showcase-products-container {
        height: 450px;
    }

    .showcase-title {
        font-size: 24px;
    }

    .showcase-description {
        font-size: 14px;
    }
}



/* === TRUST / USP SECTION === */
.trust-section {
    background-color: #f7f7f7;
    padding: 70px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trust-icon i {
    font-size: 26px;
    color: #000080;
}

.trust-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 10px;
    line-height: 1.4;
}

.trust-description {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .trust-section {
        padding: 50px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-item {
        padding: 15px;
    }
}

/* === PREMIUM HERO BANNER SECTION === */
.premium-hero-banner {
    position: relative;
    min-height: 750px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('https://smashersports.co.uk/wp-content/uploads/2023/03/MG_9253-copy-1.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 60px 5%;
    overflow: hidden;
}

.premium-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.banner-overlay {
    display: none;
}

.premium-hero-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 12vw, 120px);
    /* Massive as per screenshot */
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 40px 0;
    line-height: 0.95;
    overflow-wrap: break-word;
}

.banner-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(16px, 3vw, 28px);
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    line-height: 1.1;
    max-width: none;
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background-color: #000080;
    /* Red as per screenshot */
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    /* Slight rounding if any, or 0 for sharp */
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(209, 46, 32, 0.4);
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.banner-cta:hover {
    background-color: #b0261a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 46, 32, 0.5);
}

/* === SECONDARY HERO BANNER SECTION (Duplicate) === */
.secondary-hero-banner {
    position: relative;
    min-height: 750px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('https://smashersports.co.uk/wp-content/uploads/2023/03/MG_9253-copy-1.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    overflow: hidden;
}

.secondary-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.secondary-hero-banner .container {
    position: relative;
    z-index: 2;
}

.banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.banner-cta:hover::before {
    left: 100%;
}

.banner-cta:hover {
    background-color: #000080;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px #000080;
}

.banner-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px #000080;
}

/* === PARALLAX SECTION === */


.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 45px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-decoration: none;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}


/* Responsive Design */
@media (max-width: 768px) {
    .premium-hero-banner {
        min-height: 650px;
        padding: 60px 20px 80px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        background-position: center top;
    }

    .banner-content {
        text-align: center;
        width: 100%;
    }

    .banner-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
        color: #ffffff;
    }

    .banner-title {
        font-size: 42px;
        line-height: 1;
        margin-bottom: 30px;
    }

    .banner-cta {
        padding: 15px 40px;
        font-size: 15px;
        border-radius: 0;
        background-color: #000080;
        box-shadow: none;
    }
}

@media (max-width: 480px) {
    .premium-hero-banner {
        min-height: 600px;
        padding: 50px 15px 60px;
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-cta {
        padding: 12px 32px;
        font-size: 14px;
        letter-spacing: 1px;
    }
}

/* --- Trust Section --- */
.trust-section {
    padding: 30px 0;
    /* Reduced from 60px */
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* Reduced gap */
}

.trust-icon {
    font-size: 22px;
    /* Smaller icon to match image */
    color: #333;
    margin-bottom: 2px;
}

.trust-heading {
    font-family: var(--font-heading);
    font-size: 14px;
    /* Smaller text */
    font-weight: 500;
    color: var(--color-heading);
    margin: 0;
    text-transform: none;
    /* Removed uppercase */
    letter-spacing: 0;
}

.trust-description {
    font-family: var(--font-primary);
    font-size: 11px;
    /* Smaller description */
    color: #8e8e8e;
    margin: 0;
}

/* Mobile Swipe Gesture Adjustments */
@media (max-width: 991px) {
    .trust-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 20px 25px;
        margin: 0 -20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .trust-grid::-webkit-scrollbar {
        display: none;
    }

    .trust-item {
        flex: 0 0 60%;
        /* Smaller cards for mobile */
        scroll-snap-align: center;
        background: #fff;
        padding: 20px 15px;
        /* Reduced vertical padding */
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
}

/* Modern Product Grid Section */
.modern-product-section {
    padding: 60px 0;
    background-color: #fff;
}

.modern-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.modern-product-card {
    position: relative;
    background: #fff;
    cursor: pointer;
}

/* Image Container & Animation */
.modern-img-outer {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.2;
    overflow: hidden;
    margin-bottom: 20px;
}

.modern-img-outer img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.secondary-img {
    transform: translateY(100%);
}

.modern-img-outer:hover .primary-img {
    transform: translateY(-100%);
}

.modern-img-outer:hover .secondary-img {
    transform: translateY(0);
}

/* Badge & Wishlist */
.modern-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #000;
    color: #fff;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    text-transform: uppercase;
}

.modern-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    font-size: 16px;
    color: #000;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.modern-img-outer:hover .modern-wishlist {
    opacity: 1;
    transform: translateX(0);
}

/* Info Section */
.modern-product-info {
    text-align: left;
    padding: 0 5px 15px;
}

.modern-cat {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.modern-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
}

.modern-price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    margin-top: auto;
}

.modern-price {
    font-weight: 600;
    font-size: 15px;
    color: #000;
}

.modern-old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 13px;
}

/* Responsive Grid */
@media (max-width: 1199px) {

    /* Horizontal Swiper for Tablet & Mobile */
    .modern-product-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 25px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .modern-product-grid::-webkit-scrollbar {
        display: none;
    }

    .modern-product-card {
        flex: 0 0 300px;
        scroll-snap-align: center;
    }
}

@media (max-width: 767px) {

    /* Horizontal Swiper for Mobile */
    .modern-product-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 0 20px 25px;
        margin: 0 -20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .modern-product-grid::-webkit-scrollbar {
        display: none;
    }

    .modern-product-card {
        flex: 0 0 245px;
        scroll-snap-align: center;
    }

    .modern-product-section {
        padding: 30px 0;
    }

    .modern-img-outer {
        aspect-ratio: 1 / 1.3;
        margin-bottom: 12px;
    }

    .modern-title {
        font-size: 13px;
        margin-bottom: 8px;
        min-height: 38px;
        line-height: 1.3;
    }

    .modern-cat {
        font-size: 9px;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }

    .modern-price {
        font-size: 14px;
    }

    /* Optimized Add to Cart Bar for 2-Column Viewport */
    .modern-cart-bar {
        height: 36px;
        transform: translateY(0);
        background: #1a1a1a;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
    }

    .cart-bar-left {
        font-size: 9px;
        padding: 0 5px;
        letter-spacing: 0.5px;
        white-space: nowrap;
        justify-content: center;
        display: flex;
        font-weight: 700;
        flex: 1;
        text-align: center;
    }

    /* Remove the split box to ensure text has maximum room to align */
    .cart-bar-right {
        display: none !important;
    }
}


/* Add to Cart Bar - Split Design Refined */
.modern-cart-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 20;
    cursor: pointer;
}

.cart-bar-left {
    flex: 1;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cart-bar-right {
    width: 60px;
    background: #1a1a1a;
    /* Initially black */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-cart-bar i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.modern-img-outer:hover .modern-cart-bar {
    transform: translateY(0);
}

/* On hover of the bar itself, ONLY the right section turns navy blue */
.modern-cart-bar:hover .cart-bar-right {
    background: #000080;
}

.modern-cart-bar:hover i {
    transform: scale(1.1);
}


/* --- Best Sellers & Trending Premium Redesign --- */
.best-sellers-premium,
.trending-premium {
    background: #ffffff;
    padding: 40px 0;
}





/* --- Shop By Category Custom Redesign --- */
.category-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 36px;
    margin: 0 0 20px 0;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 450;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.category-nav {
    display: flex;
    gap: 12px;
}

.category-nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 12px;
}

.category-nav-btn.prev-cat {
    background: #edeff2;
    color: #444;
}

.category-nav-btn.next-cat {
    background: #d1d7de;
    color: #444;
}

.category-nav-btn:hover {
    background: #c0c6cc;
}

/* Modern section header (Mirrors category-header) */
.modern-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 0 0 25px 0;
}

.modern-text-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modern-title-text {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 450;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1;
}

.modern-subtitle-text {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.modern-nav-group {
    display: flex;
    gap: 12px;
}

.modern-nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 12px;
}

.modern-nav-btn.prev-modern {
    background: #edeff2;
    color: #444;
}

.modern-nav-btn.next-modern {
    background: #d1d7de;
    color: #444;
}

.modern-nav-btn:hover {
    background: #c0c6cc;
}

.category-slider-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    /* padding-bottom: 25px; */
    cursor: grab;
    user-select: none;
}

.category-slider-grid:active {
    cursor: grabbing;
}

.category-slider-grid::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex: 0 0 calc(20% - 16px);
    /* 5 items per view on desktop */
    min-width: 220px;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-img-holder {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
    border-radius: 2px;
    max-height: 240px;
}

.category-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item:hover img {
    transform: scale(1.08);
}

.category-name {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    text-align: left;
    text-decoration: underline;
    letter-spacing: 0.1px;
    width: 100%;
}


/* Progress Bar (Black over Grey track) */
.category-progress-container {
    width: 100%;
    height: 2px;
    background: #dee2e6;
    position: relative;
    margin-top: 25px;
    border-radius: 1px;
    overflow: hidden;
}

.category-progress-fill {
    position: absolute;
    height: 100%;
    width: 20%;
    /* Relative to 5 items per view */
    background: #000;
    transition: transform 0.15s ease-out;
    transform-origin: left;
}


@media (max-width: 1200px) {
    .category-item {
        flex: 0 0 calc(25% - 19px);
        /* 4 items */
    }
}

@media (max-width: 768px) {
    .category-section {
        padding: 30px 0;
    }

    .category-title {
        font-size: 20px;
    }

    .category-item {
        flex: 0 0 calc(50% - 12.5px);
        /* 2 items */
        min-width: 220px;
    }

    .category-nav-btn {
        width: 38px;
        height: 38px;
    }
}



/* Best Sellers Slider Container */
.best-sellers-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    scroll-behavior: smooth;
    padding-bottom: 20px;
    margin: 15px -15px;
    /* Bleed slightly for edge-to-edge swipe feeling */
    padding: 0 15px;
}

.best-sellers-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.premium-card {
    flex: 0 0 calc(25% - 22.5px);
    /* 4 items per view on desktop */
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}



.premium-card-image {
    position: relative;
    background: #fff;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.premium-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.premium-card:hover .premium-card-image img {
    transform: scale(1.05);
}

.wishlist-btn-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #1a1a1a;
    cursor: pointer;
    z-index: 5;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.wishlist-btn-overlay:hover {
    opacity: 1;
    color: #ff0000;
    transform: scale(1.1);
}

.premium-card-info {
    text-align: left;
}

/* Swatches */
.card-swatches {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.swatch-blue {
    background-color: #000080;
}

.swatch-green {
    background-color: #00ff00;
}

.swatch-maroon {
    background-color: #800000;
}

.swatch.active {
    border-color: #1a1a1a;
}

.card-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.quick-view-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-accent);
    /* Use store blue */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.quick-view-btn:hover {
    transform: scale(1.1);
}

/* Mobile Adjustments for Best Sellers Premium */
@media (max-width: 767px) {
    .best-sellers-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .best-sellers-nav {
        margin-top: 0;
    }

    .best-sellers-grid {
        gap: 10px;
        margin: 0 -10px;
        padding: 0 10px;
    }

    .premium-card {
        flex: 0 0 calc(50% - 7.5px);
        /* 2 items per view on mobile */
    }

    .premium-section-title {
        font-size: 24px;
    }

    .premium-section-desc {
        font-size: 14px;
    }

    .premium-card-image {
        margin-bottom: 15px;
    }

    .card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .card-bottom {
        gap: 10px;
    }

    .card-price {
        font-size: 16px;
    }

    .swatch {
        width: 18px;
        height: 18px;
    }

    .quick-view-btn,
    .wishlist-btn-overlay {
        font-size: 20px;
    }
}

/* Slider Progress Bar Styling */
.slider-progress-container {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    margin-top: 30px;
    position: relative;
    border-radius: 1px;
    overflow: hidden;
}

.slider-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    /* Initial width based on 4 items view */
    background: var(--color-accent);
    /* Store Blue */
    transition: transform 0.1s ease-out;
    transform-origin: left;
}

@media (max-width: 767px) {
    .slider-progress-bar {
        width: 50%;
        /* 2 items per view on mobile */
    }
}

/* --- Explore Our Collections Responsive Redesign --- */
@media (max-width: 1023px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .showcase-nav-buttons {
        display: none !important;
        /* Force hide navigation buttons on mobile */
    }

    .showcase-image-container {
        min-height: 400px;
        order: -1;
    }

    .showcase-products-container {
        height: auto;
    }

    .showcase-products-scroll {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 20px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Hide scrollbar for clean look */
        -webkit-overflow-scrolling: touch;
    }

    .showcase-products-scroll::-webkit-scrollbar {
        display: none;
    }

    .showcase-product-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        margin-bottom: 0;
    }

    .showcase-swatch {
        width: 18px;
        height: 18px;
        margin-bottom: 10px;
    }

    .showcase-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Vertical Tabs for Mobile */
    .showcase-arrow-overlay {
        display: flex !important;
        /* Restore overlay arrows on mobile */
        opacity: 1;
        pointer-events: auto;
    }
}

/* Tab Navigation Swiper for Mobile Only (< 500px) */
@media (max-width: 500px) {
    .tab-navigation {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 30px;
        justify-content: flex-start;
        padding: 5px 20px 0 20px;
        margin: 0 -20px 30px;
        width: calc(100% + 40px);
        border-bottom: 1px solid #f0f0f0;
        scrollbar-width: none;
    }

    .tab-navigation::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        width: auto;
        text-align: left;
        padding: 15px 0;
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        color: #999;
    }

    .tab-btn.active {
        color: #000;
    }

    .tab-btn::after {
        background-color: #000080;
        height: 3px;
        bottom: -1px;
    }
}

@media (max-width: 480px) {
    .showcase-product-card {
        flex: 0 0 240px;
    }
}

/* Hide Mixed Columns (Unique Showcasing) on Mobile as requested */
@media (max-width: 765px) {
    .mixed-columns {
        display: none !important;
    }
}

/* Fix Parallax Section Background - Redesigned (Bottom Right) */
.section-parallax {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    /* Bottom aligned */
    justify-content: flex-end;
    /* Right aligned */
    padding: 80px 10%;
    /* Increased right padding for breathing room */
}

.section-parallax::before {
    position: absolute !important;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: right;
    max-width: none;
}



.parallax-subtitle {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 23px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 6vw, 60px);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background-color: #000080;
    /* Red color */
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
}

.btn-red:hover {
    background-color: #000080;
    /* Darker red on hover */
    color: #fff;
}

/* === MID-SECTION BANNER SECTION === */
.mid-section-banner {
    position: relative;
    min-height: 750px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('https://images.saymedia-content.com/.image/t_share/MjAzNzQyMTkxMTI4OTQ2NTc4/learning-to-play-cricket-for-children-aged-5-and-above.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align to the right */
    padding: 80px 10%;
    /* More right padding for breathing room */
    overflow: hidden;
}

.mid-section-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.mid-banner-content {
    text-align: right;
    /* Right align text */
    max-width: 600px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.mid-banner-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.mid-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 10vw, 86px);
    /* Very large as per screenshot */
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 30px 0;
    line-height: 0.95;
    overflow-wrap: break-word;
}

.mid-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background-color: #ffffff;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.mid-banner-cta:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .mid-section-banner {
        min-height: 500px;
        padding: 60px 5%;
        justify-content: center;
    }

    .mid-banner-content {
        text-align: center;
    }

    .mid-banner-title {
        font-size: 40px;
    }

    .mid-banner-subtitle {
        font-size: 18px;
    }
}

/* === SECOND MID-SECTION BANNER SECTION === */
.second-mid-banner {
    position: relative;
    min-height: 750px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('https://smashersports.co.uk/wp-content/uploads/2023/03/MG_9253-copy-1.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Right side alignment */
    padding: 80px 10%;
    overflow: hidden;
}

.second-mid-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.second-banner-content {
    text-align: right;
    max-width: 600px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.second-banner-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.second-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 10vw, 86px);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 30px 0;
    line-height: 0.95;
    overflow-wrap: break-word;
}

.second-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background-color: #ffffff;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.second-banner-cta:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .second-mid-banner {
        min-height: 500px;
        padding: 60px 5%;
        justify-content: center;
    }

    .second-banner-content {
        text-align: center;
    }

    .second-banner-title {
        font-size: 40px;
    }

    .second-banner-subtitle {
        font-size: 18px;
    }
}

/* Mobile styles for parallax section */
@media (max-width: 768px) {
    .parallax-content {
        max-width: 90%;
    }

    .parallax-title {
        white-space: normal;
    }
}