.shop{padding:90px 0;background:linear-gradient(180deg,#fbf6ec,#f1e2c6);}
.shop-shell{display:block;}
.shop-account-panel,.shop-drawer-card{background:#fff;border:1px solid rgba(111,59,24,.12);border-radius:8px;box-shadow:var(--shadow-md);padding:24px;}
.shop-account-panel{
  position:fixed;
  top:92px;
  right:24px;
  z-index:320;
  width:min(380px,calc(100vw - 32px));
  max-height:calc(100vh - 116px);
  overflow:auto;
}
.shop-account-panel[hidden]{display:none;}
.account-close{position:absolute;top:14px;right:14px;}
.shop-account-panel h3{padding-right:42px;}
.shop-account-panel h3{font-family:var(--font-head);font-size:24px;color:var(--green-900);margin-bottom:8px;}
.shop-account-panel p{color:var(--text-muted);font-size:14px;margin-bottom:16px;}
.shop-tabs{display:grid;grid-template-columns:1fr 1fr;background:var(--cream-100);border-radius:999px;padding:4px;margin-bottom:16px;}
.shop-tabs button,.shop-filters button,.shop-mini-btn{font:inherit;border:0;cursor:pointer;}
.shop-tabs button{border-radius:999px;background:transparent;padding:8px 10px;font-weight:700;color:var(--text-muted);}
.shop-tabs button.active{background:#fff;color:var(--green-700);box-shadow:var(--shadow-sm);}
.shop-auth-form{display:grid;gap:12px;}
.shop-auth-form input,.shop-auth-form textarea{width:100%;border:1px solid #ded2bd;border-radius:8px;background:var(--cream-50);padding:12px 13px;font:inherit;color:var(--text-dark);}
.shop-message{min-height:20px;margin-top:12px;font-size:13px;font-weight:700;color:var(--green-700);}
.shop-message.error{color:var(--error);}
.shop-toolbar{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:22px;}
.shop-filters{display:flex;gap:10px;flex-wrap:wrap;}
.shop-filters button,.shop-mini-btn{background:#fff;border:1px solid rgba(111,59,24,.18);border-radius:999px;padding:10px 16px;font-weight:700;color:var(--green-700);box-shadow:var(--shadow-sm);}
.shop-filters button.active,.shop-mini-btn:hover{background:var(--green-700);color:#fff;}
.shop-mini-btn{padding:9px 14px;}
.shop-mini-btn span{display:inline-flex;align-items:center;justify-content:center;min-width:20px;height:20px;margin-left:4px;border-radius:50%;background:var(--gold-400);color:var(--green-900);font-size:12px;}
.shop-products{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.shop-product-card{background:#fff;border:1px solid rgba(111,59,24,.12);border-radius:8px;overflow:hidden;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;min-height:100%;}
.shop-product-card img{width:100%;aspect-ratio:4/3;object-fit:cover;background:var(--cream-100);}
.shop-product-body{padding:18px;display:flex;flex-direction:column;gap:10px;flex:1;}
.shop-product-body h3{font-size:20px;color:var(--green-900);}
.shop-product-body p{font-size:14px;color:var(--text-muted);flex:1;}
.shop-product-meta{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.shop-price{font-size:20px;font-weight:800;color:var(--green-700);}
.shop-stock{font-size:12px;color:var(--text-muted);}
.shop-card-actions{display:grid;grid-template-columns:80px 1fr;gap:10px;margin-top:4px;}
.shop-card-actions input{width:100%;border:1px solid #ded2bd;border-radius:8px;padding:10px;text-align:center;font:inherit;}
.shop-drawer{position:fixed;inset:0;background:rgba(31,29,27,.45);z-index:300;display:flex;align-items:flex-start;justify-content:flex-end;padding:24px;overflow:auto;}
.shop-drawer[hidden]{display:none;}
.shop-drawer-card{width:min(420px,100%);max-height:calc(100vh - 48px);overflow:auto;}
.shop-drawer-card.wide{width:min(760px,100%);}
.shop-drawer-head{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-bottom:18px;}
.shop-drawer-head h2{font-size:26px;}
.drawer-close{border:0;background:var(--cream-100);color:var(--green-900);width:36px;height:36px;border-radius:50%;font-size:26px;line-height:1;cursor:pointer;}
.cart-items,.order-history{display:grid;gap:14px;}
.cart-item,.order-card{border:1px solid rgba(111,59,24,.12);border-radius:8px;padding:14px;background:var(--cream-50);}
.cart-item{display:grid;grid-template-columns:58px 1fr auto;gap:12px;align-items:center;}
.cart-item img{width:58px;height:58px;border-radius:8px;object-fit:cover;}
.cart-item h4,.order-card h4{font-size:15px;color:var(--green-900);margin-bottom:4px;}
.cart-item p,.order-card p{font-size:13px;color:var(--text-muted);}
.cart-item button{border:0;background:transparent;color:var(--error);font-size:20px;cursor:pointer;}
.cart-total{display:flex;justify-content:space-between;align-items:center;border-top:1px solid rgba(111,59,24,.15);padding:18px 0;margin-top:18px;}
.cart-total strong{font-size:22px;color:var(--green-700);}
.order-card-head{display:flex;justify-content:space-between;gap:12px;align-items:flex-start;margin-bottom:10px;}
.order-card ul{list-style:none;display:grid;gap:6px;margin-top:10px;}
.order-card li{font-size:13px;color:var(--text-dark);}
@media(max-width:980px){.shop-products{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.shop-products{grid-template-columns:1fr}.shop-toolbar{align-items:flex-start;flex-direction:column}.shop-card-actions{grid-template-columns:72px 1fr}.shop-drawer{padding:12px}.shop-drawer-card{max-height:calc(100vh - 24px)}}


@media(max-width:760px){
  .header-cta{display:flex;gap:8px;align-items:center;}
  .shop-mini-btn{padding:8px 10px;font-size:13px;}
  .shop-account-panel{top:78px;right:12px;width:calc(100vw - 24px);max-height:calc(100vh - 92px);}
}
