: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: #fff;
}

.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: 35px;
    height: 35px;
    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;
    }

}

/* GLOBAL INNER PAGE HEADER */
.inner-page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../image/banner/bred.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    /* text-align: center; */
    position: relative;
}

.inner-page-header h1 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.breadcrumb-nav {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.breadcrumb-nav a {
    color: #81c784;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #ffffff;
}

.breadcrumb-nav span {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ABOUT US PAGE STYLES */
.about-content {
    padding: 60px 0;
}

.about-text-container {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.about-text-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.diff-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 25px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.diff-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #2e7d32;
}

.diff-icon {
    font-size: 45px;
    color: #2e7d32;
    margin-bottom: 25px;
    background: #eef8ef;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.diff-card:hover .diff-icon {
    background: #2e7d32;
    color: #fff;
}

.diff-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.diff-card p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

.promise-section {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    padding: 60px 30px;
    text-align: center;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
    position: relative;
    overflow: hidden;
}

.promise-section i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: inline-block;
}

.promise-section h3 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2rem;
}

.promise-section p {
    font-size: 1.25rem;
    margin-bottom: 0;
    max-width: 850px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-wrap h2 {
    color: #2e7d32;
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title-wrap h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #2e7d32;
    border-radius: 2px;
}

/* CONTACT US PAGE STYLES */
.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    border-bottom: 4px solid #2e7d32;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: #eef8ef;
    color: #2e7d32;
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-info-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: #2e7d32;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-control {
    height: 55px;
    padding: 0 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.15);
    background-color: #fff;
}

textarea.form-control {
    height: 150px;
    padding-top: 15px;
    resize: none;
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    display: none;
    margin-top: 5px;
    font-weight: 500;
}

.error-border {
    border-color: #dc3545 !important;
}

#statusLabel {
    padding: 15px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    background-color: #2e7d32;
    display: none;
    text-align: center;
    margin-top: 20px;
}

.vs-btn {
    background-color: #2e7d32;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.vs-btn:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
}

/* CATEGORY SLIDER */
.category-slider {
    padding-bottom: 40px
}

.category-box {
    text-align: center;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 20px;
    background: #fff
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #eef8ef;
    display: flex;
    align-items: center;
    justify-content: center
}

.category-icon i {
    font-size: 40px;
    color: #2e7d32
}

.section {
    padding: 25px 0;
}

@keyframes unmute-pulse {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.75;
        transform: translateX(-50%) scale(1.03);
    }
}

/* TERMS & CONDITIONS PAGE */
.terms-section {
    background: #fafafa;
}
.terms-block {
    background: #fff;
    border-radius: 14px;
    padding: 35px 40px;
    margin-bottom: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-left: 4px solid #2e7d32;
}
.terms-main-title {
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef8ef;
}
.terms-title {
    color: #1b5e20;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}
.terms-title i {
    color: #2e7d32;
    font-size: 1.3rem;
}
.terms-block p {
    color: #555;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 12px;
}
.terms-definition {
    background: #f8fdf8;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    border: 1px solid #e8f5e9;
}
.terms-definition h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.terms-definition h4 i {
    color: #2e7d32;
    font-size: 1.6rem;
}
.terms-definition p {
    margin-bottom: 0;
    padding-left: 24px;
}
.timeline-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8fdf8;
    border: 1px solid #e8f5e9;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.timeline-card:hover {
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.1);
    transform: translateY(-2px);
}
.timeline-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: #2e7d32;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.timeline-card h5 {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.timeline-card p {
    margin-bottom: 0;
    color: #666;
}