:root {
    --green: #12372a;
    --gold: #d6a84f;
    --dark: #071b14;
    --brown: #6b3f22
}

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

body {
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at top, #fff8e7, #eef6ed 55%, #dbe9dc);
    color: var(--dark)
}

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

.topbar {
    background: #0d2b20;
    color: #fff;
    padding: 8px 6%;
    text-align: center
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 14px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 247, 230, .92);
    box-shadow: 0 10px 35px #0001
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-size: 24px
}

.brand img {
    width: 55px;
    height: 55px;
    object-fit: contain
}

nav {
    display: flex;
    gap: 18px;
    align-items: center;
    font-weight: 800
}

#hamb {
    display: none;
    background: var(--green);
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 10px 14px
}

.cart-pill {
    background: var(--green);
    color: white;
    padding: 10px 16px;
    border-radius: 999px
}

.hero {
    min-height: 80vh;
    padding: 60px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center
}

.hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1;
    color: var(--green)
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brown);
    font-weight: 900;
    margin-bottom: 12px
}

.hero p {
    font-size: 19px;
    line-height: 1.7;
    margin: 18px 0
}

.hero-img {
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 30px 70px #0003
}

.btn {
    border: 0;
    display: inline-flex;
    padding: 13px 23px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer
}

.gold {
    background: linear-gradient(135deg, var(--gold), #f2d98e);
    color: #241400
}

.dark {
    background: var(--green);
    color: white
}

.section {
    padding: 65px 7%
}

.search-strip {
    padding: 18px 7%;
    position: relative
}

.search-strip input,
.page-head input {
    width: 100%;
    padding: 17px 24px;
    border: 1px solid #dec98c;
    border-radius: 999px;
    font-size: 16px
}

.stats,
.grid,
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.stats {
    padding: 35px 7%
}

.stats div,
.product,
.cards>*,
.contact form,
.contact-card,
.cart-row,
aside {
    background: #ffffffd8;
    border: 1px solid #d6a84f55;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 20px 50px #00000012
}

.stats b {
    font-size: 34px;
    color: var(--green);
    display: block
}

.grid {
    grid-template-columns: repeat(3, 1fr)
}

.product {
    position: relative;
    overflow: hidden;
    transition: .3s
}

.product:hover {
    transform: translateY(-8px)
}

.product img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: linear-gradient(135deg, #fff7e6, #edf5eb);
    padding: 12px;
    border-radius: 22px;
    margin-bottom: 16px
}

.product h3 {
    color: var(--green);
    font-size: 22px
}

.price {
    font-size: 24px;
    font-weight: 900;
    color: var(--brown);
    margin: 10px 0
}

.product-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.product-actions .btn {
    padding: 10px 15px;
    font-size: 14px
}

.star-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: gold;
    color: black;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 5;
    box-shadow: 0 6px 18px #0003
}

.featured-card {
    border: 2px solid var(--gold)
}

.page-head {
    text-align: center;
    padding: 70px 7% 30px
}

.page-head h1 {
    font-size: 48px;
    color: var(--green)
}

.page-head input {
    margin-top: 20px;
    max-width: 720px
}

.filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 7%
}

.filter {
    border: 0;
    background: white;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 900;
    cursor: pointer
}

.filter.active {
    background: var(--green);
    color: white
}

.quick {
    display: none;
    position: fixed;
    inset: 0;
    background: #0009;
    z-index: 200;
    place-items: center
}

.quick.show {
    display: grid
}

.quick-card {
    background: white;
    padding: 25px;
    border-radius: 30px;
    width: min(92%, 520px)
}

.quick-card img {
    width: 100%;
    border-radius: 20px;
    max-height: 420px;
    object-fit: contain
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.gallery img,
.split img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 45px #0002;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #fff;
    padding: 14px
}

.split,
.contact,
.cart-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

.contact form {
    display: grid;
    gap: 14px
}

.contact input,
.contact select,
.contact textarea {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #ddd;
    font-size: 16px
}

.contact textarea {
    min-height: 130px
}

.map {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px #0002
}

.cart-row {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px
}

.cart-row img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 15px
}

.qty button {
    padding: 6px 10px;
    border: 0;
    background: var(--green);
    color: white;
    border-radius: 8px
}

.full {
    width: 100%;
    margin-top: 12px
}

.float-wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: white;
    padding: 14px 20px;
    border-radius: 999px;
    z-index: 150;
    font-weight: 900
}

footer {
    text-align: center;
    background: var(--green);
    color: white;
    padding: 45px 7%
}

footer h2 {
    color: var(--gold)
}

#globalResults {
    position: absolute;
    background: white;
    left: 7%;
    right: 7%;
    top: 72px;
    z-index: 20;
    border-radius: 20px;
    box-shadow: 0 30px 60px #0002;
    overflow: hidden
}

.result {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    border-bottom: 1px solid #eee
}

.result img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 12px
}

@media(max-width:900px) {
    #hamb {
        display: block
    }

    nav {
        display: none;
        position: absolute;
        left: 6%;
        right: 6%;
        top: 82px;
        background: white;
        border-radius: 25px;
        padding: 20px;
        flex-direction: column
    }

    nav.open {
        display: flex
    }

    .hero,
    .split,
    .contact,
    .cart-wrap {
        grid-template-columns: 1fr
    }

    .grid,
    .stats,
    .cards,
    .gallery {
        grid-template-columns: 1fr
    }
}
.team-section{
  padding:100px 8%;
  background:#f8f1e7;
}

.team-heading{
  text-align:center;
  margin-bottom:60px;
}

.team-heading h2{
  font-size:48px;
  color:#234b2c;
  margin-bottom:10px;
}

.team-heading p{
  color:#666;
  font-size:18px;
}

.team-container{
    display:flex;
    flex-direction:column;
    gap:30px;
    max-width:900px;
    margin:auto;
}

.team-card{
    width:100%;
}

.team-card:hover{
  transform:translateY(-10px);
}

.team-card img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.team-card h3{
  margin-top:20px;
  font-size:26px;
  color:#234b2c;
}

.team-card span{
  color:#b8860b;
  font-size:16px;
  font-weight:600;
}
/* FOUNDER CARD SPECIAL */
.team-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
    padding-bottom:20px;
}

/* Founder */
.team-card.founder{
    background:#1f4d36;
    color:white;
    border:2px solid #d4a017;
    transform:none;
    max-width:900px;
    margin:auto;
}

.team-card.founder h3{
    color:white;
    font-size:30px;
}

.team-card.founder span{
    color:#ffd369;
}

.team-card.founder img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.team-card.founder p{
    color:#f0f0f0;
}

.team-card.founder img{
  width:280px;
  height:350px;
  border-radius:20px;
  margin-right:30px;
  object-fit:cover;
  border:4px solid #d4a017;
}

.team-card.founder h3{
  font-size:42px;
  color:#fff;
  margin-bottom:10px;
}

.team-card.founder span{
  color:#ffd369;
  font-size:20px;
  font-weight:600;
}

.team-card.founder p{
  margin-top:20px;
  color:#eee;
  line-height:1.8;
  font-size:17px;
  max-width:500px;
}