:root{
  --green:#123b2a;
  --green-2:#1b4a35;
  --green-3:#edf3ee;
  --beige:#f3efe4;
  --beige-soft:#315a49;
  --white:#ffffff;
  --page:#fcfbf7;
  --shadow:0 18px 40px rgba(0,0,0,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--page);
  color:var(--green);
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}
.container{width:min(1200px, calc(100% - 32px)); margin:0 auto;}
.header{
  position:sticky; top:0; z-index:40;
  background:rgba(252,251,247,.95);
  border-bottom:1px solid rgba(18,59,42,.10);
  backdrop-filter:blur(10px);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:20px; padding:16px 0;
}
.brand{display:flex; align-items:center; gap:14px; min-width:0;}
.brand img{width:56px; height:56px; border-radius:50%; object-fit:cover; border:1px solid rgba(18,59,42,.12); background:#fff;}
.brand-title{font-size:32px; font-weight:700; line-height:1; margin:0 0 6px;}
.brand-sub{margin:0; font-size:11px; letter-spacing:.28em; text-transform:uppercase; opacity:.65;}
.nav{display:flex; gap:28px; font-size:14px; flex-wrap:wrap;}
.nav a:hover{color:#1f5a3f}
.header-actions{display:flex; align-items:center; gap:12px; flex-wrap:wrap;}
.btn{
  display:inline-flex; align-items:center; justify-content:center; border-radius:999px;
  padding:14px 22px; font-weight:700; transition:.2s ease; border:1px solid rgba(18,59,42,.18);
  cursor:pointer; background:#fff; color:var(--green);
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--green); color:var(--page); border-color:var(--green);}
.btn-secondary:hover{background:var(--green); color:var(--page);}
.hero{padding:72px 0 90px;}
.hero-grid{display:grid; grid-template-columns:1.2fr .8fr; gap:40px; align-items:center;}
.tag{
  display:inline-block; border:1px solid rgba(18,59,42,.12); border-radius:999px; padding:10px 16px;
  font-size:12px; letter-spacing:.25em; text-transform:uppercase; color:rgba(18,59,42,.70); margin-bottom:22px; background:#fff;
}
h1{font-size:68px; line-height:1.05; margin:0; max-width:760px;}
.hero p{max-width:760px; font-size:19px; color:var(--beige-soft); margin:24px 0 0;}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-top:30px;}
.hero-card, .product-card, .newsletter, .about, .auth-card, .account-card{
  border:1px solid rgba(18,59,42,.10); border-radius:32px;
}
.hero-card{background:#fff; padding:34px; box-shadow:var(--shadow);}
.hero-card img{border-radius:24px; border:1px solid rgba(18,59,42,.10);}
.info-band{background:#fff; border-top:1px solid rgba(18,59,42,.10); border-bottom:1px solid rgba(18,59,42,.10);}
.info-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px; padding:24px 0; font-size:14px;}
.info-grid h3{margin:0 0 6px; font-size:16px;}
.info-grid p{margin:0; color:rgba(49,90,73,.85);}
.section{padding:72px 0;}
.section-head{display:flex; align-items:end; justify-content:space-between; gap:18px; margin-bottom:26px;}
.eyebrow{font-size:12px; letter-spacing:.25em; text-transform:uppercase; color:rgba(18,59,42,.55); margin:0 0 10px;}
h2{margin:0; font-size:42px; line-height:1.15;}
.products{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
.product-card{
  background:#fff;
  padding:18px 18px 22px;
  overflow:hidden;
  box-shadow:0 16px 30px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  border:1px solid rgba(18,59,42,.10);
  border-radius:28px;
}
.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 40px rgba(0,0,0,.10);
  border-color:rgba(18,59,42,.22);
}
.product-image{
  width:100%;
  height:300px;
  overflow:hidden;
  background:var(--beige);
  border:1px solid rgba(18,59,42,.10);
  border-radius:22px;
  padding:0;
}
.product-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:22px;
  opacity:1;
  transition:transform .45s ease;
}
.product-card:hover .product-image img{
  transform:scale(1.04);
}
.product-top{display:flex; align-items:start; justify-content:space-between; gap:16px; margin-top:16px;}
.product-title{margin:0; font-size:24px; line-height:1.2;}
.price{
  background:#edf3ee;
  color:var(--green);
  border-radius:999px;
  padding:8px 14px;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
  box-shadow:0 8px 18px rgba(0,0,0,.05);
}
.product-card p{
  color:rgba(49,90,73,.88);
  font-size:14px;
  margin:12px 0 0;
  min-height:64px;
}
.product-card .btn{
  width:100%;
  text-align:center;
  margin-top:20px;
  padding:13px 18px;
  background:#fff;
}
.product-card .btn:hover{
  background:var(--green);
  color:var(--page);
}
.split{display:grid; grid-template-columns:1fr 1fr; gap:22px; padding-bottom:72px;}
.about{background:#fff; padding:32px;}
.newsletter{background:var(--beige); color:var(--green); padding:32px;}
.newsletter p{opacity:.85;}
.form{display:grid; gap:14px; margin-top:20px;}
.input{
  width:100%; border-radius:18px; border:1px solid rgba(18,59,42,.12); padding:14px 18px; font-size:16px;
  background:#fff; color:var(--green);
}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
.footer{border-top:1px solid rgba(18,59,42,.10); padding:28px 0; color:rgba(49,90,73,.85); font-size:14px;}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:16px;}
.footer-links{display:flex; gap:22px; flex-wrap:wrap;}
.auth-wrap{padding:72px 0;}
.auth-card,.account-card{background:#fff; padding:32px; max-width:920px; margin:0 auto; box-shadow:var(--shadow);}
.message{padding:14px 16px; border-radius:18px; margin-bottom:18px;}
.message-error{background:#f8d7da; color:#6b1f2a;}
.message-success{background:#dff3e6; color:#1d5735;}
.account-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:18px;}
.account-item{background:rgba(18,59,42,.04); border-radius:18px; padding:14px; border:1px solid rgba(18,59,42,.08);}
.account-label{font-size:12px; text-transform:uppercase; letter-spacing:.15em; opacity:.7; margin-bottom:6px;}
.muted{color:rgba(49,90,73,.82);}
.small{font-size:14px;}

body.menu-open{overflow:hidden}
#cartCount{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:24px; height:24px; padding:0 7px; margin-left:8px;
  border-radius:999px; background:#edf3ee; color:var(--green); font-size:13px; font-weight:700;
}
.cart-overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.30); opacity:0; pointer-events:none; transition:.25s ease; z-index:79;
}
.cart-overlay.show{opacity:1; pointer-events:auto}
.cart-panel{
  position:fixed; top:0; right:0; height:100vh; width:min(420px, 100%); background:#fff;
  border-left:1px solid rgba(18,59,42,.10); box-shadow:var(--shadow); transform:translateX(100%);
  transition:.25s ease; z-index:80; display:flex; flex-direction:column; color:var(--green);
}
.cart-panel.show{transform:translateX(0)}
.cart-head{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:20px; border-bottom:1px solid rgba(18,59,42,.10)}
.cart-body{flex:1; overflow:auto; padding:20px}
.cart-foot{padding:20px; border-top:1px solid rgba(18,59,42,.10); background:rgba(18,59,42,.03)}
.cart-row{display:flex; justify-content:space-between; gap:12px; margin-bottom:14px; font-size:16px}
.cart-actions{display:grid; gap:10px}
.cart-item{padding:16px 0; border-bottom:1px solid rgba(18,59,42,.10)}
.cart-item-top{display:flex; justify-content:space-between; gap:12px; margin-bottom:10px}
.cart-item-title{margin:0; font-size:18px; line-height:1.2}
.qty-controls{display:flex; align-items:center; gap:10px; margin-top:8px}
.qty-btn{
  width:32px; height:32px; border-radius:50%; border:1px solid rgba(18,59,42,.25);
  background:#fff; color:var(--green); cursor:pointer;
}
.remove-link{margin-top:10px; font-size:13px; text-decoration:underline; text-underline-offset:3px; cursor:pointer; display:inline-block; opacity:.9}

@media (max-width: 980px){
  h1{font-size:52px}
  .hero-grid, .split, .products, .info-grid{grid-template-columns:1fr 1fr}
  .products .product-card:last-child{grid-column:1 / -1}
  .nav{display:none}
}
@media (max-width: 680px){
  .header-inner, .footer-inner{flex-direction:column; align-items:flex-start}
  .hero-grid, .split, .products, .info-grid, .grid-2, .account-grid{grid-template-columns:1fr}
  h1{font-size:40px}
  h2{font-size:32px}
  .brand-title{font-size:28px}
  .hero{padding:48px 0 60px}
  .section{padding:56px 0}
  .product-image{height:240px;}
  .product-title{font-size:20px;}
}


.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  background: #123b2a;
  color: #fcfbf7;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  border: 1px solid rgba(18,59,42,0.15);
  transition: transform .2s ease, opacity .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  opacity: .95;
}
@media (max-width: 680px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 11px 16px;
    font-size: 13px;
  }
}


/* v23 responsive optimization */
.mobile-menu-btn {
  display: none;
  border: 1px solid rgba(18,59,42,0.14);
  background: #ffffff;
  color: #123b2a;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.hero h1 {
  text-wrap: balance;
}

.hero p,
.about p,
.newsletter p {
  text-wrap: pretty;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-inner {
    gap: 14px;
  }

  .header-actions {
    width: auto;
  }
}

@media (max-width: 820px) {
  .header {
    position: sticky;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .brand-title {
    font-size: 24px;
  }

  .brand-sub {
    font-size: 10px;
    letter-spacing: .18em;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(18,59,42,0.08);
  }

  .header-actions {
    gap: 8px;
    justify-content: flex-end;
  }

  .header-actions .btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero {
    padding: 34px 0 46px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .products {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card {
    padding: 16px;
    border-radius: 22px;
  }

  .product-image {
    height: 220px;
    border-radius: 16px;
  }

  .product-image img {
    border-radius: 16px;
  }

  .product-top {
    flex-direction: column;
    gap: 10px;
  }

  .product-title {
    font-size: 21px;
  }

  .price {
    align-self: flex-start;
  }

  .product-card p {
    min-height: auto;
  }

  .about,
  .newsletter,
  .auth-card,
  .account-card {
    padding: 24px;
    border-radius: 24px;
  }

  .cart-panel {
    width: 100%;
  }

  .cart-head h2 {
    font-size: 24px !important;
  }

  .cart-body,
  .cart-foot {
    padding: 16px;
  }

  .footer {
    padding-bottom: 90px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu-btn {
    order: 2;
  }

  .header-actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: stretch;
    padding-top: 10px;
  }

  .header-actions .btn,
  .header-actions .cart-button,
  #openCartBtn {
    width: 100%;
    justify-content: center;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-title {
    font-size: 22px;
  }

  .tag {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: .16em;
  }

  h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
    margin-top: 18px;
  }

  .hero-card {
    padding: 18px;
    border-radius: 24px;
  }

  .product-image {
    height: 200px;
  }

  .product-title {
    font-size: 20px;
  }

  .order-card,
  .account-item,
  .order-summary-box {
    padding: 14px;
  }

  .whatsapp-float {
    width: calc(100% - 24px);
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-align: center;
    justify-content: center;
  }
}


/* v24 mobile header icon buttons */
.mobile-icon {
  display: none;
  font-size: 18px;
  line-height: 1;
}
.desktop-label {
  display: inline;
}

@media (max-width: 560px) {
  .header-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .header-actions .btn,
  #openCartBtn {
    width: 100%;
    min-height: 44px;
    padding: 10px;
    font-size: 0;
    gap: 0;
  }

  .header-actions .desktop-label {
    display: none;
  }

  .header-actions .mobile-icon {
    display: inline-block;
    font-size: 18px;
  }

  #cartCount {
    margin-left: 4px;
    min-width: 20px;
    height: 20px;
    font-size: 11px;
    padding: 0 5px;
  }
}





/* v26 mobile header two-row layout */
@media (max-width: 560px) {
  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .brand {
    width: 100%;
    justify-content: flex-start;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 20px;
    padding: 0;
    flex: 0 0 42px;
  }

  .header-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding-top: 0;
  }

  .header-actions .btn,
  #openCartBtn {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    position: relative;
    flex: 0 0 42px;
  }

  .header-actions .desktop-label {
    display: none;
  }

  .header-actions .mobile-icon {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(18,59,42,0.08);
  }

  #cartCount {
    position: absolute;
    top: -5px;
    right: -5px;
    margin-left: 0;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer {
    padding-bottom: 90px;
  }

  .whatsapp-float {
    width: calc(100% - 24px);
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-align: center;
    justify-content: center;
  }
}
