:root {

    --primary: #2E7D32;
    --dark: #1B5E20;
    --light: #F7FBF6;
    --border: #EAEAEA;
    --text: #333333;
}

* {

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

body {

    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fff;
}

/* TOP BAR */

.top-bar {

    background: var(--dark);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-content {

    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

/* HEADER */

.main-header {

    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {

    height: 55px;
}

.header-search {

    width: 520px;
    display: flex;
    border: 2px solid var(--primary);
    border-radius: 50px;
    overflow: hidden;
}

.header-search input {

    flex: 1;
    border: none;
    padding: 12px 18px;
    outline: none;
}

.header-search button {

    width: 65px;
    border: none;
    background: var(--primary);
    color: #fff;
}

/* NAV */

.nav-link {

    color: #444;
    font-weight: 500;
}

.nav-link:hover {

    color: var(--primary);
}

.btn-login {

    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 8px;
}

.btn-login:hover {

    background: var(--primary);
    color: #fff;
}

.btn-signup {

    background: var(--primary);
    color: #fff;
    border-radius: 8px;
}

.btn-signup:hover {

    background: var(--dark);
    color: #fff;
}

/* CATEGORY */

.category-menu {

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.category-scroll {

    display: flex;
    overflow: auto;
    gap: 15px;
    padding: 10px 0;
    scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {

    display: none;
}

.cat-item {

    white-space: nowrap;
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    transition: .3s;
}

.cat-item:hover,
.cat-item.active {

    background: var(--primary);
    color: #fff;
}

/*============================
        HERO SLIDER
============================*/

.hero-slider {

    position: relative;
}

.carousel-item {

    position: relative;
}

.carousel-item img {

    width: 100%;
    height: 520px;

    object-fit: cover;
}

.slider-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .35);
}

.slider-content {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
}

.slider-text {

    max-width: 520px;

    color: #fff;
}

.slider-text h1 {

    font-size: 58px;

    font-weight: 700;

    line-height: 1.1;

    margin-bottom: 20px;
}

.slider-text p {

    font-size: 19px;

    margin-bottom: 30px;
}

.shop-btn {

    background: #2E7D32;

    color: #fff;

    border-radius: 40px;

    padding: 15px 35px;

    font-weight: 600;
}

.shop-btn:hover {

    background: #1B5E20;

    color: #fff;
}

.carousel-control-next,
.carousel-control-prev {

    width: 70px;
}

.carousel-indicators {

    bottom: 20px;
}

.carousel-indicators button {

    width: 12px !important;

    height: 12px !important;

    border-radius: 50%;

    margin: 0 5px;
}

/*==============================
        SECTION HEADER
===============================*/

.collections-section {

    padding: 70px 0 30px;

    background: #f8fbf6;
}

.section-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;
}

.section-header h2 {

    font-size: 34px;

    font-weight: 700;

    color: #2E7D32;

    position: relative;
}

.section-header h2::before {

    content: "";

    width: 5px;

    height: 38px;

    background: #2E7D32;

    position: absolute;

    left: -18px;

    top: 4px;

    border-radius: 10px;
}

.section-header a {

    text-decoration: none;

    color: #2E7D32;

    font-weight: 600;
}

/*==============================
      COLLECTION CARD
===============================*/

.collection-card {

    background: #fff;

    border-radius: 18px;

    padding: 30px 15px;

    display: block;

    text-align: center;

    text-decoration: none;

    color: #333;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);

    transition: .35s;
}

.collection-card:hover {

    transform: translateY(-8px);

    color: #2E7D32;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.collection-icon {

    font-size: 42px;

    margin-bottom: 18px;
}

.collection-card h6 {

    font-size: 15px;

    font-weight: 600;

    margin: 0;

    line-height: 1.5;
}

/*=========================
      PROMO BANNER
==========================*/

.promo-banner-section {

    padding: 20px 0 70px;
}

.promo-banner {

    background: linear-gradient(135deg, #2E7D32, #4CAF50);

    border-radius: 30px;

    padding: 60px;

    color: #fff;

    overflow: hidden;

    position: relative;
}

.promo-banner::before {

    content: "";

    width: 260px;

    height: 260px;

    background: rgba(255, 255, 255, .08);

    border-radius: 50%;

    position: absolute;

    right: -80px;

    top: -80px;
}

.promo-banner::after {

    content: "";

    width: 180px;

    height: 180px;

    background: rgba(255, 255, 255, .05);

    border-radius: 50%;

    position: absolute;

    left: -60px;

    bottom: -60px;
}

.offer-badge {

    display: inline-block;

    background: rgba(255, 255, 255, .18);

    padding: 8px 18px;

    border-radius: 30px;

    margin-bottom: 20px;

    font-weight: 500;
}

.promo-banner h2 {

    font-size: 52px;

    font-weight: 700;

    margin-bottom: 20px;
}

.promo-banner h2 span {

    color: #FFD54F;
}

.promo-banner p {

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 30px;

    max-width: 500px;
}

.promo-btn {

    background: #fff;

    color: #2E7D32;

    padding: 14px 32px;

    border-radius: 40px;

    font-weight: 600;
}

.promo-btn:hover {

    background: #1B1B1B;

    color: #fff;
}

.promo-image {

    max-height: 360px;

    position: relative;

    z-index: 2;
}

/*=============================
        PRODUCT SECTION
=============================*/

.product-section {

    background: #f8fbf7;
}

/* Heading */

.section-heading {

    margin-bottom: 30px;
}

.section-heading .title {

    display: flex;

    align-items: center;

    gap: 12px;
}

.section-heading span {

    width: 5px;

    height: 34px;

    background: #2E7D32;

    border-radius: 20px;
}

.section-heading h2 {

    margin: 0;

    color: #1B5E20;

    font-size: 34px;

    font-weight: 700;
}

.view-all {

    color: #2E7D32;

    text-decoration: none;

    font-weight: 600;
}

/* Card */

.product-card {

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #e7e7e7;

    transition: .35s;

    position: relative;

    height: 100%;
}

.product-card:hover {

    transform: translateY(-8px);

    border-color: #2E7D32;

    box-shadow: 0 18px 35px rgba(0, 0, 0, .10);
}

/* Discount */

.discount-badge {

    position: absolute;

    top: 14px;

    left: 14px;

    background: #F44336;

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    padding: 6px 12px;

    border-radius: 20px;

    z-index: 5;
}

/* Image */

.product-image {

    padding: 18px;

    overflow: hidden;

    aspect-ratio: 1/1;
}

.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;
}

.product-card:hover .product-image img {

    transform: scale(1.08);
}

/* Body */

.product-body {

    padding: 18px;
}

.brand {

    color: #2E7D32;

    text-transform: uppercase;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 8px;
}

.product-name {

    font-size: 20px;

    font-weight: 600;

    margin-bottom: 14px;

    min-height: 52px;
}

/* Price */

.price-box {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;
}

.offer-price {

    color: #2E7D32;

    font-size: 30px;

    font-weight: 700;
}

.actual-price {

    color: #888;

    text-decoration: line-through;
}

/* Buttons */

.product-buttons {

    display: flex;

    gap: 10px;
}

.btn-view {

    flex: 1;

    background: #2E7D32;

    color: #fff;

    border-radius: 10px;

    font-weight: 600;
}

.btn-view:hover {

    background: #1B5E20;

    color: #fff;
}

.btn-cart {

    width: 48px;

    border: 1px solid #2E7D32;

    color: #2E7D32;

    border-radius: 10px;
}

.btn-cart:hover {

    background: #2E7D32;

    color: #fff;
}

/*=========================
    TESTIMONIALS
==========================*/

.testimonial-section {

    background: #f8fbf7;

    padding: 80px 0;
}

.testimonial-nav {

    display: flex;

    gap: 12px;
}

.testimonial-prev,
.testimonial-next {

    width: 42px;

    height: 42px;

    border: 1px solid #ddd;

    border-radius: 8px;

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    transition: .3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {

    background: #2E7D32;

    color: #fff;
}

.testimonial-card {

    background: #fff;

    border-radius: 16px;

    padding: 70px 25px 30px;

    position: relative;

    text-align: center;

    border: 1px solid #eee;

    height: 100%;

    transition: .35s;
}

.testimonial-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
}

.customer-image {

    width: 82px;

    height: 82px;

    border-radius: 50%;

    overflow: hidden;

    position: absolute;

    left: 50%;

    top: -40px;

    transform: translateX(-50%);

    border: 5px solid #fff;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.customer-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.testimonial-card h5 {

    margin-bottom: 6px;

    font-weight: 600;
}

.testimonial-card small {

    color: #666;

    display: block;

    margin-bottom: 20px;
}

.testimonial-card p {

    color: #666;

    font-style: italic;

    line-height: 1.8;

    min-height: 110px;
}

.rating {

    color: #FFC107;

    font-size: 18px;
}

/*=========================
      FOOTER FEATURES
==========================*/

.footer-features {

    background: #fff;

    border-top: 1px solid #eee;

    border-bottom: 1px solid #eee;

    padding: 35px 0;
}

.feature-box {

    transition: .3s;
}

.feature-box i {

    font-size: 34px;

    color: #2E7D32;

    margin-bottom: 12px;
}

.feature-box h6 {

    font-weight: 600;

    margin-bottom: 5px;
}

.feature-box p {

    color: #777;

    margin: 0;

    font-size: 14px;
}

.feature-box:hover {

    transform: translateY(-5px);
}

/*=========================
        FOOTER
==========================*/

.main-footer {

    background: #16361B;

    color: #fff;

    padding-top: 70px;
}

.footer-logo {

    height: 60px;

    margin-bottom: 25px;
}

.footer-about {

    color: #b6c8b8;

    line-height: 1.9;
}

.footer-social {

    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.footer-social a {

    width: 40px;

    height: 40px;

    border: 1px solid rgba(255, 255, 255, .15);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    transition: .3s;
}

.footer-social a:hover {

    background: #2E7D32;
}

.main-footer h5 {

    font-weight: 600;

    margin-bottom: 20px;

    position: relative;
}

.main-footer h5::after {

    content: "";

    width: 40px;

    height: 3px;

    background: #2E7D32;

    position: absolute;

    left: 0;

    bottom: -8px;
}

.main-footer ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

.main-footer ul li {

    margin-bottom: 14px;
}

.main-footer ul li a {

    color: #cbd5cb;

    text-decoration: none;

    transition: .3s;
}

.main-footer ul li a:hover {

    color: #fff;

    padding-left: 5px;
}

.contact-list li {

    color: #cbd5cb;

    line-height: 1.8;
}

.contact-list i {

    color: #2E7D32;

    margin-right: 10px;
}

.subscribe-btn {

    background: #2E7D32;

    color: #fff;
}

.subscribe-btn:hover {

    background: #1B5E20;

    color: #fff;
}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .1);

    margin-top: 60px;

    padding: 22px 0;

    color: #b6c8b8;

    font-size: 15px;
}