:root {
  --brand:        #c9788c;   /* dusty rose */
  --brand-2:      #e89aae;   /* blush pink */
  --brand-deep:   #8a4a5a;   /* mulberry — for text contrast */
  --accent:       #b8a994;   /* warm taupe */
  --sage:         #a8b89e;   /* soft sage accent */
  --cream:        #fdf6ee;
  --bg-soft:      #fbeef0;   /* very pale blush bg */
  --text:         #3a2a30;   /* warm dark plum, not harsh black */
  --text-muted:   #8b7a82;
  --border:       #f1dde2;
  --radius:       14px;
  --shadow-soft:  0 6px 18px rgba(201, 120, 140, .12);
}

* { box-sizing: border-box; }
html, body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); overflow-x: hidden; }
body {
  background-color: #fffafb;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='%23c9788c' fill-opacity='0.05'><path d='M40 56s-13-7.5-13-18.5C27 31.4 31.4 27 36.7 27c3 0 5.6 1.4 7.3 3.6C45.7 28.4 48.3 27 51.3 27 56.6 27 61 31.4 61 37.5 61 48.5 40 56 40 56z'/><path d='M14 22s-6-3.5-6-8.5C8 10.4 10.4 8 13.4 8c1.4 0 2.7.7 3.6 1.8C17.9 8.7 19.2 8 20.6 8 23.6 8 26 10.4 26 13.5 26 18.5 14 22 14 22z' transform='translate(50 40)'/></g></svg>");
  background-repeat: repeat;
}
img { max-width: 100%; height: auto; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-2); }

/* Topbar */
.topbar { font-size: .82rem; background: var(--brand-deep) !important; color: #fff5f7 !important; letter-spacing: .02em; }
.topbar .bi { color: var(--brand-2); }
.topbar-social a { color: #fff5f7; opacity: .85; transition: opacity .2s, transform .15s; display: inline-flex; }
.topbar-social a:hover { opacity: 1; transform: translateY(-1px); }
.topbar-social a .bi { color: var(--brand-2); font-size: 1rem; }

/* Rotating promo (CSS keyframes) */
.topbar-rotator { position: relative; display: inline-block; min-height: 1.4em; line-height: 1.4em; }
.topbar-rotator span {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  white-space: nowrap; opacity: 0; animation: rotate-promo 12s infinite;
}
.topbar-rotator span:nth-child(1) { animation-delay:  0s; }
.topbar-rotator span:nth-child(2) { animation-delay:  4s; }
.topbar-rotator span:nth-child(3) { animation-delay:  8s; }
@keyframes rotate-promo {
  0%, 25%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  30%, 95%  { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  100%      { opacity: 0; }
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand) 100%);
  color: #fff; display: grid; place-items: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem;
  box-shadow: var(--shadow-soft);
}
.brand-text {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.5rem; color: var(--brand-deep);
  letter-spacing: -.01em;
}

/* Search */
.search-form .form-control { border-right: 0; }
.search-form .btn { border-radius: 0 .375rem .375rem 0; }

/* Header icons */
.header-icon { display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; font-size: 1.2rem; color: var(--text); position: relative; }
.cart-icon .cart-count {
  position: absolute; top: 4px; right: 2px;
  background: var(--brand); color: #fff; font-size: .65rem; font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; box-shadow: 0 1px 4px rgba(140,70,90,.3);
}
.header-icon:hover { color: var(--brand-2); }

/* Main nav */
.main-nav { gap: 0; flex-wrap: wrap; }
.main-nav .nav-link { padding: .85rem 1rem; color: var(--text); font-weight: 500; font-size: .95rem; }
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--brand-2); }

/* Product card */
.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .2s;
  display: flex; flex-direction: column; height: 100%; color: var(--text);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--brand-2); color: var(--text); }
.product-card .pc-image { aspect-ratio: 1/1; background: var(--bg-soft); overflow: hidden; position: relative; }
.product-card .pc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .pc-image img { transform: scale(1.05); }
.product-card .pc-body { padding: 1rem; display: flex; flex-direction: column; flex-grow: 1; }
.product-card .pc-title { font-size: .95rem; font-weight: 500; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.category-card .pc-body { padding: .7rem 1rem; flex-grow: 0; }
.category-card .pc-title { min-height: 0; font-weight: 600; color: var(--brand-deep); }
.product-card .pc-price { font-weight: 700; color: var(--brand-deep); margin-top: .5rem; font-size: 1.05rem; }
.product-card .pc-price .compare { color: var(--text-muted); text-decoration: line-through; font-weight: 400; margin-left: .4rem; font-size: .9rem; }

/* Hero */
.hero {
  background-color: var(--bg-soft);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='%23c9788c' fill-opacity='0.06'><path d='M40 56s-13-7.5-13-18.5C27 31.4 31.4 27 36.7 27c3 0 5.6 1.4 7.3 3.6C45.7 28.4 48.3 27 51.3 27 56.6 27 61 31.4 61 37.5 61 48.5 40 56 40 56z'/><path d='M14 22s-6-3.5-6-8.5C8 10.4 10.4 8 13.4 8c1.4 0 2.7.7 3.6 1.8C17.9 8.7 19.2 8 20.6 8 23.6 8 26 10.4 26 13.5 26 18.5 14 22 14 22z' transform='translate(50 40)'/></g></svg>"),
    linear-gradient(135deg, var(--bg-soft) 0%, var(--cream) 60%, #f0e3da 100%);
  background-repeat: repeat, no-repeat;
  border-radius: var(--radius); padding: 2.5rem 2rem; margin-bottom: 2rem;
  position: relative; overflow: hidden;
}
.hero-eyebrow { display:inline-block; font-size:.78rem; letter-spacing:.18em; text-transform:uppercase; color:var(--brand); margin-bottom:1rem; font-weight:600; }
.hero-actions { margin-top:1.5rem; }

/* Hero collage — single row 1x4, compact */
.hero-collage {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  max-width: 460px; margin-left: auto; padding: 6px;
}
.hero-collage .polaroid {
  background: #fff; padding: 4px 4px 14px; border-radius: 3px;
  box-shadow: 0 6px 16px rgba(140, 70, 90, .14);
  transition: transform .3s, box-shadow .3s;
  display: block; overflow: hidden; aspect-ratio: 1;
}
.hero-collage .polaroid img {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 2px;
}
.hero-collage .polaroid:hover {
  transform: scale(1.03) rotate(0deg) !important; z-index: 10;
  box-shadow: 0 18px 36px rgba(140, 70, 90, .25);
}
.hero-collage .pos-1 { transform: rotate(-3deg); }
.hero-collage .pos-2 { transform: rotate( 3deg); margin-top: 18px; }
.hero-collage .pos-3 { transform: rotate( 4deg); margin-top: -10px; }
.hero-collage .pos-4 { transform: rotate(-2deg); }
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(232,154,174,.35), transparent 70%);
}
.hero::before { width: 280px; height: 280px; top: -60px; right: -60px; }
.hero::after  { width: 200px; height: 200px; bottom: -50px; left: -40px;
  background: radial-gradient(circle, rgba(168,184,158,.3), transparent 70%); }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1rem; color: var(--brand-deep); position: relative; }
.hero p  { font-size: 1.18rem; color: var(--text-muted); margin-bottom: 1.5rem; position: relative; max-width: 540px; }
.hero .btn { position: relative; }

/* Section */
.section-title { display: flex; align-items: baseline; justify-content: space-between; margin: 2rem 0 1rem; }
.section-title h2 { margin: 0; font-size: 1.6rem; }
.section-title a { font-size: .9rem; color: var(--brand-2); }

/* Buttons override — soft, feminine */
.btn-dark, .btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border: none; color: #fff; font-weight: 500; letter-spacing: .01em;
  padding: .65rem 1.4rem; border-radius: 999px;
  box-shadow: var(--shadow-soft); transition: transform .15s, box-shadow .2s;
}
.btn-dark:hover, .btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
  color: #fff; transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(201,120,140,.28);
}
.btn-lg { padding: .85rem 2rem; font-size: 1.05rem; }
.btn-outline-dark { color: var(--brand); border-color: var(--brand); border-radius: 999px; }
.btn-outline-dark:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.search-form .btn { border-radius: 0 999px 999px 0; padding-left: 1.2rem; padding-right: 1.2rem; }
.search-form .form-control { border-radius: 999px 0 0 999px; padding-left: 1.2rem; border-color: var(--border); }
.search-form .form-control:focus { border-color: var(--brand-2); box-shadow: 0 0 0 .2rem rgba(232,154,174,.18); }

/* Footer */
.site-footer { background: var(--brand-deep) !important; color: #fff5f7 !important; }
.site-footer h5, .site-footer h6 { color: #fff; font-family: 'Playfair Display', serif; }
.site-footer a { color: rgba(255,245,247,.78); }
.site-footer a:hover { color: var(--brand-2); }
.site-footer .text-white-50 { color: rgba(255,245,247,.6) !important; }
.site-footer .border-secondary { border-color: rgba(255,255,255,.15) !important; }

/* Section title — refined */
.section-title h2 { color: var(--brand-deep); font-weight: 700; }
.section-title a  { color: var(--brand); font-weight: 500; }
.section-title a:hover { color: var(--brand-deep); }

/* Site header — yarn/knit stitch pattern (subtle) */
.site-header {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'><g fill='none' stroke='%23c9788c' stroke-opacity='0.08' stroke-width='1.4' stroke-linecap='round'><path d='M0 20 Q 10 5 20 20 T 40 20 T 60 20 T 80 20'/><path d='M0 32 Q 10 17 20 32 T 40 32 T 60 32 T 80 32'/><path d='M0 8  Q 10 -7 20 8  T 40 8  T 60 8  T 80 8 '/></g></svg>");
  background-repeat: repeat;
}

/* Header icons — softer */
.header-icon { color: var(--text); }
.header-icon:hover { color: var(--brand); }

/* Main nav — soft heart-pattern background (matches body) */
.site-header > nav.border-top {
  background-color: #fffafb;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><g fill='%23c9788c' fill-opacity='0.07'><path d='M30 42s-9-5-9-12.5C21 25 24.4 22 28 22c1.8 0 3.4.8 4.5 2.1C33.6 22.8 35.2 22 37 22c3.6 0 7 3 7 7.5C44 37 30 42 30 42z'/></g></svg>");
  background-repeat: repeat;
  border-color: var(--border) !important;
}
.main-nav .nav-link { color: var(--text); position: relative; }
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--brand); }
.main-nav .nav-link::after {
  content: ''; position: absolute; left: 1rem; right: 1rem; bottom: 8px; height: 2px;
  background: var(--brand); transform: scaleX(0); transform-origin: left center; transition: transform .25s;
  border-radius: 2px;
}
.main-nav .nav-link:hover::after, .main-nav .nav-link.active::after { transform: scaleX(1); }

/* Pagination */
.pagination .page-link { color: var(--brand-deep); border-color: var(--border); }
.pagination .page-item.active .page-link { background: var(--brand); border-color: var(--brand); color: #fff; }
.pagination .page-link:hover { background: var(--bg-soft); color: var(--brand-deep); }

/* Soft form inputs */
.form-control, .form-select { border-color: var(--border); }
.form-control:focus, .form-select:focus { border-color: var(--brand-2); box-shadow: 0 0 0 .2rem rgba(232,154,174,.18); }

/* Badge tweak */
.badge.text-bg-danger { background: var(--brand) !important; }

/* Product detail — gallery layout (vertical thumbs left + main right) */
.product-gallery { display: flex; gap: 12px; }
.product-gallery .thumbs-col {
  display: flex; flex-direction: column; gap: 8px;
  width: 70px; flex-shrink: 0; max-height: 620px; overflow-y: auto;
}
.product-gallery .main-image-wrap {
  flex: 1; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; align-items: center; justify-content: center; max-height: 620px;
}
.product-gallery .main-image-wrap img { width: 100%; height: auto; max-height: 620px; object-fit: contain; display: block; transition: opacity .35s; }
.product-gallery .main-image-wrap img.fading { opacity: 0; }

@media (max-width: 575px) {
  .product-gallery { flex-direction: column-reverse; }
  .product-gallery .thumbs-col { flex-direction: row; width: 100%; max-height: none; overflow-x: auto; }
}

/* Related products — clear separation */
.related-section { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border); clear: both; }

/* Vertical thumbnail buttons (gallery) */
.thumbs-col .thumb-btn {
  width: 100%; padding: 0; background: var(--bg-soft); border: 2px solid transparent;
  border-radius: 8px; overflow: hidden; cursor: pointer; aspect-ratio: 1;
  display: block; transition: border-color .2s, transform .15s;
}
.thumbs-col .thumb-btn:hover { border-color: var(--brand-2); }
.thumbs-col .thumb-btn.active { border-color: var(--brand); }
.thumbs-col .thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Video embed (Bunny + YouTube) */
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Product description (cleaned) */
.product-desc p { margin: 0 0 .8rem; line-height: 1.6; color: var(--text); }
.product-desc .desc-section { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--brand-deep); font-size: 1rem; margin: 1.4rem 0 .6rem; letter-spacing: .01em; }
.desc-dim-table { width: auto; min-width: 240px; font-size: .92rem; margin: .3rem 0 1rem; }
.desc-dim-table th { font-weight: 600; padding: .25rem 1rem .25rem 0; color: var(--brand-deep); text-align: left; vertical-align: top; }
.desc-dim-table td { padding: .25rem 0; color: var(--text); }
.care-details { background: var(--bg-soft); border-radius: 10px; padding: .75rem 1rem; }
.care-details summary { cursor: pointer; font-weight: 500; color: var(--brand-deep); }

/* Price block (product detail) — eye-catching, theme-aligned */
.price-block { display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%);
  border: 1px solid var(--border); border-radius: 14px; padding: .7rem 1.1rem; }
.price-current { font-family: 'Playfair Display', serif; font-size: 1.85rem; font-weight: 700; color: var(--brand-deep); line-height: 1; }
.price-was     { color: var(--text-muted); text-decoration: line-through; font-size: 1rem; }
.price-save    { background: var(--brand); color: #fff; font-size: .72rem; font-weight: 600; padding: .25rem .55rem; border-radius: 999px; letter-spacing: .03em; }
.price-curr-tag{ color: var(--text-muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-left: auto; }

/* Made-to-order card badge */
.pc-image { position: relative; }
.card-badge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: rgba(255,255,255,.95); color: var(--brand-deep);
  font-size: .72rem; padding: .25rem .55rem; border-radius: 999px;
  font-weight: 500; backdrop-filter: blur(4px);
}

/* Video thumb (8th slot) */
.thumb-btn.video-thumb { position: relative; }
.thumb-btn.video-thumb .play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(58, 42, 48, .35); color: #fff; font-size: 1.8rem;
}
.thumb-btn.video-thumb:hover .play-overlay { background: rgba(58, 42, 48, .15); }
.main-image-wrap iframe { width: 100%; aspect-ratio: 9/16; max-height: 620px; border: 0; display: block; }

/* Cart / order tables */
.cart-table img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; background: var(--bg-soft); }
.cart-table .qty-input { width: 70px; }
.summary-card { background: var(--bg-soft); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.summary-card .row-line { display:flex; justify-content:space-between; padding:.4rem 0; }
.summary-card .row-line.total { font-weight:700; font-size:1.1rem; color: var(--brand-deep); border-top:1px solid var(--border); margin-top:.6rem; padding-top:.8rem; }

/* Checkout items mini-cards (compact, mobile-first, scroll if many) */
.checkout-items { display:flex; flex-direction:column; gap:.45rem; max-height:260px; overflow-y:auto; padding-right:.25rem; }
.checkout-items::-webkit-scrollbar { width:4px; }
.checkout-items::-webkit-scrollbar-thumb { background:var(--brand-2); border-radius:2px; }
.ck-item { display:flex; align-items:center; gap:.55rem; }
.ck-thumb { position:relative; flex-shrink:0; width:42px; height:42px; }
.ck-thumb img { width:42px !important; height:42px !important; object-fit:cover; border-radius:6px; background:#fff; border:1px solid var(--border); display:block; }
.ck-qty { position:absolute; top:-5px; right:-5px;
  background:var(--brand); color:#fff; font-size:.62rem; font-weight:700;
  min-width:17px; height:17px; padding:0 4px; border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center; line-height:1;
  box-shadow:0 1px 3px rgba(140,70,90,.3); }
.ck-meta { flex:1; min-width:0; }
.ck-name { font-size:.78rem; color:var(--text); line-height:1.2;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.ck-unit { font-size:.7rem; margin-top:.1rem; }
.ck-sub  { font-weight:600; color:var(--brand-deep); font-size:.82rem; white-space:nowrap; }

/* Auth cards */
.auth-card { max-width: 420px; margin: 2rem auto; background: #fff; border:1px solid var(--border); border-radius: var(--radius); padding: 2rem 2.2rem; box-shadow: var(--shadow-soft); }
.auth-card h1 { font-size: 1.6rem; margin-bottom: 1.2rem; color: var(--brand-deep); text-align:center; }

/* Account sidebar */
.account-nav .nav-link { color: var(--text); border-radius: 8px; padding: .6rem 1rem; }
.account-nav .nav-link.active, .account-nav .nav-link:hover { background: var(--bg-soft); color: var(--brand-deep); }

/* Admin */
body.admin { background: #f7f4f0; }
.admin-shell { display:flex; min-height:100vh; }
.admin-sidebar { width: 240px; background: var(--brand-deep); color:#fff; padding: 1.5rem 1rem; }
.admin-sidebar a { color: rgba(255,245,247,.85); display:block; padding:.55rem .9rem; border-radius:8px; text-decoration:none; margin:.15rem 0; font-size:.94rem; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,.12); color:#fff; }
.admin-sidebar .brand-text { color:#fff; font-size:1.2rem; }
.admin-main { flex:1; padding: 1.5rem 2rem; }
.admin-card { background:#fff; border:1px solid #ece3e6; border-radius:12px; padding:1.5rem; margin-bottom:1.2rem; }
.stat-card .stat-num { font-size: 1.9rem; font-weight: 700; color: var(--brand-deep); }
.stat-card .stat-label { color: var(--text-muted); font-size:.85rem; }

/* Reviews */
.reviews-section .rating-stars .bi-star-fill, .reviews-section .rating-stars .bi-star { color: var(--brand); }
.rating-input { display:inline-flex; flex-direction:row-reverse; gap:.2rem; font-size:1.6rem; }
.rating-input input { display:none; }
.rating-input label { cursor:pointer; color: #e0d3d8; transition: color .15s; }
.rating-input label:hover, .rating-input label:hover ~ label,
.rating-input input:checked ~ label { color: var(--brand); }

/* Newsletter form in footer */
.newsletter-form .form-control { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form .form-control:focus { background: rgba(255,255,255,.15); color: #fff; border-color: var(--brand-2); box-shadow: 0 0 0 .1rem rgba(232,154,174,.25); }

/* Legal pages */
.legal-page { max-width: 760px; margin: 0 auto; padding: 1rem 0 3rem; }
.legal-page h1 { color: var(--brand-deep); margin-bottom: .5rem; }
.legal-page h2 { color: var(--brand-deep); font-size: 1.2rem; margin-top: 1.8rem; margin-bottom: .6rem; }
.legal-page p, .legal-page ul, .legal-page ol { line-height: 1.65; color: var(--text); }

/* Admin gallery sorter */
.admin-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: .6rem; }
.admin-gallery li { background: #fff; border: 1px solid #ece3e6; border-radius: 8px; padding: .35rem; position: relative; }
.admin-gallery li.is-main { border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand-2); }
.admin-gallery li img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; cursor: grab; display: block; }
.admin-gallery li img:active { cursor: grabbing; }
.admin-gallery .g-actions { display: flex; gap: .25rem; flex-wrap: wrap; margin-top: .4rem; justify-content: center; font-size: .7rem; }
.admin-gallery .g-actions .btn { padding: .15rem .4rem; font-size: .7rem; }

/* Mobile tweaks */
@media (max-width: 768px) {
  .main-nav { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .main-nav .nav-link { white-space: nowrap; padding: .65rem .9rem; font-size: .9rem; }
  .header-icon { width: 40px; height: 40px; }
  .hero { padding: 2rem 1.25rem; }
}
