/* Design note: Nautical editorial utility — premium marine commerce, strong hierarchy, practical responsiveness, dark navy structure with warm neutral surfaces. */
/* Skippers Shop - Coastal Industrial Design System */
/* Colors: Navy #0C1B2A, Signal Red #C53030, Copper #B7791F, Warm White #FAF9F5, Steel #4A5568 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0C1B2A;
  --navy-light: #1A2D42;
  --navy-dark: #060F18;
  --steel: #4A5568;
  --steel-light: #8B95A5;
  --signal-red: #C53030;
  --signal-red-hover: #A52020;
  --warm-white: #FAF9F5;
  --copper: #B7791F;
  --copper-light: #C99A3D;
  --sailcloth: #F5F3EE;
  --border: #D8D5CE;
  --font-heading: "Barlow Condensed", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); background: var(--warm-white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-heading); border: none; cursor: pointer; background: none; }
ul { list-style: none; }

/* Container */
.container { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ==================== TOP BAR ==================== */
.top-bar { background: var(--navy-dark); color: rgba(250,249,245,0.8); font-size: 13px; }
.top-bar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 6px; padding-bottom: 6px; }
.top-bar-left { display: none; align-items: center; gap: 20px; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-right { display: flex; align-items: center; gap: 12px; margin: 0 auto; }
.top-bar-right a:hover { color: var(--warm-white); }
.top-bar-divider { color: rgba(250,249,245,0.3); }
@media (min-width: 768px) { .top-bar-left { display: flex; } .top-bar-right { margin: 0; } }

/* ==================== HEADER ==================== */
.main-header { background: var(--navy); position: sticky; top: 0; z-index: 50; transition: all 0.3s; }
.main-header.scrolled { background: rgba(12,27,42,0.98); backdrop-filter: blur(12px); box-shadow: 0 4px 20px rgba(6,15,24,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 1024px) { .header-inner { height: 72px; } }
.logo img { height: 40px; filter: brightness(0) invert(1); }
@media (min-width: 1024px) { .logo img { height: 48px; } }

/* Desktop Nav */
.desktop-nav { display: none; align-items: center; gap: 2px; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.nav-link { padding: 8px 16px; color: rgba(250,249,245,0.8); font-family: var(--font-heading); font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.2s; position: relative; }
.nav-link:hover { color: var(--warm-white); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 16px; right: 16px; height: 2px; background: var(--signal-red); transform: scaleX(0); transition: transform 0.2s; transform-origin: left; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active::after { transform: scaleX(1); }

/* Mega Menu Trigger */
.mega-trigger { display: flex; align-items: center; gap: 6px; padding: 8px 16px; color: rgba(250,249,245,0.8); font-family: var(--font-heading); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.2s; position: relative; background: none; border: none; cursor: pointer; }
.mega-trigger:hover, .mega-trigger.open { color: var(--warm-white); }
.mega-trigger .chevron { width: 16px; height: 16px; transition: transform 0.2s; }
.mega-trigger.open .chevron { transform: rotate(180deg); }
.mega-trigger::after { content: ''; position: absolute; bottom: 0; left: 16px; right: 16px; height: 2px; background: var(--signal-red); transform: scaleX(0); transition: transform 0.2s; transform-origin: left; }
.mega-trigger:hover::after, .mega-trigger.open::after { transform: scaleX(1); }

/* Mega Menu */
.mega-wrapper { position: relative; }
.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 900px; background: white; border: 1px solid var(--border); box-shadow: 0 25px 50px rgba(12,27,42,0.15); border-radius: 2px; overflow: hidden; display: none; z-index: 100; }
.mega-menu.show { display: block; }
.mega-content { display: flex; }
.mega-left { width: 280px; background: var(--sailcloth); border-right: 1px solid var(--border); padding: 8px 0; }
.mega-cat-link { display: flex; align-items: center; gap: 12px; padding: 12px 20px; transition: all 0.15s; color: var(--steel); }
.mega-cat-link:hover, .mega-cat-link.active { background: white; color: var(--navy); border-left: 3px solid var(--signal-red); }
.mega-cat-link .cat-icon { width: 18px; height: 18px; color: var(--copper); flex-shrink: 0; }
.mega-cat-link.active .cat-icon { color: var(--signal-red); }
.mega-cat-link .cat-name { font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.mega-cat-link .cat-count { font-size: 11px; color: var(--steel-light); font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.08em; }
.mega-middle { flex: 1; padding: 24px; }
.mega-middle h3 { font-weight: 800; font-size: 18px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.mega-middle p { color: var(--steel); font-size: 14px; margin-bottom: 20px; }
.mega-sub-label { font-size: 11px; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--copper); margin-bottom: 12px; }
.mega-sub-link { display: block; padding: 8px 12px; color: var(--steel); font-family: var(--font-heading); font-weight: 600; font-size: 14px; transition: all 0.15s; border-radius: 2px; }
.mega-sub-link:hover { color: var(--navy); background: var(--sailcloth); }
.mega-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--signal-red); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 14px; margin-top: 16px; transition: color 0.2s; }
.mega-cta:hover { color: var(--signal-red-hover); }
.mega-right { width: 240px; position: relative; overflow: hidden; }
.mega-right img { width: 100%; height: 100%; object-fit: cover; }
.mega-right .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,27,42,0.7), transparent); }
.mega-right .label { position: absolute; bottom: 16px; left: 16px; color: white; font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.mega-bottom { background: var(--navy); display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; }
.mega-bottom span { color: rgba(250,249,245,0.7); font-size: 14px; font-family: var(--font-heading); }
.mega-bottom a { display: flex; align-items: center; gap: 8px; color: var(--copper); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 14px; transition: color 0.2s; }
.mega-bottom a:hover { color: var(--copper-light); }

/* Header Right Actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
.search-btn { display: none; align-items: center; gap: 8px; background: rgba(26,45,66,0.5); color: rgba(250,249,245,0.6); padding: 8px 12px; border-radius: 4px; font-size: 13px; font-family: var(--font-body); transition: all 0.2s; }
.search-btn:hover { background: var(--navy-light); color: var(--warm-white); }
@media (min-width: 640px) { .search-btn { display: flex; } }
.icon-btn { color: rgba(250,249,245,0.6); padding: 8px; transition: color 0.2s; position: relative; }
.icon-btn:hover { color: var(--warm-white); }
.cart-badge { position: absolute; top: -2px; right: -2px; background: var(--signal-red); color: white; font-size: 10px; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mobile-toggle { display: block; color: var(--warm-white); padding: 8px; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile Menu */
.mobile-menu { display: none; background: var(--navy-dark); border-top: 1px solid rgba(26,45,66,0.2); max-height: 80vh; overflow-y: auto; }
.mobile-menu.show { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu nav { padding: 16px 0; }
.mobile-link { display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: rgba(250,249,245,0.8); font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.15s; border-radius: 4px; width: 100%; text-align: left; }
.mobile-link:hover { color: var(--warm-white); background: rgba(26,45,66,0.3); }
.mobile-cat-sub { margin-left: 28px; padding: 6px 12px; color: rgba(250,249,245,0.5); font-size: 13px; font-family: var(--font-body); }
.mobile-cat-sub:hover { color: var(--warm-white); }
.mobile-divider { border-top: 1px solid rgba(26,45,66,0.2); margin: 12px 0; }
.mobile-cart-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px 16px; background: var(--signal-red); color: white; border-radius: 4px; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; transition: background 0.2s; }
.mobile-cart-btn:hover { background: var(--signal-red-hover); }

/* ==================== PROMO BANNER ==================== */
.promo-banner { background: var(--signal-red); color: white; text-align: center; padding: 10px 0; }
.promo-banner .container { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.promo-banner .label { font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.promo-banner .desc { font-size: 14px; opacity: 0.9; }
.promo-banner a { font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 14px; text-decoration: underline; text-underline-offset: 3px; }

/* ==================== HERO SECTION ==================== */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg .gradient-1 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(6,15,24,0.95), rgba(12,27,42,0.8), rgba(12,27,42,0.3)); }
.hero-bg .gradient-2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,15,24,0.6), transparent); }
.hero-content { position: relative; padding: 80px 0; max-width: 640px; }
@media (min-width: 640px) { .hero-content { padding: 112px 0; } }
@media (min-width: 1024px) { .hero-content { padding: 144px 0; } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(183,121,31,0.2); border: 1px solid rgba(183,121,31,0.3); border-radius: 2px; padding: 6px 12px; margin-bottom: 24px; }
.hero-badge span { color: var(--copper); font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; font-family: var(--font-heading); }
.hero h1 { font-weight: 800; font-size: 2.5rem; color: white; line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 24px; }
.hero h1 span { color: var(--copper); }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 4.5rem; } }
.hero-sub { color: rgba(250,249,245,0.8); font-size: 1.125rem; line-height: 1.6; margin-bottom: 32px; max-width: 480px; }
@media (min-width: 640px) { .hero-sub { font-size: 1.25rem; } }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--signal-red); color: white; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 14px 28px; border-radius: 2px; transition: all 0.2s; }
.btn-primary:hover { background: var(--signal-red-hover); transform: translateX(2px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 14px 28px; border-radius: 2px; transition: all 0.2s; backdrop-filter: blur(4px); }
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.hero-trust span { display: flex; align-items: center; gap: 8px; color: rgba(250,249,245,0.7); font-size: 14px; }
.hero-stripe { position: absolute; bottom: 0; left: 0; right: 0; height: 8px; background: var(--signal-red); }

/* ==================== CATEGORIES SECTION ==================== */
.categories { padding: 64px 0; background: var(--warm-white); }
@media (min-width: 1024px) { .categories { padding: 96px 0; } }
.section-header { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
@media (min-width: 640px) { .section-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.section-label { color: var(--copper); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px; }
.section-title { font-weight: 800; font-size: 1.875rem; color: var(--navy); margin-top: 8px; }
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-cta { display: flex; align-items: center; gap: 8px; color: var(--signal-red); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 14px; transition: color 0.2s; }
.section-cta:hover { color: var(--signal-red-hover); }

.cat-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
.cat-card { background: white; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; transition: all 0.3s; }
.cat-card:hover { box-shadow: 0 10px 30px rgba(12,27,42,0.1); border-color: rgba(183,121,31,0.3); }
.cat-card-img { position: relative; height: 220px; overflow: hidden; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cat-card:hover .cat-card-img img { transform: scale(1.05); }
.cat-card-img .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,27,42,0.8), rgba(12,27,42,0.1)); }
.cat-card-img .count-badge { position: absolute; top: 12px; right: 12px; background: var(--signal-red); color: white; font-family: var(--font-heading); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 2px; }
.cat-card-img .cat-title { position: absolute; bottom: 16px; left: 16px; display: flex; align-items: center; gap: 8px; color: white; font-family: var(--font-heading); font-weight: 800; font-size: 18px; text-transform: uppercase; letter-spacing: 0.03em; }
.cat-subs { border-top: 1px solid var(--border); }
.cat-sub-link { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; color: var(--steel); font-family: var(--font-heading); font-weight: 600; font-size: 14px; transition: all 0.15s; border-bottom: 1px solid rgba(216,213,206,0.5); }
.cat-sub-link:last-child { border-bottom: none; }
.cat-sub-link:hover { color: var(--navy); background: var(--sailcloth); }
.cat-shop-all { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: var(--sailcloth); color: var(--navy); font-family: var(--font-heading); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.2s; border-top: 1px solid var(--border); }
.cat-shop-all:hover { background: var(--navy); color: white; }

/* ==================== PRODUCTS SECTION ==================== */
.products { padding: 64px 0; background: var(--sailcloth); }
@media (min-width: 1024px) { .products { padding: 96px 0; } }
.product-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.product-card { background: white; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; transition: all 0.3s; }
.product-card:hover { box-shadow: 0 10px 30px rgba(12,27,42,0.1); border-color: rgba(183,121,31,0.3); }
.product-card-img { position: relative; aspect-ratio: 1; background: white; padding: 16px; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--signal-red); color: white; font-family: var(--font-heading); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 2px; }
.product-info { padding: 16px; border-top: 1px solid var(--border); }
.product-brand { color: var(--copper); font-size: 12px; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.product-cat { color: var(--steel-light); font-size: 12px; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.08em; }
.product-title { font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 14px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 40px; margin-top: 8px; transition: color 0.2s; }
.product-card:hover .product-title { color: var(--copper); }
.product-title a { color: inherit; }
.product-stars { display: flex; align-items: center; gap: 4px; margin-top: 8px; }
.star-icon { color: var(--copper); }
.product-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(216,213,206,0.5); }
.product-price { font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: var(--navy); }
.add-btn { background: var(--navy); color: white; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; padding: 8px 12px; border-radius: 2px; display: flex; align-items: center; gap: 6px; transition: background 0.2s; }
.add-btn:hover { background: var(--signal-red); }

/* ==================== BRANDS SECTION ==================== */
.brands { padding: 64px 0; background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
@media (min-width: 1024px) { .brands { padding: 80px 0; } }
.brands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .brands-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .brands-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; } }
.brand-card { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px 16px; background: var(--sailcloth); border: 1px solid var(--border); border-radius: 2px; transition: all 0.3s; text-align: center; }
.brand-card:hover { border-color: var(--copper); box-shadow: 0 4px 12px rgba(183,121,31,0.1); }
.brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.03em; }
.brand-count { font-size: 12px; color: var(--steel-light); margin-top: 4px; }

/* ==================== WHY SECTION ==================== */
.why-section { padding: 64px 0; background: var(--navy); color: var(--warm-white); position: relative; overflow: hidden; }
@media (min-width: 1024px) { .why-section { padding: 96px 0; } }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card { padding: 24px; background: rgba(26,45,66,0.5); border: 1px solid rgba(250,249,245,0.08); border-radius: 2px; }
.why-card .icon-wrap { width: 48px; height: 48px; background: rgba(183,121,31,0.15); border-radius: 2px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--copper); }
.why-card h3 { font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.why-card p { color: rgba(250,249,245,0.6); font-size: 14px; line-height: 1.6; }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding-top: 48px; border-top: 1px solid rgba(250,249,245,0.08); }
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-heading); font-weight: 800; font-size: 2.5rem; color: var(--copper); }
.stat-label { font-size: 13px; color: rgba(250,249,245,0.5); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-heading); margin-top: 4px; }

/* ==================== TESTIMONIALS ==================== */
.testimonials { padding: 64px 0; background: var(--warm-white); }
@media (min-width: 1024px) { .testimonials { padding: 96px 0; } }
.test-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .test-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.test-card { background: white; border: 1px solid var(--border); border-radius: 2px; padding: 24px; }
.test-card .stars { display: flex; gap: 2px; margin-bottom: 16px; color: var(--copper); }
.test-card p { color: var(--steel); font-size: 14px; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.test-card .author { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--navy); }
.test-card .location { font-size: 13px; color: var(--steel-light); }

/* ==================== FAQ ==================== */
.faq { padding: 64px 0; background: var(--sailcloth); }
@media (min-width: 1024px) { .faq { padding: 96px 0; } }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: 2px; margin-bottom: 8px; overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 20px; font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--navy); text-align: left; transition: background 0.15s; }
.faq-question:hover { background: var(--sailcloth); }
.faq-question .chevron { width: 20px; height: 20px; color: var(--copper); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 16px; color: var(--steel); font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ==================== NEWSLETTER ==================== */
.newsletter { padding: 64px 0; background: var(--navy); position: relative; overflow: hidden; }
@media (min-width: 1024px) { .newsletter { padding: 80px 0; } }
.newsletter .container { position: relative; text-align: center; }
.newsletter h2 { font-weight: 800; font-size: 2rem; color: white; margin-bottom: 12px; }
@media (min-width: 640px) { .newsletter h2 { font-size: 2.5rem; } }
.newsletter p { color: rgba(250,249,245,0.7); max-width: 480px; margin: 0 auto 32px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; gap: 0; }
.newsletter-form input { flex: 1; padding: 14px 16px; border: 1px solid rgba(250,249,245,0.15); background: rgba(26,45,66,0.5); color: white; font-family: var(--font-body); font-size: 14px; border-radius: 2px 0 0 2px; outline: none; }
.newsletter-form input::placeholder { color: rgba(250,249,245,0.4); }
.newsletter-form button { background: var(--signal-red); color: white; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px; padding: 14px 24px; border-radius: 0 2px 2px 0; transition: background 0.2s; white-space: nowrap; }
.newsletter-form button:hover { background: var(--signal-red-hover); }

/* ==================== FOOTER ==================== */
.footer { background: var(--navy-dark); }
.footer-stripe { height: 4px; background: var(--signal-red); }
.footer-content { padding: 48px 0; }
@media (min-width: 1024px) { .footer-content { padding: 64px 0; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; } }
.footer-brand img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { color: rgba(250,249,245,0.6); font-size: 14px; line-height: 1.6; max-width: 300px; margin-bottom: 24px; }
.footer-contact a, .footer-contact div { display: flex; align-items: flex-start; gap: 8px; color: rgba(250,249,245,0.6); font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--copper); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 36px; height: 36px; background: rgba(26,45,66,0.4); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: rgba(250,249,245,0.5); transition: all 0.2s; }
.footer-social a:hover { background: rgba(183,121,31,0.2); color: var(--copper); }
.footer-col h4 { font-family: var(--font-heading); font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(250,249,245,0.5); font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--copper); }
.footer-trust { display: flex; align-items: center; gap: 8px; color: rgba(250,249,245,0.4); font-size: 12px; margin-top: 8px; }
.footer-bottom { border-top: 1px solid rgba(250,249,245,0.05); padding: 24px 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { color: rgba(250,249,245,0.3); font-size: 12px; }
.footer-bottom .tagline { display: flex; align-items: center; gap: 4px; color: rgba(250,249,245,0.2); font-size: 12px; }

/* ==================== SCROLL TO TOP ==================== */
.scroll-top { position: fixed; bottom: 24px; right: 24px; z-index: 50; background: var(--navy); color: white; width: 44px; height: 44px; border-radius: 2px; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: all 0.2s; }
.scroll-top:hover { background: var(--signal-red); transform: scale(1.05); }
.scroll-top.show { display: flex; }

/* ==================== SVG ICONS ==================== */
.icon { width: 16px; height: 16px; display: inline-block; vertical-align: middle; }
.icon-sm { width: 14px; height: 14px; }
.icon-lg { width: 20px; height: 20px; }
.icon-xl { width: 24px; height: 24px; }
.icon-copper { color: var(--copper); }

/* ==================== PRODUCT DETAIL PAGE ==================== */
.pdp-breadcrumb { background: white; border-bottom: 1px solid rgba(216,213,206,0.5); padding: 12px 0; }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--steel); flex-wrap: wrap; }
.breadcrumb-list a:hover { color: var(--navy); }
.breadcrumb-list .current { color: var(--navy); font-weight: 600; }

.pdp-section { padding: 32px 0; }
@media (min-width: 1024px) { .pdp-section { padding: 48px 0; } }
.pdp-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .pdp-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.pdp-section .container { max-width: 1400px; }

/* Gallery */
.gallery-main { position: relative; background: white; border: 1px solid rgba(216,213,206,0.6); border-radius: 2px; overflow: hidden; aspect-ratio: 1; margin-bottom: 16px; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.gallery-main .discount-badge { position: absolute; top: 16px; left: 16px; background: var(--signal-red); color: white; font-family: var(--font-heading); font-weight: 700; font-size: 14px; padding: 6px 12px; border-radius: 2px; }
.gallery-main .usa-badge { position: absolute; top: 16px; right: 16px; background: var(--navy); color: var(--warm-white); font-family: var(--font-heading); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 12px; border-radius: 2px; display: flex; align-items: center; gap: 6px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-thumb { background: white; border: 2px solid var(--border); border-radius: 2px; overflow: hidden; aspect-ratio: 1; cursor: pointer; transition: all 0.2s; padding: 4px; }
.gallery-thumb:hover { border-color: rgba(183,121,31,0.5); }
.gallery-thumb.active { border-color: var(--signal-red); box-shadow: 0 2px 8px rgba(197,48,48,0.2); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }
.gallery-lifestyle { margin-top: 24px; position: relative; border-radius: 2px; overflow: hidden; height: 200px; }
.gallery-lifestyle img { width: 100%; height: 100%; object-fit: cover; }
.gallery-lifestyle .overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(6,15,24,0.8), transparent); display: flex; align-items: center; }
.gallery-lifestyle .text { padding: 24px; }
.gallery-lifestyle .text .label { font-family: var(--font-heading); font-weight: 700; color: var(--copper); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.gallery-lifestyle .text h3 { font-weight: 800; color: white; font-size: 20px; }
.gallery-lifestyle .text p { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 4px; }

/* Product Info */
.pdp-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.pdp-brand .brand-name { font-family: var(--font-heading); font-weight: 700; color: var(--copper); text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px; }
.pdp-brand .divider { color: rgba(139,149,165,0.4); }
.pdp-brand .sku { color: var(--steel); font-size: 14px; }
.pdp-title { font-weight: 800; font-size: 1.5rem; color: var(--navy); line-height: 1.2; margin-bottom: 8px; }
@media (min-width: 1024px) { .pdp-title { font-size: 1.875rem; } }
.pdp-subtitle { color: var(--steel); margin-bottom: 16px; }
.pdp-rating { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.pdp-rating .stars { display: flex; align-items: center; gap: 4px; }
.pdp-rating .score { font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 14px; margin-left: 6px; }
.pdp-rating a { font-size: 14px; color: var(--steel); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.pdp-rating a:hover { color: var(--signal-red); }
.pdp-desc { color: var(--steel); font-size: 15px; line-height: 1.6; margin-bottom: 24px; }

/* Price Box */
.price-box { background: white; border: 1px solid rgba(216,213,206,0.6); border-radius: 2px; padding: 20px; margin-bottom: 24px; }
.price-msrp { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.price-msrp .old { color: var(--steel); font-size: 14px; text-decoration: line-through; }
.price-msrp .save { background: rgba(197,48,48,0.1); color: var(--signal-red); font-family: var(--font-heading); font-weight: 700; font-size: 12px; padding: 2px 8px; border-radius: 2px; }
.price-current { font-family: var(--font-heading); font-weight: 800; font-size: 2.5rem; color: var(--navy); }
.price-note { color: var(--steel); font-size: 14px; margin-top: 4px; }

/* Stock & Shipping */
.stock-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.stock-row .item { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.stock-dot { width: 10px; height: 10px; border-radius: 50%; background: #38A169; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.stock-label { font-family: var(--font-heading); font-weight: 600; color: var(--navy); }

/* Quantity + Cart */
.cart-row { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
@media (min-width: 640px) { .cart-row { flex-direction: row; } }
.qty-control { display: flex; align-items: center; border: 1px solid rgba(216,213,206,0.6); border-radius: 2px; background: white; }
.qty-control button { padding: 12px; transition: background 0.15s; }
.qty-control button:hover { background: var(--sailcloth); }
.qty-control .qty-val { padding: 12px 20px; font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 18px; min-width: 50px; text-align: center; }
.add-to-cart-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--signal-red); color: white; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px; padding: 14px 24px; border-radius: 2px; transition: all 0.2s; }
.add-to-cart-btn:hover { background: var(--signal-red-hover); box-shadow: 0 4px 12px rgba(197,48,48,0.3); }

/* Secondary Actions */
.secondary-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.secondary-actions button { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--steel); text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.2s; }
.secondary-actions button:hover { color: var(--signal-red); }
.secondary-actions .divider { color: var(--border); }

/* Trust Grid */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 12px; background: white; border: 1px solid rgba(216,213,206,0.6); border-radius: 2px; }
.trust-item .trust-title { font-family: var(--font-heading); font-weight: 700; font-size: 12px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 6px; }
.trust-item .trust-sub { font-size: 11px; color: var(--steel); margin-top: 2px; }

/* Quick Specs */
.quick-specs { padding: 32px 0; background: white; border-top: 1px solid rgba(216,213,206,0.5); border-bottom: 1px solid rgba(216,213,206,0.5); }
.specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .specs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .specs-grid { grid-template-columns: repeat(6, 1fr); } }
.spec-badge { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 16px; background: rgba(245,243,238,0.5); border-radius: 2px; }
.spec-badge .spec-label { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--navy); margin-top: 8px; }
.spec-badge .spec-desc { font-size: 12px; color: var(--steel); margin-top: 2px; }

/* Tabs */
.tabs-section { padding: 40px 0; }
@media (min-width: 1024px) { .tabs-section { padding: 56px 0; } }
.tab-headers { display: flex; border-bottom: 2px solid rgba(216,213,206,0.4); margin-bottom: 32px; }
.tab-btn { position: relative; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px; padding: 12px 24px; color: var(--steel); transition: color 0.2s; }
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); }
.tab-btn.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 3px; background: var(--signal-red); }
.tab-content { display: none; max-width: 800px; }
.tab-content.active { display: block; }

/* Description Tab */
.desc-title { font-weight: 800; font-size: 1.5rem; color: var(--navy); margin-bottom: 16px; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 24px 0 32px; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px; background: white; border: 1px solid rgba(216,213,206,0.4); border-radius: 2px; }
.feature-item span { color: var(--steel); font-size: 14px; }
.abyc-notice { margin-top: 32px; padding: 16px; background: rgba(183,121,31,0.05); border: 1px solid rgba(183,121,31,0.2); border-radius: 2px; }
.abyc-notice p { font-size: 14px; color: var(--steel); }
.abyc-notice strong { color: var(--navy); }

/* Specs Tab */
.specs-table { border: 1px solid rgba(216,213,206,0.6); border-radius: 2px; overflow: hidden; }
.spec-row { display: grid; grid-template-columns: 1fr 1fr; }
.spec-row:nth-child(even) { background: rgba(245,243,238,0.3); }
.spec-row .spec-key { padding: 14px 20px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--navy); border-right: 1px solid rgba(216,213,206,0.4); }
.spec-row .spec-val { padding: 14px 20px; font-size: 14px; color: var(--steel); }

/* Reviews Tab */
.rating-summary { display: flex; align-items: center; gap: 24px; padding: 24px; background: white; border: 1px solid rgba(216,213,206,0.6); border-radius: 2px; margin-bottom: 32px; }
.rating-big { text-align: center; }
.rating-big .num { font-family: var(--font-heading); font-weight: 800; font-size: 3rem; color: var(--navy); }
.rating-bars { flex: 1; }
.rating-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.rating-bar-row .label { font-size: 12px; color: var(--steel); width: 12px; }
.rating-bar-row .bar { flex: 1; height: 8px; background: var(--sailcloth); border-radius: 99px; overflow: hidden; }
.rating-bar-row .bar .fill { height: 100%; background: var(--copper); border-radius: 99px; }
.rating-bar-row .pct { font-size: 12px; color: var(--steel); width: 32px; }
.review-card { padding: 20px; background: white; border: 1px solid rgba(216,213,206,0.6); border-radius: 2px; margin-bottom: 16px; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.review-header .left { display: flex; align-items: center; gap: 12px; }
.review-header .verified { display: flex; align-items: center; gap: 4px; font-size: 12px; color: #38A169; }
.review-card .review-text { color: var(--steel); font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
.review-card .review-author { font-size: 12px; color: var(--steel-light); }
.review-card .review-author strong { color: var(--navy); }

/* Compatible Accessories - Compact Horizontal Strip */
.compat-strip { margin-top: 24px; }
.compat-strip-label { font-family: var(--font-heading); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--copper); margin-bottom: 10px; }
.compat-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.compat-scroll::-webkit-scrollbar { height: 4px; }
.compat-scroll::-webkit-scrollbar-track { background: transparent; }
.compat-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
.compat-item { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: white; border: 1px solid rgba(216,213,206,0.6); border-radius: 6px; min-width: 220px; max-width: 260px; flex-shrink: 0; transition: all 0.25s; text-decoration: none; cursor: pointer; }
.compat-item:hover { border-color: var(--copper); box-shadow: 0 2px 8px rgba(183,121,31,0.12); }
.compat-thumb { width: 48px; height: 48px; flex-shrink: 0; background: var(--warm-white); border-radius: 4px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.compat-thumb img { width: 100%; height: 100%; object-fit: contain; }
.compat-info { flex: 1; min-width: 0; }
.compat-name { font-family: var(--font-heading); font-weight: 600; font-size: 12px; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; }
.compat-price { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--signal-red); margin-top: 2px; }
.compat-add { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; flex-shrink: 0; background: var(--signal-red); color: white; border-radius: 50%; font-size: 16px; font-weight: 700; line-height: 1; transition: background 0.2s; }
.compat-item:hover .compat-add { background: var(--signal-red-hover); }

/* Legacy acc-grid for Related Products */
.acc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .acc-grid { grid-template-columns: repeat(4, 1fr); } }
.acc-card { background: var(--warm-white); border: 1px solid rgba(216,213,206,0.6); border-radius: 2px; overflow: hidden; transition: all 0.3s; }
.acc-card:hover { box-shadow: 0 4px 12px rgba(12,27,42,0.1); border-color: rgba(183,121,31,0.2); }
.acc-card-img { aspect-ratio: 1; background: white; padding: 16px; display: flex; align-items: center; justify-content: center; }
.acc-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.acc-card-info { padding: 12px; border-top: 1px solid rgba(216,213,206,0.4); }
.acc-card-info .brand { color: var(--copper); font-size: 12px; font-weight: 600; margin-bottom: 4px; }
.acc-card-info .title { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--navy); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px; line-height: 1.4; }
.acc-card-bottom { display: flex; align-items: center; justify-content: space-between; }
.acc-card-bottom .price { font-family: var(--font-heading); font-weight: 700; color: var(--navy); }
.acc-card-bottom .add-link { font-size: 12px; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--signal-red); transition: color 0.2s; }
.acc-card-bottom .add-link:hover { color: var(--signal-red-hover); }

/* Related Products */
.related { padding: 40px 0; background: var(--warm-white); }

/* Sticky Bottom Bar */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); border-top: 2px solid rgba(183,121,31,0.3); box-shadow: 0 -4px 20px rgba(0,0,0,0.3); z-index: 50; transform: translateY(100%); transition: transform 0.3s; }
.sticky-bar.show { transform: translateY(0); }
.sticky-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 12px; padding-bottom: 12px; }
.sticky-bar .product-info-mini { display: flex; align-items: center; gap: 16px; min-width: 0; }
.sticky-bar .mini-img { width: 48px; height: 48px; object-fit: contain; background: white; border-radius: 2px; padding: 4px; flex-shrink: 0; display: none; }
@media (min-width: 640px) { .sticky-bar .mini-img { display: block; } }
.sticky-bar .mini-title { font-family: var(--font-heading); font-weight: 700; color: white; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-bar .mini-price { font-family: var(--font-heading); font-weight: 800; color: white; font-size: 18px; }
.sticky-bar .mini-msrp { color: rgba(255,255,255,0.5); font-size: 12px; text-decoration: line-through; margin-left: 8px; }
.sticky-bar .sticky-cart-btn { display: flex; align-items: center; gap: 8px; background: var(--signal-red); color: white; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px; padding: 12px 24px; border-radius: 2px; transition: all 0.2s; flex-shrink: 0; }
.sticky-bar .sticky-cart-btn:hover { background: var(--signal-red-hover); }

/* Utility */
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }


/* Responsive and auth additions */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.icon-btn[data-account-trigger],
.mobile-auth-link {
  color: #0B1F33;
}

.cat-card,
.product-card,
.cat-product-card {
  cursor: pointer;
}

@media (min-width: 1024px) {
  .pdp-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
    gap: 48px;
    align-items: start;
  }

  .pdp-info-column {
    position: sticky;
    top: 112px;
  }
}

@media (max-width: 1023px) {
  .pdp-grid {
    grid-template-columns: 1fr;
  }

  .pdp-info-column {
    position: static;
  }
}

@media (max-width: 767px) {
  .top-bar .container,
  .header-inner,
  .newsletter-inner,
  .footer-bottom,
  .stock-row,
  .secondary-actions,
  .product-bottom,
  .hero-ctas,
  .pdp-rating,
  .tabs-header,
  .tab-headers {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 56px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-ctas a,
  .newsletter-form button,
  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .section-header {
    align-items: flex-start;
    gap: 14px;
  }

  .gallery-lifestyle .overlay {
    position: static;
    background: linear-gradient(180deg, rgba(10,25,47,0) 0%, rgba(10,25,47,0.88) 100%);
  }

  .cart-row {
    flex-direction: column;
    align-items: stretch;
  }

  .qty-control,
  .add-to-cart-btn {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .top-bar-right {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }

  .hero-title,
  .page-title,
  .pdp-title {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.05;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tab-headers button {
    width: 100%;
  }
}

.login-page-body {
  min-height: 100vh;
  font-family: 'Source Sans 3', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(183, 121, 31, 0.12), transparent 32%),
    linear-gradient(135deg, #081521 0%, #10263A 46%, #14314C 100%);
  color: #F7FAFC;
}

.login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.login-panel-wrap {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.login-brand-card,
.login-form-card {
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.login-brand-card {
  position: relative;
  overflow: visible;
  background: linear-gradient(180deg, rgba(7, 20, 32, 0.78), rgba(7, 20, 32, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.login-brand-story {
  position: relative;
  min-height: 620px;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.login-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #F7FAFC;
  text-decoration: none;
}

.login-brand .logo-mark {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.96);
  padding: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.login-brand p {
  margin: 6px 0 0;
  color: rgba(247, 250, 252, 0.74);
}

.login-brand .logo-text,
.login-eyebrow,
.login-kicker,
.login-submit {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-brand-copy h1,
.login-form-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  line-height: 0.96;
  margin: 0 0 14px;
}

.login-brand-copy h1 {
  max-width: 12ch;
  font-size: clamp(26px, 3.2vw, 42px);
}

.login-brand-copy {
  position: relative;
  z-index: 2;
  max-width: 26rem;
}

.login-brand-copy p {
  max-width: 25rem;
}

.login-mascot-stage {
  position: absolute;
  top: 25%;
  left: 64%;
  z-index: 4;
  margin: 0;
  pointer-events: none;
}

.login-mascot {
  width: clamp(360px, 40vw, 420px);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.28));
  transform: translate(-6%, -35%) rotate(-4deg);
}

.login-brand-copy p,
.login-form-head p,
.login-footnote {
  color: rgba(247, 250, 252, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.login-credentials {
  position: relative;
  z-index: 3;
  margin-top: auto;
  max-width: 400px;
  padding: 24px 22px 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(10px);
}

.login-credentials-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D69E2E;
  margin-bottom: 12px;
}

.login-credentials p {
  margin: 0;
  color: rgba(247, 250, 252, 0.84);
  line-height: 1.7;
}

.login-credentials p + p {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.login-contact-link {
  color: #F7C96B;
  font-weight: 700;
  text-decoration: none;
}

.login-contact-link:hover {
  text-decoration: underline;
}

.login-side-note {
  color: rgba(247, 250, 252, 0.66);
  font-size: 15px;
}

.login-form-card {
  position: relative;
  z-index: 2;
  background: #F8F4ED;
  color: #10263A;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-kicker {
  color: #B7791F;
  font-size: 14px;
}

.login-form-head h2 {
  font-size: clamp(34px, 5vw, 52px);
}

.login-form-head p,
.login-footnote {
  color: #4A5568;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.login-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

.login-form input {
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(16, 38, 58, 0.14);
  padding: 0 18px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.login-form input:focus {
  outline: none;
  border-color: #B7791F;
  box-shadow: 0 0 0 3px rgba(183, 121, 31, 0.18);
}

.login-error {
  margin: 0;
  border-radius: 14px;
  background: rgba(229, 62, 62, 0.12);
  border: 1px solid rgba(229, 62, 62, 0.24);
  color: #9B2C2C;
  padding: 12px 14px;
}

.login-submit {
  height: 58px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #B7791F, #D69E2E);
  color: #081521;
  font-size: 18px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.login-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 28px rgba(183, 121, 31, 0.22);
}

@media (max-width: 900px) {
  .login-panel-wrap {
    grid-template-columns: 1fr;
  }

  .login-brand-story {
    min-height: auto;
  }

  .login-brand-copy {
    max-width: 100%;
  }

  .login-brand-copy h1 {
    max-width: 12ch;
  }

  .login-mascot-stage {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    justify-content: center;
    margin: -4px 0 -20px;
  }

  .login-mascot {
    width: min(300px, 72vw);
    max-width: 100%;
    transform: rotate(-3deg);
  }

  .login-credentials {
    max-width: 100%;
    padding-top: 24px;
  }
}
@media (max-width: 540px) {
  .login-brand-card,
  .login-form-card {
    padding: 22px;
    border-radius: 22px;
  }

  .login-brand {
    align-items: flex-start;
  }

  .login-brand .logo-mark {
    width: 60px;
    height: 60px;
  }

  .login-brand-copy h1,
  .login-form-head h2 {
    line-height: 1;
  }

  .login-brand-copy h1 {
    max-width: 100%;
    font-size: clamp(30px, 13vw, 44px);
  }

  .login-mascot-stage {
    margin: 4px 0 -12px;
  }

  .login-mascot {
    width: min(250px, 76vw);
    transform: none;
  }

  .login-credentials {
    margin-top: 0;
    padding-top: 84px;
  }

  .login-brand-copy p,
  .login-form-head p,
  .login-footnote {
    font-size: 16px;
  }
}
  .credential-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
