@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #E91E63;
    /* Rose Pink from logo */
    --primary-dark: #3F3066;
    /* Dark Purple from logo */
    --primary-light: #F48FB1;
    --primary-soft: #FCE4EC;
    --accent-gold: #D4AF37;
    --accent-plum: #3F3066;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(63, 48, 102, 0.1);
    --text-dark: #1A1A1A;
    --text-medium: #4B5563;
    --text-light: #9CA3AF;
    --white: #FFFFFF;
    --shadow-premium: 0 20px 40px rgba(63, 48, 102, 0.1);
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
    --grad-pink: linear-gradient(135deg, #E91E63 0%, #3F3066 100%);
    --grad-soft: linear-gradient(180deg, #FDF2F5 0%, #FFFFFF 100%);
}

.luxury-reveal {
    opacity: 1;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Top Announcement Banners */
.announcement-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
}

.announcement-bar.secondary {
    background: var(--beige-cream);
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

nav {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s;
    position: relative;
    letter-spacing: 0.3px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-dark);
    transition: width 0.3s;
}

nav a:hover {
    color: var(--primary-dark);
}

nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-icon,
.cart-icon {
    cursor: pointer;
    color: var(--text-medium);
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
}

.search-icon:hover,
.cart-icon:hover {
    color: var(--primary-dark);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.cart-count.hidden {
    display: none;
}

.btn-shop {
    background: var(--grad-pink);
    color: var(--white);
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-shop:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: var(--grad-soft);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.3) 0%, transparent 70%);
    opacity: 0.5;
    filter: blur(50px);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.15) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--grad-pink);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(199, 21, 133, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    border: 1px solid rgba(199, 21, 133, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--primary-soft);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 1.5px solid var(--border-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.hero-visual {
    position: relative;
    height: 400px;
}

.hero-product-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-product {
    position: absolute;
    font-size: 4rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-product.product-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-product.product-2 {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.floating-product.product-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.features-section {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-pink);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--grad-pink);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--primary-soft);
    border-radius: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Spotlight Luxury Cards */
.spotlight-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--accent-gold-soft);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    min-width: 340px;
    flex-shrink: 0;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.spotlight-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--accent-gold);
}

.spotlight-card .product-image-wrapper {
    position: relative;
    height: 450px;
    background: #fdfdfd;
    overflow: hidden;
}

.spotlight-card .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.spotlight-card:hover .product-img {
    transform: scale(1.1);
}

.spotlight-card .product-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--grad-gold);
    color: var(--primary-dark);
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 10;
}

.spotlight-card .product-details {
    padding: 3rem 2rem;
    text-align: center;
}

.spotlight-card .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.spotlight-card .product-price {
    font-size: 1.25rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.spotlight-card .add-to-cart-btn {
    margin-top: 1.5rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.spotlight-card .add-to-cart-btn:hover {
    background: var(--accent-gold);
    color: var(--white);
}

/* Auth Section */
.auth-section {
    padding: 4rem 0;
    background: var(--grad-soft);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 550px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--glass-border);
    text-align: center;
}

.auth-container.register-container {
    max-width: 900px;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 0px;
}

.form-row .form-group {
    flex: 1;
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.auth-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.auth-container p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.auth-container .form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.auth-container .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.auth-container input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1.5px solid #cccccc;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #ffffff;
}

.auth-container input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px var(--primary-soft);
    background: #ffffff;
}

.btn-auth {
    width: 100%;
    padding: 1rem;
    background: var(--grad-pink);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
}

.auth-link {
    margin-top: 2rem;
    font-size: 0.95rem;
}

.auth-link a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 700;
}

.auth-link a:hover {
    text-decoration: underline;
}

.products-carousel-wrapper {
    position: relative;
    padding: 0 60px;
    margin: 2rem 0;
}

.products-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.products-carousel .product-card {
    flex: 0 0 32%;
    min-width: 280px;
    scroll-snap-align: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border-dark);
    color: var(--primary-dark);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.carousel-btn.carousel-prev {
    left: 0;
}

.carousel-btn.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary-dark);
    width: 30px;
    border-radius: 5px;
}

.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

/* Product Glimpses Section */
.product-glimpses-section {
    padding: 3.5rem 0;
    background: var(--beige-light);
    border-top: 1px solid var(--border-light);
}

.glimpses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.glimpse-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(67, 56, 49, 0.03);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.glimpse-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    border-color: var(--border-light);
    background: var(--beige-light);
}

.glimpse-media {
    position: relative;
    margin-bottom: 1rem;
}

.glimpse-thumbnail {
    width: 50px;
    height: 50px;
    background: var(--beige-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border: 2px solid var(--border-light);
    transition: all 0.3s;
}

.glimpse-card:hover .glimpse-thumbnail {
    border-color: var(--border-dark);
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-dark);
    opacity: 0;
    transition: opacity 0.3s;
}

.glimpse-card:hover .play-icon {
    opacity: 1;
}

.glimpse-overlay {
    display: none;
}

.glimpse-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.glimpse-product {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.glimpse-caption {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.5;
    flex: 1;
}

.glimpse-stats {
    display: none;
}

.glimpses-footer {
    text-align: center;
    margin-top: 2rem;
}

.glimpses-footer p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.instagram-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.instagram-link:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3.5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonials-carousel {
    display: flex;
    gap: 1.25rem;
    animation: scrollTestimonials 40s linear infinite;
    will-change: transform;
}

.testimonials-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonials-grid {
    display: flex;
    gap: 1.25rem;
    width: fit-content;
    flex-shrink: 0;
}

.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(67, 56, 49, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    background: var(--beige-light);
    border-color: var(--border-light);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--primary-dark);
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--text-medium);
}

/* About Section */
.about-section {
    padding: 3.5rem 0;
    background: var(--beige-light);
    border-top: 1px solid var(--border-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.about-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--beige-cream);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-light);
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-image-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Why Shimmer Section */
.why-shimmer-section {
    padding: 3.5rem 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-grid .why-item {
    max-width: 280px;
    width: 100%;
}

.why-item {
    text-align: center;
    padding: 1.5rem;
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.why-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.why-item p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Ingredients Section */
.ingredients-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, var(--beige-light) 0%, var(--white) 50%, var(--beige-light) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.ingredients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, var(--primary-dark-tint) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--primary-dark-tint) 0%, transparent 50%);
    pointer-events: none;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ingredient-card {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(67, 56, 49, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.ingredient-card::after {
    display: none;
}

.ingredient-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: var(--beige-light);
    border-color: var(--border-light);
    border-radius: 12px;
}

.ingredient-card:hover::before {
    transform: scaleX(1);
}

.ingredient-icon-wrapper {
    position: relative;
    padding: 2.5rem 1rem 2rem;
    background: linear-gradient(135deg, var(--beige-cream) 0%, var(--beige-light) 100%);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredient-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            var(--primary-dark-tint) 0%,
            var(--primary-dark-light-tint) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.ingredient-card:hover .ingredient-icon-wrapper::before {
    opacity: 1;
}

.ingredient-icon {
    font-size: 3rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
    color: var(--text-dark);
}

.ingredient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle,
            var(--primary-dark-light-tint) 0%,
            transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s;
    pointer-events: none;
    z-index: 1;
}

.ingredient-card:hover .ingredient-icon {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 4px 10px rgba(67, 56, 49, 0.2));
}

.ingredient-card:hover .ingredient-glow {
    opacity: 1;
    width: 75px;
    height: 75px;
}

.ingredient-content {
    padding: 0.875rem 1rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.ingredient-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.05rem;
    margin-bottom: 0.375rem;
    letter-spacing: 0.2px;
    position: relative;
    display: inline-block;
}

.ingredient-name::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--primary-dark);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ingredient-card:hover .ingredient-name::after {
    width: 50%;
}

.ingredient-description {
    color: var(--text-medium);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex: 1;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.ingredient-card:hover .ingredient-description {
    opacity: 1;
}

.ingredient-benefits {
    display: flex;
    gap: 0.375rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.benefit-tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: rgba(67, 56, 49, 0.06);
    color: var(--primary-dark);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(67, 56, 49, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.ingredient-card:hover .benefit-tag {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(67, 56, 49, 0.15);
}

/* Process Section */
.process-section {
    padding: 3.5rem 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-dark);
    background: var(--beige-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    font-family: 'Playfair Display', serif;
}

.step-icon {
    font-size: 2.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Social Media Section */
.social-media-section {
    padding: 3.5rem 0;
    background: var(--beige-light);
    border-top: 1px solid var(--border-light);
}

.social-media-content {
    text-align: center;
}

.social-media-text {
    margin-bottom: 2rem;
}

.social-media-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-media-text p {
    color: var(--text-medium);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-media-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.social-media-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    border: 1.5px solid var(--border-dark);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.social-media-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.social-icon {
    font-size: 2.5rem;
}

.social-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-icon {
    font-size: 2rem;
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    box-shadow: var(--shadow-medium);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--primary-dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(67, 56, 49, 0.03);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-light);
    position: relative;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-light);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(67, 56, 49, 0.25);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.product-card:hover .product-badge {
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(67, 56, 49, 0.35);
    background: var(--primary-dark);
}

.product-image-container {
    width: 100%;
    height: 180px;
    background: var(--beige-cream);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--beige-cream), var(--gray-light));
}

.product-info {
    padding: 1rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--primary-dark);
    line-height: 1.3;
}

.product-description {
    color: var(--text-medium);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.add-to-cart-btn {
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
    font-size: 0.85rem;
}

.add-to-cart-btn:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Collection Page - Separate Products Page */
.products-section {
    padding: 1rem 0 3rem;
    background: linear-gradient(to bottom, var(--beige-light) 0%, var(--white) 20%);
    min-height: 100vh;
}

.collection-page-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.collection-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.filter-sidebar {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    height: fit-content;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    z-index: 100;
    align-self: flex-start;
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) transparent;
}

.filter-sidebar::-webkit-scrollbar {
    width: 6px;
}

.filter-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 3px;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--border-dark);
}

.filter-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0.875rem;
    background: var(--beige-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.filter-option:hover {
    border-color: var(--border-dark);
    background: var(--beige-cream);
}

.filter-option.active {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    font-weight: 600;
}

.filter-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.filter-option.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

.price-filter {
    margin-top: 0.75rem;
}

.price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-light);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-dark);
    cursor: pointer;
}

.price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-dark);
    cursor: pointer;
    border: none;
}

.price-display {
    display: flex;
    justify-content: space-between;
    margin-top: 0.375rem;
    font-size: 0.8rem;
    color: var(--text-medium);
    font-weight: 600;
}

.sort-select {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23433831' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
}

.sort-select:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 4px rgba(67, 56, 49, 0.1);
    outline: none;
}

.clear-filters-btn {
    width: 100%;
    padding: 0.625rem;
    background: var(--beige-cream);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--primary-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
    /* margin-top: 0.75rem; */
}

.clear-filters-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.collection-main {
    flex: 1;
    position: relative;
    padding-top: 0;
}

.collection-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
    position: sticky;
    top: 72px;
    background: var(--beige-light);
    padding: 0.75rem 0.5rem;
    z-index: 99;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    /* box-shadow: 0 2px 8px rgba(67, 56, 49, 0.05); */
    margin-top: 0;
    padding-top: 1.7rem;
    padding-bottom: 1rem;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s;
}

.search-input:focus {
    border-color: var(--primary-dark);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(67, 56, 49, 0.1);
    outline: none;
}

.search-box .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-medium);
    pointer-events: none;
}

.view-options {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding-top: 0;
    margin: 1rem;
}

.collection-grid .product-image-container {
    height: 200px;
    overflow: hidden;
}

.collection-grid .product-info {
    padding: 1.25rem;
}

.collection-grid .product-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.collection-grid .product-description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(67, 56, 49, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
    transition: opacity 0.3s;
}

.cart-overlay.active {
    display: block;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(67, 56, 49, 0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-dark);
    color: var(--white);
}

.cart-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
}

.close-cart {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: var(--beige-light);
}

.empty-cart {
    text-align: center;
    color: var(--text-medium);
    padding: 2rem 1rem;
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.875rem;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border-light);
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.cart-item:hover {
    box-shadow: var(--shadow-soft);
    transform: translateX(4px);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--beige-cream), var(--gray-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.3;
}

.cart-item-price {
    color: var(--text-medium);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.quantity-btn {
    background: var(--beige-light);
    border: 1px solid var(--border-light);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.quantity-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.quantity {
    min-width: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.remove-item-btn {
    background: none;
    border: none;
    color: var(--text-medium);
    cursor: pointer;
    font-size: 0.85rem;
    margin-left: auto;
    padding: 0.4rem 0.75rem;
    transition: all 0.3s;
    border-radius: 6px;
}

.remove-item-btn:hover {
    background: rgba(236, 72, 153, 0.1);
    color: var(--text-dark);
}

.cart-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--border-light);
    background: var(--white);
    box-shadow: 0 -4px 6px -1px rgba(67, 56, 49, 0.05);
}

.cart-total {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.checkout-btn:disabled {
    background: var(--border-light);
    color: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

/* Contact Page Styles */
.contact-section {
    padding: 1.5rem 0 2rem;
    background: linear-gradient(to bottom, var(--beige-light) 0%, var(--white) 20%);
    min-height: auto;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.25rem 1rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(67, 56, 49, 0.08);
    border: 1px solid rgba(67, 56, 49, 0.1);
    height: fit-content;
}

.contact-info-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-info-content>p {
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.875rem;
}

.contact-methods {
    margin-bottom: 1.25rem;
}

.contact-method {
    display: flex;
    gap: 0.875rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--text-dark);
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.contact-details a:hover {
    color: var(--primary-dark);
}

.contact-details p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.9rem;
}

.social-contact {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
}

.social-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.social-contact-links {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-contact-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--beige-cream);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-contact-link-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    opacity: 0;
    transition: opacity 0.4s;
}

.social-icon-large {
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    color: var(--text-medium);
}

.social-contact-link-icon:hover {
    border-color: var(--primary-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(67, 56, 49, 0.2);
}

.social-contact-link-icon:hover::before {
    opacity: 1;
}

.social-contact-link-icon:hover .social-icon-large {
    transform: scale(1.1) rotate(5deg);
    color: var(--white);
}

.contact-form-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(67, 56, 49, 0.08);
    border: 1px solid rgba(67, 56, 49, 0.1);
}

.contact-form-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.625rem 0.875rem;
    border: 1.5px solid #cccccc;
    border-radius: 8px;
    background: var(--beige-light);
    color: var(--text-dark);
    font-size: 0.875rem;
    font-family: inherit;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-dark);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(67, 56, 49, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.contact-submit-btn {
    margin-top: 0.25rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 2rem 0 1rem;
}

.footer-content-minimal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.footer-links-minimal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links-minimal a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links-minimal a:hover {
    color: var(--white);
}

.footer-social-minimal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--white);
}

.footer-bottom-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

/* Toast Notification */
.luxury-notification {
    position: fixed;
    top: 90px;
    right: 30px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(67, 56, 49, 0.4);
    z-index: 10001;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    min-width: 200px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .collection-layout {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    header {
        padding: 0.75rem 16px;
    }

    nav {
        display: none;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .products-carousel-wrapper {
        padding: 0 40px;
    }

    .products-carousel .product-card {
        flex: 0 0 85%;
        min-width: 250px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }

    .features-grid,
    .why-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
    }

    .social-media-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-media-btn {
        width: 100%;
        max-width: 300px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .products-grid,
    .collection-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .contact-section {
        padding: 1.5rem 0;
    }

    .contact-page-header {
        margin-bottom: 2rem;
        padding: 1.5rem 1.25rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-layout {
        gap: 1.5rem;
    }

    .social-contact-links {
        justify-content: center;
    }

    .social-contact-link-icon {
        width: 60px;
        height: 60px;
    }

    .social-icon-large {
        font-size: 2rem;
    }

    .footer-content-minimal {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-minimal {
        flex-direction: column;
        text-align: center;
    }

    .luxury-notification {
        top: 80px;
        right: 15px;
        left: 15px;
        min-width: auto;
        font-size: 0.875rem;
        padding: 0.875rem 1.25rem;
    }
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s;
    background: none;
    border: none;
    font-size: 0.9rem;
    padding: 0;
}

.user-dropdown-btn:hover {
    color: var(--primary-dark);
}

.user-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    padding: 0.5rem 0;
    animation: fadeIn 0.2s ease-in-out;
}

.user-dropdown:hover .user-dropdown-content {
    display: block;
}

.user-dropdown-content a {
    color: var(--text-dark);
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.user-dropdown-content a:hover {
    background-color: var(--beige-cream);
    color: var(--primary-dark);
}

.user-dropdown-content a i {
    width: 20px;
    text-align: center;
    color: var(--primary-dark);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}