/* ==========================================================================
   LinkLife Store - Global Styles
   ========================================================================== */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--c-text, #1a1a1a); background: var(--c-bg, #fff); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 20px; }

/* --- Section Width Control (via --section-width CSS variable) --- */
.hero-carousel[style*="--section-width"],
.feature-split[style*="--section-width"] { max-width: var(--section-width); margin-left: auto; margin-right: auto; }
.sub-brands[style*="--section-width"] .container,
.product-carousel[style*="--section-width"] .container,
.product-carousel[style*="--section-width"] .container-wide,
.newsletter[style*="--section-width"] .container { max-width: var(--section-width); }

/* --- Section Height Control (via --section-min-height CSS variable) --- */
.sub-brands[style*="--section-min-height"],
.feature-split[style*="--section-min-height"],
.product-carousel[style*="--section-min-height"],
.newsletter[style*="--section-min-height"] { min-height: var(--section-min-height); }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; font-size: 14px; font-weight: 600; border-radius: 4px; transition: all .25s ease; letter-spacing: .5px; }
.btn-primary { background: var(--c-primary, #1a3a5c); color: #fff; }
.btn-primary:hover { background: var(--c-primary-dark, #0f2438); }
.btn-accent { background: var(--c-accent, #c8a96a); color: #fff; }
.btn-accent:hover { background: var(--c-accent-dark, #a08545); }
.btn-outline { border: 1.5px solid currentColor; background: transparent; }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 16px 40px; font-size: 15px; }

/* --- Header --- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,.06); transition: all .3s; }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.site-header.transparent { background: transparent; border-bottom: none; }
.site-header.transparent .nav-link, .site-header.transparent .logo-text { color: #fff; }
.site-header.transparent .cart-icon { color: #fff; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 70px; padding: 8px 0; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { display: block; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--c-primary, #1a3a5c); letter-spacing: -.5px; }
.nav-menu { display: flex; gap: 36px; }
.nav-link { font-size: 14px; font-weight: 500; color: #333; transition: color .2s; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--c-accent, #c8a96a); transition: width .3s; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.cart-icon { position: relative; color: #333; transition: color .2s; }
.cart-badge { position: absolute; top: -8px; right: -8px; background: var(--c-accent, #c8a96a); color: #fff; font-size: 11px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mobile-toggle { display: none; font-size: 24px; background: none; color: inherit; }

/* --- Hero Carousel --- */
.hero-carousel { position: relative; height: 600px; overflow: hidden; }
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out; pointer-events: none; display: flex; align-items: center; justify-content: center; }
.hero-slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero-slide .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide .hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.4) 100%); }
/* Remove foggy overlay from Collection Banner — only Hero keeps it for text contrast */
#collectionBanner .hero-overlay { display: none; }
.hero-slide .hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 20px; max-width: 700px; }
.hero-title { font-size: 48px; font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; line-height: 1.15; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.hero-subtitle { font-size: 18px; opacity: .95; margin-bottom: 32px; font-weight: 300; text-shadow: 0 1px 10px rgba(0,0,0,.35); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.4); font-size: 28px; line-height: 1; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.hero-arrow:hover { background: rgba(255,255,255,.35); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); border: 0; cursor: pointer; padding: 0; transition: all .2s; }
.hero-dot:hover { background: rgba(255,255,255,.7); }
.hero-dot.active { background: #fff; width: 28px; border-radius: 5px; }

/* --- Section Title --- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-size: 32px; font-weight: 700; color: var(--c-text, #1a1a1a); margin-bottom: 8px; }
.section-subtitle { font-size: 15px; color: var(--c-text-light, #6b6b6b); }

/* --- Sub Brands Grid --- */
.sub-brands { padding: 80px 0; background: var(--c-gray-bg, #f7f7f5); }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.brand-card { background: #fff; border-radius: 12px; overflow: hidden; transition: transform .3s, box-shadow .3s; cursor: pointer; }
.brand-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.brand-card-img { aspect-ratio: 16/10; overflow: hidden; }
.brand-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.brand-card:hover .brand-card-img img { transform: scale(1.05); }
.brand-card-body { padding: 24px; }
.brand-card-name { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.brand-card-desc { font-size: 14px; color: var(--c-text-light, #6b6b6b); }

/* --- Feature Split --- */
.feature-split { display: flex; align-items: center; min-height: 500px; }
.feature-split-img { flex: 1; overflow: hidden; }
.feature-split-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-split-text { flex: 1; padding: 60px 80px; }
.feature-split-title { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.feature-split-subtitle { font-size: 18px; color: var(--c-accent, #c8a96a); margin-bottom: 20px; font-weight: 500; }
.feature-split-content { font-size: 15px; color: var(--c-text-light, #6b6b6b); margin-bottom: 28px; line-height: 1.8; }

/* --- Product Carousel --- */
.product-carousel { padding: 80px 0; background: var(--c-gray-bg, #f7f7f5); overflow: hidden; }
.carousel-wrapper { position: relative; }
.carousel-track { display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth; padding: 0 20px 20px; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-btn { position: absolute; top: 35%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.12); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--c-primary, #1a3a5c); z-index: 10; transition: all .2s; }
.carousel-btn:hover { background: var(--c-primary, #1a3a5c); color: #fff; }
.carousel-btn-prev { left: -10px; }
.carousel-btn-next { right: -10px; }

/* --- Product Card --- */
.product-card { min-width: 260px; max-width: 260px; background: #fff; border-radius: 10px; overflow: hidden; flex-shrink: 0; transition: transform .3s, box-shadow .3s; cursor: pointer; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.product-card-img { aspect-ratio: 1; overflow: hidden; background: #f5f5f5; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body { padding: 16px; }
.product-card-name { font-size: 14px; font-weight: 500; color: var(--c-text, #1a1a1a); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-price { font-size: 18px; font-weight: 700; color: var(--c-primary, #1a3a5c); margin-bottom: 12px; }
.product-card-btn { width: 100%; padding: 10px; background: var(--c-primary, #1a3a5c); color: #fff; border-radius: 6px; font-size: 13px; font-weight: 600; transition: background .2s; text-align: center; }
.product-card-btn:hover { background: var(--c-primary-dark, #0f2438); }

/* --- Product Grid (Shop) --- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }

/* --- Newsletter --- */
.newsletter { padding: 80px 0; text-align: center; background: var(--c-primary, #1a3a5c); color: #fff; }
.newsletter-title { font-size: 30px; font-weight: 700; margin-bottom: 10px; }
.newsletter-subtitle { opacity: .8; margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-input { flex: 1; padding: 14px 20px; border-radius: 4px; border: none; font-size: 14px; }

/* --- Footer --- */
.site-footer { background: #1a1a1a; color: #999; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.footer-about { font-size: 14px; line-height: 1.7; }
.footer-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: #999; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.footer-social a:hover { background: var(--c-accent, #c8a96a); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; text-align: center; font-size: 13px; }

/* --- Shop Page --- */
.page-header { background: var(--c-gray-bg, #f7f7f5); padding: 100px 0 48px; text-align: center; }
.page-title { font-size: 34px; font-weight: 700; margin-bottom: 8px; }
.page-subtitle { font-size: 15px; color: var(--c-text-light, #6b6b6b); }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; }
.search-box { position: relative; }
.search-box input { padding: 10px 16px 10px 40px; border: 1px solid #e0e0e0; border-radius: 6px; font-size: 14px; width: 260px; }
.search-box svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: #999; }
.sort-select { padding: 10px 16px; border: 1px solid #e0e0e0; border-radius: 6px; font-size: 14px; background: #fff; cursor: pointer; }

/* --- Product Detail --- */
.breadcrumb { padding: 90px 0 16px; font-size: 13px; color: var(--c-text-light, #6b6b6b); }
.breadcrumb a:hover { color: var(--c-primary, #1a3a5c); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.product-gallery-main { aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: #f5f5f5; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-main iframe { border: none; }
.product-gallery-main video { background: #000; }
.gallery-video-view, .gallery-image-view { width: 100%; height: 100%; }
.gallery-image-view img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.product-gallery-thumb { width: 70px; height: 70px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: border-color .2s; position: relative; }
.product-gallery-thumb.active { border-color: var(--c-primary, #1a3a5c); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumb-video { position: relative; }
.thumb-play-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 28px; height: 28px; border-radius: 50%; background: rgba(0,0,0,.65); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 11px; pointer-events: none;
}
.product-info h1 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.product-price { font-size: 28px; font-weight: 700; color: var(--c-primary, #1a3a5c); margin-bottom: 20px; }
.product-short-desc { font-size: 15px; color: var(--c-text-light, #6b6b6b); margin-bottom: 24px; line-height: 1.7; }
.product-meta { font-size: 13px; color: #999; margin-bottom: 24px; }
.qty-selector { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.qty-selector label { font-size: 14px; font-weight: 500; }
.qty-controls { display: flex; align-items: center; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; }
.qty-controls button { width: 40px; height: 40px; font-size: 18px; background: #f9f9f9; transition: background .2s; }
.qty-controls button:hover { background: #f0f0f0; }
.qty-controls span { width: 48px; text-align: center; font-weight: 600; }
.product-actions { display: flex; gap: 12px; margin-bottom: 24px; }
.product-trust { display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--c-text-light, #6b6b6b); }
.product-trust span { display: flex; align-items: center; gap: 6px; }
.product-description { border-top: 1px solid #eee; padding-top: 32px; margin-top: 32px; }
.product-description h2 { font-size: 20px; margin-bottom: 12px; }

/* --- Cart --- */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding-bottom: 60px; }
.cart-item { display: flex; gap: 16px; padding: 20px; background: #fff; border: 1px solid #f0f0f0; border-radius: 10px; margin-bottom: 12px; }
.cart-item-img { width: 90px; height: 90px; border-radius: 8px; overflow: hidden; background: #f5f5f5; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.cart-item-price { font-size: 16px; font-weight: 700; color: var(--c-primary, #1a3a5c); }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-summary { background: var(--c-gray-bg, #f7f7f5); border-radius: 12px; padding: 28px; position: sticky; top: 90px; height: fit-content; }
.cart-summary h2 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; color: var(--c-text-light, #6b6b6b); }
.cart-summary-total { border-top: 1px solid #ddd; padding-top: 12px; margin-top: 12px; font-size: 18px; font-weight: 700; color: var(--c-text, #1a1a1a); }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state svg { width: 80px; height: 80px; margin: 0 auto 20px; color: #e0e0e0; }

/* --- Checkout --- */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; padding-bottom: 60px; }
.checkout-section { background: #fff; border: 1px solid #f0f0f0; border-radius: 12px; padding: 28px; margin-bottom: 20px; }
.checkout-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 500; color: var(--c-text-light, #6b6b6b); margin-bottom: 6px; display: block; }
.form-input { width: 100%; padding: 12px 16px; border: 1px solid #e0e0e0; border-radius: 8px; font-size: 14px; font-family: inherit; transition: border-color .2s; }
.form-input:focus { outline: none; border-color: var(--c-primary, #1a3a5c); }
.payment-option { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 10px; cursor: pointer; transition: background .2s; }
.payment-option:hover { background: #f9f9f9; }

/* --- About --- */
.about-hero { background: var(--c-primary, #1a3a5c); color: #fff; padding: 140px 0 60px; text-align: center; }
.about-hero h1 { font-size: 38px; font-weight: 700; margin-bottom: 10px; }
.about-hero p { opacity: .8; }
.about-section { padding: 80px 0; }
.about-section.alt { background: var(--c-gray-bg, #f7f7f5); }
.about-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-section-inner.reverse .about-text { order: 2; }
.about-section-inner h2 { font-size: 30px; font-weight: 700; margin-bottom: 20px; }
.about-section-inner p { font-size: 16px; color: var(--c-text-light, #6b6b6b); line-height: 1.8; }
.about-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--c-primary-light, #e8edf3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 22px; height: 22px; color: var(--c-primary, #1a3a5c); }
.contact-info-item h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--c-text-light, #6b6b6b); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }

/* --- Admin Editor --- */
.admin-bar { background: #1a1a1a; color: #fff; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.admin-tabs { display: flex; flex-wrap: wrap; gap: 4px; padding: 8px 12px; background: #f5f5f5; border-bottom: 1px solid #e0e0e0; }
.admin-tab { padding: 6px 14px; font-size: 12px; border-radius: 6px; cursor: pointer; transition: all .2s; background: transparent; color: #666; border: none; }
.admin-tab.active { background: var(--c-primary, #1a3a5c); color: #fff; }
.admin-tab:hover:not(.active) { background: #e0e0e0; }
.admin-body { display: flex; height: calc(100vh - 104px); }
.admin-form { width: 460px; overflow-y: auto; padding: 20px; background: #fff; border-right: 1px solid #e0e0e0; }
.admin-form h3 { font-size: 14px; font-weight: 700; margin: 16px 0 12px; padding-bottom: 8px; border-bottom: 1px solid #f0f0f0; }
.admin-form h3:first-child { margin-top: 0; }
.admin-field { margin-bottom: 14px; }
.admin-field label { font-size: 12px; font-weight: 500; color: #555; display: block; margin-bottom: 4px; }
.admin-field input, .admin-field textarea, .admin-field select { width: 100%; padding: 8px 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 13px; font-family: inherit; }
.admin-field input:focus, .admin-field textarea:focus { outline: none; border-color: var(--c-primary, #1a3a5c); }
.admin-field textarea { resize: vertical; min-height: 70px; }
.admin-color-row { display: flex; gap: 8px; align-items: center; }
.admin-color-row input[type="color"] { width: 40px; height: 36px; padding: 2px; border: 1px solid #ddd; border-radius: 6px; cursor: pointer; }
.admin-img-preview { width: 48px; height: 48px; border-radius: 6px; overflow: hidden; background: #f5f5f5; flex-shrink: 0; border: 1px solid #ddd; }
.admin-img-preview img { width: 100%; height: 100%; object-fit: cover; }
.admin-img-row { display: flex; gap: 8px; align-items: center; }
.admin-img-row input { flex: 1; }
.admin-toggle { display: flex; align-items: center; justify-content: space-between; }
.admin-toggle-btn { width: 44px; height: 24px; border-radius: 12px; background: #ccc; position: relative; transition: background .2s; border: none; }
.admin-toggle-btn.on { background: var(--c-primary, #1a3a5c); }
.admin-toggle-btn span { position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform .2s; }
.admin-toggle-btn.on span { transform: translateX(20px); }
.admin-preview { flex: 1; background: #fff; }
.admin-preview iframe { width: 100%; height: 100%; border: none; }
.admin-preview-bar { padding: 8px 16px; background: #f9f9f9; border-bottom: 1px solid #e0e0e0; display: flex; align-items: center; gap: 8px; }
.admin-preview-bar button { padding: 4px 12px; font-size: 12px; border-radius: 4px; cursor: pointer; background: transparent; border: 1px solid #ddd; color: #666; }
.admin-preview-bar button.active { background: var(--c-primary, #1a3a5c); color: #fff; border-color: var(--c-primary, #1a3a5c); }

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; padding: 20px; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 15px; }
  .hero-arrow { width: 40px; height: 40px; font-size: 22px; }
  .hero-arrow-prev { left: 12px; }
  .hero-arrow-next { right: 12px; }
  .feature-split { flex-direction: column; }
  .feature-split-text { padding: 40px 24px; }
  .product-detail { grid-template-columns: 1fr; gap: 24px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .about-section-inner { grid-template-columns: 1fr; gap: 30px; }
  .about-section-inner.reverse .about-text { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .admin-body { flex-direction: column; height: auto; }
  .admin-form { width: 100%; max-height: 50vh; }
  .admin-preview { min-height: 50vh; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card { min-width: 160px; max-width: none; }
}
