/* Buttons */
.btn-primary { background: var(--forest); color: white; padding: 0.9rem 2.2rem; border-radius: 50px; font-size: 0.95rem; font-weight: 500; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: #1e3620; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,74,46,0.25); }
.btn-outline { background: transparent; color: var(--forest); padding: 0.9rem 2.2rem; border-radius: 50px; font-size: 0.95rem; font-weight: 500; cursor: pointer; border: 2px solid var(--forest); transition: all 0.2s; }
.btn-outline:hover { background: var(--light-sage); }

/* Product Cards */
.product-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(44,74,46,0.1); }
.product-img { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; }
.product-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: white; font-size: 0.72rem; font-weight: 500; padding: 0.28rem 0.65rem; border-radius: 50px; }
.product-body { padding: 1.4rem; }
.product-body h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.35rem; }
.pdesc { font-size: 0.85rem; color: #777; line-height: 1.6; margin-bottom: 1rem; font-weight: 300; }
.ptags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.ptag { background: var(--light-sage); color: var(--forest); font-size: 0.7rem; padding: 0.22rem 0.65rem; border-radius: 50px; font-weight: 500; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--forest); font-weight: 700; }
.price-unit { font-size: 0.72rem; color: #aaa; margin-top: 2px; font-family: 'DM Sans', sans-serif; font-weight: 400; }
.add-btn { background: var(--forest); color: white; border: none; padding: 0.55rem 1.15rem; border-radius: 50px; font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.add-btn:hover { background: var(--earth); transform: scale(1.04); }
.add-btn.added { background: var(--sage); }

/* Cart */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.38); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-panel { position: fixed; right: 0; top: 0; bottom: 0; width: min(400px, 95vw); background: var(--warm-white); z-index: 201; transform: translateX(100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.cart-panel.open { transform: translateX(0); }
.cart-head { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-head h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--forest); }
.xbtn { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: #999; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.xbtn:hover { background: var(--light-sage); }
.cart-items { flex: 1; overflow-y: auto; padding: 0.8rem 1.5rem; }
.cart-empty-msg { text-align: center; padding: 3rem 1rem; color: #bbb; }
.cart-empty-msg .ei { font-size: 3rem; display: block; margin-bottom: 0.8rem; }
.cart-item { display: flex; gap: 0.9rem; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
.ci-icon { width: 48px; height: 48px; background: var(--light-sage); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.ci-info { flex: 1; }
.ci-info h4 { font-size: 0.88rem; font-weight: 500; }
.ci-info p { font-size: 0.78rem; color: #888; margin-top: 2px; }
.qty-ctrl { display: flex; align-items: center; gap: 0.5rem; }
.qbtn { width: 27px; height: 27px; border-radius: 50%; border: 1.5px solid var(--border); background: white; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; color: var(--forest); transition: all 0.2s; }
.qbtn:hover { border-color: var(--forest); background: var(--light-sage); }
.qnum { font-weight: 500; font-size: 0.88rem; min-width: 14px; text-align: center; }
.cart-foot { padding: 1.2rem 1.5rem; border-top: 1px solid var(--border); background: white; }
.ctotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.ctotal span { font-size: 0.88rem; color: #666; }
.ctotal strong { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--forest); }
.wa-btn { width: 100%; background: #25D366; color: white; border: none; padding: 0.95rem; border-radius: 50px; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 0.55rem; }
.wa-btn:hover { background: #1aad4e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.28); }
.wa-note { text-align: center; font-size: 0.75rem; color: #bbb; margin-top: 0.7rem; }

/* Toast */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--forest); color: white; padding: 0.75rem 1.4rem; border-radius: 50px; font-size: 0.86rem; font-weight: 500; z-index: 300; transition: transform 0.3s cubic-bezier(.4,0,.2,1); white-space: nowrap; }
.toast.show { transform: translateX(-50%) translateY(0); }
