    :root {
        --bmt-black: #0a0a0a;
        --bmt-white: #ffffff;
        --bmt-accent: #c5a059; 
        --bmt-gray-soft: #fcfcfc;
        --bmt-border: rgba(0,0,0,0.06);
        --bmt-muted: #71717a;
        --font-heading: 'Tenor Sans', sans-serif;
        --font-body: 'Plus Jakarta Sans', sans-serif;
        --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        --primary: #000000;
        --accent: #2563eb;
        --bg-gray: #f9f9fb;
        --text-main: #1a1a1a;
        --text-muted: #71717a;
        --font-main: 'Outfit', sans-serif;
        --font-display: 'Playfair Display', serif;
        --ease: cubic-bezier(0.23, 1, 0.32, 1);
    }

    * {
        box-sizing: border-box;
    }

    body {
        font-family: var(--font-body);
        background-color: var(--bmt-white);
        color: var(--bmt-black);
        overflow-x: hidden;
    }

    /* --- RESPONSIVE UTILITY CLASSES --- */
    .container-fluid {
        padding-left: clamp(15px, 4vw, 40px);
        padding-right: clamp(15px, 4vw, 40px);
    }

    /* --- HERO SECTION --- */
    .hero-editorial {
        height: 100vh;
        min-height: 600px;
        max-height: 1200px;
        width: 100%;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        margin-top: -110px;
        padding-top: 110px;
    }

    @media (max-height: 600px) {
        .hero-editorial {
            height: 100vh;
            min-height: 500px;
        }
    }

    @media (max-width: 768px) {
        .hero-editorial {
            height: 85vh;
            min-height: 500px;
            margin-top: -90px;
            padding-top: 90px;
        }
    }

    @media (max-width: 575px) {
        .hero-editorial {
            height: 80vh;
            min-height: 450px;
            margin-top: -80px;
            padding-top: 80px;
        }
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.85);
        transform: scale(1.05);
        transition: transform 10s ease;
    }

    .hero-editorial:hover .hero-bg img {
        transform: scale(1);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding-left: clamp(20px, 8%, 8%);
        padding-right: 20px;
        color: white;
        max-width: min(900px, 90%);
    }

    .hero-label {
        font-size: clamp(0.7rem, 1.5vw, 0.8rem);
        letter-spacing: clamp(3px, 1vw, 5px);
        text-transform: uppercase;
        color: var(--bmt-accent);
        font-weight: 700;
        margin-bottom: clamp(15px, 3vw, 25px);
        display: block;
        opacity: 0;
        animation: fadeUp 1s ease 0.2s forwards;
    }

    .hero-title {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 8vw, 6.5rem);
        line-height: 0.95;
        text-transform: uppercase;
        margin-bottom: clamp(20px, 4vw, 40px);
        opacity: 0;
        animation: fadeUp 1s ease 0.4s forwards;
        word-break: break-word;
    }

    @media (max-width: 575px) {
        .hero-title {
            line-height: 1.1;
        }
    }

    .hero-title span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        text-transform: lowercase;
        font-weight: 400;
    }

    .hero-content p {
        max-width: min(450px, 90%);
        line-height: 1.8;
        margin-bottom: clamp(25px, 4vw, 40px);
        font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: clamp(15px, 2vw, 20px);
        opacity: 0;
        animation: fadeUp 1s ease 0.6s forwards;
    }

    .btn-hero {
        padding: clamp(14px, 2vw, 18px) clamp(30px, 4vw, 45px);
        background: white;
        color: var(--bmt-black);
        text-transform: uppercase;
        font-size: clamp(0.65rem, 1.5vw, 0.75rem);
        font-weight: 800;
        letter-spacing: 2px;
        text-decoration: none;
        transition: var(--transition);
        border: 1px solid white;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    @media (max-width: 480px) {
        .hero-actions {
            flex-direction: column;
            width: 100%;
        }
        
        .btn-hero {
            width: 100%;
            text-align: center;
        }
    }

    .btn-hero:hover {
        background: transparent;
        color: white;
    }

    .btn-hero.outline {
        background: transparent;
        color: white;
    }

    .btn-hero.outline:hover {
        background: white;
        color: var(--bmt-black);
    }

    /* Scroll Indicator */
    .scroll-line {
        position: absolute;
        bottom: 40px;
        left: 50%;
        width: 1px;
        height: 80px;
        background: rgba(255,255,255,0.2);
        z-index: 2;
        display: none;
    }

    @media (min-width: 768px) {
        .scroll-line {
            display: block;
        }
    }

    .scroll-line::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: white;
        animation: scrollDown 2s infinite;
    }

    /* --- BRAND STRIP --- */
    .brand-strip {
        border-bottom: 1px solid var(--bmt-border);
        padding: clamp(20px, 3vw, 30px) 0;
        background: white;
        overflow-x: auto;
    }

    .brand-strip::-webkit-scrollbar {
        display: none;
    }

    .brand-values {
        display: flex;
        justify-content: space-between;
        text-transform: uppercase;
        font-size: clamp(0.6rem, 1.5vw, 0.7rem);
        letter-spacing: clamp(1px, 0.5vw, 2px);
        font-weight: 700;
        color: var(--bmt-black);
        white-space: nowrap;
        min-width: 600px;
    }

    @media (max-width: 768px) {
        .brand-values {
            justify-content: space-around;
            min-width: auto;
            flex-wrap: wrap;
            gap: 10px;
            white-space: normal;
        }
        
        .brand-values span:nth-child(2n) {
            display: none;
        }
    }

    /* --- CATEGORY ARCHITECTURE --- */
    .category-section {
        padding: clamp(60px, 10vw, 120px) 0;
    }

    .section-header-center {
        text-align: center;
        margin-bottom: clamp(40px, 8vw, 80px);
        padding: 0 20px;
    }

    .section-header-center h2 {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 15px;
    }

    .section-header-center p {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: var(--bmt-muted);
        font-size: clamp(1rem, 2vw, 1.2rem);
    }

    .category-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: minmax(200px, auto);
        gap: clamp(10px, 2vw, 15px);
        padding: 0 clamp(15px, 5%, 5%);
    }

    @media (max-width: 1199px) {
        .category-grid {
            grid-template-columns: repeat(8, 1fr);
        }
    }

    @media (max-width: 991px) {
        .category-grid {
            grid-template-columns: 1fr;
            grid-auto-rows: minmax(300px, auto);
        }
    }

    .cat-card {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border-radius: 4px;
        min-height: 200px;
    }

    @media (max-width: 991px) {
        .cat-card {
            min-height: 300px;
        }
    }

    .cat-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cat-card:hover img {
        transform: scale(1.08);
    }

    .cat-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1) 60%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: clamp(20px, 3vw, 30px);
        color: white;
        transition: var(--transition);
        opacity: 1;
    }

    .cat-title {
        font-family: var(--font-heading);
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin: 0;
        line-height: 1;
        transform: translateY(0);
        transition: transform 0.4s ease;
    }

    .cat-action {
        font-size: clamp(0.6rem, 1.5vw, 0.7rem);
        text-transform: uppercase;
        letter-spacing: clamp(1px, 0.5vw, 2px);
        margin-top: 10px;
        opacity: 0.8;
        transform: translateY(10px);
        transition: all 0.4s ease;
    }

    .cat-card:hover .cat-title {
        transform: translateY(-5px);
    }

    .cat-card:hover .cat-action {
        transform: translateY(0);
        opacity: 1;
        color: var(--bmt-accent);
    }

    /* Grid Logic */
    .cat-large { 
        grid-column: span 6; 
        grid-row: span 2; 
        height: 100%;
    }
    
    .cat-small { 
        grid-column: span 3; 
        grid-row: span 1; 
    }

    @media (max-width: 1199px) {
        .cat-large { grid-column: span 4; }
        .cat-small { grid-column: span 4; }
    }

    @media (max-width: 991px) {
        .cat-large, 
        .cat-small { 
            grid-column: span 1; 
            grid-row: span 1; 
            height: 350px; 
        }
    }

    /* --- PRODUCT CARDS --- */
    .product-section {
        background: var(--bmt-gray-soft);
        padding: clamp(60px, 10vw, 100px) 0;
    }

    .product-lux-card {
        background: white;
        padding: clamp(10px, 2vw, 15px);
        transition: var(--transition);
        position: relative;
        height: 100%;
        margin-bottom: 30px;
    }

    @media (max-width: 767px) {
        .product-lux-card {
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    .product-lux-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    }

    .lux-img-container {
        aspect-ratio: 3/4;
        overflow: hidden;
        position: relative;
        margin-bottom: 20px;
    }

    .lux-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .product-lux-card:hover img {
        transform: scale(1.05);
    }

    .quick-add-btn {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        background: white;
        color: var(--bmt-black);
        padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 25px);
        font-size: clamp(0.65rem, 1.5vw, 0.7rem);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: var(--transition);
        white-space: nowrap;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .product-lux-card:hover .quick-add-btn {
        transform: translateX(-50%) translateY(0);
    }

    .lux-info {
        text-align: center;
        padding: 0 10px;
    }

    .lux-info h4 {
        font-family: var(--font-heading);
        font-size: clamp(0.9rem, 2vw, 1rem);
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .lux-info a {
        text-decoration: none;
        color: var(--bmt-black);
        display: block;
    }

    .lux-price {
        font-weight: 700;
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .small.text-muted {
        font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    }

    /* Section Header */
    .d-flex.justify-content-between {
        flex-wrap: wrap;
        gap: 20px;
    }

    .letter-spacing-2 {
        letter-spacing: 2px;
    }

    /* --- HERO V3 STYLES --- */
    .hero-v3 {
        height: 100vh;
        min-height: 600px;
        max-height: 1200px;
        display: flex;
        align-items: center;
        background: #fff;
        overflow: hidden;
        position: relative;
    }

    @media (max-width: 768px) {
        .hero-v3 {
            height: auto;
            min-height: auto;
            padding: 100px 0;
            flex-direction: column;
        }
    }

    .hero-v3 .hero-content {
        padding: 0 clamp(20px, 8%, 8%);
        z-index: 10;
        width: 50%;
    }

    @media (max-width: 768px) {
        .hero-v3 .hero-content {
            width: 100%;
            padding: 0 20px;
            text-align: center;
            order: 2;
        }
    }

    .hero-v3 h6 {
        font-weight: 600;
        letter-spacing: clamp(2px, 1vw, 4px);
        text-transform: uppercase;
        font-size: clamp(0.7rem, 1.5vw, 0.8rem);
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
        color: var(--accent);
    }

    .hero-v3 h1 {
        font-family: var(--font-display);
        font-size: clamp(2.5rem, 8vw, 6rem);
        line-height: 0.9;
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
        font-style: italic;
    }

    @media (max-width: 768px) {
        .hero-v3 h1 {
            line-height: 1.1;
        }
    }

    .hero-v3 .hero-image-wrap {
        position: absolute;
        right: 0;
        top: 0;
        width: 55%;
        height: 100%;
        clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    @media (max-width: 768px) {
        .hero-v3 .hero-image-wrap {
            position: relative;
            width: 100%;
            height: 50vh;
            min-height: 300px;
            clip-path: none;
            margin-bottom: 40px;
            order: 1;
        }
    }

    .hero-v3 .hero-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .shop-btn-outline {
        padding: clamp(14px, 2vw, 18px) clamp(30px, 4vw, 45px);
        border: 1.5px solid var(--primary);
        color: var(--primary);
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: clamp(1px, 0.5vw, 2px);
        transition: var(--ease);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    }

    .shop-btn-outline:hover {
        background: var(--primary);
        color: #fff;
    }

    /* --- BENTO CATEGORY GRID --- */
    .bento-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 300px);
        gap: clamp(10px, 2vw, 20px);
    }

    @media (max-width: 1199px) {
        .bento-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(4, 250px);
        }
    }

    @media (max-width: 767px) {
        .bento-grid {
            grid-template-columns: 1fr;
            grid-template-rows: repeat(5, 300px);
        }
    }

    .bento-item {
        position: relative;
        overflow: hidden;
        border-radius: 4px;
        min-height: 200px;
    }

    .bento-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s var(--ease);
    }

    .bento-item:hover img {
        transform: scale(1.08);
    }

    .bento-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: clamp(20px, 3vw, 30px);
        color: #fff;
    }

    .bento-1 { grid-column: span 2; grid-row: span 2; }
    .bento-2 { grid-column: span 2; grid-row: span 1; }

    @media (max-width: 1199px) {
        .bento-1, .bento-2 { 
            grid-column: span 1; 
            grid-row: span 1; 
        }
    }

    /* --- MINIMAL PRODUCT CARDS --- */
    .product-card-v3 {
        position: relative;
        margin-bottom: clamp(30px, 5vw, 50px);
        transition: var(--ease);
    }

    @media (max-width: 767px) {
        .product-card-v3 {
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    .product-card-v3 .img-container {
        aspect-ratio: 3/4;
        background: #f4f4f5;
        overflow: hidden;
        position: relative;
        margin-bottom: 20px;
    }

    .product-card-v3 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .add-to-cart-overlay {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 15px;
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(5px);
        transform: translateY(100%);
        transition: transform 0.4s var(--ease);
        text-align: center;
        font-weight: 600;
        text-transform: uppercase;
        font-size: clamp(0.7rem, 1.5vw, 0.8rem);
        cursor: pointer;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-card-v3:hover .add-to-cart-overlay {
        transform: translateY(0);
    }

    .product-card-v3 .info-v3 {
        text-align: left;
    }

    .product-card-v3 h4 {
        font-size: clamp(0.9rem, 2vw, 1rem);
        font-weight: 400;
        margin-bottom: 5px;
        color: var(--text-main);
        line-height: 1.3;
    }

    .product-card-v3 .price-v3 {
        font-weight: 600;
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    .wishlist-btn-v3 {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #fff;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        opacity: 0;
        transition: 0.3s;
        border: none;
        cursor: pointer;
        min-width: 44px;
        min-height: 44px;
    }

    @media (max-width: 768px) {
        .wishlist-btn-v3 {
            opacity: 1;
        }
    }

    .product-card-v3:hover .wishlist-btn-v3 {
        opacity: 1;
    }

    /* Ticker / Marquee */
    .ticker {
        background: var(--primary);
        color: #fff;
        padding: 15px 0;
        overflow: hidden;
        white-space: nowrap;
    }

    .ticker-content {
        display: inline-block;
        animation: marquee 20s linear infinite;
        font-weight: 800;
        text-transform: uppercase;
        font-size: clamp(1.5rem, 4vw, 2rem);
        opacity: 0.1;
        padding-left: 20px;
    }

    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* --- NEWSLETTER --- */
    .manifesto-section {
        padding: clamp(60px, 10vw, 120px) 0;
        background: var(--bmt-black);
        color: white;
        text-align: center;
    }

    .manifesto-title {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 6vw, 4rem);
        margin-bottom: 20px;
        opacity: 0.2;
    }

    .input-lux-line {
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        padding: 15px 0;
        width: 100%;
        max-width: min(400px, 90%);
        color: white;
        text-align: center;
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        font-family: var(--font-heading);
        outline: none;
    }

    /* --- RESPONSIVE BOOTSTRAP GRID ADJUSTMENTS --- */
    @media (max-width: 1199px) {
        .col-lg-3 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (max-width: 767px) {
        .col-lg-3,
        .col-md-6 {
            flex: 0 0 100%;
            max-width: 100%;
        }
        
        .row {
            margin-left: -10px;
            margin-right: -10px;
        }
        
        .col-lg-3, .col-md-6 {
            padding-left: 10px;
            padding-right: 10px;
        }
    }

    /* --- TOAST NOTIFICATION --- */
    @if (session('success'))
    .toast-notification {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: var(--bmt-black);
        color: white;
        padding: 20px 40px;
        z-index: 9999;
        animation: fadeUp 0.5s ease;
        max-width: 400px;
        width: 90%;
    }
    
    @media (max-width: 575px) {
        .toast-notification {
            left: 50%;
            right: auto;
            transform: translateX(-50%);
            width: 90%;
            text-align: center;
        }
    }
    @endif

    /* Animations */
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes scrollDown {
        0% { top: -100%; }
        100% { top: 100%; }
    }

    /* --- TOUCH DEVICE OPTIMIZATIONS --- */
    @media (hover: none) and (pointer: coarse) {
        .cat-card:hover img,
        .bento-item:hover img,
        .product-lux-card:hover img,
        .product-card-v3:hover img {
            transform: none;
        }
        
        .quick-add-btn,
        .add-to-cart-overlay {
            transform: none !important;
            opacity: 1 !important;
        }
        
        .product-lux-card:hover,
        .product-card-v3:hover {
            transform: none;
        }
    }

    /* --- ACCESSIBILITY --- */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        
        .scroll-line::after {
            animation: none;
        }
        
        .ticker-content {
            animation: none;
        }
    }