    :root {
        --primary: #5E315B;
        --primary-light: #7a4972;
        --primary-dark: #3d1f3a;
        --accent: #E8A87C;
        --accent-light: #f5d5c0;
        --text-dark: #2d2d2d;
        --text-light: #f8f8f8;
        --border-color: #e0e0e0;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--text-dark);
        background: #fafafa;
        line-height: 1.6;
    }

    /* Container utility - works with existing header structure */
    .container {
        max-width: 80rem;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* Top Banner */
    .top-banner {
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
        color: white;
        padding: 12px 0;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        width: 100%;
    }

    .top-banner p {
        margin: 0;
    }

    .top-banner-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        max-width: 80rem;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .top-banner-icon {
        font-size: 16px;
    }

    /* Utilities */
    .btn {
        display: inline-block;
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-primary {
        background: var(--primary);
        color: white;
    }

    .btn-primary:hover {
        background: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(94, 49, 91, 0.2);
    }

    .btn-secondary {
        background: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
    }

    .btn-secondary:hover {
        background: var(--primary);
        color: white;
    }

    /* Header & Navigation */
    header {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 50;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 24px;
        font-weight: 800;
        color: var(--primary);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
    }

    nav {
        display: flex;
        gap: 35px;
    }

    nav a {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: color 0.3s ease;
        position: relative;
    }

    nav a:hover {
        color: var(--primary);
    }

    nav a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }

    nav a:hover::after {
        width: 100%;
    }

    .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--primary);
        cursor: pointer;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        color: white;
        padding: 100px 1.5rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        animation: slideUp 0.8s ease;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero h1 {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 30px;
        opacity: 0.95;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Categories Section */
    .categories {
        padding: 80px 1.5rem;
        background: white;
        width: 100%;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 42px;
        color: var(--text-dark);
        margin-bottom: 15px;
        font-weight: 800;
    }

    .section-header p {
        font-size: 16px;
        color: #666;
        max-width: 500px;
        margin: 0 auto;
    }

    .categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .category-card {
        background: white;
        border: 2px solid var(--border-color);
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .category-card:hover::before {
        transform: scaleX(1);
    }

    .category-card:hover {
        border-color: var(--primary);
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(94, 49, 91, 0.15);
    }

    .category-icon {
        font-size: 48px;
        color: var(--primary);
        margin-bottom: 20px;
        transition: transform 0.3s ease;
    }

    .category-card:hover .category-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .category-name {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 10px;
    }

    .category-count {
        font-size: 13px;
        color: #999;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .category-link {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s ease;
    }

    .category-card:hover .category-link {
        gap: 12px;
    }

    /* Features Section */
    .features {
        padding: 80px 1.5rem;
        background: linear-gradient(135deg, rgba(94, 49, 91, 0.05) 0%, rgba(232, 168, 124, 0.05) 100%);
        width: 100%;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-top: 50px;
    }

    .feature-item {
        display: flex;
        gap: 20px;
        animation: fadeInUp 0.6s ease;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .feature-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: var(--primary);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
    }

    .feature-content h3 {
        font-size: 18px;
        color: var(--text-dark);
        margin-bottom: 8px;
        font-weight: 700;
    }

    .feature-content p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
    }

    /* Featured Products Section */
    .featured-products {
        padding: 80px 1.5rem;
        background: white;
        width: 100%;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }

    .product-card {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .product-card:hover {
        border-color: var(--primary);
        box-shadow: 0 15px 40px rgba(94, 49, 91, 0.12);
        transform: translateY(-8px);
    }

    .product-image-wrapper {
        position: relative;
        overflow: hidden;
        height: 200px;
    }

    .product-image {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 80px;
        opacity: 0.8;
        transition: transform 0.3s ease;
    }

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

    .product-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--primary);
        color: white;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .product-info {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .product-name {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 10px;
    }

    .product-rating {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 12px;
        font-size: 12px;
    }

    .product-rating i {
        color: #ffc107;
        font-size: 12px;
    }

    .product-rating span {
        color: #999;
        font-size: 12px;
        margin-left: 5px;
    }

    .product-description {
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
        flex-grow: 1;
    }

    .product-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .product-price {
        font-size: 20px;
        font-weight: 800;
        color: var(--primary);
    }

    .btn-add-cart {
        padding: 8px 16px;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .btn-add-cart:hover {
        background: var(--primary-light);
        transform: scale(1.05);
    }

    /* Trust Signals Section */
    .trust-signals {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        padding: 60px 1.5rem;
        width: 100%;
    }

    .signals-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .signal-item {
        text-align: center;
        color: white;
        animation: fadeInUp 0.6s ease;
    }

    .signal-icon {
        font-size: 40px;
        margin-bottom: 15px;
        display: block;
        opacity: 0.95;
    }

    .signal-item h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .signal-item p {
        font-size: 14px;
        opacity: 0.9;
        line-height: 1.6;
    }

    /* FAQ Section */
    .faq-section {
        padding: 80px 1.5rem;
        background: white;
        width: 100%;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: var(--primary);
        box-shadow: 0 5px 15px rgba(94, 49, 91, 0.1);
    }

    .faq-question {
        width: 100%;
        padding: 20px;
        background: white;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 16px;
        font-weight: 700;
        color: var(--text-dark);
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: rgba(94, 49, 91, 0.03);
        color: var(--primary);
    }

    .faq-question i {
        color: var(--primary);
        transition: transform 0.3s ease;
        font-size: 14px;
    }

    .faq-item.active .faq-question {
        background: linear-gradient(135deg, rgba(94, 49, 91, 0.1) 0%, rgba(232, 168, 124, 0.1) 100%);
        color: var(--primary);
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(94, 49, 91, 0.03);
    }

    .faq-item.active .faq-answer {
        max-height: 200px;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
        color: #666;
        line-height: 1.8;
        font-size: 14px;
    }