* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}


body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f6ef;
    color: #3e2f1c;
}

/* Top Bar */
.top-bar {
    background: #5b3a1e;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 14px;
}

/* Navbar */
.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 25px;
}

.navbar ul li a {
    text-decoration: none;
    color: #3e2f1c;
    font-weight: 500;
    transition: 0.3s;
}

.navbar ul li a:hover {
    color: #8a5c2d;
}

/* Hero */
.hero-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    min-height: 85vh;
}

.hero-content {
    max-width: 50%;
    animation: fadeSlide 1.2s ease forwards;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: #1F4D3A;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-image img {
    width: 500px;
    animation: fadeSlideRight 1.5s ease forwards;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background:  #1F4D3A;
    color: white;
    padding: 18px;
    border-radius: 50%;
    font-size: 22px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media(max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image img {
        width: 100%;
        margin-top: 40px;
    }

    .navbar {
        flex-direction: column;
    }

    .navbar ul {
        margin-top: 15px;
    }
}

/* Categories Section */

.categories {
    padding: 80px 0;
    background: #fffdf7;
    text-align: center;
    overflow: hidden;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    color: #3e2f1c;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 30s linear infinite;
}

.category-card {
    width: 250px;
    margin: 0 20px;
    text-align: center;
    transition: 0.3s;
}

.category-card img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    background: #5b3a1e;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.category-card p {
    margin-top: 15px;
    font-weight: 600;
    font-size: 18px;
}

.category-card:hover img {
    transform: scale(1.08);
}

.slider:hover .slide-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Best Sellers */

.best-sellers {
    padding: 80px 5%;
    background: #f7f3ea;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-card h3 {
    margin-bottom: 10px;
}

.price {
    color: #7a5b3c;
    margin-bottom: 20px;
}

.quantity-select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.whatsapp-order {
    width: 100%;
    padding: 12px;
    background:  #1F4D3A;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.whatsapp-order:hover {
    background: #1ebd5a;
}



/* Animated Strip */

.animated-strip {
    background: #5b3a1e;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    font-weight: 500;
}

.strip-track {
    display: inline-block;
    animation: stripScroll 20s linear infinite;
}

.strip-track span {
    margin-right: 50px;
}

@keyframes stripScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Bundles */

.bundles {
    padding: 80px 5%;
    background: #fffdf7;
    text-align: center;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.bundle-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s;
}

.bundle-card:hover {
    transform: translateY(-10px);
}

.bundle-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    margin-bottom: 20px;
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e63946;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.badge.limited {
    background: #ff7f11;
}

.old-price {
    text-decoration: line-through;
    color: #999;
}

.new-price {
    font-size: 22px;
    font-weight: 700;
    color: #3e2f1c;
    margin-bottom: 10px;
}

.bundle-desc {
    font-size: 14px;
    margin-bottom: 20px;
}

.bundle-order {
    background:  #1F4D3A;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.bundle-order:hover {
    background: #1ebd5a;
}


/* Farm Video Section */

.farm-video-section {
    padding: 100px 5%;
    background: #f9f6ef;
    text-align: center;
}

.farm-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.farm-header p {
    color: #7a5b3c;
    margin-bottom: 50px;
}

.video-wrapper {
    position: relative;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.farm-video {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.video-wrapper:hover .farm-video {
    transform: scale(1.05);
}

/* Controls */

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-controls button {
    background: #6B3E26;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.video-controls input[type="range"] {
    width: 80px;
}

/* Responsive */

@media(max-width: 768px) {
    .farm-header h2 {
        font-size: 28px;
    }
}


/* Testimonials */

.testimonials {
    padding: 100px 5%;
    background: #fffdf7;
    text-align: center;
}

.testimonial-container {
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
    overflow: hidden;
}

.testimonial {
    display: none;
    align-items: center;
    gap: 60px;
    animation: fadeIn 0.6s ease;
}

.testimonial.active {
    display: flex;
}

.testimonial-image img {
    width: 400px;
    border-radius: 20px;
    object-fit: cover;
}

.testimonial-content {
    text-align: left;
    max-width: 500px;
}

.testimonial-content h3 {
    margin-bottom: 10px;
}

.stars {
    color: #C6A85C;
    margin-bottom: 15px;
}

.testimonial-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #5a4a3a;
}

.testimonial-content h4 {
    font-weight: 500;
    color: #3e2f1c;
}

.testimonial-nav {
    margin-top: 30px;
}

.testimonial-nav button {
    background: #6B3E26;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    font-size: 18px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */

@media(max-width: 900px) {
    .testimonial {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-content {
        text-align: center;
    }

    .testimonial-image img {
        width: 100%;
        max-width: 350px;
    }
}


/* Footer */

.footer {
    background: #f3efe6;
    padding-top: 80px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 0 5% 60px;
    flex-wrap: wrap;
}

.footer-brand img {
    width: 160px;
    margin-bottom: 15px;
}

.footer-brand p {
    max-width: 320px;
    color: #5a4a3a;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px;
    color: #3e2f1c;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    color: #5a4a3a;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #5a4a3a;
}

/* Social Icons */

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: #6B3E26;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #4f2c1b;
    transform: translateY(-3px);
}

/* Bottom Bar */

.footer-bottom {
    background: #6B3E26;
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-bottom a {
    color: white;
    text-decoration: underline;
}

.powered-by {
    opacity: 0.9;
}

/* Responsive */

@media(max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
