/*
 * OurDeal Design System v4.8.0
 * Luxury Indian Fashion Theme
 */

/* ═══════ CSS VARIABLES ═══════ */
:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --color-primary: #1a1a1a;
  --color-gold: #c9a265;
  --color-gold-dark: #a8873f;
  --color-bg: #ffffff;
  --color-bg-warm: #faf8f5;
  --color-bg-alt: #f5f2ee;
  --color-border: #f0ece6;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-success: #1a7a3a;
  --color-danger: #c0392b;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

/* ═══════ RESET & BASE ═══════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: 15px; color: var(--color-text); background: var(--color-bg); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
.od-wrap { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ═══════ ANNOUNCEMENT BAR ═══════ */
.od-topbar { background: var(--color-primary); color: #fff; font-size: 12px; letter-spacing: 0.5px; height: 36px; display: flex; align-items: center; overflow: hidden; }
.od-ticker { text-align: center; width: 100%; white-space: nowrap; animation: tickerScroll 20s linear infinite; }
@keyframes tickerScroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* ═══════ HEADER ═══════ */
.od-header { background: var(--color-bg); border-bottom: 1px solid var(--color-border); height: 64px; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.od-header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.od-logo { display: flex; align-items: center; gap: 10px; }
.od-logo-mark { width: 36px; height: 36px; background: var(--color-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.od-logo-text { display: flex; flex-direction: column; }
.od-logo-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1.1; color: var(--color-primary); }
.od-logo-tag { font-size: 10px; color: var(--color-gold); letter-spacing: 1.5px; text-transform: uppercase; }

/* Desktop Nav */
.od-nav { display: none; }
.od-nav ul { display: flex; gap: 28px; }
.od-nav a { font-size: 14px; font-weight: 500; color: var(--color-text); letter-spacing: 0.3px; padding: 4px 0; border-bottom: 2px solid transparent; transition: var(--transition); }
.od-nav a:hover { color: var(--color-gold); border-color: var(--color-gold); }

/* Header Icons */
.od-header-actions { display: flex; align-items: center; gap: 4px; }
.od-icon-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition); }
.od-icon-btn:hover { background: var(--color-bg-warm); }
.od-icon-btn svg { width: 20px; height: 20px; }
.od-cart-btn { position: relative; }
.od-cart-count { position: absolute; top: 4px; right: 4px; background: var(--color-gold); color: #fff; font-size: 10px; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; }

/* Hamburger */
.od-hamburger { display: flex; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.od-hamburger span { width: 20px; height: 2px; background: var(--color-primary); transition: var(--transition); border-radius: 2px; }
.od-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.od-hamburger.active span:nth-child(2) { opacity: 0; }
.od-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════ SEARCH OVERLAY ═══════ */
.od-search-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 200; display: none; align-items: flex-start; justify-content: center; padding-top: 120px; backdrop-filter: blur(4px); }
.od-search-overlay.active { display: flex; }
.od-search-inner { background: #fff; border-radius: var(--radius); padding: 8px; display: flex; width: 90%; max-width: 600px; box-shadow: var(--shadow-lg); }
.od-search-inner input { flex: 1; border: none; outline: none; font-size: 16px; padding: 12px 16px; font-family: var(--font-body); }
.od-search-close { font-size: 28px; color: var(--color-text-muted); padding: 8px 12px; }

/* ═══════ MOBILE MENU ═══════ */
.od-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 150; opacity: 0; visibility: hidden; transition: var(--transition); }
.od-menu-overlay.active { opacity: 1; visibility: visible; }
.od-mobile-menu { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: #fff; z-index: 151; transition: 0.4s ease; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.od-mobile-menu.active { right: 0; }
.od-mm-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--color-border); }
.od-mm-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.od-mm-close { font-size: 28px; color: var(--color-text-muted); }
.od-mm-nav { flex: 1; padding: 16px 0; overflow-y: auto; }
.od-mm-nav ul { display: flex; flex-direction: column; }
.od-mm-nav a { display: block; padding: 14px 20px; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--color-border); transition: var(--transition); }
.od-mm-nav a:hover { background: var(--color-bg-warm); color: var(--color-gold); }
.od-mm-footer { padding: 16px 20px; border-top: 1px solid var(--color-border); }
.od-mm-footer a { display: block; font-size: 13px; color: var(--color-text-muted); padding: 6px 0; }

/* ═══════ HERO SLIDER ═══════ */
.hp-hero { position: relative; width: 100%; aspect-ratio: 16/9; max-height: 600px; overflow: hidden; background: var(--color-bg-alt); contain: layout; }
.hp-hero-slides { width: 100%; height: 100%; position: relative; }
.hp-hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.hp-hero-slide.active { opacity: 1; z-index: 1; }
.hp-hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hp-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%); }
.hp-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 24px; color: #fff; z-index: 2; text-align: center; }
.hp-hero-content h1, .hp-hero-content h2 { font-family: var(--font-display); font-size: clamp(24px, 4.5vw, 48px); font-weight: 600; margin-bottom: 8px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hp-hero-content p { font-size: 15px; color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.hp-hero-btn { display: inline-block; background: var(--color-gold); color: #fff; padding: 12px 32px; border-radius: 4px; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; transition: var(--transition); }
.hp-hero-btn:hover { background: var(--color-gold-dark); }

/* Hero Dots */
.hp-hero-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.hp-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.hp-dot::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: var(--transition); }
.hp-dot.active::after { background: #fff; width: 24px; border-radius: 5px; }

/* Hero Arrows */
.hp-hero-arrows { position: absolute; top: 50%; left: 0; right: 0; z-index: 3; display: flex; justify-content: space-between; padding: 0 12px; transform: translateY(-50%); pointer-events: none; }
.hp-arr { width: 44px; height: 44px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; pointer-events: auto; backdrop-filter: blur(4px); transition: var(--transition); }
.hp-arr:hover { background: rgba(255,255,255,0.4); }
.hp-arr svg { width: 20px; height: 20px; stroke: #fff; }

/* ═══════ TRUST BAR ═══════ */
.hp-trust { background: var(--color-bg-warm); padding: 20px 0; border-bottom: 1px solid var(--color-border); }
.hp-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.hp-trust-item { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--color-text); }
.hp-trust-icon { font-size: 16px; }

/* ═══════ SECTION COMMON ═══════ */
.hp-section { padding: 60px 0; }
.hp-section-head { text-align: center; margin-bottom: 40px; }
.hp-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--color-gold); margin-bottom: 8px; }
.hp-section-head h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 600; margin-bottom: 8px; }
.hp-section-head p { color: var(--color-text-muted); font-size: 15px; }
.hp-section-cta { text-align: center; margin-top: 36px; }

/* ═══════ PRODUCT GRID ═══════ */
.od-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.od-product-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); transition: var(--transition); }
.od-product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.od-pc-img-wrap { position: relative; display: block; overflow: hidden; }
.od-pc-img-wrap img { aspect-ratio: 3/4; object-fit: cover; width: 100%; transition: transform 0.5s ease; }
.od-product-card:hover .od-pc-img-wrap img { transform: scale(1.03); }
.od-pc-badge { position: absolute; top: 10px; left: 10px; background: var(--color-danger); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 4px; }
.od-pc-info { padding: 14px; }
.od-pc-info h3 { font-family: var(--font-display); font-size: 15px; font-weight: 500; line-height: 1.3; margin-bottom: 8px; }
.od-pc-info h3 a { color: var(--color-text); }
.od-pc-info h3 a:hover { color: var(--color-gold); }
.od-pc-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.od-pc-sale { font-size: 17px; font-weight: 700; color: var(--color-primary); }
.od-pc-regular { font-size: 13px; color: var(--color-text-muted); text-decoration: line-through; }
.od-pc-btn { display: block; text-align: center; background: var(--color-primary); color: #fff; padding: 10px; border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; transition: var(--transition); }
.od-pc-btn:hover { background: var(--color-gold); }

/* ═══════ PROMO BANNER ═══════ */
.hp-promo { position: relative; padding: 80px 0; text-align: center; color: #fff; background: var(--color-primary); overflow: hidden; }
.hp-promo-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.hp-promo-content { position: relative; z-index: 1; }
.hp-promo h2 { font-family: var(--font-display); font-size: clamp(24px, 4vw, 40px); margin: 8px 0 12px; }
.hp-promo p { font-size: 16px; margin-bottom: 24px; color: rgba(255,255,255,0.9); }
.hp-promo strong { color: var(--color-gold); }

/* ═══════ TESTIMONIALS ═══════ */
.hp-testimonials { background: var(--color-bg-warm); }
.hp-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hp-test-card { background: #fff; padding: 28px; border-radius: var(--radius); border: 1px solid var(--color-border); }
.hp-stars { color: var(--color-gold); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.hp-test-card p { font-size: 14px; line-height: 1.7; color: var(--color-text); margin-bottom: 16px; font-style: italic; }
.hp-test-author { font-weight: 600; font-size: 14px; }
.hp-test-loc { font-size: 12px; color: var(--color-text-muted); }

/* ═══════ NEWSLETTER ═══════ */
.hp-newsletter { padding: 60px 0; text-align: center; background: var(--color-bg-alt); }
.hp-newsletter h2 { font-family: var(--font-display); font-size: 28px; margin-bottom: 8px; }
.hp-newsletter p { color: var(--color-text-muted); margin-bottom: 24px; }
.hp-nl-form { display: flex; max-width: 440px; margin: 0 auto; gap: 0; }
.hp-nl-form input { flex: 1; border: 1px solid var(--color-border); border-right: none; padding: 12px 16px; font-size: 14px; border-radius: var(--radius) 0 0 var(--radius); outline: none; font-family: var(--font-body); }
.hp-nl-form input:focus { border-color: var(--color-gold); }
.hp-nl-form button { background: var(--color-primary); color: #fff; padding: 12px 24px; font-size: 14px; font-weight: 600; border: none; border-radius: 0 var(--radius) var(--radius) 0; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.hp-nl-form button:hover { background: var(--color-gold); }

/* ═══════ BUTTONS ═══════ */
.od-btn-outline { display: inline-block; border: 2px solid var(--color-primary); color: var(--color-primary); padding: 12px 32px; border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; transition: var(--transition); }
.od-btn-outline:hover { background: var(--color-primary); color: #fff; }

/* ═══════ FOOTER ═══════ */
.od-footer { background: var(--color-primary); color: rgba(255,255,255,0.85); padding: 60px 0 0; }
.od-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.od-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.od-footer-brand .od-logo-mark { background: var(--color-gold); }
.od-footer-brand span { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; }
.od-footer-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.od-footer-social { display: flex; gap: 12px; }
.od-footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.od-footer-social a:hover { border-color: var(--color-gold); background: var(--color-gold); }
.od-footer-social svg { width: 16px; height: 16px; }
.od-footer-col h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.od-footer-col ul li { margin-bottom: 10px; }
.od-footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.od-footer-col ul a:hover { color: var(--color-gold); }
.od-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.od-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
.od-payment-icons { display: flex; gap: 10px; }
.od-payment-icons span { font-size: 11px; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 3px; }

/* ═══════ WHATSAPP FLOAT ═══════ */
.od-wa-float { position: fixed; bottom: 80px; right: 16px; z-index: 90; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: var(--transition); }
.od-wa-float:hover { transform: scale(1.1); }
.od-wa-float svg { width: 28px; height: 28px; }

/* ═══════ CART DRAWER ═══════ */
.od-cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; opacity: 0; visibility: hidden; transition: var(--transition); }
.od-cart-overlay.active { opacity: 1; visibility: visible; }
.od-cart-drawer { position: fixed; top: 0; right: -360px; width: 340px; height: 100vh; background: #fff; z-index: 201; transition: 0.4s ease; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.od-cart-drawer.active { right: 0; }
.od-cart-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--color-border); }
.od-cart-header h3 { font-family: var(--font-display); font-size: 18px; }
.od-cart-header button { font-size: 28px; color: var(--color-text-muted); }
.od-cart-body { flex: 1; overflow-y: auto; padding: 20px; }
.od-cart-empty { text-align: center; padding: 40px 0; color: var(--color-text-muted); }
.od-cart-footer { padding: 16px 20px; border-top: 1px solid var(--color-border); }
.od-cart-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.od-btn-checkout { display: block; background: var(--color-primary); color: #fff; padding: 14px; border-radius: 4px; text-align: center; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); }
.od-btn-checkout:hover { background: var(--color-gold); }
.od-cart-note { font-size: 11px; color: var(--color-text-muted); text-align: center; margin-top: 8px; }

/* ═══════ BOTTOM NAV (MOBILE) ═══════ */
.od-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: #fff; border-top: 1px solid var(--color-border); padding: 6px 0 env(safe-area-inset-bottom, 4px); }
.od-bottom-nav { display: flex; justify-content: space-around; align-items: center; }
.od-bn-item { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 10px; color: var(--color-text-muted); padding: 6px 8px; min-width: 56px; transition: var(--transition); }
.od-bn-item svg { width: 20px; height: 20px; }
.od-bn-item.active { color: var(--color-gold); }
.od-bn-wa svg { fill: #25d366; stroke: none; }

/* ═══════ SHOP PAGE ═══════ */
.od-shop-head { text-align: center; padding: 40px 0 32px; }
.od-shop-head h1 { font-family: var(--font-display); font-size: 32px; margin-bottom: 4px; }
.od-shop-head p { color: var(--color-text-muted); font-size: 14px; }
.od-shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-bottom: 40px; }

/* ═══════ SINGLE PRODUCT ═══════ */
.od-sp-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 0; }
.od-sp-gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); }
.od-sp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px; }
.od-sp-thumbs img { aspect-ratio: 1; object-fit: cover; border-radius: 4px; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.od-sp-thumbs img.active, .od-sp-thumbs img:hover { border-color: var(--color-gold); }
.od-sp-info { padding-top: 8px; }
.od-sp-info h1 { font-family: var(--font-display); font-size: 28px; line-height: 1.3; margin-bottom: 12px; }
.od-sp-price { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.od-sp-sale { font-size: 24px; font-weight: 700; color: var(--color-primary); }
.od-sp-regular { font-size: 16px; color: var(--color-text-muted); text-decoration: line-through; }
.od-sp-discount { background: var(--color-danger); color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.od-sp-meta { margin-bottom: 20px; font-size: 14px; color: var(--color-text-muted); }
.od-sp-actions { display: flex; gap: 12px; margin-bottom: 24px; }
.od-sp-buy { flex: 1; background: var(--color-primary); color: #fff; padding: 14px; border-radius: 4px; font-size: 15px; font-weight: 600; text-align: center; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); border: none; cursor: pointer; }
.od-sp-buy:hover { background: var(--color-gold); }
.od-sp-wa { background: #25d366; color: #fff; padding: 14px 24px; border-radius: 4px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.od-sp-wa:hover { background: #1da851; }
.od-sp-wa svg { width: 18px; height: 18px; fill: #fff; }
.od-sp-features { border-top: 1px solid var(--color-border); padding-top: 20px; }
.od-sp-features div { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--color-text-muted); }

/* ═══════ PAGE TEMPLATE ═══════ */
.page-content { padding: 40px 0 60px; }
.page-content h1 { font-family: var(--font-display); font-size: 32px; margin-bottom: 20px; }
.page-content p { line-height: 1.8; margin-bottom: 16px; color: var(--color-text-muted); }

/* ═══════ WOOCOMMERCE OVERRIDES ═══════ */
.woocommerce-pagination { text-align: center; padding: 40px 0; }
.woocommerce-pagination ul { display: flex; justify-content: center; gap: 8px; }
.woocommerce-pagination a, .woocommerce-pagination span { padding: 8px 14px; border: 1px solid var(--color-border); border-radius: 4px; font-size: 14px; transition: var(--transition); }
.woocommerce-pagination .current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ═══════ RESPONSIVE ═══════ */
@media (min-width: 1024px) {
  .od-nav { display: block; }
  .od-hamburger { display: none; }
  .od-bottom-nav { display: none; }
  .od-wa-float { bottom: 24px; right: 24px; }
}

@media (max-width: 1023px) {
  .od-nav { display: none !important; }
  .od-bottom-nav { display: flex; }
  .od-footer { padding-bottom: 60px; }
}

@media (max-width: 768px) {
  .hp-hero { aspect-ratio: 4/5; max-height: 500px; }
  .od-product-grid, .od-shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hp-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hp-test-grid { grid-template-columns: 1fr; }
  .od-footer-grid { grid-template-columns: 1fr 1fr; }
  .od-sp-wrap { grid-template-columns: 1fr; gap: 24px; }
  .hp-section { padding: 40px 0; }
  .od-pc-info h3 { font-size: 13px; }
  .od-pc-sale { font-size: 15px; }
  .od-pc-btn { font-size: 12px; padding: 8px; }
}

@media (max-width: 480px) {
  .hp-hero { aspect-ratio: 3/4; max-height: 480px; }
  .hp-hero-content h1, .hp-hero-content h2 { font-size: 22px; }
  .hp-nl-form { flex-direction: column; gap: 8px; }
  .hp-nl-form input { border-right: 1px solid var(--color-border); border-radius: var(--radius); }
  .hp-nl-form button { border-radius: var(--radius); }
  .od-footer-grid { grid-template-columns: 1fr; }
  .od-sp-actions { flex-direction: column; }
  .od-sp-info h1 { font-size: 22px; }
}
