*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --gold: #887942; --gold-dark: #6e6235; --gold-light: #d4b96a; --black: #2d2d2d; --grey: #f5f5f5; --border: #e0e0e0; --text: #333; --muted: #777; --white: #fff; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif; color: var(--text); background: var(--white); font-size: 15px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* Buttons */
.btn-gold { background: var(--gold); color: #fff; padding: 12px 28px; border-radius: 6px; font-weight: 600; border: none; display: inline-block; transition: background .15s; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-white { background: #fff; color: var(--gold); padding: 12px 28px; border-radius: 6px; font-weight: 600; border: none; display: inline-block; transition: background .15s; }
.btn-quote { background: var(--gold); color: #fff; padding: 9px 18px; border-radius: 5px; font-size: 0.83rem; font-weight: 600; }
.btn-enquiry { width: 100%; padding: 9px; background: var(--gold); color: #fff; border: none; border-radius: 5px; font-size: 0.82rem; font-weight: 600; margin-top: 8px; transition: background .15s; }
.btn-enquiry:hover { background: var(--gold-dark); }
.btn-add-large { width: 100%; padding: 14px; background: var(--gold); color: #fff; border: none; border-radius: 6px; font-size: 1rem; font-weight: 600; margin: 16px 0 8px; transition: background .15s; }
.btn-add-large:hover { background: var(--gold-dark); }
.btn-quote-link { display: block; text-align: center; color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; text-decoration: underline; }
.btn-clear { background: transparent; border: 1px solid var(--border); color: var(--muted); padding: 9px; border-radius: 5px; font-size: 0.85rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 1px 6px rgba(0,0,0,0.1); }
.header-inner { display: flex; align-items: center; gap: 16px; max-width: 1400px; margin: 0 auto; padding: 0 20px; height: 90px; }
.logo-link { flex-shrink: 0; }
.site-logo { height: 78px; width: auto; max-width: 200px; object-fit: contain; }
.search-wrap { flex: 1; max-width: 520px; position: relative; }
.search-input { width: 100%; padding: 9px 16px; border: 1.5px solid var(--border); border-radius: 24px; font-size: 0.88rem; outline: none; background: var(--grey); }
.search-input:focus { border-color: var(--gold); background: #fff; }
.search-drop { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); z-index: 100; display: none; max-height: 400px; overflow-y: auto; }
.search-drop.open { display: block; }
.search-result-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; cursor: pointer; border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; }
.search-result-item:hover { background: var(--grey); }
.search-result-item img { width: 44px; height: 44px; object-fit: contain; border-radius: 4px; }
.search-result-item .sr-title { font-size: 0.85rem; font-weight: 500; }
.search-result-item .sr-price { font-size: 0.78rem; color: var(--gold); }
.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-left: auto; }
.cart-link { display: flex; align-items: center; gap: 4px; padding: 8px 10px; border: 1.5px solid var(--border); border-radius: 6px; color: var(--text); }
.cart-link:hover { border-color: var(--gold); }
.cart-count { background: var(--gold); color: #fff; border-radius: 10px; padding: 0 5px; font-size: 0.7rem; font-weight: 700; min-width: 18px; text-align: center; line-height: 18px; }
.menu-btn { display: none; background: none; border: none; font-size: 1.4rem; padding: 8px; color: var(--text); }
.site-nav { background: var(--gold); overflow-x: auto; }
.site-nav a { display: inline-block; color: rgba(255,255,255,0.92); padding: 10px 14px; font-size: 0.82rem; font-weight: 500; white-space: nowrap; transition: background .15s; }
.site-nav a:hover { background: rgba(0,0,0,0.18); color: #fff; }

/* Hero */
.hero { background: linear-gradient(135deg, #1a1a14 0%, #2d2718 60%, #3d3520 100%); min-height: 460px; display: flex; align-items: center; padding: 60px 20px; }
.hero-inner { max-width: 700px; margin: 0 auto; }
.hero-tag { display: inline-block; background: var(--gold); color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 4px 14px; border-radius: 20px; margin-bottom: 18px; }
.hero-h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.btn-hero-primary { background: var(--gold); color: #fff; padding: 13px 30px; border-radius: 6px; font-weight: 700; font-size: 0.95rem; border: none; transition: background .15s; }
.btn-hero-primary:hover { background: var(--gold-dark); }
.btn-hero-outline { background: transparent; border: 2px solid rgba(255,255,255,0.65); color: #fff; padding: 11px 28px; border-radius: 6px; font-weight: 600; font-size: 0.95rem; transition: background .15s; }
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); }
.hero-b2b { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* Trust bar */
.trust-bar { display: flex; justify-content: center; gap: 0; background: #f9f6ec; border-top: 1px solid #e8dfc0; border-bottom: 1px solid #e8dfc0; }
.trust-item { flex: 1; max-width: 220px; text-align: center; padding: 18px 12px; }
.trust-item strong { display: block; font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.trust-item span { font-size: 0.75rem; color: var(--muted); }

/* Sections */
.section { padding: 52px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-h2 { font-size: 1.65rem; font-weight: 700; margin-bottom: 28px; color: var(--black); }

/* Category grid */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow .18s, transform .18s, border-color .18s; background: #fff; }
.cat-card:hover { box-shadow: 0 4px 20px rgba(136,121,66,.2); transform: translateY(-2px); border-color: var(--gold); }
.cat-img-wrap { aspect-ratio: 1; overflow: hidden; background: #f9f9f9; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform .3s; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.05); }
.cat-label { padding: 12px 14px; }
.cat-name { font-weight: 600; font-size: 0.88rem; display: block; color: var(--black); }
.cat-count { font-size: 0.75rem; color: var(--muted); display: block; margin-top: 2px; }

/* Product grid */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: #fff; display: flex; flex-direction: column; transition: box-shadow .18s; }
.product-card:hover { box-shadow: 0 3px 14px rgba(0,0,0,0.1); }
.product-img-link { display: block; }
.product-img-wrap { aspect-ratio: 1; overflow: hidden; background: #f9f9f9; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform .3s; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-card-body { padding: 10px 12px; flex: 1; display: flex; flex-direction: column; }
.product-card-title { font-size: 0.83rem; font-weight: 500; color: var(--black); line-height: 1.35; margin-bottom: 6px; display: block; flex: 1; }
.product-card-price { margin-bottom: 4px; }
.price { color: var(--gold); font-weight: 700; font-size: 0.92rem; }
.price-enquiry { color: var(--muted); font-size: 0.75rem; font-style: italic; }

/* CTA band */
.cta-band { background: var(--gold); padding: 52px 20px; text-align: center; color: #fff; }
.cta-band h2 { font-size: 1.8rem; margin-bottom: 10px; }
.cta-band p { opacity: .88; margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Breadcrumb */
.breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* Collection controls */
.coll-count { color: var(--muted); font-size: 0.85rem; margin-bottom: 16px; }
.coll-controls { margin-bottom: 20px; }
.coll-controls select { padding: 8px 14px; border: 1px solid var(--border); border-radius: 5px; font-size: 0.85rem; background: #fff; cursor: pointer; }

/* Product detail */
.prod-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.prod-gallery { position: sticky; top: 90px; }
.main-img-wrap { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: #f9f9f9; aspect-ratio: 1; }
.main-prod-img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.thumbs-wrap { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.thumb-img { width: 68px; height: 68px; object-fit: contain; border: 1px solid var(--border); border-radius: 5px; padding: 4px; cursor: pointer; background: #f9f9f9; }
.thumb-img:hover { border-color: var(--gold); }
.prod-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.prod-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.vendor-badge, .type-badge { padding: 3px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }
.vendor-badge { background: var(--grey); color: var(--muted); }
.type-badge { background: #f0ead6; color: var(--gold-dark); }
.prod-price { font-size: 1.4rem; margin-bottom: 14px; }
.sku-badge { font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; }
.prod-body { margin-top: 20px; font-size: 0.88rem; line-height: 1.7; color: var(--text); padding-top: 16px; border-top: 1px solid var(--border); }
.prod-body ul { list-style: disc; padding-left: 20px; margin: 8px 0; }
.prod-body p, .prod-body li { margin-bottom: 6px; }
.prod-body table { border-collapse: collapse; width: 100%; font-size: 0.82rem; margin: 10px 0; }
.prod-body td, .prod-body th { border: 1px solid var(--border); padding: 6px 10px; }

/* Variants */
.variants-section { margin-bottom: 14px; }
.variants-section h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.variants-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.variants-table th { background: var(--grey); padding: 7px 10px; text-align: left; font-weight: 600; border: 1px solid var(--border); }
.variants-table td { padding: 7px 10px; border: 1px solid var(--border); }
.variants-table tr:nth-child(even) { background: #fafafa; }

/* Tabs */
.prod-tabs { margin-top: 20px; }
.tab-btns { display: flex; gap: 0; border-bottom: 2px solid var(--border); }
.tab-btn { background: none; border: none; padding: 9px 18px; font-size: 0.85rem; font-weight: 500; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color .15s, border-color .15s; }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-content { padding: 14px 0; font-size: 0.85rem; color: var(--text); line-height: 1.6; }

/* Contact & Forms */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form-wrap h2, .cart-form-wrap h2 { font-size: 1.1rem; font-weight: 600; margin-bottom: 18px; }
.contact-form-wrap label, .cart-form-wrap label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 12px; }
.contact-form-wrap input, .contact-form-wrap select, .contact-form-wrap textarea,
.cart-form-wrap input, .cart-form-wrap select, .cart-form-wrap textarea { display: block; width: 100%; padding: 9px 12px; border: 1.5px solid var(--border); border-radius: 5px; font-size: 0.88rem; font-family: inherit; margin-top: 4px; }
.contact-form-wrap input:focus, .contact-form-wrap textarea:focus, .cart-form-wrap input:focus, .cart-form-wrap textarea:focus { outline: none; border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-info h2 { font-size: 1.1rem; font-weight: 600; margin-bottom: 18px; }
.contact-info p { margin-bottom: 12px; font-size: 0.88rem; }
.contact-note { background: #f9f6ec; border: 1px solid #e8dfc0; border-radius: 8px; padding: 16px; margin-top: 20px; }

/* Cart */
.cart-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.cart-form-wrap { background: var(--grey); padding: 24px; border-radius: 8px; }
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item img { width: 56px; height: 56px; object-fit: contain; border-radius: 5px; border: 1px solid var(--border); background: #fff; padding: 4px; }
.cart-item-info { flex: 1; }
.cart-item-title { font-size: 0.85rem; font-weight: 500; }
.cart-item-price { font-size: 0.78rem; color: var(--muted); }
.cart-item-remove { background: none; border: none; color: var(--muted); font-size: 1.1rem; padding: 4px 8px; cursor: pointer; }
.cart-item-remove:hover { color: #c0392b; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 280px; gap: 40px; }
.about-grid h2 { font-size: 1.1rem; font-weight: 600; margin: 20px 0 10px; }
.about-grid ul { list-style: disc; padding-left: 20px; font-size: 0.88rem; line-height: 1.8; }
.about-grid p { font-size: 0.92rem; margin-bottom: 14px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
.stat-box { background: #f9f6ec; border: 1px solid #e8dfc0; border-radius: 8px; padding: 18px; text-align: center; }
.stat-box strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.stat-box span { font-size: 0.78rem; color: var(--muted); margin-top: 4px; display: block; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.faq-item h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.faq-item p { font-size: 0.88rem; color: var(--text); }

/* Search big */
.search-big-wrap { display: flex; gap: 10px; margin-bottom: 20px; }
.search-big-input { flex: 1; padding: 12px 18px; border: 2px solid var(--border); border-radius: 6px; font-size: 1rem; outline: none; }
.search-big-input:focus { border-color: var(--gold); }
.search-big-wrap button { padding: 12px 24px; background: var(--gold); color: #fff; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; }

/* Footer */
.site-footer { background: #1a1a1a; color: #aaa; padding: 48px 20px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1200px; margin: 0 auto; padding-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #999; font-size: 0.83rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col p { font-size: 0.83rem; line-height: 1.6; }
.footer-note { font-size: 0.75rem; color: #666; margin-top: 14px; }
.footer-bar { border-top: 1px solid #2a2a2a; padding: 14px 20px; display: flex; justify-content: space-between; max-width: 1200px; margin: 0 auto; font-size: 0.75rem; color: #555; }

/* Toast */
.toast { position: fixed; bottom: 24px; right: 24px; background: #2d2d2d; color: #fff; padding: 12px 20px; border-radius: 6px; font-size: 0.85rem; z-index: 9999; display: none; animation: fadeIn .2s; }
.toast.show { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media(max-width: 1100px) { .cat-grid, .prod-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width: 900px) {
  .menu-btn { display: block; }
  .site-nav { display: none; flex-direction: column; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .cat-grid, .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-detail { grid-template-columns: 1fr; }
  .prod-gallery { position: static; }
  .contact-grid, .cart-grid, .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .trust-bar { flex-wrap: wrap; }
}
@media(max-width: 580px) {
  .header-inner { height: 78px; gap: 10px; }
  .site-logo { height: 63px; }
  .search-wrap { display: none; }
  .cat-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .prod-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .hero { min-height: 360px; padding: 40px 16px; }
  .hero-h1 { font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; gap: 4px; }
}

/* ── 2026 Design System Updates ─────────────────────────────────────── */

/* Modern web font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; }

/* Focus visible accessibility */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Scroll-driven entrance animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-up { animation: fadeUp 0.5s ease forwards; }
.cat-card { animation: fadeUp 0.4s ease both; }
.product-card { animation: fadeUp 0.4s ease both; }
.cat-card:nth-child(1) { animation-delay: 0.05s; }
.cat-card:nth-child(2) { animation-delay: 0.10s; }
.cat-card:nth-child(3) { animation-delay: 0.15s; }
.cat-card:nth-child(4) { animation-delay: 0.20s; }
.cat-card:nth-child(5) { animation-delay: 0.25s; }
.cat-card:nth-child(6) { animation-delay: 0.30s; }
.cat-card:nth-child(7) { animation-delay: 0.35s; }
.cat-card:nth-child(8) { animation-delay: 0.40s; }

/* Glassmorphism header on scroll */
.site-header.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* Modern button hover with lift */
.btn-gold, .btn-hero-primary { box-shadow: 0 2px 8px rgba(136,121,66,0.3); }
.btn-gold:hover, .btn-hero-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(136,121,66,0.4); }

/* Product card hover refinement */
.product-card { transition: box-shadow 0.2s ease, transform 0.2s ease; }
.product-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); transform: translateY(-3px); }

/* Category card hover */
.cat-card { transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }

/* Hero gradient improvement */
.hero { background: linear-gradient(135deg, #111108 0%, #1e1b10 40%, #2d2718 70%, #3d3520 100%); }

/* Modern hero with subtle pattern */
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(136,121,66,0.15) 0%, transparent 60%); pointer-events: none; }
.hero { position: relative; overflow: hidden; }
.hero-inner { position: relative; z-index: 1; }

/* Trust bar refinement */
.trust-bar { background: linear-gradient(90deg, #f9f6ec 0%, #faf8f0 50%, #f9f6ec 100%); }
.trust-item { transition: transform 0.2s; }
.trust-item:hover { transform: translateY(-2px); }

/* Section separator */
.section-divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 0 0 24px; }

/* Pill badges */
.vendor-badge { background: #f0ead6; color: #6e6235; font-weight: 600; padding: 3px 10px; border-radius: 20px; font-size: 0.73rem; letter-spacing: 0.02em; }
.type-badge { background: #e8f4e8; color: #2d6e2d; font-weight: 600; padding: 3px 10px; border-radius: 20px; font-size: 0.73rem; }

/* Search input modern style */
.search-input { transition: border-color 0.15s, box-shadow 0.15s; }
.search-input:focus { box-shadow: 0 0 0 3px rgba(136,121,66,0.15); }

/* Nav active state */
.site-nav a { position: relative; }
.site-nav a::after { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 2px; background: rgba(255,255,255,0.6); transition: left 0.2s, right 0.2s; }
.site-nav a:hover::after { left: 10%; right: 10%; }

/* Image hover zoom */
.cat-img-wrap { overflow: hidden; }
.cat-img-wrap img { transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.cat-card:hover .cat-img-wrap img { transform: scale(1.08); }
.product-img-wrap img { transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

/* Modern scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Skeleton loading hint */
.img-loading { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* Mobile touch improvements */
@media(max-width: 768px) {
  .btn-gold, .btn-hero-primary, .btn-enquiry, .btn-add-large { min-height: 44px; }
  .cat-card, .product-card { -webkit-tap-highlight-color: transparent; }
}

/* ── Mobile fixes ──────────────────────────────────────── */
/* Body: prevent horizontal scroll */
body { overflow-x: hidden; }

/* Touch targets */
a, button { -webkit-tap-highlight-color: transparent; }
.btn-enquiry, .btn-add-large, .btn-gold { touch-action: manipulation; }

/* Search: show on mobile as full-width below header */
@media(max-width: 580px) {
  .header-inner { flex-wrap: wrap; height: auto; padding: 10px 14px; gap: 8px; }
  .logo-link { order: 1; }
  .header-right { order: 2; margin-left: auto; }
  .search-wrap { order: 3; width: 100%; max-width: 100%; display: block !important; padding-bottom: 8px; }
  .site-logo { height: 46px !important; }
  
  /* Trust bar: 2x2 grid on mobile */
  .trust-bar { display: grid; grid-template-columns: repeat(2,1fr); }
  .trust-item { border-bottom: 1px solid #e8dfc0; }
  
  /* Hero buttons stack */
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { text-align: center; justify-content: center; }
  
  /* Cart: stack columns */
  .cart-grid { grid-template-columns: 1fr; }
  
  /* About stats: 2x2 stays */
  .about-stats { grid-template-columns: repeat(2,1fr); }
  
  /* Variants table: scroll on mobile */
  .variants-section { overflow-x: auto; }
  .variants-table { min-width: 320px; }
  
  /* Product detail: better spacing */
  .prod-info { padding: 0; }
  
  /* Section padding reduce */
  .section { padding: 36px 0; }
  .container { padding: 0 14px; }
  
  /* CTA band */
  .cta-band h2 { font-size: 1.3rem; }
  
  /* Footer */
  .footer-col:first-child { display: none; } /* Hide logo col on smallest */
}

/* Tablet (768px) */
@media(max-width: 768px) {
  .prod-detail { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 24px; }
  .search-big-wrap { flex-direction: column; }
  .search-big-input { font-size: 0.9rem; }
}
