:root {
    --forest: #1a2e1a;
    --moss: #2d5016;
    --lime: #8dc63f;
    --gold: #c9a84c;
    --cream: #f5f0e8;
    --white: #ffffff;
    --charcoal: #1c1c1c;
    --gray: #6b7280;
    --light: #f9fafb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
}

/* NAV */
.navbar {
    background: rgba(26,46,26,0.97);
    backdrop-filter: blur(16px);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(141,198,63,0.2);
}

.navbar-brand span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--lime);
    letter-spacing: 2px;
}

.navbar-brand span em {
    color: var(--gold);
    font-style: normal;
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
    padding: 6px 14px !important;
}

.nav-link:hover {
    color: var(--lime) !important;
}

.btn-nav {
    background: var(--lime);
    color: var(--forest) !important;
    border-radius: 4px;
    font-weight: 600 !important;
    padding: 8px 22px !important;
}

.btn-nav:hover {
    background: var(--gold);
}

.cart-icon {
    color: var(--white);
    font-size: 1.2rem;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--lime);
    color: var(--forest);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler {
    border-color: rgba(141,198,63,0.4);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--forest) 0%, #0f1f0f 40%, #1a2e0a 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238dc63f' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-blob {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(141,198,63,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%,100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.1);
    }
}

.hero-tag {
    display: inline-block;
    background: rgba(141,198,63,0.15);
    border: 1px solid rgba(141,198,63,0.4);
    color: var(--lime);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(3.5rem, 9vw, 4.5rem);
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 12px;
}

.hero h1 span {
    color: var(--lime);
}

.hero-sub {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 20px;
}

.hero p {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

.btn-primary-main {
    background: var(--lime);
    color: var(--forest);
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary-main:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(141,198,63,0.35);
}

.btn-outline-main {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    margin-left: 14px;
}

.btn-outline-main:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--lime);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.hero-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrap img {
    max-height: 580px;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(141,198,63,0.3));
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.hero-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(141,198,63,0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-ring-2 {
    width: 370px;
    height: 370px;
    border-color: rgba(201,168,76,0.12);
}

/* TRUST BAR */
.trust-bar {
    background: var(--forest);
    padding: 22px 0;
    border-bottom: 1px solid rgba(141,198,63,0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.trust-item i {
    color: var(--lime);
    font-size: 1rem;
}

/* ABOUT */
.about-section {
    padding: 100px 0;
    background: var(--cream);
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--lime);
}

.section-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--forest);
    line-height: 1.05;
    margin-bottom: 20px;
}

.about-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--lime);
}

.about-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--lime), var(--moss));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.about-card h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--forest);
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.about-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.7;
}

.about-img {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.about-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--forest);
    color: var(--white);
    border-radius: 10px;
    padding: 16px 20px;
}

.about-badge .big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--lime);
    line-height: 1;
}

.about-badge .small {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
}

/* PRODUCTS */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.product-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e5e7eb;
    transition: all 0.35s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: var(--lime);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--lime);
    color: var(--forest);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 2;
}

.product-badge.bestseller {
    background: var(--gold);
}

.product-img-wrap {
    background: linear-gradient(135deg, #f0f7e8, #e8f5d4);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.03));
}

.product-img-wrap img {
    height: 180px;
    object-fit: contain;
    transition: transform 0.4s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-body {
    padding: 22px;
}

.product-cat {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 6px;
}

.product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--forest);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.product-stars span {
    color: var(--gray);
    font-size: 0.78rem;
    margin-left: 4px;
}

.product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--forest);
    letter-spacing: 0.04em;
}

.product-price .old {
    font-size: 1.1rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-right: 8px;
}

.btn-add {
    background: var(--forest);
    color: var(--white);
    border: none;
    display: block;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 0.84rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.25s;
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
    text-align: center;
}

.btn-add:hover {
    background: var(--lime);
    color: var(--forest);
}

/* WHY CHOOSE */
.why-section {
    padding: 100px 0;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238dc63f' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}

.why-section .section-tag {
    color: var(--lime);
}

.why-section .section-tag::before {
    background: var(--lime);
}

.why-section .section-title {
    color: var(--white);
}

.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 32px 28px;
    transition: all 0.3s;
}

.why-card:hover {
    background: rgba(141,198,63,0.1);
    border-color: rgba(141,198,63,0.4);
    transform: translateY(-4px);
}

.why-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: rgba(141,198,63,0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.7;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(141,198,63,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
    color: var(--lime);
    font-size: 1.2rem;
}

/* PRICING */
.pricing-section {
    padding: 100px 0;
    background: var(--cream);
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    border: 2px solid #e5e7eb;
    transition: all 0.35s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--lime);
    background: var(--forest);
}

.pricing-card.popular .plan-name, .pricing-card.popular .plan-price, .pricing-card.popular .plan-period {
    color: var(--white);
}

.pricing-card.popular .plan-feature {
    color: rgba(255,255,255,0.7);
}

.pricing-card.popular .plan-feature i {
    color: var(--lime);
}

.pricing-card:hover:not(.popular) {
    border-color: var(--lime);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -28px;
    background: var(--lime);
    color: var(--forest);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.plan-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 16px;
}

.plan-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--forest);
    line-height: 1;
    letter-spacing: 0.02em;
}

.plan-period {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 28px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.plan-feature:last-child {
    border: none;
}

.plan-feature i {
    color: var(--moss);
    font-size: 0.9rem;
    width: 16px;
}

.btn-plan {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid var(--forest);
    background: transparent;
    color: var(--forest);
    transition: all 0.25s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.btn-plan:hover {
    background: var(--forest);
    color: var(--white);
}

.pricing-card.popular .btn-plan {
    background: var(--lime);
    color: var(--forest);
    border-color: var(--lime);
}

.pricing-card.popular .btn-plan:hover {
    background: var(--white);
    border-color: var(--white);
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.accordion-item {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb !important;
}

.accordion-button {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--forest);
    background: var(--white);
    padding: 20px 24px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--moss);
    background: #f0f7e8;
}

.accordion-button::after {
    filter: none;
}

.accordion-body {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.75;
    padding: 0 24px 20px;
    background: var(--white);
}

.accordion-button:not(.collapsed)~.accordion-collapse .accordion-body {
    background: #f0f7e8;
}

/* FOOTER */
footer {
    background: #0d1a0d;
    padding: 70px 0 30px;
}

.footer-brand span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--lime);
    letter-spacing: 2px;
}

.footer-brand span em {
    color: var(--gold);
    font-style: normal;
}

footer p {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--lime);
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.footer-links {
    margin-left: 0;
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 40px 0 24px;
}

.footer-bottom {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    margin-right: 8px;
}

.social-btn:hover {
    background: var(--lime);
    color: var(--forest);
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-brand img {
    width: auto;
    height: 64px;
}

.navbar-brand img {
    width: auto;
    height: 43px;
}


/* cart */
/* PAGE HEADER */
    .page-header { background: linear-gradient(135deg, var(--forest), #0f1f0f); padding: 60px 0 50px; position: relative; overflow: hidden; }
    .page-header::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%238dc63f' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
    .page-header h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 4.5rem); }
    .page-header .breadcrumb { background: none; padding: 0; margin: 0; }
    .breadcrumb-item a { color: var(--lime); text-decoration: none; font-size: 0.85rem; }
    .breadcrumb-item.active { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
    .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

    /* CART */
    .cart-section { padding: 60px 0 100px; }
    .cart-table-wrap { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
    .cart-table thead { background: var(--forest); color: var(--white); }
    .cart-table th { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.1em; padding: 18px 20px; border: none; font-weight: 400; }
    .cart-table td { padding: 20px; vertical-align: middle; border-color: #f0f0f0; }
    .cart-table tbody tr:hover { background: #fafff5; }
    .product-thumb { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; background: #f0f7e8; }
    .product-info-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; color: var(--forest); letter-spacing: 0.04em; margin-bottom: 3px; }
    .product-info-cat { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }
    .qty-control { display: flex; align-items: center; gap: 0; border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; width: fit-content; }
    .qty-btn { width: 34px; height: 34px; border: none; background: var(--light); color: var(--charcoal); font-size: 1rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; font-weight: 600; }
    .qty-btn:hover { background: var(--lime); color: var(--forest); }
    .qty-input { width: 44px; height: 34px; border: none; border-left: 1px solid #e5e7eb; border-right: 1px solid #e5e7eb; text-align: center; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem; background: var(--white); }
    .qty-input:focus { outline: none; }
    .item-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--forest); letter-spacing: 0.04em; }
    .btn-remove { background: none; border: none; color: #e5e7eb; font-size: 1rem; cursor: pointer; padding: 6px; border-radius: 6px; transition: all 0.2s; }
    .btn-remove:hover { background: #fee2e2; color: #ef4444; }

    /* EMPTY CART */
    .empty-cart { text-align: center; padding: 80px 20px; }
    .empty-cart i { font-size: 5rem; color: #e5e7eb; margin-bottom: 20px; }
    .empty-cart h3 { font-size: 2rem; color: var(--forest); margin-bottom: 12px; }
    .empty-cart p { color: var(--gray); margin-bottom: 28px; }

    /* ORDER SUMMARY */
    .summary-card { background: var(--white); border-radius: 14px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); position: sticky; top: 80px; }
    .summary-title { font-size: 1.5rem; color: var(--forest); margin-bottom: 24px; border-bottom: 2px solid #f0f0f0; padding-bottom: 16px; }
    .summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 0.9rem; border-bottom: 1px solid #f5f5f5; }
    .summary-row:last-of-type { border: none; }
    .summary-label { color: var(--gray); }
    .summary-value { font-weight: 600; color: var(--charcoal); }
    .summary-total { display: flex; justify-content: space-between; align-items: center; padding: 16px 0 24px; border-top: 2px solid var(--forest); margin-top: 8px; }
    .total-label { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--forest); letter-spacing: 0.06em; }
    .total-value { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--forest); }
    .btn-checkout { background: var(--lime); color: var(--forest); border: none; border-radius: 8px; padding: 16px; width: 100%; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
    .btn-checkout:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(141,198,63,0.3); }
    .btn-continue { background: transparent; color: var(--forest); border: 2px solid var(--forest); border-radius: 8px; padding: 13px; width: 100%; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all 0.25s; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; }
    .btn-continue:hover { background: var(--forest); color: var(--white); }
    .coupon-wrap { margin-top: 20px; }
    .coupon-input { border: 1px solid #e5e7eb; border-radius: 8px; padding: 12px 16px; font-size: 0.88rem; width: 100%; font-family: 'DM Sans', sans-serif; outline: none; transition: border 0.2s; }
    .coupon-input:focus { border-color: var(--lime); }
    .btn-coupon { background: var(--forest); color: var(--white); border: none; border-radius: 8px; padding: 12px 20px; font-size: 0.84rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; margin-top: 8px; width: 100%; transition: all 0.25s; }
    .btn-coupon:hover { background: var(--lime); color: var(--forest); }
    .trust-badges { display: flex; justify-content: center; gap: 20px; margin-top: 22px; flex-wrap: wrap; }
    .trust-b { text-align: center; font-size: 0.72rem; color: var(--gray); }
    .trust-b i { display: block; font-size: 1.2rem; color: var(--moss); margin-bottom: 4px; }

    /* UPSELL */
    .upsell-section { margin-top: 40px; }
    .upsell-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--forest); letter-spacing: 0.04em; margin-bottom: 20px; }
    .upsell-card { background: var(--white); border-radius: 12px; border: 1px solid #e5e7eb; padding: 16px; display: flex; align-items: center; gap: 14px; transition: all 0.25s; }
    .upsell-card:hover { border-color: var(--lime); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .upsell-img { width: 64px; height: 64px; border-radius: 8px; background: linear-gradient(135deg,#f0f7e8,#e8f5d4); object-fit: cover; flex-shrink: 0; }
    .upsell-name { font-weight: 600; font-size: 0.88rem; color: var(--charcoal); margin-bottom: 2px; }
    .upsell-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--forest); }
    .btn-upsell { background: var(--lime); border: none; border-radius: 6px; padding: 8px 14px; font-size: 0.78rem; font-weight: 700; color: var(--forest); letter-spacing: 0.05em; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
    .btn-upsell:hover { background: var(--forest); color: var(--white); }

    /* MOBILE */
    .mobile-cart-item { background: var(--white); border-radius: 12px; padding: 16px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

    /* CHECKOUT MODAL */
    .modal-content { border-radius: 16px; border: none; overflow: hidden; }
    .modal-header { background: var(--forest); border: none; padding: 24px 28px; }
    .modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--white); letter-spacing: 0.06em; }
    .modal-body { padding: 28px; }
    .form-label { font-weight: 600; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); margin-bottom: 6px; }
    .form-control { border: 1.5px solid #e5e7eb; border-radius: 8px; padding: 12px 16px; font-size: 0.9rem; font-family: 'DM Sans', sans-serif; transition: border 0.2s; }
    .form-control:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(141,198,63,0.12); }
    .btn-place-order { background: var(--lime); color: var(--forest); border: none; border-radius: 8px; padding: 16px; width: 100%; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
    .btn-place-order:hover { background: var(--forest); color: var(--white); }

    /* SUCCESS */
    .success-overlay { position: fixed; inset: 0; background: rgba(26,46,26,0.95); z-index: 9999; display: none; align-items: center; justify-content: center; flex-direction: column; text-align: center; padding: 40px; }
    .success-overlay.show { display: flex; }
    .success-check { font-size: 5rem; color: var(--lime); margin-bottom: 20px; animation: pop 0.5s ease; }
    @keyframes pop { 0%{transform:scale(0.5);opacity:0;} 100%{transform:scale(1);opacity:1;} }
    .success-overlay h2 { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--white); margin-bottom: 12px; }
    .success-overlay p { color: rgba(255,255,255,0.65); max-width: 420px; font-size: 1rem; line-height: 1.7; }
    .btn-success-back { background: var(--lime); color: var(--forest); border: none; border-radius: 8px; padding: 14px 36px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; margin-top: 28px; font-size: 0.9rem; text-decoration: none; display: inline-block; }

     .form-section { padding: 80px 0 100px; background: var(--cream); }
    .form-card { background: var(--white); border-radius: 20px; padding: 48px 44px; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
    .section-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--moss); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
    .section-tag::before { content: ''; display: block; width: 32px; height: 2px; background: var(--lime); }
    .section-title { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--forest); line-height: 1.05; margin-bottom: 16px; }
    .form-label { font-weight: 600; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); margin-bottom: 8px; }
    .form-control, .form-select { 
        border: 1.5px solid var(--lime); 
        border-radius: 8px; padding: 13px 16px; font-size: 0.9rem; font-family: 'DM Sans', sans-serif; transition: all 0.2s; color: var(--charcoal); 
        background: var(--white); }

    .form-control:focus, .form-select:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(141,198,63,0.12); outline: none; }
    textarea.form-control { resize: vertical; min-height: 140px; }
    .btn-submit { background: var(--lime); color: var(--forest); border: none; border-radius: 8px; padding: 16px 40px; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px; }
    .btn-submit:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(141,198,63,0.3); }
    .form-check-input:checked { background-color: var(--lime); border-color: var(--lime); }
    .form-check-label { font-size: 0.85rem; color: var(--gray); }

    .checkout-sec span.fs-26 {
    font-size: 18px;
    color: #4b7018;
    margin: 13px 0;
    font-weight: 600;
}


   /* CONTACT INFO CARDS */
    .info-section { padding: 80px 0 0; background: var(--white); }
    .info-card { background: var(--white); border-radius: 14px; padding: 32px 28px; border: 1px solid #e5e7eb; text-align: center; transition: all 0.3s; height: 100%; }
    .info-card:hover { border-color: var(--lime); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
    .info-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--lime), var(--moss)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
    .info-icon i { color: var(--white); font-size: 1.4rem; }
    .info-card h5 { font-size: 1.2rem; color: var(--forest); margin-bottom: 10px; }
    .info-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 0; }
    .info-card a { color: var(--moss); text-decoration: none; font-weight: 600; }
    .info-card a:hover { color: var(--lime); }

     /* PRODUCT SECTION */
    .product-section { padding: 60px 0 80px; }

    /* GALLERY */
    .gallery-wrap { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
    .main-img-wrap { position: relative; background: linear-gradient(135deg, #f0f7e8, #e8f5d4); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .main-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .main-img-wrap:hover img { transform: scale(1.04); }
    .badge-new { position: absolute; top: 18px; left: 18px; background: var(--lime); color: var(--forest); font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; padding: 5px 14px; border-radius: 4px; z-index: 2; }
    .badge-sale { position: absolute; top: 18px; right: 18px; background: var(--gold); color: var(--forest); font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; padding: 5px 14px; border-radius: 4px; z-index: 2; }
    .thumb-row { display: flex; gap: 10px; padding: 14px; }
    .thumb { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; background: linear-gradient(135deg, #f0f7e8, #e8f5d4); border: 2px solid transparent; cursor: pointer; transition: all 0.2s; flex-shrink: 0; overflow: hidden; }
    .thumb img { width: 100%; height: 100%; object-fit: cover; }
    .thumb.active, .thumb:hover { border-color: var(--lime); }

    /* PRODUCT INFO */
    .product-info-wrap { background: var(--white); border-radius: 16px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); height: fit-content; }
    .product-cat-tag { font-size: 0.75rem; color: var(--lime); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
    .product-cat-tag::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--lime); }
    .product-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--forest); line-height: 1.05; margin-bottom: 14px; }
    .rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
    .stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
    .rating-count { font-size: 0.82rem; color: var(--gray); }
    .rating-bar { font-size: 0.78rem; color: var(--moss); font-weight: 600; background: rgba(141,198,63,0.12); padding: 3px 10px; border-radius: 4px; }
    .price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
    .price-current { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--forest); letter-spacing: 0.04em; line-height: 1; }
    .price-old { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: #ccc; text-decoration: line-through; }
    .price-save { font-size: 0.82rem; font-weight: 700; color: #ef4444; background: #fee2e2; padding: 4px 10px; border-radius: 4px; }
    .product-desc { color: var(--gray); font-size: 0.92rem; line-height: 1.75; margin-bottom: 24px; }
    .divider { height: 1px; background: #f0f0f0; margin: 22px 0; }

    /* FLAVOUR / SIZE */
    .option-label { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; color: var(--forest); letter-spacing: 0.08em; margin-bottom: 10px; }
    .option-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
    .pill { border: 1.5px solid #e5e7eb; border-radius: 8px; padding: 8px 16px; font-size: 0.83rem; font-weight: 600; color: var(--charcoal); cursor: pointer; transition: all 0.2s; background: var(--white); }
    .pill:hover, .pill.active { border-color: var(--lime); background: rgba(141,198,63,0.08); color: var(--forest); }
    .pill.out-of-stock { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

    /* QTY + ADD */
    .add-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
    .qty-control { display: flex; align-items: center; border: 1.5px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
    .qty-btn { width: 42px; height: 48px; border: none; background: var(--light); color: var(--charcoal); font-size: 1.1rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; font-weight: 700; }
    .qty-btn:hover { background: var(--lime); color: var(--forest); }
    .qty-input { width: 52px; height: 48px; border: none; border-left: 1.5px solid #e5e7eb; border-right: 1.5px solid #e5e7eb; text-align: center; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; background: var(--white); }
    .qty-input:focus { outline: none; }
    .btn-add-cart { background: var(--lime); color: var(--forest); border: none; border-radius: 10px; padding: 14px 28px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 10px; flex: 1; justify-content: center; min-width: 180px; }
    .btn-add-cart:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(141,198,63,0.3); }
    .btn-wishlist { width: 48px; height: 48px; border: 1.5px solid #e5e7eb; border-radius: 10px; background: var(--white); color: var(--gray); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all 0.2s; flex-shrink: 0; }
    .btn-wishlist:hover, .btn-wishlist.active { border-color: #ef4444; color: #ef4444; background: #fff5f5; }
    .btn-buy-now { background: var(--forest); color: var(--white); border: none; border-radius: 10px; padding: 14px 28px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 10px; width: 100%; justify-content: center; }
    .btn-buy-now:hover { background: var(--moss); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,46,26,0.25); }

    /* TRUST ROW */
    .trust-mini { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }
    .trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--gray); }
    .trust-item i { color: var(--moss); font-size: 0.9rem; }

    /* TABS */
    .tabs-section { margin-top: 60px; }
    .tab-nav { display: flex; gap: 0; border-bottom: 2px solid #f0f0f0; overflow-x: auto; scrollbar-width: none; }
    .tab-nav::-webkit-scrollbar { display: none; }
    .tab-btn { background: none; border: none; padding: 14px 24px; font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.08em; color: var(--gray); cursor: pointer; white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
    .tab-btn:hover { color: var(--forest); }
    .tab-btn.active { color: var(--forest); border-bottom-color: var(--lime); }
    .tab-pane { display: none; padding: 32px 0; }
    .tab-pane.active { display: block; }

    /* INGREDIENTS / NUTRITION */
    .ingredient-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
    .ingredient-card { background: var(--white); border-radius: 12px; padding: 18px 16px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); text-align: center; border: 1px solid #f0f0f0; }
    .ingredient-icon { font-size: 1.8rem; margin-bottom: 8px; }
    .ingredient-name { font-weight: 700; font-size: 0.82rem; color: var(--forest); margin-bottom: 3px; }
    .ingredient-amount { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--lime); letter-spacing: 0.04em; }

    .nutrition-table { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
    .nutrition-table table { width: 100%; border-collapse: collapse; }
    .nutrition-table thead { background: var(--forest); color: var(--white); }
    .nutrition-table th { font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 0.08em; padding: 16px 20px; text-align: left; font-weight: 400; border: none; }
    .nutrition-table td { padding: 14px 20px; font-size: 0.88rem; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
    .nutrition-table tbody tr:last-child td { border: none; }
    .nutrition-table tbody tr:hover { background: #fafff5; }
    .dv-bar-wrap { width: 80px; background: #f0f0f0; border-radius: 20px; height: 6px; overflow: hidden; }
    .dv-bar { height: 100%; background: var(--lime); border-radius: 20px; }

    /* REVIEWS */
    .review-summary { background: var(--white); border-radius: 14px; padding: 28px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 24px; }
    .big-rating { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: var(--forest); line-height: 1; }
    .star-bars { margin-top: 12px; }
    .star-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 0.78rem; color: var(--gray); }
    .star-bar-track { flex: 1; height: 6px; background: #f0f0f0; border-radius: 10px; overflow: hidden; }
    .star-bar-fill { height: 100%; background: var(--gold); border-radius: 10px; }
    .review-card { background: var(--white); border-radius: 12px; padding: 22px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 14px; border: 1px solid #f0f0f0; }
    .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
    .reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--forest), var(--moss)); display: flex; align-items: center; justify-content: center; color: var(--lime); font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; flex-shrink: 0; }
    .reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--charcoal); }
    .reviewer-date { font-size: 0.75rem; color: var(--gray); }
    .review-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }
    .review-verified { font-size: 0.72rem; color: var(--moss); font-weight: 600; display: flex; align-items: center; gap: 4px; margin-left: auto; }
    .review-text { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
    .review-helpful { font-size: 0.75rem; color: var(--gray); margin-top: 12px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .helpful-btn { background: none; border: 1px solid #e5e7eb; border-radius: 4px; padding: 3px 10px; font-size: 0.72rem; cursor: pointer; color: var(--gray); transition: all 0.2s; }
    .helpful-btn:hover { border-color: var(--lime); color: var(--forest); }

    /* RELATED */
    .related-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid #e5e7eb; }
    .section-header { display: flex; align-items: baseline; gap: 16px; margin-bottom: 28px; }
    .section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--forest); }
    .section-line { flex: 1; height: 2px; background: linear-gradient(to right, var(--lime), transparent); }
    .product-card { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); border: 1px solid #f0f0f0; transition: all 0.3s; cursor: pointer; }
    .product-card:hover { border-color: var(--lime); box-shadow: 0 12px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }
    .card-img-wrap { aspect-ratio: 1/1; background: linear-gradient(135deg, #f0f7e8, #e8f5d4); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
    .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .product-card:hover .card-img-wrap img { transform: scale(1.06); }
    .card-body-inner { padding: 18px; }
    .card-cat { font-size: 0.72rem; color: var(--lime); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 5px; }
    .card-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--forest); letter-spacing: 0.04em; margin-bottom: 4px; }
    .card-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--charcoal); }
    .card-stars { color: var(--gold); font-size: 0.75rem; }
    .btn-card-add { background: var(--lime); border: none; border-radius: 6px; width: 100%; padding: 10px; font-size: 0.82rem; font-weight: 700; color: var(--forest); letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; margin-top: 12px; transition: all 0.2s; }
    .btn-card-add:hover { background: var(--forest); color: var(--white); }
img.h-30px {
    width: auto;
    height: 30px;
}

.overview-card{
    background: linear-gradient(135deg, rgb(32 52 32), rgb(3 4 2));
    border:1px solid rgba(255,0,0,.35);
    border-radius:35px;
    overflow:hidden;
    position:relative;
    box-shadow:0 0 30px rgba(255,0,0,.08);
}

/* Header */
.overview-header{
    padding: 19px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.icon-box{
    width:52px;
    height:52px;
    border-radius:50%;
    background: rgb(32 52 32);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.overview-title{
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.title-line{
    width:90px;
    height:2px;
    background: #8dc63f;
    margin-left:20px;
    border-radius:20px;
}

/* Content */
.overview-content{
    padding: 20px 10px;
    position:relative;
}

.overview-content p{
    color:#d7d7d7;
    font-size: 14px;
    line-height:1.8;
}

.dot{
    width:8px;
    height:8px;
    background:#ff2020;
    border-radius:50%;
    position:absolute;
}

.dot-left{
    top:25px;
    left:40px;
}

.center-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    margin:35px 0;
    gap:10px;
}

.center-divider span{
    width:60px;
    height:1px;
    background: #8dc63f;
}

.middle-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background: #203520;
}

/* Tags */
.overview-tags{
    padding:25px 30px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.tag{
    background: rgb(26 46 26);
    color:#fff;
    padding: 7px 16px;
    border-radius:30px;
    font-size: 10px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
}

/* Responsive */
@media(max-width:768px){

    .overview-header{
        padding:25px;
    }

    .overview-title{
        font-size:22px;
    }

    .overview-content p{
        font-size:17px;
    }

    .title-line{
        width:60px;
    }
}