/* PlantBlink storefront — palette & type from the design bundle. */
:root{
  --green:#16472f; --green-dark:#0e3a26; --accent:#e87fa8;
  --page:#f3ead8; --card:#fffdf8; --ink:#143026;
  --sage:#5f6e58; --sage-2:#6f7b66; --sage-3:#8a917f;
  --chip-bg:#e8efdd; --chip-ink:#5e7a4e;
  --border:#ece2cc; --border-2:#e4d9c2;
  --tile-a:#eef2e4; --tile-b:#e1ead3;
  --wa:#25D366; --gold:#e8c33a;
}
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Jost',sans-serif;background:var(--page);color:var(--ink);-webkit-font-smoothing:antialiased;line-height:1.5;}
img{display:block;}
a{color:inherit;text-decoration:none;}
input,button,textarea,select{font-family:inherit;}
input:focus,textarea:focus,select:focus{outline:2px solid var(--green);outline-offset:-1px;}
::selection{background:#cfe0c4;}
.fr{font-family:'Fraunces',serif;}
.cv{font-family:'Caveat',cursive;}
.wrap{max-width:1200px;margin:0 auto;padding:0 28px;}
.eyebrow{font-weight:500;letter-spacing:.3em;text-transform:uppercase;font-size:11px;color:#9caf8a;}

/* Buttons */
.btn{font-size:14px;font-weight:500;border-radius:30px;padding:11px 20px;cursor:pointer;border:1.5px solid transparent;display:inline-flex;align-items:center;gap:8px;transition:filter .15s,background .15s;}
.btn:hover{filter:brightness(.97);}
.btn-primary{background:var(--green);color:#fbf6ea;border-color:var(--green);}
.btn-outline{background:transparent;color:var(--green);border-color:var(--green);}
.btn-wa{background:var(--wa);color:#0b2a1c;font-weight:600;border:none;}
.btn-lg{padding:15px 30px;font-size:16px;letter-spacing:.02em;}
.btn-block{width:100%;justify-content:center;}
.link-underline{background:none;border:none;color:var(--green);font-size:15px;font-weight:500;cursor:pointer;border-bottom:1.5px solid var(--green);padding-bottom:2px;}
.text-link{background:none;border:none;color:var(--green);font-size:14px;cursor:pointer;text-decoration:underline;text-underline-offset:3px;}
.back-link{background:none;border:none;color:var(--sage);font-size:14px;cursor:pointer;margin-bottom:18px;display:inline-block;}

/* Chips */
.chip{display:inline-block;align-self:flex-start;font-size:11px;font-weight:500;letter-spacing:.05em;color:var(--chip-ink);background:var(--chip-bg);border-radius:20px;padding:3px 11px;}

/* Header */
.site-header{position:sticky;top:0;z-index:40;background:rgba(244,237,221,.9);backdrop-filter:blur(10px);border-bottom:1px solid var(--border-2);}
.site-header .inner{display:flex;align-items:center;gap:16px;padding-top:13px;padding-bottom:13px;}
.brand{display:flex;align-items:center;gap:11px;cursor:pointer;}
.brand img{width:42px;height:42px;border-radius:50%;object-fit:cover;border:1.5px solid #2f6048;}
.brand .name{font-family:'Fraunces',serif;font-weight:600;font-size:22px;color:var(--green);letter-spacing:-.01em;}
.nav{display:flex;align-items:center;gap:7px;margin-left:auto;}
.nav-toggle{display:none;flex-direction:column;justify-content:center;gap:4px;width:42px;height:42px;border:1px solid var(--border-2);border-radius:12px;background:var(--card);cursor:pointer;padding:0 10px;}
.nav-toggle span{display:block;height:2px;width:100%;background:var(--green);border-radius:2px;transition:transform .2s,opacity .2s;}
.nav-toggle.open span:nth-child(1){transform:translateY(6px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}
.nav-link{font-size:15px;background:transparent;border:none;cursor:pointer;padding:8px 12px;border-radius:20px;color:var(--sage);}
.nav-link.active{color:var(--green);font-weight:600;}
.cart-pill{display:flex;align-items:center;gap:7px;background:var(--green);color:#fbf6ea;border:none;border-radius:30px;padding:9px 18px;cursor:pointer;font-size:14px;font-weight:500;}
.cart-pill .count{background:var(--accent);color:#3a1226;min-width:21px;height:21px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;font-size:12px;font-weight:600;padding:0 5px;}

/* Hero */
.hero{display:grid;grid-template-columns:1.05fr .95fr;gap:30px;align-items:center;padding-block:46px 30px;}
.hero-copy{display:flex;flex-direction:column;gap:18px;}
.hero h1{font-family:'Fraunces',serif;font-weight:600;font-size:clamp(46px,6vw,76px);line-height:.96;letter-spacing:-.015em;color:var(--green);}
.hero-tag{font-family:'Caveat',cursive;font-size:27px;color:#3f6b4f;line-height:1.1;max-width:430px;}
.hero-cta{display:flex;gap:13px;flex-wrap:wrap;margin-top:6px;}
.hero-features{display:flex;gap:22px;margin-top:10px;font-weight:300;font-size:14px;color:var(--sage);flex-wrap:wrap;}
.hero-art{position:relative;height:440px;display:flex;align-items:center;justify-content:center;}
.hero-disc{position:absolute;width:380px;height:380px;border-radius:50%;background:radial-gradient(circle at 40% 35%,#bcd0a8,#9caf8a);}
.hero-art .pot{position:absolute;left:2%;bottom:6%;width:150px;}
.hero-art .snake{position:absolute;right:4%;bottom:2%;width:120px;}
.hero-art img{filter:drop-shadow(0 18px 22px rgba(20,48,38,.18));width:100%;}
.hero-art .lead{position:relative;z-index:2;height:400px;width:auto;filter:drop-shadow(0 24px 30px rgba(20,48,38,.22));}

/* Sections */
.section{padding-block:34px;}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:16px;margin-bottom:22px;flex-wrap:wrap;}
.section-title{font-family:'Fraunces',serif;font-weight:600;font-size:34px;color:var(--green);margin-top:6px;}

/* Plant cards (featured) */
.plant-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;}
.plant-card{background:var(--card);border:1px solid var(--border);border-radius:22px;overflow:hidden;display:flex;flex-direction:column;box-shadow:0 12px 30px rgba(20,48,38,.06);}
.plant-card .thumb{cursor:pointer;background:linear-gradient(160deg,var(--tile-a),var(--tile-b));height:200px;display:flex;align-items:flex-end;justify-content:center;padding-top:14px;}
.plant-card .thumb img{max-height:188px;max-width:80%;filter:drop-shadow(0 12px 16px rgba(20,48,38,.16));}
.plant-card .thumb .emoji{font-size:84px;align-self:center;}
.plant-card .body{padding:16px 17px 17px;display:flex;flex-direction:column;gap:7px;flex:1;}
.plant-card h3{cursor:pointer;font-family:'Fraunces',serif;font-weight:600;font-size:21px;color:var(--green);}
.personality{font-family:'Caveat',cursive;font-size:18px;color:var(--sage-2);line-height:1.05;}
.price{font-weight:600;font-size:18px;color:var(--ink);}
.add-row{margin-top:auto;display:flex;align-items:center;justify-content:space-between;padding-top:10px;}

/* Add → stepper */
.add-btn{background:var(--green);color:#fbf6ea;border:none;border-radius:22px;padding:8px 16px;font-size:13px;font-weight:500;cursor:pointer;}
.stepper{display:inline-flex;align-items:center;gap:9px;border:1.5px solid var(--green);border-radius:22px;padding:4px 11px;}
.stepper button{background:none;border:none;color:var(--green);font-size:17px;line-height:1;cursor:pointer;}
.stepper .qty{min-width:14px;text-align:center;font-weight:600;font-size:14px;color:var(--green);}

/* Care preview / care grid */
.care-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:18px;}
.care-card{cursor:pointer;background:var(--card);border:1px solid var(--border);border-radius:22px;overflow:hidden;display:flex;box-shadow:0 12px 30px rgba(20,48,38,.06);}
.care-card .img{width:140px;flex-shrink:0;background:linear-gradient(160deg,var(--tile-a),var(--tile-b));display:flex;align-items:center;justify-content:center;}
.care-card .img img{max-height:120px;max-width:84%;}
.care-card .body{padding:18px 20px;display:flex;flex-direction:column;gap:8px;justify-content:center;}
.care-card h3{font-family:'Fraunces',serif;font-weight:600;font-size:20px;color:var(--green);line-height:1.1;}
.care-card p{font-weight:300;font-size:14px;color:var(--sage-2);line-height:1.5;}

/* Community panel (home preview + page hero) */
.community-panel{background:linear-gradient(150deg,#103b27,#1c5638);border-radius:26px;padding:40px 36px;color:#eee6d3;display:grid;grid-template-columns:1fr 1fr;gap:30px;align-items:center;}
.community-panel .eyebrow{color:var(--gold);}
.community-panel h2{font-family:'Fraunces',serif;font-weight:600;font-size:34px;margin:8px 0 12px;line-height:1.02;}
.community-panel p{font-weight:300;font-size:15px;line-height:1.6;color:#d3dcc8;max-width:380px;}
.community-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px;}
.chat{display:flex;flex-direction:column;gap:10px;}
.chat-row{display:flex;gap:9px;align-items:flex-start;}
.chat-row.me{justify-content:flex-end;}
.avatar{width:30px;height:30px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:13px;}
.bubble{background:rgba(255,255,255,.08);border-radius:4px 14px 14px 14px;padding:9px 13px;font-size:13.5px;color:#e6eddd;}
.bubble.me{background:#2c6e49;border-radius:14px 4px 14px 14px;color:#eef5e7;max-width:78%;}

/* Shop */
.page-eyebrow{margin-top:8px;}
.shop-title{font-family:'Fraunces',serif;font-weight:600;font-size:42px;color:var(--green);margin:8px 0 4px;}
.shop-sub{font-family:'Caveat',cursive;font-size:22px;color:var(--sage-2);margin-bottom:24px;}
.shop-controls{display:flex;gap:14px;margin-bottom:18px;flex-wrap:wrap;align-items:center;justify-content:space-between;}
.cat-chips{display:flex;gap:10px;flex-wrap:wrap;}
.cat-chip{font-size:14px;padding:9px 18px;border-radius:24px;cursor:pointer;border:1.5px solid var(--border-2);background:var(--card);color:var(--sage);}
.cat-chip.active{background:var(--green);color:#fbf6ea;border-color:var(--green);}
.search{position:relative;flex:1;min-width:220px;max-width:340px;}
.search span{position:absolute;left:16px;top:50%;transform:translateY(-50%);font-size:15px;opacity:.5;}
.search input{width:100%;border:1px solid #e0d6c0;border-radius:26px;padding:11px 16px 11px 42px;font-size:14px;background:var(--card);color:var(--ink);}
.result-count{font-size:13px;color:var(--sage-3);margin-bottom:16px;}
.shop-list{display:flex;flex-direction:column;gap:14px;}
.shop-row{background:var(--card);border:1px solid var(--border);border-radius:20px;padding:14px;display:flex;align-items:center;gap:18px;box-shadow:0 8px 22px rgba(20,48,38,.05);}
.shop-thumb{cursor:pointer;flex-shrink:0;width:120px;height:120px;border-radius:16px;background:linear-gradient(160deg,var(--tile-a),#e3ecd6);display:flex;align-items:center;justify-content:center;}
.shop-thumb img{max-height:108px;max-width:90%;filter:drop-shadow(0 8px 12px rgba(20,48,38,.16));}
.shop-thumb.emoji{background:var(--tile-a);font-size:40px;}
.shop-info{flex:1;min-width:0;display:flex;flex-direction:column;gap:6px;}
.shop-info h3{cursor:pointer;font-family:'Fraunces',serif;font-weight:600;font-size:23px;color:var(--green);}
.shop-info .personality{font-size:19px;}
.shop-chips{display:flex;gap:7px;margin-top:3px;flex-wrap:wrap;}
.shop-actions{display:flex;flex-direction:column;align-items:flex-end;gap:10px;flex-shrink:0;padding-right:6px;}
.shop-actions .price{font-size:20px;}
.shop-actions .add-btn{padding:10px 22px;font-size:14px;border-radius:24px;}
.shop-actions .stepper{padding:6px 14px;gap:12px;}
.shop-actions .stepper button{font-size:19px;}
.shop-actions .stepper .qty{font-size:15px;min-width:16px;}
.no-results{background:var(--card);border:1px dashed #d8cdb4;border-radius:18px;padding:44px;text-align:center;color:var(--sage-2);font-size:15px;}

/* Product detail */
.pdp{max-width:1120px;margin:0 auto;padding:30px 28px 60px;}
.pdp-grid{display:grid;grid-template-columns:1fr 1fr;gap:38px;align-items:start;}
.pdp-media{position:sticky;top:90px;}
.pdp-stage{background:linear-gradient(160deg,var(--tile-a),var(--tile-b));border-radius:26px;height:440px;display:flex;align-items:center;justify-content:center;}
.pdp-stage img{max-height:400px;max-width:78%;filter:drop-shadow(0 22px 26px rgba(20,48,38,.2));}
.pdp-stage.emoji{font-size:130px;}
.pdp-thumbs{display:flex;gap:10px;margin-top:12px;}
.pdp-thumbs .t{width:74px;height:74px;border-radius:14px;border:2px solid transparent;background:linear-gradient(160deg,var(--tile-a),var(--tile-b));display:flex;align-items:center;justify-content:center;cursor:pointer;padding:0;overflow:hidden;}
.pdp-thumbs .t.active{border:2px solid var(--green);}
.pdp-thumbs .t img{max-height:60px;max-width:80%;}
.pdp-thumbs .t.blank{background:repeating-linear-gradient(45deg,#e7ddc8 0 8px,#f1ead8 8px 16px);}
.pdp-info{display:flex;flex-direction:column;gap:16px;}
.pdp-info h1{font-family:'Fraunces',serif;font-weight:600;font-size:42px;color:var(--green);margin-top:12px;line-height:1;}
.pdp-info .personality{font-size:25px;margin-top:6px;}
.pdp-price{font-weight:600;font-size:28px;color:var(--ink);}
.pdp-desc{font-weight:300;font-size:15px;line-height:1.7;color:#4b5a45;}
.care-chips{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;}
.care-chip{border:1px solid var(--border-2);border-radius:14px;padding:12px;text-align:center;background:var(--card);}
.care-chip .ic{font-size:20px;}
.care-chip .k{font-size:11px;color:var(--sage-3);margin:4px 0 2px;letter-spacing:.04em;}
.care-chip .v{font-size:13px;font-weight:500;color:#2f4636;}
.field-label{font-size:13px;color:var(--sage);margin-bottom:8px;letter-spacing:.04em;}
.size-row,.opt-row{display:flex;gap:9px;flex-wrap:wrap;}
.opt-btn{font-size:13px;padding:8px 15px;border-radius:20px;cursor:pointer;border:1.5px solid #d2c9b2;background:#fff;color:#4b5a45;}
.opt-btn.active{background:var(--green);color:#fbf6ea;border-color:var(--green);}
.matcher{border:1.5px dashed var(--green);border-radius:18px;padding:18px;background:#f7f3e6;}
.matcher h3{font-family:'Fraunces',serif;font-weight:600;font-size:18px;color:var(--green);margin-bottom:12px;}
.matcher .row{margin-bottom:11px;}
.matcher .q{font-size:13px;color:var(--sage);margin-bottom:6px;}
.verdict{background:#eef2e4;border:1px solid #cfdcc0;border-radius:12px;padding:11px 13px;font-family:'Caveat',cursive;font-size:19px;color:#3f6b4f;line-height:1.15;}
.detail-box{border:1px solid var(--border-2);border-radius:16px;padding:18px;background:var(--card);}
.detail-box .k{font-size:13px;color:var(--sage);letter-spacing:.04em;margin-bottom:11px;}
.detail-pills{display:flex;gap:8px;flex-wrap:wrap;}
.detail-pills span{font-size:13px;color:#3f5a3f;background:var(--tile-a);border-radius:20px;padding:6px 13px;}
.pdp-cart-row{display:flex;gap:12px;}
.pdp-incart{flex:1;display:flex;align-items:center;justify-content:space-between;border:1.5px solid var(--green);border-radius:30px;padding:8px 22px;}
.pdp-incart button{background:none;border:none;color:var(--green);font-size:22px;cursor:pointer;line-height:1;}
.pdp-incart .qty{font-weight:600;font-size:15px;color:var(--green);}
.pdp-add{background:var(--green);color:#fbf6ea;border:none;border-radius:30px;padding:16px;font-size:16px;font-weight:500;cursor:pointer;letter-spacing:.02em;width:100%;}
.pairs-section{margin-top:48px;}
.pairs-section h2{font-family:'Fraunces',serif;font-weight:600;font-size:26px;color:var(--green);margin-bottom:16px;}
.pairs-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px;}
.pair-card{background:var(--card);border:1px solid var(--border);border-radius:18px;padding:16px;display:flex;align-items:center;gap:14px;}
.pair-card .ic{cursor:pointer;width:54px;height:54px;border-radius:13px;background:var(--tile-a);display:flex;align-items:center;justify-content:center;font-size:26px;flex-shrink:0;overflow:hidden;}
.pair-card .ic img{max-height:46px;max-width:84%;}
.pair-card .meta{cursor:pointer;flex:1;}
.pair-card .meta .nm{font-family:'Fraunces',serif;font-weight:600;font-size:17px;color:var(--green);}
.pair-card .meta .pr{font-size:13px;color:var(--sage-3);}
.pair-card .add-btn{background:var(--tile-a);color:var(--green);border-radius:20px;padding:8px 15px;}

/* Cart */
.page{max-width:1000px;margin:0 auto;padding:42px 28px 60px;}
.page-narrow{max-width:760px;}
.page h1.title{font-family:'Fraunces',serif;font-weight:600;font-size:40px;color:var(--green);margin-bottom:24px;}
.cart-grid{display:grid;grid-template-columns:1.6fr 1fr;gap:24px;align-items:start;}
.cart-lines{display:flex;flex-direction:column;gap:12px;}
.cart-line{background:var(--card);border:1px solid var(--border);border-radius:18px;padding:14px;display:flex;align-items:center;gap:15px;}
.cart-line .ic{width:70px;height:70px;border-radius:13px;background:var(--tile-a);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:28px;overflow:hidden;}
.cart-line .ic img{max-height:60px;max-width:84%;}
.cart-line .info{flex:1;min-width:0;}
.cart-line .info .nm{font-family:'Fraunces',serif;font-weight:600;font-size:18px;color:var(--green);}
.cart-line .info .ea{font-size:13px;color:var(--sage-3);}
.cart-line .stepper{border:1px solid #e0d6c0;border-radius:22px;padding:5px 12px;gap:10px;color:var(--ink);}
.cart-line .stepper button{color:var(--green);font-size:18px;}
.cart-line .stepper .qty{color:var(--ink);min-width:18px;font-weight:500;}
.cart-line .line-total{font-weight:600;width:72px;text-align:right;}
.summary{background:var(--card);border:1px solid var(--border);border-radius:20px;padding:22px;position:sticky;top:90px;}
.summary h3{font-family:'Fraunces',serif;font-weight:600;font-size:20px;color:var(--green);margin-bottom:16px;}
.summary .row{display:flex;justify-content:space-between;font-size:15px;color:#4b5a45;margin-bottom:9px;}
.summary .free{color:#3f8a5b;font-weight:500;}
.summary .total{border-top:1px solid var(--border);padding-top:12px;display:flex;justify-content:space-between;font-size:19px;font-weight:600;color:var(--ink);margin-top:3px;}
.summary .note{text-align:center;font-family:'Caveat',cursive;font-size:17px;color:#7d9468;margin-top:12px;}
.empty-state{background:var(--card);border:1px solid var(--border);border-radius:22px;padding:60px 30px;text-align:center;}
.empty-state h3{font-family:'Fraunces',serif;font-weight:600;font-size:24px;color:var(--green);}
.empty-state p{color:var(--sage-2);margin:8px 0 20px;}

/* Checkout */
.checkout-grid{display:grid;grid-template-columns:1.5fr 1fr;gap:24px;align-items:start;}
.form-card{background:var(--card);border:1px solid var(--border);border-radius:20px;padding:22px;}
.form-card h3{font-family:'Fraunces',serif;font-weight:600;font-size:19px;color:var(--green);margin-bottom:14px;}
.field-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.field-grid input{border:1px solid #e0d6c0;border-radius:12px;padding:12px 14px;font-size:15px;background:#fff;color:var(--ink);}
.field-grid .full{grid-column:1/-1;}
.pin-input{border:1.5px solid var(--green)!important;}
.field-wrap{display:flex;flex-direction:column;gap:4px;}
.field-wrap input{width:100%;}
input.invalid{border-color:#b0502e!important;background:#fdf3ef;}
.field-err{font-size:12px;color:#b0502e;}
.form-error-banner{background:#fbe7e0;border:1px solid #eab8a3;color:#b0502e;border-radius:14px;padding:12px 16px;margin-bottom:18px;font-size:14px;}
.pin-msg{margin-top:11px;font-family:'Caveat',cursive;font-size:18px;color:#7d9468;}
.pay-options{display:flex;flex-direction:column;gap:10px;}
.pay-option{display:flex;gap:12px;align-items:center;border:1.5px solid #e0d6c0;border-radius:14px;padding:14px;cursor:pointer;background:#fff;}
.pay-option.active{border-color:var(--green);background:#f3f7ee;}
.pay-dot{width:16px;height:16px;border-radius:50%;flex-shrink:0;border:2px solid #c2bda9;background:transparent;}
.pay-option.active .pay-dot{border-color:var(--green);background:var(--green);box-shadow:inset 0 0 0 2px #fff;}
.pay-option .nm{font-weight:500;color:#2f4636;}
.pay-option .ds{font-size:13px;color:var(--sage-3);}
.summary-lines{display:flex;flex-direction:column;gap:9px;margin-bottom:13px;}
.summary-lines .row{display:flex;justify-content:space-between;font-size:14px;color:#4b5a45;}

/* Confirm */
.confirm{max-width:640px;margin:0 auto;padding:60px 28px;}
.confirm-card{background:var(--card);border:1px solid var(--border);border-radius:26px;padding:48px 34px;text-align:center;box-shadow:0 14px 40px rgba(20,48,38,.08);}
.confirm-card h1{font-family:'Fraunces',serif;font-weight:600;font-size:34px;color:var(--green);}
.confirm-card .sub{color:var(--sage-2);margin:10px 0 4px;}
.confirm-card .cv-note{font-family:'Caveat',cursive;font-size:21px;color:#7d9468;margin-bottom:26px;}
.confirm-join{background:#dff3e3;border:1px solid #b6dcc0;border-radius:18px;padding:22px;}
.confirm-join h3{font-family:'Fraunces',serif;font-weight:600;font-size:20px;color:var(--green-dark);margin-bottom:6px;}
.confirm-join p{font-size:14px;color:#3f6b4f;margin-bottom:16px;}

/* Community page */
.community-page .hero-panel{background:linear-gradient(150deg,#103b27,#1c5638);border-radius:28px;padding:46px 38px;color:#eee6d3;display:flex;align-items:center;justify-content:space-between;gap:26px;flex-wrap:wrap;}
.community-page .hero-panel .copy{max-width:480px;}
.community-page .hero-panel h1{font-family:'Fraunces',serif;font-weight:600;font-size:46px;line-height:1;margin:10px 0 12px;}
.community-page .hero-panel p{font-weight:300;font-size:16px;line-height:1.6;color:#d3dcc8;}
.community-page .eyebrow{color:var(--gold);}
.chat-card{flex:1;min-width:260px;background:rgba(255,255,255,.07);border:1px solid rgba(238,230,211,.18);border-radius:20px;padding:16px;}
.chat-card .lbl{font-size:12px;color:#a9b89e;margin-bottom:11px;letter-spacing:.05em;}
.value-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;}
.value-card{background:var(--card);border:1px solid var(--border);border-radius:20px;padding:24px;}
.value-card .ic{font-size:28px;margin-bottom:10px;}
.value-card h3{font-family:'Fraunces',serif;font-weight:600;font-size:19px;color:var(--green);margin-bottom:6px;}
.value-card p{font-weight:300;font-size:14px;color:var(--sage);line-height:1.55;}

/* Care guide */
.care-cats{display:flex;gap:9px;flex-wrap:wrap;margin-bottom:26px;}
.care-cat{border-radius:22px;padding:8px 16px;font-size:14px;background:var(--card);border:1px solid var(--border-2);color:var(--sage);cursor:pointer;}
.care-cat.active{background:var(--green);color:#fbf6ea;border-color:var(--green);}
.featured-article{cursor:pointer;background:linear-gradient(150deg,#1c5638,#0e3a26);border-radius:24px;padding:38px 34px;color:#eee6d3;display:flex;align-items:center;justify-content:space-between;gap:24px;margin-bottom:22px;flex-wrap:wrap;}
.featured-article .copy{max-width:540px;}
.featured-article h2{font-family:'Fraunces',serif;font-weight:600;font-size:30px;margin:8px 0;line-height:1.05;}
.featured-article p{font-weight:300;font-size:15px;color:#cfd8c4;line-height:1.6;}
.featured-article .tag{font-size:12px;color:var(--gold);letter-spacing:.06em;}
.featured-article .more{display:inline-block;margin-top:14px;font-size:15px;font-weight:500;color:#eae3cf;border-bottom:1.5px solid rgba(234,227,207,.5);padding-bottom:2px;}
.featured-article .big-emoji{font-size:64px;}
.article-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;margin-bottom:30px;}
.article-card{cursor:pointer;background:var(--card);border:1px solid var(--border);border-radius:18px;overflow:hidden;}
.article-card .img{height:120px;background:linear-gradient(160deg,var(--tile-a),var(--tile-b));display:flex;align-items:center;justify-content:center;}
.article-card .img img{max-height:100px;}
.article-card .body{padding:16px;}
.article-card h3{font-family:'Fraunces',serif;font-weight:600;font-size:18px;color:var(--green);margin:8px 0 6px;}
.article-card p{font-weight:300;font-size:13px;color:var(--sage-2);line-height:1.5;}
.recipes{background:var(--card);border:1.5px dashed var(--green);border-radius:22px;padding:26px;}
.recipes h2{font-family:'Fraunces',serif;font-weight:600;font-size:24px;color:var(--green);margin-bottom:4px;}
.recipes .cv-note{font-family:'Caveat',cursive;font-size:19px;color:var(--sage-2);margin-bottom:18px;}
.recipe-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px;}
.recipe-card{border:1px solid var(--border);border-radius:16px;padding:18px;background:#faf6ea;}
.recipe-card h3{font-family:'Fraunces',serif;font-weight:600;font-size:18px;color:var(--green);}
.recipe-card p{font-size:13px;color:var(--sage-2);margin:6px 0 12px;}
.recipe-card .add-btn{background:var(--tile-a);color:var(--green);border-radius:20px;padding:8px 16px;}

/* Article reader */
.article-cat{margin-bottom:0;}
.article h1{font-family:'Fraunces',serif;font-weight:600;font-size:clamp(30px,4.6vw,46px);line-height:1.04;color:var(--green);margin:12px 0 18px;}
.article-hero{background:linear-gradient(160deg,var(--tile-a),var(--tile-b));border-radius:22px;height:240px;display:flex;align-items:center;justify-content:center;margin-bottom:26px;}
.article-hero img{max-height:210px;filter:drop-shadow(0 14px 18px rgba(20,48,38,.16));}
.article-body{display:flex;flex-direction:column;gap:16px;}
.article-body p{font-weight:300;font-size:17px;line-height:1.75;color:#3f4a3a;}
.article-cta{margin-top:32px;background:#dff3e3;border:1px solid #b6dcc0;border-radius:20px;padding:22px 26px;display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;}
.article-cta h3{font-family:'Fraunces',serif;font-weight:600;font-size:20px;color:var(--green-dark);}
.article-cta p{font-size:14px;color:#3f6b4f;}

/* Legal pages */
.legal{max-width:760px;}
.legal h1{font-family:'Fraunces',serif;font-weight:600;font-size:38px;color:var(--green);margin-bottom:6px;}
.legal .updated{color:var(--sage-3);font-size:13px;margin-bottom:22px;}
.legal h2{font-family:'Fraunces',serif;font-weight:600;font-size:20px;color:var(--green);margin:26px 0 8px;}
.legal p,.legal li{font-weight:300;font-size:15px;line-height:1.7;color:#3f4a3a;}
.legal ul{margin:8px 0 0 20px;}
.legal a{color:var(--green);text-decoration:underline;text-underline-offset:2px;}

/* Footer */
.site-footer{background:#0b2a1c;color:#cdd8c4;margin-top:20px;}
.site-footer .inner{display:flex;justify-content:space-between;gap:30px;flex-wrap:wrap;padding:46px 28px;max-width:1200px;margin:0 auto;}
.site-footer .brand-blurb{max-width:300px;}
.site-footer .wordmark{font-family:'Fraunces',serif;font-weight:700;font-size:26px;color:#fff;margin-bottom:8px;}
.site-footer .tagline{font-family:'Caveat',cursive;font-size:21px;color:var(--gold);margin-bottom:12px;}
.site-footer .brand-blurb p{font-weight:300;font-size:14px;color:#a9b89e;line-height:1.6;}
.footer-cols{display:flex;gap:46px;flex-wrap:wrap;}
.footer-col{display:flex;flex-direction:column;gap:9px;font-size:14px;}
.footer-col .h{color:#8fa382;font-size:12px;letter-spacing:.1em;text-transform:uppercase;margin-bottom:3px;}
.footer-col a{cursor:pointer;}
.footer-col .admin{color:#8fa382;font-size:13px;}
.copyright{border-top:1px solid rgba(205,216,196,.14);padding:16px 28px;text-align:center;font-size:12px;color:#7e8d72;}

/* Responsive */
body{overflow-x:hidden;}

@media (max-width:900px){
  .hero{grid-template-columns:1fr;gap:18px;}
  .hero-art{height:300px;}
  .community-panel,.checkout-grid,.cart-grid{grid-template-columns:1fr;}
  .pdp-grid{grid-template-columns:1fr;gap:24px;}
  .pdp-media{position:static;}
  .summary{position:static;}
}

@media (max-width:640px){
  .wrap{padding:0 18px;}

  /* Header: brand left, hamburger + cart right; nav drops down when toggled */
  .site-header .inner{flex-wrap:wrap;gap:10px;}
  .brand{order:1;margin-right:auto;}
  .brand .name{font-size:20px;}
  .cart-pill{order:2;margin-left:0;}
  .nav-toggle{display:flex;order:3;}
  .nav{order:4;flex-basis:100%;margin-left:0;display:none;flex-direction:column;gap:2px;margin-top:6px;padding-top:8px;border-top:1px solid var(--border-2);}
  .nav.open{display:flex;}
  .nav-link{padding:11px 8px;font-size:15px;width:100%;border-radius:8px;}
  .nav-link.active{background:var(--chip-bg);}

  /* Hero */
  .hero{padding-block:28px 14px;}
  .hero h1{font-size:clamp(38px,12vw,54px);}
  .hero-tag{font-size:21px;}
  .hero-disc{width:250px;height:250px;}
  .hero-art{height:250px;}
  .hero-art .lead{height:240px;}
  .hero-art .pot{width:96px;left:0;}
  .hero-art .snake{width:80px;right:0;}
  .hero-cta{flex-direction:column;}
  .hero-cta .btn{width:100%;justify-content:center;}

  /* Featured plants → compact 2-up grid (was oversized full-width) */
  .plant-grid{grid-template-columns:1fr 1fr;gap:12px;}
  .plant-card .thumb{height:148px;padding-top:10px;}
  .plant-card .thumb img{max-height:136px;}
  .plant-card .thumb .emoji{font-size:56px;}
  .plant-card .body{padding:12px 12px 13px;gap:5px;}
  .plant-card h3{font-size:17px;}
  .plant-card .personality{font-size:15px;}
  .plant-card .price{font-size:16px;}
  .plant-card .add-row{padding-top:8px;}
  .plant-card .add-btn{padding:7px 12px;font-size:12px;}
  .plant-card .stepper{padding:3px 8px;gap:7px;}

  /* Headings / spacing */
  .section{padding-block:26px;}
  .section-title{font-size:26px;}
  .shop-title,.page h1.title{font-size:30px;}
  .page{padding:28px 18px 50px;}
  .pdp{padding:24px 18px 50px;}
  .pdp-info h1{font-size:34px;}

  /* Shop rows: actions drop below, full width */
  .shop-row{flex-wrap:wrap;gap:12px;}
  .shop-thumb{width:92px;height:92px;}
  .shop-actions{flex-direction:row;width:100%;justify-content:space-between;align-items:center;padding-right:0;}

  /* Forms single column */
  .field-grid{grid-template-columns:1fr;}
  .field-grid .full{grid-column:auto;}

  .pdp-stage{height:340px;}
  .community-page .hero-panel h1{font-size:36px;}
  .featured-article{padding:26px 22px;}
  .featured-article .big-emoji{display:none;}
}
