:root {
    --primary-color: #2e4d41;
    --primary-hover: #1f362e;
    --accent-color: #538d78;
    --bg-color: #ffffff;
    --bg-light: #f7f7f7;
    --bg-gray: #e6e5e0;
    --text-dark: #333333;
    --text-muted: #777777;
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-pill: 50px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */
.announcement-bar {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.header-middle {
    padding: 15px 0;
    background: #fff;
}

.logo img {
    height: 50px;
}

.search-container {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.search-container input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    background: #f4f6f8;
    border: 1px solid #e0e4e8;
    border-radius: var(--radius-pill);
    font-size: 14px;
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-container svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--text-muted);
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icons span {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.header-icons svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-dark);
    fill: none;
}

.header-bottom {
    border-top: 1px solid #eee;
    padding: 15px 0;
}

.header-bottom .nav-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-bottom .nav-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.header-bottom .nav-links a:hover {
    color: var(--primary-color);
}

/* HERO SLIDER */
.hero-wrapper {
    padding: 20px 10px;
}

.hero-slider {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-slider .swiper-slide {
    height: 400px;
    background-size: cover;
    background-position: center;
}

.hero-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

/* BANNER IMAGE */
.banner-img {
    border: 1px solid #5a643c;
    border-radius: var(--radius-lg) var(--radius-lg);
    display: block;
    object-fit: cover;
}

@media (max-width: 576px) {
    .banner-img {
        border-radius: 15px;
        border-width: 1px;
    }
}

.feature-box {
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.feature-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.feature-box h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SECTION TITLES */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* CATEGORY SECTION */
.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-box {
    text-align: center;
    background: var(--bg-light);
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    padding: 25px 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.category-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(46, 77, 65, 0.12);
    transform: translateY(0px);
}

.category-icon {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1;
}

.category-box h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: visible;
    /* to allow button overflow if needed */
    position: relative;
    border: 1px solid transparent;
    /* prevents jump on hover */
    height: 100%;
}

.product-image-box {
    background: var(--bg-gray);
    height: 280px;
    /* padding: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-image-box img {
    /* max-height: 100%; */
    mix-blend-mode: multiply;
    width: 260px;
}

.product-info {
    padding: 20px 10px;
    position: relative;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price del {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 400;
    margin-left: 5px;
}

.product-discount {
    display: block;
    color: #3e8649;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
}

.add-to-bag {
    position: absolute;
    right: 15px;
    top: 0;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #3e8649;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(83, 141, 120, 0.3);
    cursor: pointer;
    transition: transform 0.3s;
}

.add-to-bag:hover {
    transform: translateY(-50%) scale(1.1);
}

.add-to-bag svg {
    fill: none;
    stroke: #fff;
    width: 20px;
    height: 20px;
}

/* VIEW ALL BUTTON */
.btn-view-all {
    display: inline-block;
    background: #3e8649;
    color: #fff;
    padding: 12px 35px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    /* margin-top: 30px; */
    border: 2px solid #3e8649;
}

.btn-view-all:hover {
    background: transparent;
    color: #3e8649;
}

/* PROMO BANNER */
.promo-banner {
    background: url('https://images.unsplash.com/photo-1556228578-0d85b1a4d571?q=80&w=1600') center/cover;
    border-radius: var(--radius-lg);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
    /* margin: 60px 0; */
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.promo-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.promo-content h2 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.promo-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
}

.promo-link {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
}

/* TESTIMONIALS */
.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.testimonial-img {
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.stars {
    color: #FFB800;
    font-size: 14px;
    margin: 5px 0;
}

.date {
    color: var(--text-muted);
    font-size: 12px;
}

.review-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 15px;
    line-height: 1.6;
}

/* FOOTER */
.site-footer {
    background: var(--bg-light);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social a {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
}

.footer-social a svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.footer-bottom-links span {
    font-weight: 600;
    color: var(--text-dark);
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.btn-gotop {
    background: var(--bg-color);
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-dark);
}

/* RESPONSIVE */
@media(max-width: 991px) {
    .feature-box:not(:last-child)::after {
        display: none;
    }

    .feature-box {
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media(max-width: 768px) {
    .header-bottom .nav-links {
        display: none;
    }

    .mx-auto {
        margin-right: auto !important;
        margin-left: 0 !important;
    }

    .hero-wrapper {
        padding: 20px 10px;
    }

    .hero-slider .swiper-slide {
        height: 125px;
    }

    .promo-banner {
        padding: 50px 30px;
    }
}

/*=========================
 Premium Promo Banner
=========================*/

.promo-section {
    padding: 50px 0;
}

.promo-banner {

    background: linear-gradient(135deg, #0c5a33, #6dbb45);

    border-radius: 30px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 40px;

    position: relative;
}

.promo-banner::before {

    content: "";

    position: absolute;

    right: -120px;

    top: -120px;

    width: 420px;

    height: 420px;

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

    border-radius: 50%;
}

.promo-banner::after {

    content: "";

    position: absolute;

    left: -150px;

    bottom: -150px;

    width: 350px;

    height: 350px;

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

    border-radius: 50%;
}

.promo-content {

    width: 100%;

    z-index: 2;
}

.promo-badge {

    display: inline-block;

    padding: 10px 20px;

    border-radius: 40px;

    background: #9be15d;

    color: #11471f;

    font-weight: 700;

    margin-bottom: 25px;
}

.promo-content h2 {

    font-size: 32px;

    color: #fff;

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 25px;
}

.promo-content h2 span {

    color: #d8ff9f;
}

.promo-content p {

    font-size: 19px;

    line-height: 34px;

    color: #f3f3f3;

    margin-bottom: 35px;
}

.btn-shop {

    display: inline-block;

    padding: 16px 40px;

    border-radius: 50px;

    background: #fff;

    color: #0d6b39;

    font-weight: 700;

    text-decoration: none;

    margin-right: 15px;

    transition: .3s;
}

.btn-shop:hover {

    background: #f5f5f5;

    transform: translateY(-3px);

    color: #0d6b39;
}

.btn-outline {

    display: inline-block;

    padding: 10px 20px;

    border-radius: 50px;

    border: 2px solid #fff;

    color: #fff;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;
}

.btn-outline:hover {

    background: #fff;

    color: #0d6b39;
}

.promo-image {

    width: 40%;

    text-align: right;

    z-index: 2;
}

.promo-image img {

    width: 100%;

    max-width: 480px;

    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

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

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

@media(max-width:991px) {

    .promo-banner {

        flex-direction: column;

        text-align: center;

        padding: 45px 25px;
    }

    .promo-content {

        width: 100%;
    }

    .promo-image {

        width: 100%;

        margin-top: 40px;

        text-align: center;
    }

    .promo-content h2 {

        font-size: 25px;
    }

    .promo-content p {

        font-size: 16px;

        line-height: 28px;
    }

}