/* ============================================
   BrandedUK Responsive CSS - Mobile First
   ============================================
   
   APPROCCIO MOBILE-FIRST:
   - Base styles = Mobile (< 768px)
   - @media (min-width: 768px) = Tablet
   - @media (min-width: 1024px) = Desktop
   
   ============================================ */

/* ========================================
   BREAKPOINTS REFERENCE
   ========================================
   
   Mobile:  0 - 767px (default/base)
   Tablet:  768px - 1023px
   Desktop: 1024px+
   
   ======================================== */

/* ========================================
   MOBILE BASE - Hide tablet elements
   ======================================== */
.tablet-top-bar {
    display: none;
}

/* ========================================
   TABLET OVERRIDES (768px+)
   ======================================== */
@media (min-width: 768px) {
    
    /* === Tablet Top Bar === */
    .tablet-top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #f3f4f6;
        padding: 4px 24px;
        font-size: 12px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 101;
    }
    
    .tablet-top-bar__left {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
    }
    
    .tablet-top-bar__center {
        display: flex;
        align-items: center;
        gap: 24px;
        justify-content: flex-start;
        padding-left: 12px;
        flex: 2;
    }
    
    /* === Dynamic 3D Hover Social Icons (EXACT ORIGINAL) === */
    .tablet-top-bar .social-icons-container {
        display: flex;
        gap: 4px !important;
    }
    
    .social-icons-mobile {
        margin-left: 0 !important;
    }
    
    .social-icons-mobile .social-icon {
        width: 20px !important;
        height: 20px !important;
        border-radius: 5px !important;
    }
    
    .social-icons-mobile .social-icon i {
        font-size: 16px !important;
    }
    
    .social-icon {
        position: relative;
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        border-radius: 8px;
        box-shadow: 
            4px 4px 8px #b5b5b5,
            -4px -4px 8px #ffffff;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .social-icon i {
        font-size: 14px;
        color: #888;
        transition: color 0.3s ease;
    }
    
    /* Hover effect - EXACT from original */
    .social-icon:hover {
        box-shadow: 
            inset 2px 2px 5px #b5b5b5,
            inset -2px -2px 5px #ffffff,
            0 10px 20px rgba(0,0,0,0.2);
        transform: translateY(-5px) rotateX(10deg);
    }
    
    /* Color change on hover */
    .social-icon.facebook:hover i {
        color: #3b5998;
    }
    .social-icon.instagram:hover i {
        color: #E1306C;
    }
    .social-icon.linkedin:hover i {
        color: #0077B5;
    }
    .social-icon.youtube:hover i {
        color: #FF0000;
    }
    .social-icon.pinterest:hover i {
        color: #E60023;
    }
    
    /* Pseudo-element for the lift-up shadow effect */
    .social-icon::after {
        content: '';
        position: absolute;
        bottom: -8px;
        width: 80%;
        height: 6px;
        background: rgba(0,0,0,0.1);
        filter: blur(3px);
        opacity: 0;
        border-radius: 50%;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .social-icon:hover::after {
        opacity: 1;
        transform: scale(1.2);
    }
    
    .tablet-top-bar__email,
    .tablet-top-bar__phone {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #374151;
        text-decoration: none;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        font-weight: 600;
        letter-spacing: -0.01em;
    }
    
    .tablet-top-bar__email svg,
    .tablet-top-bar__phone svg {
        stroke: #6B21A8 !important;
        width: 14px;
        height: 14px;
    }
    
    .tablet-top-bar__email:hover,
    .tablet-top-bar__phone:hover {
        color: #6B21A8;
    }
    
    .tablet-top-bar__right {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
    }
    
    .vat-toggle-tablet {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* === Layout === */
    :root {
        --header-height: 80px;
    }
    
    body {
        font-size: 15px;
        padding-top: 36px; /* Space for tablet top bar */
    }

    /* Reduce extra gap between header and first content on tablet */
    .mobile-main {
        padding-top: calc(var(--header-height) + 10px);
    }
    
    /* === Header === */
    .mobile-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 24px;
        height: var(--header-height);
        top: 36px; /* Below tablet top bar */
    }
    
    /* Hide social buttons on tablet - they move to top bar area */
    .header-top-row {
        display: none;
    }
    
    .header-logo-row {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        gap: 40px;
    }
    
    .search-wrapper-expand {
        width: 100px;
        flex-shrink: 0;
    }
    
    .search-wrapper-expand:focus-within {
        max-width: 30% !important;
    }
    
    /* === Hero === */
    .hero-expanding-wrapper {
        height: auto;
        min-height: 0;
        max-height: none;
        margin-top: 0;
        padding: 0;
    }
    
    .hero-cont {
        height: 240px;
    }
    
    .hero-el {
        min-height: 100%;
    }
    
    .hero-el__bg {
        height: 100%;
    }
    
    .hero-el__heading {
        font-size: 1.5rem;
    }
    
    .hero-el__text {
        font-size: 1.25rem;
    }
    
    /* Hero Banners - closer to hero 1 */
    .hero-banners-wrapper {
        margin-top: 16px;
    }
    
    /* === Grid Layouts === */
    .products-grid,
    .products-grid-shop {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
        padding: 20px 24px;
    }
    
    .bestseller-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 0 24px;
        overflow-x: visible;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    /* === Cards === */
    .product-card {
        padding: 16px;
    }
    
    .product-card-image {
        height: 180px;
    }
    
    /* === Forms === */
    .search-input-expand {
        font-size: 15px;
        padding: 12px 16px 12px 44px;
    }
    
    /* === Sections === */
    .section-header {
        padding: 12px 24px 12px;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    /* === Footer === */
    .mobile-footer {
        padding: 32px 24px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    /* === Customize Page === */
    .customize-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        /* Account for fixed tablet top bar (36px) + fixed header */
        padding: calc(var(--header-height) + 36px + 24px) 24px 24px;
    }
    
    .product-gallery {
        position: sticky;
        top: calc(var(--header-height) + 20px);
        height: fit-content;
    }
    
    .gallery-main {
        aspect-ratio: 1;
    }
    
    /* === Action Bar === */
    .action-bar-sticky {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 16px 0;
        margin-top: 24px;
    }
    
}

/* ========================================
   TABLET HERO 1 (768px–1023px)
   - show ALL cards, no horizontal scroll
   ======================================== */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-cont {
        overflow-x: hidden;
    }

    .hero-el {
        width: calc(100% / 9);
    }

    .hero-el:nth-child(1) { left: 0; }
    .hero-el:nth-child(2) { left: calc((100% / 9) * 1); }
    .hero-el:nth-child(3) { left: calc((100% / 9) * 2); }
    .hero-el:nth-child(4) { left: calc((100% / 9) * 3); }
    .hero-el:nth-child(5) { left: calc((100% / 9) * 4); }
    .hero-el:nth-child(6) { left: calc((100% / 9) * 5); }
    .hero-el:nth-child(7) { left: calc((100% / 9) * 6); }
    .hero-el:nth-child(8) { left: calc((100% / 9) * 7); }
    .hero-el:nth-child(9) { left: calc((100% / 9) * 8); }

    /* When expanding a panel, force it to slide to the left edge */
    .hero-el.s--active {
        left: 0 !important;
    }

    .hero-el__heading {
        font-size: 10px;
        padding: 4px 6px;
    }

    /* Customize Page: allow the gallery column to scroll normally on tablet */
    .product-gallery {
        position: static;
        top: auto;
    }

    /* Reduce excessive whitespace on tablet */
    .customize-main {
        gap: 20px;
    }

    /* Tablet columns: left stays stacked, right can grow without pushing left */
    .customize-page .customize-left {
        grid-column: 1;
        grid-row: 1;
        align-self: start;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .customize-page .customize-right {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Tighten vertical whitespace inside the right column */
    .customize-page .customize-right .product-info {
        padding: 0;
        border-bottom: 0;
    }

    .customize-page .customize-right .customize-section {
        padding: 0;
        border-bottom: 0;
    }

    .customize-page .customize-right .section-title {
        margin-bottom: 8px;
    }

    /* Big sections read better full-width on tablet */
    .customize-section.customization-options {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .order-summary-section {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    /* Unit Price: shrink tier cards ~20% total (two 10% steps) */
    .customize-page .pricing-section {
        font-size: 0.81em;
    }

    .customize-page .pricing-section .pricing-tiers-grid {
        gap: 4px;
        padding: 4px 2px 6px 2px;
    }

    .customize-page .pricing-section .tier-card {
        min-width: 55px;
        padding: 6px 4px;
    }

    .customize-page .pricing-section .tier-qty {
        font-size: 8px;
    }

    .customize-page .pricing-section .tier-card .tier-price {
        font-size: 12px;
    }

    .customize-page .pricing-section .tier-card .tier-suffix {
        font-size: 6px;
    }

    .customize-page .pricing-section .tier-save {
        font-size: 6px;
    }
}

/* ========================================
   TABLET ONLY (768px - 1023px)
   Hero Banner 1: Get In Touch - maximize text height in its box
   ======================================== */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-banner .neon-container {
        padding: 0;
    }

    .neon-text,
    .flux-text {
        font-size: clamp(110px, 14vw, 150px);
        line-height: 0.85;
        margin: 0;
        padding: 0;
    }
}

/* ========================================
   DESKTOP OVERRIDES (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    
    /* Hide tablet-top-bar on desktop */
    .tablet-top-bar {
        display: none !important;
    }
    
    /* === Layout === */
    :root {
        --header-height: 140px;
        --container-max: 1280px;
        --container-padding: 40px;
    }
    
    body {
        font-size: 16px;
        padding-bottom: 0; /* No bottom nav on desktop */
        background: #ffffff; /* White background */
    }
    
    /* === DESKTOP HEADER SOCIAL BUTTONS === */
    .header-top .social-buttons-header {
        display: flex;
        gap: 10px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .header-top .social-buttons-header li {
        list-style: none;
    }
    .header-top .social-buttons-header a {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    .header-top .social-buttons-header .social-icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .header-top .social-buttons-header .social-icon svg {
        width: 14px;
        height: 14px;
        transition: fill 0.3s ease;
    }
    /* Facebook */
    .header-top .social-buttons-header .social-facebook .social-icon svg { fill: #1877f2; }
    .header-top .social-buttons-header .social-facebook:hover {
        transform: translateY(-2px);
    }
    /* Instagram */
    .header-top .social-buttons-header .social-instagram .social-icon svg { fill: #e4405f; }
    .header-top .social-buttons-header .social-instagram:hover {
        transform: translateY(-2px);
    }
    /* LinkedIn */
    .header-top .social-buttons-header .social-linkedin .social-icon svg { fill: #0a66c2; }
    .header-top .social-buttons-header .social-linkedin:hover {
        transform: translateY(-2px);
    }
    /* YouTube */
    .header-top .social-buttons-header .social-youtube .social-icon svg { fill: #ff0000; }
    .header-top .social-buttons-header .social-youtube:hover {
        transform: translateY(-2px);
    }
    /* Pinterest */
    .header-top .social-buttons-header .social-pinterest .social-icon svg { fill: #bd081c; }
    .header-top .social-buttons-header .social-pinterest:hover {
        transform: translateY(-2px);
    }
    
    /* === Desktop Header Email/Phone === */
    .header-top-email {
        color: #7c3aed;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
    }
    .header-top-email:hover {
        color: #a855f7;
    }
    .header-top-phone {
        color: #7c3aed;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .header-top-phone:hover {
        color: #a855f7;
    }
    .header-top-phone svg {
        stroke: currentColor;
    }
    
    /* === Desktop Header Basket Badge === */
    .header-top-basket-link {
        position: relative;
        display: flex;
        align-items: center;
        color: #7c3aed;
        text-decoration: none;
    }
    .header-top-basket-link svg {
        stroke: currentColor;
    }
    .header-top-basket-badge {
        position: absolute;
        top: -6px;
        right: -8px;
        background: #f97316;
        color: white;
        font-size: 10px;
        font-weight: 600;
        min-width: 16px;
        height: 16px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 4px;
    }
    .header-top-basket-badge:empty,
    .header-top-basket-badge[data-count="0"] {
        display: none;
    }
    
    /* === Searchbar Header Actions === */
    .searchbar-header__account .searchbar-header__action-ring {
        background: #7c3aed;
    }
    .searchbar-header__account .searchbar-header__action-icon {
        stroke: #fff;
        fill: none;
        stroke-width: 2;
    }
    
    /* === Search expand desktop === */
    .searchbar-header__search-expand {
        position: relative;
        width: 44px;
        height: 44px;
        transition: width 0.3s ease-in-out;
        margin-right: 8px;
    }
    .searchbar-header__search-expand:focus-within {
        width: 320px;
    }
    .searchbar-header__search-expand .search-input-expand {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border: none;
        outline: none;
        border-radius: 9999px;
        padding: 12px 44px 12px 20px;
        font-size: 15px;
        background: #f3f4f6;
        color: #1f2937;
        box-sizing: border-box;
    }
    .searchbar-header__search-expand .search-input-expand::placeholder {
        color: transparent;
        transition: color 0.2s ease;
    }
    .searchbar-header__search-expand:focus-within .search-input-expand::placeholder {
        color: #9ca3af;
    }
    .searchbar-header__search-expand .search-icon-expand {
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        pointer-events: auto;
        cursor: pointer;
        color: #6b7280;
        transition: color 0.2s ease;
    }
    .searchbar-header__search-expand:focus-within .search-icon-expand {
        color: #a855f7;
    }
    
    /* === Brand Logo === */
    .searchbar-header__brand-img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }
    .searchbar-header__brand-text {
        color: #a855f7 !important;
    }
    
    /* === MAIN CONTAINER - Boxed Layout === */
    .mobile-main {
        max-width: var(--container-max);
        margin: 0 auto;
        background: #fff;
        box-shadow: 0 0 40px rgba(0,0,0,0.08);
        padding-top: 0; /* Remove mobile header padding on desktop */
    }
    
    /* === HIDE MOBILE ELEMENTS ON DESKTOP === */
    .bottom-nav,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    /* === HEADER DESKTOP - Boxed === */
    .mobile-header {
        flex-direction: column;
        padding: 0;
        height: auto;
        background: #fff;
        max-width: var(--container-max);
        margin: 0 auto;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    
    /* Header Top Row - Desktop style */
    .header-top-row {
        order: 1;
        width: 100%;
        padding: 10px var(--container-padding);
        background: #f9fafb;
        border-bottom: 1px solid #e5e7eb;
        justify-content: space-between;
        gap: 0;
    }
    
    .social-buttons-header {
        gap: 10px;
    }
    
    .social-buttons-header a {
        width: 32px;
        height: 32px;
    }
    
    .social-buttons-header .social-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .vat-toggle-mobile {
        gap: 12px;
    }
    
    /* Header Logo Row - Desktop style */
    .header-logo-row {
        order: 2;
        width: 100%;
        padding: 16px var(--container-padding);
        justify-content: space-between;
        background: #fff;
    }
    
    .mobile-logo-center {
        gap: 12px;
    }
    
    .logo-badge-img {
        width: 48px;
        height: 48px;
    }
    
    .logo-text-styled {
        font-size: 28px;
    }
    
    .search-wrapper-expand {
        width: 360px;
    }
    
    .search-input-expand {
        font-size: 15px;
        padding: 14px 20px 14px 48px;
    }
    
    /* === HERO 1 - Expanding Panels - reduced by 10% === */
    .hero-expanding-wrapper {
        height: 639px; /* 710px - 10% = 639px */
        max-height: 720px;
        margin: 0 20px 8px 20px; /* Minimal gap to hero 2/3 */
        border-radius: 16px;
        overflow: hidden;
    }
    
    .hero-cont {
        height: 100%;
        padding: 0;
        overflow: visible;
    }
    
    /* Scrollable container for 10 cards - show 5, scroll for rest */
    .hero-cont__inner {
        padding: 0;
        display: flex !important;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        gap: 8px;
        padding-bottom: 12px;
        height: calc(100% - 12px);
    }
    
    /* Custom scrollbar */
    .hero-cont__inner::-webkit-scrollbar {
        height: 6px;
    }
    
    .hero-cont__inner::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 3px;
    }
    
    .hero-cont__inner::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #7c3aed, #a855f7);
        border-radius: 3px;
    }
    
    .hero-cont__inner::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(90deg, #6b21a8, #9333ea);
    }
    
    /* 10 cards - each takes ~20% to show 5 visible */
    .main-content .hero-el {
        position: relative !important;
        left: auto !important;
        flex: 0 0 calc(20% - 6.4px);
        width: calc(20% - 6.4px) !important;
        min-height: 100%;
        border-radius: 12px;
        transform: none !important;
    }
    
    /* Reset all nth-child left positions */
    .main-content .hero-el:nth-child(1),
    .main-content .hero-el:nth-child(2),
    .main-content .hero-el:nth-child(3),
    .main-content .hero-el:nth-child(4),
    .main-content .hero-el:nth-child(5),
    .main-content .hero-el:nth-child(6),
    .main-content .hero-el:nth-child(7),
    .main-content .hero-el:nth-child(8),
    .main-content .hero-el:nth-child(9),
    .main-content .hero-el:nth-child(10) {
        left: auto !important;
    }
    
    /* Reset bg transform for desktop */
    .main-content .hero-el__bg {
        transform: none !important;
    }
    
    /* Background images: don't override real images on cards 6-9 */
    .main-content .hero-el:nth-child(10) .hero-el__bg:before {
        background-image: none !important;
        background: linear-gradient(135deg, #6b21a8 0%, #9333ea 100%) !important;
    }
    
    /* Active card expansion for 10 cards desktop */
    .main-content .hero-cont.s--el-active .hero-el:not(.s--active) {
        transform: scale(0.5) !important;
        opacity: 0;
    }
    
    .main-content .hero-el.s--active {
        flex: 0 0 100% !important;
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        z-index: 10;
    }
    
    .main-content .hero-el.s--active .hero-el__bg {
        width: 100%;
        transform: none !important;
    }

    /* Tablet: prevent active background zoom from "dropping" the subject (notably Hoodies @ 10% Y) */
    .main-content .hero-el.s--active .hero-el__bg:before {
        transform: translate3d(0, 0, 0) scale(1) !important;
    }
    
    /* Hero card headings - single line for all cards */
    .main-content .hero-el__heading {
        font-size: 0.75rem;
        padding: 8px 6px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    
    /* Smaller font for longer names */
    .main-content .hero-el[data-category="t-shirts"] .hero-el__heading,
    .main-content .hero-el[data-category="trousers"] .hero-el__heading,
    .main-content .hero-el[data-category="sustainable"] .hero-el__heading {
        font-size: 0.65rem;
        padding: 8px 4px;
    }
    
    /* Center humans in hero panels before expansion */
    .main-content .hero-el__bg:before {
        background-size: cover !important;
    }
    
    /* Individual panel adjustments for best human visibility - desktop 5 cards view */
    /* 1. Apron - woman with yellow apron, center on face/upper body */
    .main-content .hero-el[data-category="aprons"] .hero-el__bg:before {
        background-position: calc(60% + 140px) 15% !important;
        background-size: 180% !important;
    }
    
    /* 2. Hoodies - woman with purple hoodie and tongue out */
    .main-content .hero-el[data-category="hoodies"] .hero-el__bg:before {
        background-position: 35% 10% !important;
        background-size: 160% !important;
    }

    /* Hoodie (tablet): when expanded, shift image down to better show the face */
    .main-content .hero-el[data-category="hoodies"].s--active .hero-el__bg:before {
        background-position: 35% calc(10% + 20px) !important;
        background-size: 110% !important;
    }

    /* Hoodie: shift right only when not expanded */
    .main-content .hero-el[data-category="hoodies"]:not(.s--active) .hero-el__bg:before {
        background-position: calc(35% + 145px) 10% !important;
    }
    
    /* 3. Beanies - woman with beanie and winter sweater */
    .main-content .hero-el[data-category="beanies"] .hero-el__bg:before {
        background-position: 50% 5% !important;
        background-size: 170% !important;
    }
    
    /* 4. Hi-Viz - neon lights/worker */
    .main-content .hero-el[data-category="hi-viz"] .hero-el__bg:before {
        background-position: 50% 30% !important;
        background-size: 150% !important;
    }
    
    /* 5. Polo - man with white polo shirt */
    .main-content .hero-el[data-category="polo"] .hero-el__bg:before {
        background-position: 50% 20% !important;
        background-size: 180% !important;
    }
    
    .main-content .hero-el__text {
        font-size: 1.2rem;
    }
    
    /* === Hero Banners Section (Hero 2 & 3) - +35% height === */
    .hero-banners-wrapper {
        margin: 8px 20px; /* Minimal gap from hero 1 */
    }
    
    .hero-banners-container {
        height: 380px; /* 280px + 35% = 378px ~380px */
        border-radius: 16px;
        overflow: hidden;
    }
    
    /* Neon Container - Fill height */
    .hero-banner .neon-container {
        padding: 0;
        gap: 0;
    }
    
    /* Neon Text - Get In Touch - MAX HEIGHT */
    .neon-text {
        font-size: 120px !important;
        line-height: 0.85;
        margin: 0;
        padding: 0;
    }
    
    .flux-text {
        font-size: 120px !important;
        line-height: 0.85;
        margin: 0;
        padding: 0;
    }
    
    /* Hero 2 Text Container - Fill height no gaps */
    .hero-banner .hero-text-container {
        padding: 0;
        gap: 0;
    }
    
    /* Hero 2 Text Animation - MAX HEIGHT */
    .hero-text-make {
        font-size: 90px !important;
        line-height: 0.9;
        margin: 0;
        padding: 0;
    }
    
    .hero-text-awesome {
        font-size: 90px !important;
        line-height: 0.9;
        margin: 0;
        padding: 0;
    }
    
    .hero-flip-wrapper {
        height: 110px;
        min-width: 400px;
        margin: 0;
    }
    
    .hero-flip-word {
        font-size: 70px !important;
        padding: 12px 40px;
        line-height: 1;
    }
    
    /* === GRID LAYOUTS - Contained === */
    .products-grid,
    .products-grid-shop {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
        padding: 20px;
    }
    
    .bestseller-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0 20px;
        overflow-x: visible;
    }
    
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
    
    /* Shop by Category */
    .shop-by-category {
        padding: 0 20px;
    }
    
    .shop-by-category-scroll {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .category-item {
        flex: 0 0 auto;
    }
    
    /* === PRODUCT CARDS - Desktop hover effects === */
    .product-card {
        padding: 16px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    }
    
    .product-card-image {
        height: 200px;
    }
    
    .product-card-shop {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .product-card-shop:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    }
    
    /* === SECTIONS - Contained === */
    .section-header {
        padding: 28px 20px 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* === CTA SECTIONS === */
    .upload-logo-cta,
    .cta-section {
        margin: 24px 20px;
    }
    
    /* === TRUST BADGES === */
    .trust-badges {
        padding: 20px;
    }
    
    /* === BRANDS SECTION === */
    .brands-section {
        padding: 32px 20px;
    }
    
    /* === SERVICES SECTION === */
    .services-section {
        padding: 32px 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    /* === FAQ SECTION === */
    .faq-section {
        padding: 32px 20px;
    }
    
    /* === CUSTOMIZE PAGE === */
    .customize-main {
        max-width: 100%;
        padding: 32px 20px;
    }
    
    .gallery-main {
        max-height: 450px;
    }
    
    /* === FOOTER DESKTOP - Contained === */
    .mobile-footer {
        padding: 48px 20px 32px;
        background: #1f2937;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr repeat(4, 1fr);
        gap: 40px;
    }
    
    .footer-section:first-child {
        grid-column: 1;
    }
    
    .footer-section-title {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-bottom {
        margin-top: 28px;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-bottom-links {
        display: flex;
        gap: 20px;
    }
    
    /* === SOCIAL ICONS FOOTER - Desktop === */
    .footer-social-icons {
        justify-content: flex-start;
        gap: 12px;
    }
    
    .social-icon-3d {
        width: 44px;
        height: 44px;
    }
    
    /* === POPUP CONTACT - Desktop === */
    .popup-contact {
        max-width: 600px;
        width: calc(100% - 80px);
    }
    
    .popup-contact__body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    /* === FILTERS DROPUP - Desktop === */
    .filters-dropup {
        max-width: 400px;
        left: 50%;
        transform: translateX(-50%) translateY(100%);
        border-radius: 16px 16px 0 0;
    }
    
    .filters-dropup.active {
        transform: translateX(-50%) translateY(0);
    }
    
}

/* ========================================
   LARGE DESKTOP (1440px+)
   ======================================== */
@media (min-width: 1440px) {
    
    :root {
        --container-max: 1400px;
    }
    
    .hero-expanding-wrapper {
        height: 662px; /* 736px - 10% = 662px */
        margin: 0 24px 8px 24px; /* Minimal gap */
    }
    
    .products-grid,
    .products-grid-shop {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 24px;
        padding: 24px;
    }
    
    .bestseller-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
        padding: 0 24px;
    }
    
    .section-header {
        padding: 32px 24px 24px;
    }
    
}

/* ========================================
   EXTRA LARGE DESKTOP (1920px+)
   ======================================== */
@media (min-width: 1920px) {
    
    :root {
        --container-max: 1600px;
    }
    
    .hero-expanding-wrapper {
        height: 720px; /* 800px - 10% = 720px */
        margin: 0 32px 8px 32px; /* Minimal gap */
    }
    
    .products-grid,
    .products-grid-shop {
        grid-template-columns: repeat(6, 1fr) !important;
    }
    
    .bestseller-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
}

/* ========================================
   TOUCH DEVICE OPTIMIZATIONS
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .product-card:hover {
        transform: none;
        box-shadow: var(--shadow);
    }
    
    /* Larger touch targets */
    button, a {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .mobile-header,
    .action-bar-sticky,
    .bottom-nav,
    .mobile-footer {
        display: none !important;
    }
    
    body {
        padding: 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
