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

/* =================== RESET & ROOT =================== */
:root {
    --green-dark:   #1b4332;
    --green-mid:    #2d6a4f;
    --green-light:  #d8f3dc;
    --amber:        #e8a320;
    --amber-dark:   #c47d0e;
    --amber-light:  #fff8e1;
    --orange:       #f57c00;
    --text-dark:    #141414;
    --text-mid:     #3a3a3a;
    --text-muted:   #777;
    --bg:           #f6f4f0;
    --white:        #fff;
    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    28px;
    --shadow-sm:    0 2px 12px rgba(0,0,0,.07);
    --shadow-md:    0 8px 32px rgba(0,0,0,.11);
    --shadow-lg:    0 24px 64px rgba(0,0,0,.16);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.7;
}
a { text-decoration: none; color: inherit; }

/* =================== NAVBAR =================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(232,163,32,.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid #0d2b1f;
    padding: 0 2.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo {
    font-weight: 800;
    font-size: 1.3rem;
    color: #0d2b1f;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.navbar .logo span { color: #0d2b1f; }
.navbar-tagline {
    font-size: .85rem;
    color: #0d2b1f;
    font-weight: 600;
    letter-spacing: .3px;
}

/* =================== HERO =================== */
.hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, #0d2b1f 0%, #1b4332 35%, #2d6a4f 70%, #1b4332 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 70% at 75% 50%, rgba(232,163,32,.22) 0%, transparent 65%);
    pointer-events: none;
}
.hero-accent-line {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--amber), var(--orange), var(--amber));
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(232,163,32,.22);
    color: var(--amber);
    padding: .4rem 1.1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .6px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(232,163,32,.45);
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.6rem;
    max-width: 640px;
}
.hero h1 .highlight {
    color: var(--amber);
    position: relative;
    display: inline-block;
}
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%; height: 3px;
    background: var(--amber);
    border-radius: 2px;
    opacity: .45;
}
.hero p {
    font-size: 1rem;
    color: rgba(255,255,255,.82);
    max-width: 540px;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    color: #fff;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform .22s, box-shadow .22s;
    box-shadow: 0 4px 20px rgba(232,163,32,.45);
    letter-spacing: .3px;
}
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(232,163,32,.55); }
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat .num {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}
.hero-stat .lbl {
    font-size: .7rem;
    color: rgba(255,255,255,.75);
    text-transform: uppercase;
    letter-spacing: .7px;
    font-weight: 500;
}

/* =================== WHY US STRIP =================== */
.why-strip {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.why-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.why-pill {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--green-dark);
}
.why-pill .icon {
    width: 32px; height: 32px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}

/* =================== PRODUCTS SECTION =================== */
.products-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2.5rem;
}
.section-header {
    text-align: center;
    margin-bottom: 1.8rem;
}
.section-label {
    display: inline-block;
    background: var(--amber-light);
    color: var(--amber-dark);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .4rem 1.2rem;
    border-radius: 4px;
    margin-bottom: .9rem;
}
.section-header h2 {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: .5rem;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.02rem;
}
.section-divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* Card Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.2rem;
}
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,.05);
    transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    opacity: 0;
    transition: opacity .28s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }
.card-image {
    background: linear-gradient(145deg, #f9f6f0, #f0ede5);
    aspect-ratio: 4/3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
}
.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.card:hover .card-image img { transform: scale(1.07); }
.card-body {
    padding: 1.4rem 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-tag {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green-mid);
    margin-bottom: .35rem;
}
.card-body h3 {
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: .2rem;
    color: var(--text-dark);
}
.card-body .subtitle {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
}
.card-body .view-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: #fff;
    padding: .75rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .9rem;
    transition: opacity .2s, transform .2s;
    letter-spacing: .3px;
}
.card-body .view-btn:hover { opacity: .88; transform: translateY(-1px); }

/* =================== COMPANY BAND =================== */
.company-band {
    background: linear-gradient(135deg, var(--green-dark), #0d2b1f);
    padding: 4rem 2.5rem;
    text-align: center;
    color: #fff;
}
.company-band h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .5rem;
    color: var(--amber);
}
.company-band p { font-size: .95rem; color: rgba(255,255,255,.7); margin-bottom: .4rem; }
.cband-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.cband-item { font-size: .9rem; color: rgba(255,255,255,.75); }
.cband-item strong { color: #fff; }

/* =================== SITE FOOTER =================== */
.site-footer {
    background: #0d1f18;
    color: rgba(255,255,255,.45);
    text-align: center;
    padding: 2rem 2rem;
    font-size: .85rem;
    border-top: 1px solid rgba(255,255,255,.07);
}
.site-footer strong { color: rgba(255,255,255,.7); }

/* =================== PRODUCT DETAIL PAGE =================== */
body.product-page {
    background: #f5f2ed;
}
.product-page .navbar { background: rgba(27,67,50,.98); }

.product-top-bg {
    background: linear-gradient(180deg, #1b4332 0%, #2d6a4f 80px, transparent 160px);
    padding-top: 1px;
}

.breadcrumb {
    font-size: .84rem;
    color: rgba(255,255,255,.65);
    padding: .7rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.breadcrumb a { color: var(--amber); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 .5rem; opacity: .5; }

.product-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem 2rem;
}

/* Big product card */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    align-items: start;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.05);
}

/* Image panel */
.product-img-panel {
    background: linear-gradient(145deg, #faf7f0, #f0ede3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 68px;
    border-right: 1px solid rgba(0,0,0,.06);
}
.product-img-panel::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.07) 40%, rgba(0,0,0,.07) 60%, transparent);
}
.product-img-panel img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    cursor: zoom-in;
    transition: transform .3s;
    filter: drop-shadow(0 10px 28px rgba(0,0,0,.18));
}
.product-img-panel img:hover { transform: scale(1.04); }
.zoom-hint {
    margin-top: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--green-mid);
    background: rgba(45,106,79,.1);
    padding: .35rem 1rem;
    border-radius: 50px;
    user-select: none;
    cursor: pointer;
    font-weight: 600;
    transition: background .2s;
}
.zoom-hint:hover { background: rgba(45,106,79,.18); }

/* Info panel */
.product-info-panel {
    padding: 2rem 2.5rem 1.5rem;
}
.product-info-panel .category-tag {
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--amber-dark);
    background: var(--amber-light);
    padding: .28rem .8rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: .9rem;
    border: 1px solid rgba(232,163,32,.3);
}
.product-info-panel h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.1;
    margin-bottom: .4rem;
    letter-spacing: -1px;
}
.product-packing {
    font-size: .92rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .45rem;
}
.product-packing svg { color: var(--amber); flex-shrink: 0; }

/* Details Table */
.details-box {
    background: #faf9f5;
    border: 1px solid #e5dfc7;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2.2rem;
}
.details-box-header {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: #fff;
    padding: .75rem 1.4rem;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.details-box-header::before {
    content: '📋';
    font-size: 1rem;
}
.details-table {
    width: 100%;
    border-collapse: collapse;
}
.details-table tr { border-bottom: 1px solid #ede8d8; }
.details-table tr:last-child { border-bottom: none; }
.details-table tr:nth-child(even) { background: #fdf9ef; }
.details-table td {
    padding: .82rem 1.4rem;
    font-size: .9rem;
    vertical-align: middle;
}
.details-table td:first-child {
    color: var(--text-muted);
    font-weight: 700;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    width: 40%;
}
.details-table td:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

.producer-note {
    background: var(--green-light);
    border-radius: var(--radius-sm);
    padding: 1rem 1.4rem;
    font-size: .87rem;
    color: var(--green-dark);
    font-weight: 500;
    border-left: 3px solid var(--green-mid);
}
.producer-note strong { font-weight: 800; }

/* Responsive */
@media (max-width: 860px) {
    .product-card { grid-template-columns: 1fr; }
    .product-info-panel { padding: 2rem; }
    .product-info-panel h1 { font-size: 2rem; }
}
@media (max-width: 640px) {
    .hero h1 { font-size: 2.1rem; }
    .hero-stats { gap: 1.8rem; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .navbar { padding: 0 1.2rem; }
    .navbar-tagline { display: none; }
    .hero-content { padding: 3.5rem 1.5rem; }
    .products-section { padding: 3.5rem 1.5rem; }
    .company-band { padding: 3.5rem 1.5rem; }
    .cband-grid { gap: 1.5rem; }
    .product-main { padding: 0 1.2rem 4rem; }
    .breadcrumb { padding: 1.2rem; }
    .product-img-panel { padding: 2rem; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-stats { gap: 1.2rem; margin-top: 2rem; }
    .products-grid { grid-template-columns: 1fr; }
    .product-info-panel { padding: 1.2rem; }
    .product-info-panel h1 { font-size: 1.7rem; }
    .details-table td { padding: 0.6rem; }
    .details-table td:first-child { width: auto; font-size: 0.7rem; }
    .hero-cta { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
}

/* =================== LIGHTBOX =================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,14,10,.95);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    animation: lbFadeIn .2s ease;
}
@keyframes lbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 80px rgba(0,0,0,.8);
    animation: lbScaleIn .25s cubic-bezier(.4,0,.2,1);
}
@keyframes lbScaleIn {
    from { transform: scale(.9); opacity: 0; }
    to   { transform: scale(1);  opacity: 1; }
}
.lb-close {
    position: absolute;
    top: 18px; right: 26px;
    color: #fff;
    font-size: 2.6rem;
    cursor: pointer;
    line-height: 1;
    opacity: .75;
    transition: opacity .2s;
}
.lb-close:hover { opacity: 1; }