@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

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

:root {
    --dark-chocolate: #3E2723;
    --warm-cream: #ffffff;
    --clay-brown: #6e574f;
    --taupe: #A1887F;
    --rich-earth: #5D4037;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-chocolate);
    background-color: var(--warm-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: linear-gradient(to bottom, rgba(62, 39, 35, 0.9), transparent);
    transition: all 0.5s ease;
}

header.scrolled {
    position: fixed;
    background: rgba(93, 64, 55, 0.95);
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm-cream);
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 1.5rem;
    gap: 7px;
    font-weight: 700;
    color: var(--primary-color);
}
.logo span{
    color: var(--warm-cream);
}
.logo>img{
    width: 60px;
border-radius: 50%;

}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--warm-cream);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--warm-cream);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 5rem 1.5rem 3rem;
    background: linear-gradient(135deg, var(--clay-brown) 0%, var(--rich-earth) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(215, 204, 200, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.product-image{
    display: flex;
    border-radius: 20px;
    padding-top: 10px;
    justify-content: center;
    align-items: center;
}
.product-image img{
    border-radius: 30px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--warm-cream);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    color: var(--warm-cream);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
}

.hero-image-shape {
    width: 100%;
    height: 450px;
    background: var(--warm-cream);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--rich-earth);
    color: var(--warm-cream);
}

.btn-primary:hover {
    background: var(--dark-chocolate);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(93, 64, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--warm-cream);
    color: var(--rich-earth);
}

section {
    padding: 3.5rem 1.5rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    color: var(--dark-chocolate);
    margin-bottom: 0.8rem;
}

.section-header p {
    color: var(--clay-brown);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--taupe);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--rich-earth);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--dark-chocolate);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--clay-brown);
    font-size: 0.9rem;
}

.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: var(--dark-chocolate);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--clay-brown);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.about-image-shape {
    width: 100%;
    height: 400px;
    background: var(--clay-brown);
    clip-path: circle(50% at 50% 50%);
    overflow: hidden;
}

.about-image-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.08);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

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

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(93, 64, 55, 0.25);
    border-color: var(--rich-earth);
}

.product-card:hover .product-visual {
    background-size: 120% 120%;
}

.product-card:hover .product-pattern {
    animation-duration: 10s;
    opacity: 0.25;
}

.product-visual {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clay-brown) 0%, var(--rich-earth) 100%);
    background-size: 100% 100%;
    transition: background-size 0.4s ease;
}

.product-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(215, 204, 200, 0.3) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.product-icon {
    position: relative;
    z-index: 2;
    font-size: 4.5rem;
    color: var(--warm-cream);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.product-card:hover .product-icon {
    transform: scale(1.15) rotate(5deg);
    opacity: 1;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.product-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(215, 204, 200, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(215, 204, 200, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(215, 204, 200, 0.3) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
    background-position: 0 0, 20px 20px, 10px 10px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Lavender Theme */
.product-visual-lavender {
    background: linear-gradient(135deg, #9B7A9E 0%, #6B4E7A 50%, #8D6E63 100%);
}

.product-visual-lavender::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(215, 204, 200, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

/* Vanilla Theme */
.product-visual-vanilla {
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 50%, #8D6E63 100%);
}

.product-visual-vanilla::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(215, 204, 200, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite reverse;
}

/* Sandalwood Theme */
.product-visual-sandalwood {
    background: linear-gradient(135deg, #8B6F47 0%, #6B4E37 50%, #5D4037 100%);
}

.product-visual-sandalwood::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(215, 204, 200, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite;
}

/* Citrus Theme */
.product-visual-citrus {
    background: linear-gradient(135deg, #F4A460 0%, #D2691E 50%, #CD853F 100%);
}

.product-visual-citrus::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

/* Mint Theme */
.product-visual-mint {
    background: linear-gradient(135deg, #7FB069 0%, #5A8A5A 50%, #4A7C59 100%);
}

.product-visual-mint::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -15%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(215, 204, 200, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6.5s ease-in-out infinite reverse;
}

/* Eucalyptus Theme */
.product-visual-eucalyptus {
    background: linear-gradient(135deg, #6B8E6B 0%, #5A7A5A 50%, #4A6B4A 100%);
}

.product-visual-eucalyptus::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 20%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(215, 204, 200, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 5.5s ease-in-out infinite;
}

/* Rosemary Theme */
.product-visual-rosemary {
    background: linear-gradient(135deg, #8B9A5B 0%, #6B7A4B 50%, #5A6B3A 100%);
}

.product-visual-rosemary::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: 15%;
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(215, 204, 200, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 7.5s ease-in-out infinite;
}

/* Cinnamon Theme */
.product-visual-cinnamon {
    background: linear-gradient(135deg, #B8860B 0%, #8B6914 50%, #6B4E1E 100%);
}

.product-visual-cinnamon::after {
    content: '';
    position: absolute;
    top: 30%;
    left: -10%;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(255, 200, 100, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 4.5s ease-in-out infinite reverse;
}

/* Jasmine Theme */
.product-visual-jasmine {
    background: linear-gradient(135deg, #D4A5A5 0%, #B89595 50%, #9B7A7A 100%);
}

.product-visual-jasmine::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.5;
    }
}

.product-info {
    padding: 2rem;
    position: relative;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--taupe), transparent);
    opacity: 0.5;
}

.product-info h3 {
    color: var(--dark-chocolate);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.product-info h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--rich-earth);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.product-card:hover .product-info h3::before {
    height: 100%;
}

.product-card:hover .product-info h3 {
    color: var(--rich-earth);
}

.product-info p {
    color: var(--clay-brown);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.product-card:hover .product-info p {
    color: var(--dark-chocolate);
}

.product-info .btn {
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-info .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(215, 204, 200, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.product-info .btn:hover::before {
    width: 300px;
    height: 300px;
}

.product-info .btn span {
    position: relative;
    z-index: 1;
}

.testimonials-section {
    background: var(--clay-brown);
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--warm-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--taupe);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.testimonial-text {
    color: var(--dark-chocolate);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--clay-brown);
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--rich-earth) 0%, var(--dark-chocolate) 100%);
    text-align: center;
    padding: 4rem 1.5rem;
}

.cta-section h2 {
    color: var(--warm-cream);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.cta-section p {
    color: var(--warm-cream);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-section {
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: var(--dark-chocolate);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--rich-earth);
    min-width: 30px;
}

.contact-details h3 {
    color: var(--dark-chocolate);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-details p,
.contact-details a {
    color: var(--clay-brown);
    font-size: 0.9rem;
}

.contact-details a:hover {
    color: var(--rich-earth);
}

.contact-form {
    background: var(--warm-cream);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.1);
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    color: var(--dark-chocolate);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--taupe);
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rich-earth);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.map-container {
    width: 100%;
    height: 350px;
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: var(--dark-chocolate);
    color: var(--warm-cream);
    padding: 2rem 1.5rem 1rem;
    font-size: 0.85rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: var(--warm-cream);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--taupe);
    font-size: 0.85rem;
}

.footer-section a:hover {
    color: var(--warm-cream);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rich-earth);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--taupe);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--warm-cream);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-chocolate);
    color: var(--warm-cream);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.privacy-popup.show {
    transform: translateY(0);
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.privacy-popup-text {
    flex: 1;
    font-size: 0.9rem;
}

.privacy-popup-text a {
    color: var(--warm-cream);
    text-decoration: underline;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
}

.policy-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 1.5rem 3rem;
}

.policy-page h1 {
    color: var(--dark-chocolate);
    margin-bottom: 1.5rem;
}

.policy-page h2 {
    color: var(--dark-chocolate);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-page p {
    color: var(--clay-brown);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--clay-brown);
}

.policy-page li {
    margin-bottom: 0.5rem;
}

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem 3rem;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--rich-earth);
    margin-bottom: 1.5rem;
}

.thank-you-content h1 {
    color: var(--dark-chocolate);
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: var(--clay-brown);
    margin-bottom: 2rem;
}

/* Process Section */
.process-section {
    background: white;
    padding: 4rem 1.5rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    background: var(--warm-cream);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--rich-earth);
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.15);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--rich-earth);
    color: var(--warm-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.process-icon {
    font-size: 3rem;
    color: var(--rich-earth);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.process-step h3 {
    color: var(--dark-chocolate);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--clay-brown);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, var(--warm-cream) 0%, white 100%);
    padding: 4rem 1.5rem;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-image {
    position: relative;
}

.benefits-image-shape {
    width: 100%;
    height: 400px;
    background: var(--clay-brown);
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.benefits-image-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-text h2 {
    color: var(--dark-chocolate);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.benefits-text > p {
    color: var(--clay-brown);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--clay-brown);
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefits-list li i {
    color: var(--rich-earth);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefits-list li span {
    flex: 1;
}

/* Care Section */
.care-section {
    background: white;
    padding: 4rem 1.5rem;
}

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

.care-card {
    background: var(--warm-cream);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--taupe);
}

.care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.15);
    background: white;
}

.care-icon {
    font-size: 2.5rem;
    color: var(--rich-earth);
    margin-bottom: 1rem;
}

.care-card h3 {
    color: var(--dark-chocolate);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.care-card p {
    color: var(--clay-brown);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Seasonal Section */
.seasonal-section {
    background: linear-gradient(135deg, var(--clay-brown) 0%, var(--rich-earth) 100%);
    padding: 4rem 1.5rem;
}

.seasonal-section .section-header h2,
.seasonal-section .section-header p {
    color: var(--warm-cream);
}

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

.seasonal-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.seasonal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--rich-earth), var(--clay-brown));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.seasonal-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.seasonal-spring .seasonal-icon { color: #7FB069; }
.seasonal-summer .seasonal-icon { color: #F4A460; }
.seasonal-autumn .seasonal-icon { color: #B8860B; }
.seasonal-winter .seasonal-icon { color: #8B9A5B; }

.seasonal-card h3 {
    color: var(--dark-chocolate);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.seasonal-card > p {
    color: var(--clay-brown);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.seasonal-scents {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.seasonal-scents li {
    color: var(--clay-brown);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--taupe);
}

.seasonal-scents li:last-child {
    border-bottom: none;
}

.seasonal-scents li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rich-earth);
    font-size: 1.5rem;
    line-height: 1;
}

/* Stats Section */
.stats-section {
    background: var(--dark-chocolate);
    padding: 4rem 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: var(--warm-cream);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: var(--warm-cream);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--taupe);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: var(--rich-earth);
        padding: 5rem 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero {
        min-height: auto;
        padding: 5rem 1.5rem 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image-shape {
        height: 300px;
    }

    .about-content,
    .contact-container,
    .benefits-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .products-grid,
    .testimonials-grid,
    .process-timeline,
    .care-grid,
    .seasonal-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .benefits-image-shape {
        height: 300px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .privacy-popup-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .privacy-popup-buttons {
        width: 100%;
    }

    .privacy-popup-buttons .btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .product-card{
        padding: 10px!important;
    }
    .logo span{
        display: none;
    }
    body {
        font-size: 14px;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }

    section {
        padding: 2.5rem 1rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .feature-card,
    .product-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .product-visual {
        height: 220px;
    }

    .product-icon {
        font-size: 3.5rem;
    }

    .product-info {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .process-step,
    .care-card,
    .seasonal-card {
        padding: 1.5rem;
    }

    .benefits-image-shape {
        height: 250px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .process-icon,
    .care-icon,
    .seasonal-icon {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }

    section {
        padding: 2rem 0.8rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }
}
