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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
}

.banner-container {
    --s: 400px;

    display: flex;
    overflow: hidden;
    position: relative;
    background: lavender;
    height: var(--s);
}

.banner-track {
    display: flex;
    width: max-content;
    animation: scroll var(--banner-duration, 60s) linear infinite;
}

.banner-track img {
    height: var(--s);
    width: auto;
    flex-shrink: 0;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}




.banner-container:hover img {
    animation-play-state: paused;
}

.hero {
    background: lavender;
    color: black;
    text-align: center;
    padding: 1rem 2rem 1rem;
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 600px;
    max-height: 400px;
    width: auto;
    height: auto;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: orange;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-link {
    color: #555;
    transition: color 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
}

.social-link:hover {
    color: #7b68a4;
    transform: scale(1.2);
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
    background: lavender;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        #c8a8e0,
        #c8a8e0 6px,
        transparent 6px,
        transparent 12px
    );
}

.divider-flower {
    font-size: 1rem;
    transition: transform 0.3s;
}

.divider-flower:hover {
    transform: scale(1.3);
}

.about {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.contact {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact button.cta-button {
    background: orange;
    width: 100%;
}

.contact button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.flash-message {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.flash-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.footer-nav {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-nav a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: orange;
}

.newsletter {
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.newsletter p {
    margin-bottom: 2rem;
    color: #666;
}

.newsletter form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter input[type="email"] {
    flex-grow: 1;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #333333;
}

.newsletter button.cta-button {
    width: auto;
    padding: 10px 30px;
}

.featured-products {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.featured-products h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image-link {
    display: block;
    text-decoration: none;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.product-placeholder {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #999;
    font-size: 1rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.product-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.product-shop-btn {
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about h2,
    .contact h2 {
        font-size: 2rem;
    }

    .featured-products h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card img,
    .product-placeholder {
        height: 220px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}