
    /* --- Design Tokens & Variables --- */
    :root {
        --primary-color: #2b2d42;
        --primary-hover: #1a1c2c;
        --accent-color: #ef233c;
        --light-bg: #f8f9fa;
        --white: #ffffff;
        --star-color: #ffc107;
        --transition-base: 0.3s ease;
        --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        --transition-main: all 0.3s ease;
    }

    /* --- Base Styles --- */
    body {
        font-family: 'Inter', sans-serif;
        color: var(--primary-color);
        line-height: 1.6;
        margin: 0;
    }

    .navbar-brand {
        font-weight: 700;
        letter-spacing: -1px;
    }

    /* --- Hero & Header Sections --- */
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        height: 80vh;
        display: flex;
        align-items: center;
        color: var(--white);
    }

    .about-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
                    url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        height: 60vh;
        display: flex;
        align-items: center;
        color: var(--white);
    }

    .service-header {
        background-color: var(--primary-color);
        color: var(--white);
        padding: 100px 0;
        text-align: center;
    }

    /* --- Buttons --- */
    .btn-accent {
        background-color: var(--accent-color);
        color: var(--white);
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        transition: var(--transition-main);
        display: inline-block;
        text-decoration: none;
        border: none;
    }

    .btn-accent:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(239, 35, 60, 0.3);
        color: var(--white);
    }

    .btn-buy {
        display: block;
        width: 100%;
        padding: 15px;
        background-color: var(--primary-color);
        color: var(--white);
        font-weight: 600;
        border: none;
        border-radius: 8px;
        transition: var(--transition-base);
    }

    .btn-buy:hover {
        background-color: var(--primary-hover);
        color: var(--white);
        transform: translateY(-2px);
    }

    .btn-dark-luxe {
        display: inline-block;
        padding: 15px 40px;
        background: var(--primary-color);
        color: var(--white);
        font-weight: 600;
        border: none;
        border-radius: 50px;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .btn-dark-luxe:hover {
        opacity: 0.9;
        transform: scale(1.05);
        color: var(--white);
        box-shadow: 0 5px 15px rgba(43, 45, 66, 0.2);
    }

    /* --- Cards (Product, Service, Value) --- */
    .product-card {
        border: none;
        transition: var(--transition-main);
        position: relative;
        overflow: hidden;
        background: var(--white);
    }

    .product-card:hover {
        transform: translateY(-10px);
    }

    .product-img-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    .add-to-cart-overlay {
        position: absolute;
        bottom: -50px;
        left: 0;
        width: 100%;
        transition: 0.3s;
        background: rgba(43, 45, 66, 0.9);
        color: white;
        text-align: center;
        padding: 10px;
    }

    .product-card:hover .add-to-cart-overlay {
        bottom: 0;
    }

    .service-card {
        height: 100%;
        padding: 40px;
        background: var(--white);
        border: 1px solid #eee;
        border-radius: 20px;
        transition: var(--transition-smooth);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
        border-color: transparent;
    }

    .value-card {
        border: none;
        padding: 2rem;
        background: var(--light-bg);
        border-radius: 12px;
        height: 100%;
        transition: 0.3s;
    }

    .value-card:hover {
        background: var(--white);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        transform: translateY(-5px);
    }

    /* --- UI Components (Badges, Icons, Tabs) --- */
    .badge-new {
        position: absolute;
        top: 10px;
        left: 10px;
        background: var(--accent-color);
        color: var(--white);
        padding: 5px 15px;
        font-size: 0.8rem;
        font-weight: bold;
        text-transform: uppercase;
        z-index: 10;
    }

    .icon-box {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
        background: var(--light-bg);
        border-radius: 15px;
        font-size: 1.5rem;
        color: var(--accent-color);
    }

    .price-tag {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--accent-color);
    }

    .rating-stars {
        color: var(--star-color);
        font-size: 0.9rem;
    }

    .nav-tabs {
        border-bottom: 2px solid var(--light-bg);
    }

    .nav-tabs .nav-link {
        color: var(--primary-color);
        font-weight: 600;
        border: none;
        transition: var(--transition-base);
    }

    .nav-tabs .nav-link.active {
        background: transparent;
        border-bottom: 3px solid var(--accent-color);
    }

    /* --- Gallery & Images --- */
    .main-img {
        cursor: zoom-in;
        border-radius: 12px;
        transition: var(--transition-base);
    }

    .thumb-img {
        cursor: pointer;
        opacity: 0.6;
        border: 2px solid transparent;
        border-radius: 8px;
        transition: var(--transition-base);
    }

    .thumb-img:hover, .thumb-img.active {
        opacity: 1;
        border-color: var(--primary-color);
    }

    .story-section img {
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .team-member img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 1.5rem;
        filter: grayscale(100%);
        transition: 0.5s;
    }

    .team-member:hover img {
        filter: grayscale(0%);
    }

    /* --- Shop Specifics --- */
    .filter-title { 
        font-weight: 700; 
        font-size: 0.9rem; 
        text-transform: uppercase; 
        margin-bottom: 1.5rem; 
        letter-spacing: 1px; 
    }

    .list-group-item { 
        border: none; 
        padding-left: 0; 
        font-size: 0.95rem; 
        color: #6c757d; 
        transition: 0.2s; 
    }

    .list-group-item:hover { 
        color: var(--accent-color); 
        background: transparent; 
    }

    .pagination .page-link { 
        color: var(--primary-color); 
        border: none; 
        margin: 0 5px; 
        border-radius: 5px; 
    }

    .cta-box {
        position: relative;
        padding: 60px;
        background: var(--light-bg);
        border-radius: 30px;
        overflow: hidden;
    }

    /* --- Responsive & Layout --- */
    @media (min-width: 992px) {
        .sticky-info {
            position: sticky;
            top: 100px;
        }
    }
    
    /* FAQ Specific Styles */
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 12px !important;
            overflow: hidden;
            background: var(--light-bg);
            transition: var(--transition-base);
        }

        .accordion-button {
            padding: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            background: var(--light-bg);
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            background: var(--white);
            color: var(--accent-color);
        }

        .accordion-button::after {
            filter: grayscale(1);
        }

        .accordion-body {
            padding: 0 1.5rem 1.5rem;
            color: #6c757d;
            background: var(--white);
        }

        .faq-search-wrapper {
            max-width: 600px;
            margin: -30px auto 50px;
            position: relative;
            z-index: 10;
        }

        .faq-search-input {
            padding: 15px 25px;
            border-radius: 50px;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
