/* Homepage storefront: existing orange with botanical green accents. */
:root { --shop-green: #28543c; --shop-orange: #e8b83e; --shop-ink: #213c2e; }
.shop-actions { display:flex; gap:10px; justify-content:flex-end; padding:10px 0; }
.shop-button { display:inline-flex; align-items:center; justify-content:center; gap:9px; min-height:44px; padding:11px 18px; border:1px solid #dce5dc; border-radius:12px; background:white; color:var(--shop-green); font:600 14px 'Open Sans',sans-serif; cursor:pointer; transition:transform .2s,background .2s,box-shadow .2s; }
.shop-button:hover { background:#f0f5ef; color:var(--shop-green); }
.shop-button:focus-visible,.shop-close:focus-visible { outline:3px solid #28543c; outline-offset:4px; }
.shop-button--cart,.shop-add { background:var(--shop-orange); border-color:var(--shop-orange); color:#30220f; }
.shop-button--cart:hover,.shop-add:hover { background:#dab03b; color:#30220f; box-shadow:0 6px 18px #b7831830; }
.shop-button--cart:hover i { animation:cart-wiggle .45s ease; }
@keyframes cart-wiggle { 30% { transform:translateY(-3px) rotate(-12deg); } 70% { transform:rotate(10deg); } }
.shop-section { padding:54px 0 64px; background:linear-gradient(135deg,#f4f7f0,#fff8ed); border-top:1px solid #e5eadf; }
.shop-section .container { padding-top:0; padding-bottom:0; }
.shop-eyebrow { font-size:12px; font-weight:700; letter-spacing:2px; color:var(--shop-green); }
.shop-heading { display:flex; align-items:end; justify-content:space-between; gap:24px; margin-bottom:26px; }
.shop-heading h2 { margin:8px 0 10px; color:var(--shop-ink); font-size:32px; }
.shop-heading p { margin:0; color:#596653; line-height:1.7; }
.shop-note { font-size:12px; background:#fff; border:1px solid #e7decf; border-radius:20px; padding:8px 14px; flex-shrink:0; }
.shop-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.shop-card { display:flex; flex-direction:column; padding:15px; border:1px solid #e8eadf; border-radius:20px; background:white; box-shadow:0 6px 24px #23422d0b; transition:transform .25s,box-shadow .25s; min-width:0; }
.shop-card:hover { transform:translateY(-5px); box-shadow:0 14px 32px #23422d19; }
.shop-image { display:block; background:#faf9f4; border:1px solid #efeee5; border-radius:14px; overflow:hidden; }
.shop-image img { width:100%; height:230px; object-fit:contain; display:block; mix-blend-mode:multiply; transition:transform .3s; }
.shop-card:hover img { transform:scale(1.035); }
.shop-card h3 { font-size:19px; line-height:1.4; margin:19px 5px 8px; }
.shop-card h3 a { color:var(--shop-ink); }
.shop-price { color:var(--shop-green); font-size:23px; font-weight:700; margin:0 5px 18px; }
.shop-add { width:100%; margin-top:auto; }
.shop-dialog { width:min(440px,calc(100% - 28px)); border:0; border-radius:20px; padding:26px; color:var(--shop-ink); box-shadow:0 20px 70px #132c3333; max-height:80vh; overflow:auto; }
.shop-dialog::backdrop { background:#132c3366; }
.shop-dialog h2 { font-size:23px; padding-right:30px; margin-top:0; }
.shop-close { border:0; background:#eef3ec; color:var(--shop-green); border-radius:50%; width:36px; height:36px; cursor:pointer; font-size:24px; position:absolute; right:14px; top:14px; }
.shop-cart-row { display:flex; align-items:center; justify-content:space-between; gap:12px; border-bottom:1px solid #e7eadf; padding:14px 0; }
.shop-cart-row small { display:block; margin-top:4px; }
.shop-remove { border:0; background:#fff2e1; color:#704008; border-radius:8px; padding:8px; cursor:pointer; }
.shop-toast { position:fixed; bottom:110px; left:50%; transform:translateX(-50%); background:var(--shop-green); color:white; padding:13px 22px; border-radius:12px; z-index:1100; box-shadow:0 8px 25px #0002; max-width:calc(100% - 32px); }
.shop-toast:empty { display:none; }
@media(max-width:991px) { .shop-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media(max-width:575px) { .shop-grid { grid-template-columns:1fr; gap:18px; } .shop-heading { display:block; } .shop-note { display:inline-block; margin-top:14px; } .shop-section { padding:32px 0; } .shop-heading h2 { font-size:27px; } }
@media(prefers-reduced-motion:reduce) { .shop-card,.shop-image img,.shop-button { transition:none; } .shop-button--cart:hover i { animation:none; } }
