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

/* ---- Global polish ---- */
body {
    font-family: 'Inter', sans-serif;
}

/* ---- Feature badges row ---- */
.plant-based {
    text-align: center;
    padding: 22px 16px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f5e9;
    transition: box-shadow .25s, transform .25s;
    box-shadow: 0 2px 12px rgba(26, 92, 56, .06);
}

.plant-based:hover {
    box-shadow: 0 8px 28px rgba(26, 92, 56, .13);
    transform: translateY(-4px);
}

.plant-based img {
    width: 52px;
    margin-bottom: 10px;
}

.plant-based a {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a5c38;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: .2px;
}

/* ---- Hero tweaks ---- */
.hero-section {
    padding-top: 140px !important;
    padding-bottom: 80px !important;
    min-height: auto !important;
}

.hero-img img {
    max-width: 100% !important;
    height: auto !important;
    margin-top: 20px;
}

/* ---- Section headings ---- */
.heading h6 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a5c38;
    margin-bottom: 6px;
}

.heading h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

/* ---- Product cards ---- */
.products.two {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecef;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    margin-bottom: 24px;
    position: relative;
}

.products.two:hover {
    box-shadow: 0 10px 32px rgba(26, 92, 56, .14);
    transform: translateY(-5px);
}

.products-img {
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #f8fafc;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .4s ease;
}

.products.two:hover .products-img img {
    transform: scale(1.06);
}

.products.two>a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    padding: 14px 16px 4px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .18s;
}

.products.two>a:hover {
    color: #1a5c38;
}

.products.two h4 {
    padding: 2px 16px 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1a5c38;
    margin: 0;
}

.products.two h4 del {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
    margin-right: 4px;
}

.products.two ul.star {
    list-style: none;
    padding: 0 16px 4px;
    display: flex;
    gap: 2px;
    margin: 0;
}

.products.two ul.star li i {
    font-size: 11px;
    color: #f59e0b;
}

/* Wishlist icon */
.products.two a.wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    transition: background .18s, transform .18s;
    z-index: 2;
}

.products.two a.wishlist:hover {
    background: #fee2e2;
    transform: scale(1.12);
}

.products.two a.wishlist i {
    color: #ef4444;
    font-size: 13px;
}

/* Add to Cart button */
.products.two button.add-to-cart,
.products.two .add-to-cart {
    display: block;
    width: calc(100% - 32px);
    margin: 4px 16px 16px;
    padding: 11px 0;
    background: linear-gradient(135deg, #1a5c38, #2d9459);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .22s;
    text-align: center;
    text-decoration: none;
    letter-spacing: .3px;
    box-shadow: 0 3px 10px rgba(26, 92, 56, .25);
}

.products.two button.add-to-cart:hover,
.products.two .add-to-cart:hover {
    background: linear-gradient(135deg, #134428, #1a5c38);
    box-shadow: 0 6px 18px rgba(26, 92, 56, .38);
    transform: translateY(-1px);
}

.products.two button.add-to-cart:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

/* ---- Money-back banner ---- */
.money-back {
    border-radius: 18px;
    padding: 28px 36px;
    margin-top: 40px;
}

.money-back h4 {
    font-size: 22px;
    font-weight: 800;
}

/* ---- Top Selling section ---- */
.products-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #475569;
}

.products-text ul li i {
    color: #1a5c38;
    margin-top: 2px;
}

/* ---- Testimonials section ---- */
.testimonials-section {
    background: linear-gradient(135deg, #f0fdf4, #f8fafc);
    padding: 72px 0;
}

.testimonials-section .heading h2 {
    color: #0f172a;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e8ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    height: 100%;
    position: relative;
    transition: box-shadow .25s, transform .25s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(26, 92, 56, .12);
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '\201C';
    font-size: 72px;
    color: #bbf7d0;
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 18px;
    line-height: 1;
}

.testimonial-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 24px 0 16px;
    font-style: italic;
}

.testimonial-card .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a5c38, #2d9459);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 700;
    font-size: 14px;
    color: #0f172a;
}

.reviewer-city {
    font-size: 12px;
    color: #94a3b8;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: 11px;
}

/* ---- Trust strip ---- */
.trust-strip {
    background: #0f172a;
    padding: 20px 0;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    font-weight: 500;
}

.trust-item i {
    color: #4ade80;
    font-size: 16px;
}

/* ---- FAQ accordion ---- */
.accordion-item {
    border-radius: 12px;
    border: 1px solid #e8ecef;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(26, 92, 56, .08);
}

.accordion-item.active {
    border-color: #bbf7d0;
}

.accordion-item a.heading {
    background: #f8fafc;
    border-radius: 0;
    padding: 16px 20px;
}

.accordion-item.active a.heading {
    background: #f0fdf4;
}

.accordion-item .title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.accordion-item .content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    padding: 14px 20px;
    margin: 0;
}

/* ---- CTA float animation ---- */
@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.selling-products img:first-child {
    animation: floatUp 4s ease-in-out infinite;
}

/* ---- View all btn ---- */
.center {
    text-align: center;
    margin-top: 20px;
}

.center .btn,
.products-text .btn {
    background: linear-gradient(135deg, #1a5c38, #2d9459);
    color: #fff;
    border-radius: 10px;
    padding: 13px 32px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(26, 92, 56, .28);
    transition: all .22s;
    display: inline-block;
    text-decoration: none;
    border: none;
}

.center .btn:hover,
.products-text .btn:hover {
    background: linear-gradient(135deg, #134428, #1a5c38);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 92, 56, .38);
    color: #fff;
}

/* ---- Sticky Header ---- */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #1a5c38;
    /* Changed to dark green so white text/logo is visible */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.top-bar {
    display: none !important;
}

.two-bar {
    padding: 5px 12px 5px 0 !important;
}

.logo img {
    max-width: 80px !important;
}