* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage-green: #8DA399;
    --blush-pink: #FFCDD2;
    --cream: #FFF9C4;
    --dark-green: #5a7167;
    --text-dark: #2c3e2d;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fafafa;
    overflow-x: hidden;
    hyphens: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

header {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--dark-green) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-link img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

iframe {
    display: block;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: var(--sage-green);
    transition: left 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
}

nav.active {
    left: 0;
}

nav ul {
    list-style: none;
    padding: 1rem 0;
}

nav ul li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1.1rem;
}

nav ul li a:hover {
    background: var(--dark-green);
    padding-left: 2rem;
}

.hero {
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--cream) 100%);
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.hero-image {
    width: 100%;
    max-width: 300px;
    margin: 2rem auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--sage-green);
    color: white;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

section {
    padding: 3rem 1rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--sage-green);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '🌸';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.product-card:hover::before {
    content: '🌸';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    animation: petal-fall 1s ease;
}

@keyframes petal-fall {
    0% { transform: translateY(-10px) rotate(0deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(10px) rotate(180deg); opacity: 0; }
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--blush-pink), var(--cream));
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--sage-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.product-info p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.about-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.delivery-info {
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush-pink) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.delivery-info ul {
    list-style: none;
    padding-left: 0;
}

.delivery-info ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.delivery-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.instagram-placeholder {
    background: linear-gradient(135deg, var(--sage-green), var(--dark-green));
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.instagram-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--sage-green);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.9rem;
}

.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

footer {
    background: var(--dark-green);
    color: white;
    padding: 3rem 1rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--cream);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.3rem 0;
}

.footer-section ul li a:hover {
    color: var(--cream);
    padding-left: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.policy-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    color: var(--sage-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.thankyou-content {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 3rem auto;
}

.thankyou-content i {
    font-size: 4rem;
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.thankyou-content h1 {
    color: var(--sage-green);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .burger-menu {
        display: none;
    }

    nav {
        position: static;
        left: 0;
        background: transparent;
        box-shadow: none;
        width: auto;
    }

    nav ul {
        display: flex;
        gap: 2rem;
        padding: 0;
    }

    nav ul li {
        border-bottom: none;
    }

    nav ul li a {
        padding: 0.5rem 1rem;
        border-radius: 5px;
    }

    nav ul li a:hover {
        background: rgba(255,255,255,0.2);
        padding-left: 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .hero-image {
        max-width: 400px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .container {
        padding: 0 2rem;
    }
}

