
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background-color: #faf9f7;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #8B4513;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #8B4513;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }



        .cart{
            width:30px;
            height:30px;
        }
        /* Hero Section */
 /* ...existing code... */
.hero {
    /* use an image + subtle dark overlay for readable text */
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.15)),
                      url('medium-shot-woman-skincare-routine.jpg'); /* replace with your image path or URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff; /* ensure default hero text is readable */
}

/* make hero heading readable on the image */
.hero-text h1 {
    color: #323232;
}
/* ...existing code... */

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 30px;
            color: #ffffff;
        }

        .hero-text h1 .italic {
            font-style: italic;
            color: #85400f;
        }

        .hero-text p {
            font-size: 18px;
            margin-bottom: 40px;
            color: #161616;
            line-height: 1.6;
        }

        .cta-button {
                       background: #8B4513;
       
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
      background: #D2B48C;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .hero-image {
            position: relative;
            text-align: center;
        }

        .hero-image img {
            width: 100%;
            max-width: 400px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Badges */
        .badges {
            background: #8B4513;
            color: white;
            padding: 15px 0;
            text-align: center;
            overflow: hidden;
        }

        .badge-scroll {
            display: flex;
            gap: 50px;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .badge-item {
            white-space: nowrap;
            position: relative;
        }

        .badge-item::after {
            content: '•';
            margin-left: 50px;
        }

        .badge-item:last-child::after {
            display: none;
        }

        /* Press Logos */
        .press {
            padding: 60px 0;
            background: white;
        }

        .press-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            opacity: 0.6;
        }

        .press-logo {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            font-family: 'Times New Roman', serif;
        }

        /* Best Sellers */
        .best-sellers {
            padding: 80px 0;
            background: #faf9f7;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 60px;
            color: #2c2c2c;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-image {
            width: 100%;
            height: 200px;
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-card {
            cursor: pointer;
        }

        /* Cart Icon */
        .cart-icon {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #8B4513;
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 24px;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .cart-icon:hover {
            transform: scale(1.1);
            background: #A0522D;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #FF4444;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
/* ...existing code... */

@media (max-width: 768px) {
    .cart-icon {
        top: 60px; /* Moves the cart icon lower on mobile */
    }
}
/* ...existing code... */
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            animation: fadeIn 0.3s ease-out;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.3s ease-out;
        }

        .modal-close {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 50px;
            cursor: pointer;
            color: #9d0000;
            background: none;
            border: none;
        }

        .modal-close:hover {
            color: #333;
        }

        .modal-product-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .modal-product-title {
            font-size: 28px;
            margin-bottom: 15px;
            color: #2c2c2c;
        }

        .modal-product-price {
            font-size: 24px;
            color: #8B4513;
            margin-bottom: 20px;
        }

        .modal-product-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .product-details {
            margin-bottom: 30px;
        }

        .detail-item {
            margin-bottom: 15px;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 10px;
        }

        .detail-title {
            font-weight: bold;
            color: #2c2c2c;
            margin-bottom: 5px;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .quantity-btn {
            background: #D2B48C;
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quantity-btn:hover {
            background: #8B4513;
        }

        .quantity-display {
            font-size: 18px;
            font-weight: bold;
            min-width: 30px;
            text-align: center;
        }

        .modal-add-to-cart {
            width: 100%;
            background: #8B4513;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .modal-add-to-cart:hover {
            background: #A0522D;
            transform: translateY(-2px);
        }

        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            right: -400px;
            top: 0;
            width: 400px;
            height: 100vh;
            background: white;
            z-index: 1500;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            transition: right 0.3s ease-out;
            display: flex;
            flex-direction: column;
        }

        .cart-sidebar.active {
            right: 0;
        }

        .cart-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-title {
            font-size: 24px;
            font-weight: bold;
            color: #2c2c2c;
        }

        .cart-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #999;
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .cart-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .cart-item-price {
            color: #8B4513;
            margin-bottom: 10px;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cart-quantity-btn {
            background: #D2B48C;
            color: white;
            border: none;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 14px;
        }

        .cart-remove {
            background: #FF4444;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
            margin-top: 10px;
        }

        .cart-footer {
            padding: 20px;
            border-top: 1px solid #eee;
            background: #f9f9f9;
        }

        .cart-total {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
        }

        .checkout-btn {
            width: 100%;
            background: #8B4513;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .checkout-btn:hover {
            background: #A0522D;
        }

        .empty-cart {
            text-align: center;
            color: #999;
            font-style: italic;
            padding: 40px;
        }

        /* Checkout Modal */
        .checkout-modal .modal-content {
            max-width: 500px;
        }

        .checkout-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 5px;
            font-weight: bold;
            color: #2c2c2c;
        }

        .form-group input {
            padding: 12px;
            border: 2px solid #eee;
            border-radius: 8px;
            font-size: 16px;
        }

        .form-group input:focus {
            outline: none;
            border-color: #D2B48C;
        }

        .order-summary {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .summary-total {
            font-weight: bold;
            font-size: 18px;
            border-top: 1px solid #ddd;
            padding-top: 10px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .cart-sidebar {
                width: 100%;
                right: -100%;
            }

            .modal-content {
                padding: 20px;
                margin: 20px;
            }

            .cart-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        .product-name {
            font-size: 20px;
            margin-bottom: 10px;
            color: #2c2c2c;
        }

        .product-price {
            font-size: 18px;
            color: #8B4513;
            margin-bottom: 20px;
        }

        .original-price {
            text-decoration: line-through;
            color: #999;
            margin-right: 10px;
        }

        .add-to-cart {
            background: transparent;
            border: 2px solid #D2B48C;
            color: #8B4513;
            padding: 12px 30px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .add-to-cart:hover {
            background: #D2B48C;
            color: white;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            background: linear-gradient(135deg, #bed380, #8ef400);
            height: 500px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            color: #ccc;
        }

        .about-text h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: #2c2c2c;
        }

        .feature-list {
            list-style: none;
        }

        .feature-item {
            margin-bottom: 20px;
            padding-left: 20px;
            position: relative;
        }

        .feature-item::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #8B4513;
            font-weight: bold;
        }

        .feature-title {
            font-weight: bold;
            color: #2c2c2c;
            margin-bottom: 5px;
        }

        .feature-desc {
            color: #666;
            font-size: 14px;
        }

        /* Reviews */
        .reviews {
            padding: 80px 0;
            background: #faf9f7;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .stars {
            color: #FFD700;
            font-size: 20px;
            margin-bottom: 15px;
        }

        .review-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #666;
        }

        .reviewer {
            font-weight: bold;
            color: #2c2c2c;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .badge-scroll {
                flex-direction: column;
                gap: 20px;
            }

            .badge-item::after {
                display: none;
            }

            .press-logos {
                gap: 20px;
            }

            .press-logo {
                font-size: 18px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero {
                padding: 60px 0;
            }

            .hero-text h1 {
                font-size: 28px;
            }

            .hero-text p {
                font-size: 16px;
            }

            .product-card {
                padding: 20px;
            }

            .about-section,
            .best-sellers,
            .reviews {
                padding: 60px 0;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
/* Mobile Navigation Sidebar */
.mobile-nav {
    position: fixed !important;
    right: -100% !important;
    top: 0 !important;
    width: 100% !important;
    max-width: 400px !important;
    height: 100vh !important;
    background: white !important;
    z-index: 1500 !important;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1) !important;
    transition: right 0.3s ease-out !important;
    display: flex !important;
    flex-direction: column !important;
}

.mobile-nav.active {
    right: 0 !important;
}

.mobile-nav-header {
    padding: 20px !important;
    border-bottom: 1px solid #eee !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.mobile-nav-title {
    font-size: 24px !important;
    font-weight: bold !important;
    color: #2c2c2c !important;
}

.mobile-nav-close {
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    cursor: pointer !important;
    color: #999 !important;
}

.mobile-nav-close:hover {
    color: #333 !important;
}

.mobile-nav-links {
    list-style: none !important;
    padding: 20px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important; /* Ensures vertical arrangement */
    gap: 20px !important;
}

.mobile-nav-links li {
    margin: 0 !important;
}

.mobile-nav-links a {
    text-decoration: none !important;
    color: #333 !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: color 0.3s !important;
    display: block !important; /* Ensures links take full width */
}

.mobile-nav-links a:hover {
    color: #8B4513 !important;
}

/* Hamburger Icon Transformation to X */
.hamburger {
    display: none !important;
    flex-direction: column !important;
    cursor: pointer !important;
    gap: 5px !important;
    padding: 5px !important;
}

.hamburger span {
    width: 25px !important;
    height: 3px !important;
    background: #333 !important;
    transition: all 0.3s ease !important;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
}

.hamburger.active span:nth-child(2) {
    opacity: 0 !important;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px) !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none !important; /* Hide desktop nav on mobile */
    }

    .hamburger {
        display: flex !important; /* Show hamburger on mobile */
    }

    .mobile-nav {
        width: 100% !important;
        right: -100% !important;
    }
}


/* Hamburger Icon Transformation to X */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide desktop nav on mobile */
    }

    .hamburger {
        display: flex; /* Show hamburger on mobile */
    }

    .mobile-nav {
        width: 100%;
        right: -100%;
    }
}

/* Ensure mobile nav is full width on small screens */
@media (max-width: 768px) {
    .mobile-nav {
        width: 100%;
        right: -100%;
    }
}
        .hero-text,
        .hero-image,
        .product-card,
        .review-card {
            animation: fadeInUp 0.6s ease-out;
        }

        .product-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .product-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        .product-card:nth-child(4) {
            animation-delay: 0.3s;
        }

        .blob-slider-section {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #eac266 0%, #a2764b 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            margin: 0;
            box-sizing: border-box;
        }

        .blob-slider-section * {
            box-sizing: border-box;
        }

        .blob-slider-section .slider-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            height: 600px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .blob-slider-section .slider {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .blob-slider-section .slide {
            position: relative;
            min-width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .blob-slider-section .blob {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 350px;
            height: 350px;
            z-index: 1;
            animation: flower-spin 6s linear infinite;
            filter: blur(2px);
            opacity: 0.8;
        }

        .blob-slider-section .blob::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #f9ca24 100%);
            border-radius: 50%;
            box-shadow: 
                0 -70px 0 -15px #ffd700,
                50px -50px 0 -15px #ffd700,
                70px 0 0 -15px #ffd700,
                50px 50px 0 -15px #ffd700,
                0 70px 0 -15px #ffd700,
                -50px 50px 0 -15px #ffd700,
                -70px 0 0 -15px #ffd700,
                -50px -50px 0 -15px #ffd700;
        }

        @keyframes flower-spin {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .blob-slider-section .slide-image {
            position: relative;
            z-index: 10;
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            border-radius: 15px;

            transition: transform 0.3s ease;
        }

        .blob-slider-section .slide-image:hover {
            transform: scale(1.05);
        }

        .blob-slider-section .placeholder-image {
            width: 400px;
            height: 300px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-family:  italic;
            font-weight: bold;
      
            position: relative;
            z-index: 10;
     
            transition: transform 0.3s ease;
        }

        .blob-slider-section .placeholder-image:hover {
            transform: scale(1.05);
        }

        .blob-slider-section .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .blob-slider-section .nav-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .blob-slider-section .prev {
            left: 20px;
        }

        .blob-slider-section .next {
            right: 20px;
        }

        .blob-slider-section .dots-container {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 20;
        }

        .blob-slider-section .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgb(138, 58, 1);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .blob-slider-section .dot.active {
            background: #ffd700;
            transform: scale(1.2);
        }

        .blob-slider-section .slide-title {
            position: absolute;
            bottom: 40px;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            left: 50%;
                 font-style:normal ;
             
            transform: translateX(-50%);
            color: rgb(97, 74, 29);
            font-size: 24px;
            padding:10px;
            font-weight: 100px!important;
    
            z-index: 15;
            text-align: center;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #2c2c2c;
            background-color: #f5f3f0;
        }

        .luxe-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .luxe-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(245, 243, 240, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .luxe-nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .luxe-logo {
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 2px;
            color: #8b7355;
        }

        .luxe-nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .luxe-nav-links a {
            text-decoration: none;
            color: #2c2c2c;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .luxe-nav-links a:hover {
            color: #8b7355;
        }

        .luxe-mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .luxe-mobile-menu span {
            width: 25px;
            height: 2px;
            background: #2c2c2c;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .luxe-hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                        url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .luxe-hero-content {
            max-width: 600px;
            animation: luxeFadeInUp 1s ease-out;
        }

        .luxe-hero-title {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: normal;
            margin-bottom: 20px;
            letter-spacing: 3px;
            line-height: 1.2;
        }

        .luxe-hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.5rem);
            font-style: italic;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .luxe-cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            color: white;
            text-decoration: none;
            border: 2px solid white;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 14px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .luxe-cta-button:hover {
            background: white;
            color: #2c2c2c;
            transform: translateY(-2px);
        }

        /* Product Sections */
        .luxe-section {
            padding: 100px 0;
            position: relative;
        }

        .luxe-section-title {
            text-align: center;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 20px;
            color: #8b7355;
            font-weight: normal;
        }

        .luxe-section-subtitle {
            text-align: center;
            font-style: italic;
            margin-bottom: 60px;
            opacity: 0.8;
        }

        .luxe-products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .luxe-product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .luxe-product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .luxe-product-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .luxe-product-image.luxe-serum {
            background-image: url('https://images.unsplash.com/photo-1620916566398-39f1143ab7be?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }

        .luxe-product-image.luxe-moisturizer {
            background-image: url('https://images.unsplash.com/photo-1556228720-195a672e8a03?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }

        .luxe-product-image.luxe-cleanser {
            background-image: url('https://images.unsplash.com/photo-1571781926291-c477ebfd024b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }

        .luxe-product-info {
            padding: 30px;
            text-align: center;
        }

        .luxe-product-name {
            font-size: 18px;
            margin-bottom: 10px;
            color: #8b7355;
            letter-spacing: 1px;
        }

        .luxe-product-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .luxe-product-price {
            font-size: 16px;
            font-weight: bold;
            color: #2c2c2c;
        }

        /* Split Layout Section */
        .luxe-split-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 80vh;
            align-items: center;
        }

        .luxe-split-image {
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .luxe-split-image.luxe-body-care {
            background-image: url('portrait-woman-holding-serum-bottle-with-dropper-min.jpg');
        }

        .luxe-split-image.luxe-facial-care {
            background-image: url('medium-shot-korean-woman-posing-with-face-cream-min.jpg');
        }

        .luxe-split-content {
            padding: 170px 170px;
            background: #f9f7f4;
        }

        .luxe-split-title {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 30px;
            color: #8b7355;
            line-height: 1.3;
        }

        .luxe-split-text {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 40px;
            color: #555;
        }

        /* Carousel */
        .luxe-carousel {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .luxe-carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .luxe-carousel-slide {
            min-width: 100%;
            height: 400px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            position: relative;
        }

        .luxe-carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
        }

        .luxe-carousel-slide > div {
            position: relative;
            z-index: 2;
        }

        .luxe-carousel-slide.luxe-anti-aging {
            background-image: url('foundation-dripping-bottle-still-life.jpg');
        }

        .luxe-carousel-slide.luxe-brightening {
            background-image: url('levitating-cosmetic-cream-display.jpg');
        }

        .luxe-carousel-slide.luxe-sensitive {
            background-image: url('high-angle-essential-oil-bottle.jpg');
        }

        .luxe-carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .luxe-carousel-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .luxe-carousel-prev {
            left: 20px;
        }

        .luxe-carousel-next {
            right: 20px;
        }

        /* Image Gallery Section */
        .luxe-gallery-section {
            padding: 0;
            background: #f5f3f0;
        }

        .luxe-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            height: 80vh;
            gap: 0;
        }

        .luxe-gallery-item {
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .luxe-gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 1;
        }

        .luxe-gallery-item:hover::before {
            background: rgba(0,0,0,0.1);
        }

        .luxe-gallery-item:hover {
            transform: scale(1.02);
            z-index: 10;
        }

        .luxe-gallery-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .luxe-gallery-item:hover .luxe-gallery-overlay {
            opacity: 1;
        }

        .luxe-gallery-title {
            font-size: 24px;
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .luxe-gallery-subtitle {
            font-size: 14px;
            font-style: italic;
            opacity: 0.9;
        }

        @keyframes luxeFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .luxe-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .luxe-fade-in.luxe-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .luxe-nav-links {
                display: none;
            }

            .luxe-mobile-menu {
                display: flex;
            }

            .luxe-hero-title {
                font-size: 3rem;
            }

            .luxe-split-section {
                grid-template-columns: 1fr;
            }

            .luxe-split-content {
                padding: 40px 30px;
            }

            .luxe-products-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .luxe-section {
                padding: 60px 0;
            }

            .luxe-image-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 40vh);
                height: auto;
            }

            .luxe-gallery-item:hover {
                transform: none;
            }
        }

        @media (max-width: 480px) {
            .luxe-container {
                padding: 0 15px;
            }

            .luxe-hero-title {
                font-size: 2.5rem;
                letter-spacing: 1px;
            }

            .luxe-section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
    .luxe-split-image {
        min-height: 320px !important;
        height: 320px !important;
    }
    .luxe-carousel-slide {
        height: 320px !important;
        min-height: 320px !important;
    }
}
@media (max-width: 480px) {
    .luxe-split-image {
        min-height: 220px !important;
        height: 220px !important;
    }
    .luxe-carousel-slide {
        height: 220px !important;
        min-height: 220px !important;
    }
}


@media (max-width: 768px) {
    .luxe-nav-links {
        display: none !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 60px !important;
        right: 0 !important;
        background: #fff !important;
        width: 100% !important;
        z-index: 1000 !important;
    }
    .luxe-nav-links.open {
        display: flex !important;
    }
    .luxe-mobile-menu {
        display: flex !important;
    }
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #f5f1eb 0%, #e8ddd4 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .main-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .content-placeholder {
            text-align: center;
            color: #8b4513;
            font-size: 1.2rem;
        }

        .footer {
            background: linear-gradient(135deg, #67360f 0%, #622e08 50%, #5f290f 100%);
            color: #f5deb3;
            padding: 3rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ffffff, #ffffff, #ffffff);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            align-items: center;
        }

        .footer-section h3 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .footer-section p, .footer-section a {
            color: #f5deb3;
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #daa520;
        }

        .social-container {
            text-align: center;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            background: rgba(245, 222, 179, 0.1);
            border: 2px solid #cd853f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #f5deb3;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, #daa520, #cd853f);
            border-radius: 50%;
            transition: all 0.4s ease;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .social-icon:hover {
            color: #4a2c17;
        }

        .social-icon:hover::before {
            width: 100%;
            height: 100%;
        }

        .newsletter {
            background: white;
            color: #4a2c17;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 1px solid #e8ddd4;
            border-bottom: 1px solid #e8ddd4;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ffffff, #f2f2f2, #ffffff);
            animation: shimmer 3s ease-in-out infinite;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter h2 {
            color: #6b4423;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 2px rgba(107, 68, 35, 0.1);
        }

        .newsletter p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            color: #8b4513;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 400px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .newsletter-input {
            flex: 1;
            min-width: 250px;
            padding: 1rem 1.5rem;
            border: 2px solid #cd853f;
            border-radius: 50px;
            background: #faf8f5;
            color: #4a2c17;
            font-size: 1rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .newsletter-input::placeholder {
            color: #a0522d;
        }

        .newsletter-input:focus {
            border-color: #8b4513;
            background: #f5f1eb;
            box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
        }

        .newsletter-btn {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #5c2a06, #773110);
            color: #f5deb3;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 120px;
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
        }

        .newsletter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(245, 222, 179, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
            background: linear-gradient(135deg, #6b4423, #8b4513);
        }

        .newsletter-btn:hover::before {
            left: 100%;
        }

        .newsletter-btn:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .newsletter h2 {
                font-size: 2rem;
            }
            
            .newsletter-form {
                max-width: 100%;
            }
            
            .newsletter-input {
                min-width: 100%;
            }
            
            .newsletter-btn {
                width: 100%;
            }
        }

        .social-icon:nth-child(1):hover,
        .social-icon:nth-child(2):hover,
        .social-icon:nth-child(3):hover,
        .social-icon:nth-child(4):hover,
        .social-icon:nth-child(5):hover {
            transform: none;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(205, 133, 63, 0.3);
            color: #cd853f;
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #f5deb3;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            background: rgba(245, 222, 179, 0.1);
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .footer-links a:hover {
            background: rgba(218, 165, 32, 0.2);
            border-color: #daa520;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            
            .social-icons {
                gap: 1rem;
            }
            
            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .footer-links {
                gap: 1rem;
            }
            
            .footer-links a {
                padding: 0.4rem 0.8rem;
                font-size: 0.9rem;
            }
        }

        /* Decorative elements */
        .footer::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #daa520, transparent);
            opacity: 0.6;
        }
  