* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-cocoa: #3C2F2F;
    --amber-glow: #CC8B65;
    --soft-cream: #F9F4EF;
    --honey-gold: #E7C78A;
    --charcoal-ash: #1A1A1A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--soft-cream);
    color: var(--charcoal-ash);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(249, 244, 239, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(60, 47, 47, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-cocoa);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: var(--deep-cocoa);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--honey-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--deep-cocoa);
    display: block;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    height: 100vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 139, 101, 0.4), rgba(60, 47, 47, 0.6));
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--soft-cream);
    clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--honey-gold);
    color: var(--deep-cocoa);
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.btn:hover::before {
    animation: shimmer 1s ease;
    opacity: 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 199, 138, 0.4);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 48px;
    color: var(--deep-cocoa);
    margin-bottom: 60px;
}

.aromas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.aroma-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.aroma-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(60, 47, 47, 0.15);
}

.aroma-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.4s ease;
    z-index: 1;
}

.aroma-card:hover::before {
    border-color: var(--honey-gold);
}

.aroma-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--amber-glow);
    position: relative;
    z-index: 2;
}

.aroma-card h3 {
    font-size: 24px;
    color: var(--deep-cocoa);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.aroma-card p {
    color: var(--charcoal-ash);
    font-style: italic;
    position: relative;
    z-index: 2;
}

.crafted-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    padding: 60px 20px;
}

.crafted-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: var(--soft-cream);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.crafted-content h2 {
    font-size: 42px;
    color: var(--deep-cocoa);
    margin-bottom: 20px;
}

.crafted-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--charcoal-ash);
    margin-bottom: 20px;
}

.crafted-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.crafted-images img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(60, 47, 47, 0.2);
    transition: transform 0.4s ease;
}

.crafted-images img:hover {
    transform: scale(1.05);
}

.seasonal-highlight {
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.seasonal-product {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.seasonal-product img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(60, 47, 47, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.seasonal-product::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(231, 199, 138, 0.2), transparent);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.testimonials {
    background: var(--soft-cream);
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(60, 47, 47, 0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    color: var(--honey-gold);
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--charcoal-ash);
}

.testimonial-author {
    font-weight: 600;
    color: var(--deep-cocoa);
}

.cta-section {
    background: var(--deep-cocoa);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(231,199,138,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(231,199,138,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(231,199,138,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

footer {
    background: var(--charcoal-ash);
    color: white;
    padding: 60px 20px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--honey-gold);
}

.footer-section a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--honey-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid var(--amber-glow);
    color: var(--deep-cocoa);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--amber-glow);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    padding: 40px 20px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(60, 47, 47, 0.1);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(60, 47, 47, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover::before {
    border-color: var(--honey-gold);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--honey-gold);
    color: var(--deep-cocoa);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    color: var(--deep-cocoa);
    margin-bottom: 10px;
}

.product-info p {
    color: var(--charcoal-ash);
    margin-bottom: 15px;
    font-size: 14px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--honey-gold);
    font-family: 'Playfair Display', serif;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--deep-cocoa);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 20px;
    align-items: start;
}

.product-detail-image {
    position: sticky;
    top: 100px;
}

.product-detail-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(60, 47, 47, 0.3);
}

.product-detail-info h1 {
    font-size: 42px;
    color: var(--deep-cocoa);
    margin-bottom: 20px;
}

.product-detail-info .price {
    font-size: 32px;
    color: var(--honey-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

.aroma-notes {
    margin: 40px 0;
}

.aroma-notes h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--deep-cocoa);
}

.note-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.note-icon {
    width: 30px;
    height: 30px;
    color: var(--amber-glow);
}

.specs {
    margin: 40px 0;
    padding: 30px;
    background: var(--soft-cream);
    border-radius: 15px;
}

.specs h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--deep-cocoa);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(60, 47, 47, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.recommendations {
    margin: 60px 0;
}

.recommendations h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--deep-cocoa);
}

.about-hero {
    padding: 120px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--soft-cream), white);
}

.about-hero h1 {
    font-size: 56px;
    color: var(--deep-cocoa);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    color: var(--charcoal-ash);
    max-width: 800px;
    margin: 0 auto;
}

.story-section {
    padding: 80px 20px;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 42px;
    color: var(--deep-cocoa);
    margin-bottom: 30px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--charcoal-ash);
    margin-bottom: 25px;
}

.workshop-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 20px;
}

.workshop-gallery img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(60, 47, 47, 0.2);
}

.timeline {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    max-width: 100%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: -60px;
    width: 2px;
    background: var(--honey-gold);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--honey-gold);
    color: var(--deep-cocoa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.timeline-content h3 {
    font-size: 28px;
    color: var(--deep-cocoa);
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-ash);
}

.contact-hero {
    padding: 120px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--soft-cream), white);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="3" fill="rgba(204,139,101,0.1)"/><circle cx="150" cy="100" r="2" fill="rgba(204,139,101,0.1)"/><circle cx="100" cy="150" r="2.5" fill="rgba(204,139,101,0.1)"/></svg>');
    opacity: 0.3;
}

.contact-hero h1 {
    font-size: 56px;
    color: var(--deep-cocoa);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(60, 47, 47, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--deep-cocoa);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(60, 47, 47, 0.2);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber-glow);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.contact-info {
    margin-top: 60px;
    padding: 40px;
    background: var(--soft-cream);
    border-radius: 15px;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--deep-cocoa);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--amber-glow);
}

.fade-in {
    opacity: 1;
    transform: none;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

.aroma-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--honey-gold);
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
    animation: float-particle 6s ease-in-out infinite;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) translateX(-10px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(5px);
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 55px;
        left: -100%;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        background: var(--soft-cream);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(60, 47, 47, 0.1);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 0;
    }

    .nav-links a {
        display: block;
        padding: 18px 0;
        font-size: 18px;
        width: 100%;
        border-bottom: 1px solid rgba(60, 47, 47, 0.1);
        color: var(--deep-cocoa);
    }

    .nav-links a:hover {
        color: var(--honey-gold);
        padding-left: 10px;
        transition: all 0.3s ease;
    }

    .nav-links a::after {
        display: none;
    }

    .burger {
        display: flex;
        z-index: 1000;
    }

    .logo {
        font-size: 20px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
        margin-top: 70px;
        overflow: hidden;
    }

    .hero::before {
        clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 100%);
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .crafted-section {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 60px 20px !important;
    }

    .crafted-section::before {
        display: none !important;
    }

    .crafted-content {
        order: 2;
    }

    .crafted-images {
        order: 1;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        position: static;
    }

    .collection-item {
        grid-template-columns: 1fr !important;
    }

    .collection-content {
        order: 2 !important;
    }

    .collection-image {
        order: 1 !important;
    }

    .aromas-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding: 60px 15px;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr !important;
        gap: 20px !important;
        margin-bottom: 40px !important;
    }

    .timeline-number {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
        flex-shrink: 0;
    }

    .timeline-item::before {
        left: 30px !important;
    }

    .timeline-content h3 {
        font-size: 22px !important;
    }

    .timeline-content p {
        font-size: 14px !important;
    }

    .workshop-gallery {
        grid-template-columns: 1fr !important;
    }

    .about-hero {
        padding: 100px 20px 60px !important;
    }


    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 18px;
    }

    .story-section {
        padding: 60px 20px !important;
    }

    .story-content h2 {
        font-size: 32px;
    }

    .contact-hero {
        padding: 100px 20px 60px !important;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    h2[style*="font-size: 42px"] {
        font-size: 32px !important;
    }

    h3[style*="font-size: 24px"] {
        font-size: 20px !important;
    }

    h4[style*="font-size: 20px"] {
        font-size: 18px !important;
    }

    p[style*="font-size: 18px"] {
        font-size: 16px !important;
    }

    /* Responsive grid layouts for index page */
    div[style*="grid-template-columns: 1fr 2fr"],
    div[style*="grid-template-columns: 2fr 1fr"],
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }

    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    div[style*="grid-template-columns: 1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Adjust flex layouts */
    div[style*="display: flex"][style*="gap: 30px"],
    div[style*="display: flex"][style*="gap: 60px"] {
        flex-direction: column !important;
        gap: 20px !important;
    }

    div[style*="min-width: 150px"],
    div[style*="min-width: 120px"] {
        min-width: 100% !important;
        flex: 1 1 100% !important;
    }

    /* Make images responsive */
    img[style*="width: 400"],
    img[style*="width: 500"],
    img[style*="width: 600"] {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
    }

    [style*="gap: 60px"] {
        gap: 30px !important;
    }

    [style*="gap: 40px"] {
        gap: 25px !important;
    }

    [style*="padding: 100px"] {
        padding: 60px 20px !important;
    }

    [style*="padding: 80px"] {
        padding: 50px 20px !important;
    }

    [style*="grid-template-columns: 1fr 2fr"],
    [style*="grid-template-columns: 2fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    [style*="grid-template-columns: repeat(3"],
    [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }

    .crafted-images {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .crafted-images img {
        width: 100%;
        height: auto;
    }

    .hero-content p {
        font-size: 18px;
    }

    .seasonal-highlight {
        padding: 60px 20px !important;
    }

    .seasonal-product {
        max-width: 100% !important;
        margin-bottom: 30px !important;
    }

    .seasonal-product img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    section[style*="position: relative"][style*="overflow: hidden"] {
        overflow: visible !important;
    }

    section[style*="position: relative"] > div[style*="position: absolute"][style*="clip-path"] {
        display: none !important;
    }

    .container > div[style*="grid-template-columns: 1fr 2fr"],
    .container > div[style*="grid-template-columns: 2fr 1fr"],
    .container > div[style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }

    .container > div[style*="grid-template-columns: 1fr 2fr"] > div,
    .container > div[style*="grid-template-columns: 2fr 1fr"] > div,
    .container > div[style*="grid-template-columns: 1fr 1fr"] > div {
        margin-bottom: 30px;
    }

    .container > div[style*="grid-template-columns: 1fr 2fr"] > div:last-child,
    .container > div[style*="grid-template-columns: 2fr 1fr"] > div:last-child,
    .container > div[style*="grid-template-columns: 1fr 1fr"] > div:last-child {
        margin-bottom: 0;
    }

    div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    div[style*="display: flex"][style*="gap: 30px"],
    div[style*="display: flex"][style*="gap: 20px"] {
        flex-direction: column !important;
        gap: 20px !important;
    }

    div[style*="min-width: 150px"],
    div[style*="min-width: 120px"] {
        min-width: 100% !important;
    }

    img[style*="width: 400"],
    img[style*="width: 500"],
    img[style*="width: 600"] {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .cta-section {
        padding: 60px 20px !important;
    }

    .cta-content h2 {
        font-size: 32px !important;
    }

    .cta-content p {
        font-size: 16px !important;
    }
}

@media (max-width: 320px) {
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
        position: relative;
    }

    .logo {
        font-size: 16px;
        white-space: nowrap;
        flex-shrink: 0;
        max-width: calc(100vw - 60px);
    }

    header {
        padding: 15px 0 !important;
    }

    nav {
        max-width: 100vw;
        padding: 0 10px;
        width: 100%;
    }

    .nav-links {
        padding: 70px 20px 20px !important;
    }

    .nav-links a {
        font-size: 16px !important;
        padding: 15px 0 !important;
    }

    .hero {
        height: 60vh;
        min-height: 350px;
        margin-top: 60px;
        overflow: hidden;
    }

    .hero::before {
        clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
        height: 80px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .aroma-card {
        padding: 30px 20px;
    }

    .product-info {
        padding: 20px;
    }

    .product-price {
        font-size: 20px;
    }

    .crafted-images {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .crafted-section {
        padding: 40px 15px !important;
        gap: 30px !important;
    }

    .crafted-content {
        order: 2;
    }

    .crafted-images {
        order: 1;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    .timeline {
        padding: 40px 10px;
    }

    .timeline-item {
        grid-template-columns: 50px 1fr !important;
        gap: 15px !important;
        margin-bottom: 30px !important;
    }

    .timeline-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
        flex-shrink: 0;
    }

    .timeline-item::before {
        left: 25px !important;
    }

    .timeline-content h3 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .timeline-content p {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    .about-hero {
        padding: 80px 15px 40px !important;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .story-section {
        padding: 40px 15px !important;
    }

    .story-content h2 {
        font-size: 28px;
    }

    .contact-hero {
        padding: 80px 15px 40px !important;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    h2[style*="font-size: 42px"] {
        font-size: 24px !important;
    }

    h2[style*="font-size: 36px"] {
        font-size: 22px !important;
    }

    h2[style*="font-size: 32px"] {
        font-size: 20px !important;
    }

    h3[style*="font-size: 24px"] {
        font-size: 18px !important;
    }

    h3[style*="font-size: 32px"] {
        font-size: 22px !important;
    }

    h4[style*="font-size: 20px"] {
        font-size: 16px !important;
    }

    p[style*="font-size: 18px"] {
        font-size: 14px !important;
    }

    [style*="gap: 60px"],
    [style*="gap: 80px"] {
        gap: 20px !important;
    }

    [style*="gap: 40px"] {
        gap: 15px !important;
    }

    [style*="gap: 30px"] {
        gap: 15px !important;
    }

    [style*="padding: 100px"] {
        padding: 40px 15px !important;
    }

    [style*="padding: 80px"] {
        padding: 40px 15px !important;
    }

    [style*="margin-bottom: 50px"] {
        margin-bottom: 30px !important;
    }

    [style*="margin-bottom: 40px"] {
        margin-bottom: 25px !important;
    }

    [style*="margin-bottom: 30px"] {
        margin-bottom: 20px !important;
    }

    [style*="margin-bottom: 25px"] {
        margin-bottom: 15px !important;
    }

    .workshop-gallery {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .workshop-gallery img {
        width: 100%;
        height: auto;
    }

    section[style*="padding: 100px"] {
        padding: 40px 15px !important;
    }

    section[style*="padding: 80px"] {
        padding: 40px 15px !important;
    }

    [style*="grid-template-columns: 1fr 2fr"],
    [style*="grid-template-columns: 2fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }

    [style*="grid-template-columns: 1fr 2fr"] > *,
    [style*="grid-template-columns: 2fr 1fr"] > *,
    [style*="grid-template-columns: 1fr 1fr"] > * {
        margin-bottom: 20px;
    }

    [style*="grid-template-columns: 1fr 2fr"] > *:last-child,
    [style*="grid-template-columns: 2fr 1fr"] > *:last-child,
    [style*="grid-template-columns: 1fr 1fr"] > *:last-child {
        margin-bottom: 0;
    }

    [style*="grid-template-columns: repeat(3"],
    [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    [style*="display: flex"] {
        flex-direction: column !important;
    }

    [style*="flex-direction: row"] {
        flex-direction: column !important;
    }

    .crafted-images {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .crafted-images img {
        width: 100%;
        height: auto;
    }

    img[style*="width"] {
        max-width: 100% !important;
        height: auto !important;
    }

    .hero-content p {
        font-size: 16px;
    }

    .seasonal-highlight {
        padding: 40px 15px !important;
    }

    .seasonal-product {
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    .seasonal-product img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    section[style*="position: relative"] {
        overflow: visible !important;
    }

    section[style*="position: relative"] > div[style*="position: absolute"] {
        display: none !important;
    }

    section[style*="clip-path"] {
        display: none !important;
    }

    .container > div[style*="grid-template-columns"] {
        display: block !important;
    }

    .container > div[style*="grid-template-columns"] > div {
        margin-bottom: 25px;
    }

    .container > div[style*="grid-template-columns"] > div:last-child {
        margin-bottom: 0;
    }

    div[style*="grid-template-columns: repeat(3"],
    div[style*="grid-template-columns: repeat(4"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    section[style*="position: relative"][style*="overflow: hidden"] {
        overflow: visible !important;
    }

    section[style*="position: relative"] > div[style*="position: absolute"][style*="clip-path"] {
        display: none !important;
    }

    div[style*="display: flex"] {
        flex-direction: column !important;
    }

    div[style*="min-width"] {
        min-width: 100% !important;
        flex: 1 1 100% !important;
    }

    img[style*="width: 400"],
    img[style*="width: 500"],
    img[style*="width: 600"] {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    div[style*="width: 90px"] {
        width: 75px !important;
        height: 75px !important;
    }

    div[style*="width: 90px"] span {
        font-size: 28px !important;
    }

    div[style*="width: 80px"],
    div[style*="width: 60px"] {
        width: 60px !important;
        height: 60px !important;
    }

    div[style*="width: 80px"] i,
    div[style*="width: 60px"] i {
        width: 30px !important;
        height: 30px !important;
    }

    .cta-section {
        padding: 40px 15px !important;
    }

    .cta-content h2 {
        font-size: 28px !important;
    }

    .cta-content p {
        font-size: 14px !important;
    }

    h3[style*="font-size: 32px"] {
        font-size: 24px !important;
    }

    div[style*="max-width: 800px"],
    div[style*="max-width: 900px"],
    div[style*="max-width: 600px"] {
        max-width: 100% !important;
    }

    .seasonal-highlight h3 {
        font-size: 24px !important;
    }

    .seasonal-highlight p {
        font-size: 16px !important;
        padding: 0 15px;
    }

    div[style*="text-align: center"] {
        padding: 0 15px;
    }

    div[style*="width: 90px"] {
        width: 75px !important;
        height: 75px !important;
    }

    div[style*="width: 90px"] span {
        font-size: 28px !important;
    }

    div[style*="width: 80px"] {
        width: 60px !important;
        height: 60px !important;
    }

    div[style*="width: 80px"] i {
        width: 30px !important;
        height: 30px !important;
    }

    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
    }

    .container {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
        padding: 0 10px !important;
    }

    section {
        overflow-x: hidden;
        max-width: 100vw;
    }

    header,
    nav,
    footer {
        max-width: 100vw;
    }

    header .container {
        padding: 0 10px !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    nav .container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 10px !important;
    }

    img,
    video,
    iframe,
    svg {
        max-width: 100% !important;
        height: auto !important;
    }

    table {
        max-width: 100%;
        overflow-x: auto;
        display: block;
    }
}

