* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: #f9f9f9; color: #1a1c1c; padding-top: 72px; }
a { text-decoration: none; }
.product-card { background: white; border-radius: 16px; box-shadow: 0 1px 4px rgba(0,0,0,0.07); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s; cursor: pointer; }
.product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.13); }
.product-card img { width: 100%; height: 200px; object-fit: contain; padding: 16px; background: #f3f3f3; transition: transform 0.3s; }
.product-card:hover img { transform: scale(1.05); }
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.add-cart-btn { background: #feae2c; color: #6b4500; border: none; border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 4px; }
.add-cart-btn:hover { background: #e09820; }
.badge { display: inline-block; border-radius: 999px; padding: 3px 10px; font-size: 11px; font-weight: 700; }

/* Search overlay */
#search-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:200; align-items:flex-start; justify-content:center; padding-top:100px; }
#search-overlay.open { display:flex; }
#search-box { background:white; border-radius:16px; padding:24px; width:100%; max-width:600px; box-shadow:0 8px 32px rgba(0,0,0,0.2); }
#search-input { width:100%; border:2px solid #002451; border-radius:999px; padding:12px 20px; font-size:16px; font-family:inherit; outline:none; }

/* Footer links */
footer a, footer span.flink { color:rgba(255,255,255,0.7); font-size:14px; display:block; margin-bottom:8px; cursor:pointer; transition:color 0.2s; }
footer a:hover, footer span.flink:hover { color:#feae2c; }
