*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #f5f6f8; --surface: #ffffff; --card: #ffffff; --border: #e5e7eb;
  --accent: #2563eb; --accent2: #1d4ed8; --text: #1a1f36; --muted: #6b7280;
  --white: #ffffff; --green: #16a34a; --red: #ef4444;
  --navy-dark: #0f172a; --navy: #1e293b;
}
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; }
a { color: inherit; }

/* HEADER */
.topbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 12px 10px 12px 16px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.hamburger-btn { justify-self: start; }
.cart-btn { justify-self: end; }
.hamburger-btn { background: none; border: none; color: var(--text); font-size: 1.3rem; cursor: pointer; padding: 4px; line-height: 1; }
.logo-block { display: flex; flex-direction: column; line-height: 1.2; text-decoration: none; align-items: center; }
.logo { font-size: 1.2rem; font-weight: 800; color: var(--navy-dark); }
.logo span { color: var(--accent); }
.logo-tagline { font-size: 0.62rem; color: var(--muted); font-weight: 500; letter-spacing: 0.3px; }
.cart-btn { position: relative; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 6px 9px; font-size: 0.72rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; align-items: center; gap: 4px; }
.cart-count { background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 800; padding: 1px 7px; border-radius: 10px; min-width: 18px; text-align: center; }

/* SEARCH BAR */
.searchbar-wrap { padding: 14px 16px; background: var(--bg); border-bottom: 1px solid var(--border); }
.searchbar { max-width: 1000px; margin: 0 auto; position: relative; display: flex; }
.searchbar input { width: 100%; background: var(--white); border: 1px solid var(--border); border-radius: 30px; padding: 13px 50px 13px 20px; color: var(--text); font-size: 0.9rem; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.searchbar input:focus { border-color: var(--accent); }
.searchbar input::placeholder { color: var(--muted); }
.searchbar-icon { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; }

/* SIDE MENU */
.side-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 300; }
.side-menu-overlay.open { display: block; }
.side-menu { position: fixed; top: 0; left: 0; width: 78%; max-width: 300px; height: 100%; background: var(--white); border-right: 1px solid var(--border); z-index: 301; transform: translateX(-100%); transition: transform 0.3s; display: flex; flex-direction: column; }
.side-menu.open { transform: translateX(0); }
.side-menu-header { padding: 22px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.side-menu-close { background: none; border: none; color: var(--muted); font-size: 1.6rem; cursor: pointer; line-height: 1; }
.side-menu-links { padding: 12px 0; }
.side-menu-links a { display: flex; align-items: center; gap: 12px; padding: 14px 20px; color: var(--text); text-decoration: none; font-size: 0.95rem; font-weight: 600; border-bottom: 1px solid var(--border); }
.side-menu-links a:hover { background: #eff6ff; color: var(--accent); }
.side-menu-icon { font-size: 1.1rem; width: 24px; text-align: center; }

/* BOTTOM NAV */
.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); display: flex; justify-content: space-around; align-items: center; padding: 8px 0 10px; z-index: 80; box-shadow: 0 -2px 8px rgba(0,0,0,0.04); }
.bottom-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; text-decoration: none; color: var(--muted); font-size: 0.68rem; font-weight: 600; flex: 1; position: relative; background: none; border: none; cursor: pointer; font-family: 'Inter', sans-serif; }
.bottom-nav-item.active { color: var(--accent); }
.bottom-nav-icon { font-size: 1.25rem; }
.bottom-nav-badge { position: absolute; top: -2px; right: 22%; background: var(--accent); color: #fff; font-size: 0.6rem; font-weight: 800; padding: 1px 5px; border-radius: 8px; min-width: 14px; }
body { padding-bottom: 64px; }

/* HERO - navy gradient banner */
.hero { background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%); padding: 32px 20px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -80px; right: -60px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(37,99,235,0.35) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: -60px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(96,165,250,0.2) 0%, transparent 70%); pointer-events: none; }
.hero-tagline { font-size: 1.15rem; color: #fff; font-weight: 700; max-width: 380px; margin: 0 auto; line-height: 1.6; position: relative; z-index: 1; }
.hero-subtagline { font-size: 0.8rem; color: #93c5fd; font-weight: 600; margin-top: 10px; position: relative; z-index: 1; }

/* WHY CHOOSE US STRIP */
.why-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; max-width: 900px; margin: 0 auto; padding: 24px 16px 4px; }
@media (min-width: 600px) {
  .why-strip { grid-template-columns: repeat(4, 1fr); }
}
.why-item { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 6px 9px; border-radius: 10px; }
.why-icon { font-size: 0.78rem; flex-shrink: 0; }
.why-text { font-size: 0.6rem; color: #cbd5e1; font-weight: 600; line-height: 1.2; }

/* SECTION / GRID */
.section { padding: 22px 16px 50px; max-width: 1000px; margin: 0 auto; }
.section-title { text-align: center; font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; color: var(--navy-dark); }
.section-sub { text-align: center; color: var(--muted); font-size: 0.85rem; margin-bottom: 36px; }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 600px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* HOME PRODUCT CARD (clickable preview) */
.product-card-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.product-card-link:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(37,99,235,0.12); }
.product-card-link .product-img-wrap { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: #f0f0ea; position: relative; }
.product-card-link .mini-gallery-track { display: flex; width: 100%; height: 100%; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.product-card-link .mini-gallery-track::-webkit-scrollbar { display: none; }
.product-card-link img { width: 100%; height: 100%; object-fit: cover; display: block; flex-shrink: 0; scroll-snap-align: start; scroll-snap-stop: always; }
.mini-gallery-dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; justify-content: center; gap: 4px; z-index: 2; }
.mini-gallery-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.6); border: 1px solid rgba(0,0,0,0.15); }
.mini-gallery-dot.active { background: var(--accent); }
.product-card-link .product-body { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.product-card-link .product-name { font-size: 0.95rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 5px; line-height: 1.3; }
.product-card-link .product-subtitle { font-size: 0.72rem; color: var(--accent); font-weight: 500; margin-bottom: 8px; }
.product-card-link .product-price { font-size: 1.2rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 10px; margin-top: auto; }
.view-details-btn { display: inline-block; width: 100%; text-align: center; padding: 10px 4px; background: var(--accent); color: #fff; border-radius: 10px; font-size: 0.76rem; font-weight: 700; }

.overseas-badge { position: absolute; top: 8px; left: 8px; background: rgba(15,23,42,0.85); color: #fff; font-size: 0.52rem; font-weight: 700; padding: 2px 7px; border-radius: 20px; letter-spacing: 0.2px; white-space: nowrap; z-index: 2; }
.status-badge { position: absolute; top: 28px; left: 8px; background: rgba(22,163,74,0.92); color: #fff; font-size: 0.52rem; font-weight: 700; padding: 2px 7px; border-radius: 20px; letter-spacing: 0.2px; white-space: nowrap; z-index: 2; }
.status-badge.limited { background: rgba(239,68,68,0.92); color: #fff; }
.discount-badge { position: absolute; top: 8px; right: 8px; background: rgba(220,38,38,0.95); color: #fff; font-size: 0.62rem; font-weight: 800; padding: 3px 8px; border-radius: 20px; letter-spacing: 0.2px; white-space: nowrap; z-index: 2; }
.old-price { font-size: 0.85rem; color: #94a3b8; text-decoration: line-through; font-weight: 600; margin-right: 6px; }
.detail-old-price { font-size: 1.2rem; color: #94a3b8; text-decoration: line-through; font-weight: 600; margin-right: 8px; }
@media (min-width: 600px) {
  .product-card-link .product-body { padding: 18px 20px; }
  .product-card-link .product-name { font-size: 1rem; margin-bottom: 6px; }
  .product-card-link .product-subtitle { font-size: 0.78rem; margin-bottom: 10px; }
  .product-card-link .product-price { font-size: 1.4rem; margin-bottom: 10px; }
  .view-details-btn { padding: 11px; font-size: 0.88rem; border-radius: 10px; }
  .overseas-badge, .status-badge { font-size: 0.65rem; padding: 3px 10px; left: 12px; }
  .overseas-badge { top: 12px; }
  .status-badge { top: 38px; }
  .discount-badge { font-size: 0.72rem; padding: 4px 11px; right: 12px; top: 12px; }
}

/* BADGES on image */


/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 1000px; margin: 0 auto; padding: 20px 16px 50px; }
@media (min-width: 760px) {
  .product-detail { grid-template-columns: 1fr 1fr; align-items: start; }
}

.gallery-main { width: 100%; aspect-ratio: 1/1; border-radius: 18px; overflow: hidden; background: #f0f0ea; position: relative; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.gallery-track { display: flex; width: 100%; height: 100%; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track img { width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; scroll-snap-align: start; scroll-snap-stop: always; }
.gallery-dots { display: flex; justify-content: center; gap: 6px; margin-top: 10px; margin-bottom: 12px; }
.gallery-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.2s, width 0.2s; }
.gallery-dot.active { background: var(--accent); width: 18px; border-radius: 4px; }
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; border: 2px solid var(--border); cursor: pointer; background: #f0f0ea; transition: border-color 0.15s; flex-shrink: 0; }
.gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.detail-sku { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.detail-name { font-size: 1.6rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 6px; line-height: 1.3; }
.detail-subtitle { font-size: 0.9rem; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.detail-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }

.detail-price { font-size: 2rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 4px; }
.detail-delivery { font-size: 0.78rem; color: var(--muted); margin-bottom: 18px; }

.specs-title { font-size: 0.78rem; font-weight: 700; color: var(--navy-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; margin-top: 22px; }
.specs-table { width: 100%; border-collapse: collapse; margin-bottom: 6px; font-size: 0.78rem; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 7px 4px; }
.specs-table td:first-child { color: var(--muted); width: 45%; }
.specs-table td:last-child { color: var(--text); font-weight: 500; }



/* COLOR / QTY */
.color-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.color-chip { padding: 6px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; border: 1px solid var(--border); color: var(--muted); background: var(--white); cursor: pointer; transition: all 0.15s; }
.color-chip:hover, .color-chip.active { border-color: var(--accent); color: var(--accent); background: #eff6ff; }

.qty-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.qty-label { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.qty-control { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.qty-btn { background: var(--bg); color: var(--text); border: none; width: 38px; height: 38px; font-size: 1.1rem; font-weight: 700; cursor: pointer; }
.qty-btn:hover { background: var(--accent); color: #fff; }
.qty-value { width: 46px; text-align: center; font-size: 1rem; font-weight: 700; background: var(--white); height: 38px; line-height: 38px; }

.btn-row { display: flex; gap: 10px; }
.add-cart-btn { flex: 1; padding: 14px; background: var(--white); border: 1.5px solid var(--accent); color: var(--accent); border-radius: 10px; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.add-cart-btn:hover { background: #eff6ff; }
.add-cart-btn.added { background: var(--green); border-color: var(--green); color: #fff; }
.order-btn { flex: 1; padding: 14px; background: var(--accent); color: #fff; border: none; border-radius: 10px; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: background 0.2s; text-align: center; text-decoration: none; display: block; }
.order-btn:hover { background: var(--accent2); }

/* CART DRAWER */
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 200; }
.cart-overlay.open { display: block; }
.cart-drawer { position: fixed; top: 0; right: 0; width: 100%; max-width: 380px; height: 100%; background: var(--white); border-left: 1px solid var(--border); z-index: 201; transform: translateX(100%); transition: transform 0.3s; display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-header { padding: 18px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy-dark); }
.cart-close { background: none; border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer; line-height: 1; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cart-item img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; background: #f0f0ea; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.85rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 2px; }
.cart-item-color { font-size: 0.72rem; color: var(--muted); margin-bottom: 6px; }
.cart-item-row { display: flex; justify-content: space-between; align-items: center; }
.cart-item-price { font-size: 0.85rem; font-weight: 700; color: var(--accent); }
.cart-item-qty { display: flex; align-items: center; gap: 6px; }
.cart-qty-btn { background: var(--bg); border: 1px solid var(--border); color: var(--text); width: 22px; height: 22px; border-radius: 6px; font-size: 0.8rem; cursor: pointer; }
.cart-remove { background: none; border: none; color: var(--red); font-size: 0.72rem; cursor: pointer; margin-top: 4px; }
.cart-empty { text-align: center; color: var(--muted); font-size: 0.85rem; padding: 40px 20px; }
.cart-footer { padding: 18px 20px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 0.95rem; font-weight: 700; color: var(--navy-dark); }
.cart-checkout-btn { width: 100%; padding: 14px; background: var(--accent); color: #fff; border: none; border-radius: 12px; font-size: 0.95rem; font-weight: 700; cursor: pointer; }
.cart-checkout-btn:hover { background: var(--accent2); }

/* ===== ORDER PAGE ===== */
.order-section { max-width: 560px; margin: 0 auto; padding: 30px 16px 60px; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.form-title { font-size: 1.3rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.form-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 24px; }

.order-summary { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 20px; }
.order-summary-title { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.summary-item { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text); padding: 4px 0; }
.summary-item span:first-child { color: var(--muted); }
.summary-total { display: flex; justify-content: space-between; font-size: 0.95rem; font-weight: 700; color: var(--accent); padding-top: 10px; margin-top: 6px; border-top: 1px solid var(--border); }
.summary-empty { font-size: 0.8rem; color: var(--muted); text-align: center; padding: 8px 0; }
.summary-item-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); gap: 8px; }
.summary-item-row:last-of-type { border-bottom: none; }
.summary-item-name { font-size: 0.8rem; color: var(--text); flex: 1; }
.summary-item-name .color-label { color: var(--muted); font-size: 0.72rem; }
.summary-qty-control { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.summary-qty-btn { background: var(--white); color: var(--text); border: none; width: 26px; height: 26px; font-size: 0.95rem; font-weight: 700; cursor: pointer; }
.summary-qty-btn:hover { background: var(--accent); color: #fff; }
.summary-qty-value { width: 30px; text-align: center; font-size: 0.8rem; font-weight: 700; }
.summary-item-price { font-size: 0.8rem; font-weight: 700; color: var(--accent); width: 60px; text-align: right; flex-shrink: 0; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; color: var(--text); font-size: 0.9rem; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.cod-badge { display: flex; align-items: center; gap: 10px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 12px 16px; margin-bottom: 20px; }
.cod-text { font-size: 0.82rem; color: var(--green); font-weight: 600; }
.cod-sub { font-size: 0.72rem; color: var(--muted); }
.delivery-time-box { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; margin-bottom: 18px; }
.delivery-time-row { display: flex; justify-content: space-between; font-size: 0.78rem; padding: 4px 0; }
.delivery-time-row span:first-child { color: var(--muted); font-weight: 600; }
.delivery-time-row span:last-child { color: var(--accent); font-weight: 700; }
.submit-btn { width: 100%; padding: 14px; background: var(--accent); color: #fff; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.submit-btn:hover { background: var(--accent2); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.confirm-order-btn { background: #f97316; }
.confirm-order-btn:hover { background: #ea580c; }
.trust-badges { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 10px 14px; font-size: 0.75rem; color: var(--green); font-weight: 600; text-align: center; margin-bottom: 20px; line-height: 1.6; }
.form-section-title { font-size: 0.85rem; font-weight: 700; color: var(--navy-dark); margin: 22px 0 12px; padding-top: 4px; border-top: 1px solid var(--border); }
.form-section-title:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.summary-item-img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; border: 1px solid var(--border); flex-shrink: 0; }
.summary-item-row { gap: 10px; }
.delivery-method-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.delivery-radio-option { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.delivery-radio-option:has(input:checked) { border-color: var(--accent); background: #eff6ff; }
.delivery-radio-option input[type="radio"] { width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }
.delivery-radio-label { font-size: 0.85rem; color: var(--text); font-weight: 600; }
.delivery-radio-label small { display: block; color: var(--muted); font-weight: 500; font-size: 0.72rem; margin-top: 2px; }

.success-msg { display: none; text-align: center; padding: 30px 20px; }
.success-msg .check { font-size: 3rem; margin-bottom: 12px; }
.success-msg h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.success-msg p { font-size: 0.85rem; color: var(--muted); }

/* BREADCRUMB */
.breadcrumb { max-width: 1000px; margin: 0 auto; padding: 14px 16px 0; font-size: 0.78rem; color: var(--muted); }
.breadcrumb a { text-decoration: none; color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span.current { color: var(--navy-dark); font-weight: 600; }

/* FOOTER */
footer { background: var(--navy-dark); border-top: 1px solid var(--border); padding: 40px 16px; color: #94a3b8; font-size: 0.8rem; }
.footer-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 28px; padding-top: 24px; margin-top: 8px; border-top: 1px solid #334155; }
.footer-title { font-size: 0.75rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.footer-link { display: block; color: #94a3b8; text-decoration: none; font-size: 0.82rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-link:hover { color: #93c5fd; }
.footer-policy-text { font-size: 0.78rem; color: #94a3b8; line-height: 1.7; }
.footer-policy-text strong { color: #fff; }
.footer-bottom { max-width: 900px; margin: 28px auto 0; padding-top: 18px; border-top: 1px solid #334155; text-align: center; font-size: 0.75rem; }
footer a { color: #93c5fd; text-decoration: none; }

/* FLOATING WHATSAPP */
.float-whatsapp { position: fixed; bottom: 78px; right: 18px; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.25); z-index: 90; }

/* CROSS-SELL (order-success.html "other products") */
.cross-sell-section { max-width: 480px; margin: 8px auto 0; padding: 0 16px 20px; }
.cross-sell-title { font-size: 0.95rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 12px; text-align: center; }
.cross-sell-track { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.cross-sell-track::-webkit-scrollbar { display: none; }
.cross-sell-card { flex: 0 0 130px; scroll-snap-align: start; background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; color: var(--text); transition: box-shadow 0.2s; }
.cross-sell-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.cross-sell-card img { width: 100%; height: 110px; object-fit: contain; background: var(--bg); padding: 8px; }
.cross-sell-card-name { font-size: 0.72rem; font-weight: 600; padding: 8px 8px 2px; line-height: 1.3; }
.cross-sell-card-price { font-size: 0.78rem; font-weight: 700; color: var(--accent); padding: 0 8px 10px; }

@media (max-width: 480px) { .form-card { padding: 22px 16px; } .hero { padding: 26px 16px; } }
