@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: hidden; }
html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #171717;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(560px 420px at 6% 12%, rgba(2,132,199,.07), transparent 62%),
    radial-gradient(520px 420px at 96% 46%, rgba(14,165,233,.06), transparent 60%),
    radial-gradient(640px 480px at 22% 92%, rgba(2,132,199,.05), transparent 62%),
    radial-gradient(480px 380px at 85% 96%, rgba(14,165,233,.05), transparent 60%);
}
main { flex: 1; min-width: 0; }

/* Homepage-only dark canvas */
body.home { background: linear-gradient(180deg, #090c11, #0b0f15 40%, #0a0d12 100%); }
body.home::before {
  background:
    radial-gradient(620px 460px at 4% 8%, rgba(14,165,233,.14), transparent 62%),
    radial-gradient(560px 460px at 98% 40%, rgba(2,132,199,.12), transparent 60%),
    radial-gradient(680px 520px at 20% 96%, rgba(14,165,233,.10), transparent 62%),
    radial-gradient(520px 420px at 88% 98%, rgba(2,132,199,.10), transparent 60%);
}
body.home .block-head h2,
body.home .block > h2 { color: #fff; }
body.home .block-head a { color: rgba(255,255,255,.7); }
body.home .block-head a:hover { color: var(--accent-light); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 14px; }
ul { list-style: none; margin: 0; padding: 0; }

:root {
  --accent: #0284c7;
  --accent-light: #0ea5e9;
  --text: #171717;
  --muted: #737373;
  --border: #e5e5e5;
  --bg-alt: #fafafa;
  --shadow-sm: 0 2px 8px rgba(15,23,42,.06);
  --shadow-md: 0 8px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 20px 48px rgba(15,23,42,.14);
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); transition: background .25s, border-color .25s; }

.site-header--transparent { position: fixed; top: 0; left: 0; right: 0; background: transparent; backdrop-filter: none; border-bottom-color: transparent; }
.site-header--transparent:not(.is-scrolled) .logo,
.site-header--transparent:not(.is-scrolled) .main-nav > a,
.site-header--transparent:not(.is-scrolled) .dropdown-trigger,
.site-header--transparent:not(.is-scrolled) .icon-btn { color: #fff; }
.site-header--transparent:not(.is-scrolled) .icon-btn:hover { background: rgba(255,255,255,.14); color: #fff; }
.site-header--transparent:not(.is-scrolled) .search-form { border-color: rgba(255,255,255,.35); }
.site-header--transparent:not(.is-scrolled) .search-form svg { color: rgba(255,255,255,.7); }
.site-header--transparent:not(.is-scrolled) .search-form input { color: #fff; }
.site-header--transparent:not(.is-scrolled) .search-form input::placeholder { color: rgba(255,255,255,.65); }
.site-header--transparent:not(.is-scrolled) .cart-badge { box-shadow: 0 0 0 2px #0a0d12; }
.site-header--transparent:not(.is-scrolled) .mobile-nav { background: rgba(10,13,18,.97); border-top-color: rgba(255,255,255,.12); }
.site-header--transparent:not(.is-scrolled) .mobile-nav-chips .chip { color: #fff; border-color: rgba(255,255,255,.25); }
.site-header--transparent:not(.is-scrolled) .mobile-nav-chips .chip:hover,
.site-header--transparent:not(.is-scrolled) .mobile-nav-chips .chip:active { background: #fff; border-color: #fff; color: #171717; }
.site-header--transparent:not(.is-scrolled) .mobile-nav-chips .chip-sale { color: #fca5b1; border-color: rgba(252,165,177,.4); }
.site-header--transparent.is-scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom-color: var(--border); }
.header-inner { position: relative; width: 100%; padding: 14px 32px; display: flex; align-items: center; gap: 16px; }
@media (max-width: 767px) { .header-inner { padding: 14px 20px; } }
.logo { display: flex; align-items: center; gap: 9px; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; flex-shrink: 0; }
.logo img { width: 30px; height: 30px; }
@media (min-width: 1024px) { .logo { margin-right: 48px; } }
button.menu-toggle { display: none; background: none; border: none; padding: 4px; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; }
.main-nav a { color: #404040; transition: color .15s; }
.main-nav a:hover { color: var(--accent); }
.nav-sale { color: #e11d48 !important; font-weight: 600; }
.dropdown { position: relative; }
.dropdown-trigger { background: none; border: none; display: flex; align-items: center; gap: 4px; font-size: 14px; color: #404040; padding: 0; }
.dropdown-trigger:hover { color: var(--accent); }
.dropdown-panel { display: none; position: absolute; top: calc(100% + 12px); left: 0; width: 300px; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 12px 32px rgba(0,0,0,.12); padding: 10px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2px; }
.dropdown.open .dropdown-panel { display: grid; }
.dropdown-panel a { padding: 8px 10px; border-radius: 8px; font-size: 14px; color: #404040; }
.dropdown-panel a:hover { background: #f0f9ff; color: var(--accent); }
.search-form { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 8px; border: 1px solid #d4d4d4; border-radius: 999px; padding: 7px 14px; width: 300px; color: #a3a3a3; }
.search-form:focus-within { border-color: var(--accent); }
.search-form input { border: none; outline: none; background: none; width: 100%; color: var(--text); }
.header-icons { display: flex; align-items: center; gap: 6px; margin-left: auto; padding-left: 8px; }
.icon-btn { position: relative; color: #404040; display: flex; padding: 8px; border-radius: 999px; transition: color .15s, background .15s; }
.icon-btn:hover { color: var(--accent); background: var(--bg-alt); }
.cart-badge { position: absolute; top: 2px; right: 2px; background: var(--accent); color: #fff; font-size: 10px; width: 16px; height: 16px; border-radius: 999px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 2px #fff; }
.mobile-nav { display: none; padding: 16px 20px 20px; border-top: 1px solid var(--border); background: #fff; }
.mobile-nav.open { display: flex; }
.mobile-nav-chips { width: 100%; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.mobile-nav-chips .chip { padding: 9px 16px; border: 1px solid var(--border); border-radius: 999px; font-size: 13px; font-weight: 500; color: #404040; transition: background .15s, border-color .15s, color .15s; }
.mobile-nav-chips .chip:hover, .mobile-nav-chips .chip:active { border-color: #171717; background: #171717; color: #fff; }
.mobile-nav-chips .chip-sale { color: #e11d48; border-color: #fecdd3; }
.mobile-nav-chips .chip-sale:hover, .mobile-nav-chips .chip-sale:active { border-color: #e11d48; background: #e11d48; color: #fff; }

@media (max-width: 1279px) {
  .main-nav { display: none; }
  button.menu-toggle { display: flex; }
}
@media (max-width: 767px) {
  .search-form { display: none; }
}

/* Hero */
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hero { position: relative; height: 100vh; height: 100dvh; display: flex; align-items: center; justify-content: flex-start; overflow: hidden; background: #0a0d12; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(6,9,14,.92) 0%, rgba(6,9,14,.78) 32%, rgba(6,9,14,.35) 58%, rgba(6,9,14,.08) 78%), linear-gradient(to top, rgba(6,9,14,.55), transparent 45%); }
.hero-content { position: relative; z-index: 1; max-width: 660px; padding-right: 24px; margin-left: max(24px, calc((100vw - 1280px) / 2 + 20px)); text-align: left; color: #fff; animation: fadeUp .6s ease-out; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; }
.hero-content h1 { font-size: clamp(36px, 5.6vw, 72px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; margin: 0 0 20px; }
.hero-content p { font-size: 19px; color: rgba(255,255,255,.85); margin: 0 0 30px; }
.accent-text { color: var(--accent-light); }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-accent { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; padding: 14px 30px; border-radius: 999px; font-size: 14px; font-weight: 600; border: none; box-shadow: 0 8px 24px rgba(2,132,199,.35); transition: transform .18s, box-shadow .18s; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(2,132,199,.45); }
.btn-hero-outline { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(6px); color: #fff; padding: 13px 28px; border-radius: 999px; font-size: 14px; font-weight: 600; transition: background .18s, border-color .18s, transform .18s; }
.btn-hero-outline:hover { background: rgba(255,255,255,.18); border-color: #fff; transform: translateY(-2px); }
.hero-trust { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px 56px; padding: 22px 24px; border-top: 1px solid rgba(255,255,255,.15); background: linear-gradient(to top, rgba(4,7,11,.7), rgba(4,7,11,.15)); backdrop-filter: blur(4px); }
.hero-trust-item { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.9); }
.hero-trust-item svg { flex-shrink: 0; opacity: .85; color: var(--accent-light); }
.hero-trust-item strong { display: block; font-size: 13.5px; font-weight: 600; line-height: 1.35; white-space: nowrap; }
.hero-trust-item span { display: block; font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.35; white-space: nowrap; }

@media (max-width: 767px) {
  .hero-content h1 { font-size: clamp(26px, 7vw, 36px); margin: 0 0 12px; }
  .hero-content p { font-size: 15px; margin: 0 0 20px; }
  .hero-eyebrow { margin-bottom: 14px; font-size: 11px; }
  .hero-actions { margin-bottom: 24px; }
  .hero-trust { display: none; }
}

/* Sections */
.block { max-width: 1280px; margin: 0 auto; padding: 56px 20px; }
.block h2 { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 24px; }
.block-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; }
.block-head h2 { margin: 0; }
.block-head a { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }

/* Soft cool-air glow easing the dark hero into the white content below */
#categories-block { position: relative; }
#categories-block::before { content: ''; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); width: 900px; height: 260px; background: radial-gradient(ellipse at center, var(--accent-light) 0%, transparent 70%); opacity: .10; filter: blur(60px); pointer-events: none; z-index: 0; }
#categories-block > * { position: relative; z-index: 1; }

/* Category grid — bento mosaic: first tile is a big feature, rest fill in around it */
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 190px; grid-auto-flow: row dense; gap: 20px; }
.category-card { position: relative; grid-column: span 1; grid-row: span 1; border-radius: 20px; overflow: hidden; background: #f5f5f5; box-shadow: var(--shadow-sm); transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s; }
.category-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.category-card:nth-child(6), .category-card:nth-child(7) { grid-column: span 2; grid-row: span 1; }
.category-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: var(--shadow-lg); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.category-card:hover img { transform: scale(1.1); }
.category-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,10,20,.85), rgba(3,10,20,.1) 60%, rgba(2,60,90,.12)); transition: background .3s; }
.category-card:hover .overlay { background: linear-gradient(to top, rgba(2,60,90,.88), rgba(3,10,20,.15) 60%, rgba(2,60,90,.08)); }
.category-card .cat-label { position: absolute; bottom: 58px; left: 18px; right: 18px; color: #fff; font-weight: 700; font-size: 17px; letter-spacing: -0.01em; line-height: 1.25; word-break: break-word; }
.category-card:nth-child(1) .cat-label { font-size: 25px; bottom: 78px; left: 22px; right: 22px; }
.category-card .cat-arrow { position: absolute; bottom: 18px; left: 18px; width: 38px; height: 38px; border-radius: 999px; background: rgba(255,255,255,.95); color: #171717; display: flex; align-items: center; justify-content: center; transition: transform .25s, background .25s, color .25s; }
.category-card:nth-child(1) .cat-arrow { left: 22px; bottom: 22px; width: 44px; height: 44px; }
.category-card:hover .cat-arrow { background: var(--accent); color: #fff; transform: translateX(5px); }

@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 160px; }
  .category-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .category-card:nth-child(6), .category-card:nth-child(7) { grid-column: span 2; grid-row: span 1; }
  .category-card:nth-child(1) .cat-label { font-size: 20px; bottom: 66px; }
}

/* Product grid & cards */
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px 24px; }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } }
.product-card { position: relative; display: flex; flex-direction: column; background: linear-gradient(165deg, #171d25, #0e1318); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 10px 10px 16px; overflow: hidden; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s; }
.product-card::before { content: ''; position: absolute; top: -60%; left: -20%; width: 70%; height: 140%; background: radial-gradient(ellipse at center, rgba(14,165,233,.16), transparent 70%); pointer-events: none; opacity: 0; transition: opacity .4s; }
.product-card:hover::before { opacity: 1; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(2,20,40,.35), 0 0 0 1px rgba(14,165,233,.15); border-color: rgba(255,255,255,.14); }
.product-media { position: relative; z-index: 1; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; background: #1a2129; }
.product-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .5s ease; }
.product-media .media-secondary { opacity: 0; }
.product-card:hover .media-primary { opacity: 0; }
.product-card:hover .media-secondary { opacity: 1; }
.product-card:hover .product-media img { transform: scale(1.06); }
.badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge { font-size: 10.5px; font-weight: 700; letter-spacing: .02em; padding: 4px 9px; border-radius: 999px; color: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.15); }
.badge-new { background: #171717; }
.badge-sale { background: #e11d48; }
.badge-best { background: #f59e0b; }
.wishlist-toggle { position: absolute; top: 10px; right: 10px; z-index: 2; width: 34px; height: 34px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); background: rgba(10,14,20,.45); backdrop-filter: blur(6px); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.2); transition: transform .15s, color .15s, background .15s; }
.wishlist-toggle:hover { background: rgba(10,14,20,.7); }

/* Spec highlight pills at the bottom of the product photo */
.feature-pills { position: absolute; z-index: 2; left: 8px; right: 8px; bottom: 8px; display: flex; align-items: center; gap: 8px; background: rgba(8,12,18,.75); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 8px 10px; }
.feature-pill { display: flex; align-items: center; gap: 7px; flex: 1; min-width: 0; }
.feature-pill svg { color: var(--accent-light); flex-shrink: 0; }
.feature-pill-text { min-width: 0; flex: 1; }
.feature-pill strong { display: block; font-size: 10.5px; font-weight: 600; color: #fff; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feature-pill span { display: block; font-size: 10px; color: rgba(255,255,255,.55); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feature-pill-divider { width: 1px; align-self: stretch; background: rgba(255,255,255,.12); flex-shrink: 0; }
@media (max-width: 480px) { .feature-pills { display: none; } }
.wishlist-toggle:hover { transform: scale(1.1); }
.wishlist-toggle.active { color: #e11d48; }
.product-info { position: relative; z-index: 1; margin-top: 14px; padding: 0 4px; }
.product-brand { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-light); }
.product-name { font-size: 14.5px; font-weight: 600; margin: 4px 0; line-height: 1.35; color: #fff; }
.product-desc { font-size: 12px; color: rgba(255,255,255,.5); margin: 0 0 8px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-rating { font-size: 12px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 4px; }
.product-rating .star { color: #f59e0b; letter-spacing: -1px; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 10px; }
.product-price { display: flex; align-items: baseline; gap: 8px; }
.price-now { font-weight: 700; font-size: 17px; color: #fff; }
.price-was { color: rgba(255,255,255,.4); text-decoration: line-through; font-size: 12.5px; }
.cart-icon-btn { flex-shrink: 0; width: 34px; height: 34px; border-radius: 999px; border: none; background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(2,132,199,.35); transition: transform .18s, box-shadow .18s; }
.cart-icon-btn:hover { transform: scale(1.08) translateY(-1px); }
.cart-icon-btn:disabled { background: #52606d; box-shadow: none; cursor: not-allowed; }
.star { color: #f59e0b; }

/* Brand strip */
.brands-strip { background: linear-gradient(160deg, #0d1620, #10161e); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.brands-inner { max-width: 1280px; margin: 0 auto; padding: 26px 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brands-label { color: #fff; font-weight: 600; font-size: 15px; margin: 0; white-space: nowrap; }
.brands-list { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; flex: 1; justify-content: center; }
.brands-list span { color: rgba(255,255,255,.55); font-weight: 700; font-size: 15px; letter-spacing: .02em; transition: color .2s; }
.brands-list span:hover { color: #fff; }
.brands-arrow { flex-shrink: 0; width: 38px; height: 38px; border-radius: 999px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.brands-arrow:hover { transform: translateX(3px); }
@media (max-width: 767px) { .brands-inner { justify-content: center; text-align: center; } .brands-list { gap: 20px; } }

/* Benefits — dark card, part of the homepage's dark canvas */
.benefits-section { background: transparent; }
.benefits-layout { display: flex; gap: 56px; align-items: flex-start; }
.benefits-intro { flex: 0 0 300px; }
.benefits-intro h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 14px; padding-left: 18px; position: relative; color: #fff; }
.benefits-intro h2::before { content: ''; position: absolute; left: 0; top: 5px; bottom: 5px; width: 4px; border-radius: 4px; background: var(--accent-light); }
.benefits-intro p { color: rgba(255,255,255,.55); font-size: 14.5px; line-height: 1.65; margin: 0 0 24px; }
.benefits-grid { flex: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; }
.benefits-grid > div { background: linear-gradient(165deg, #161c24, #0e1318); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 20px; transition: box-shadow .2s, transform .2s, border-color .2s; }
.benefits-grid > div:hover { box-shadow: 0 16px 32px rgba(2,20,40,.35); transform: translateY(-3px); border-color: rgba(255,255,255,.16); }
@media (max-width: 900px) { .benefits-layout { flex-direction: column; gap: 28px; } .benefits-intro { flex: none; } }
@media (max-width: 520px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-icon { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: var(--shadow-sm); }
.benefit-title { font-weight: 600; font-size: 14px; margin: 14px 0 4px; color: #fff; }
.benefit-desc { font-size: 14px; color: rgba(255,255,255,.5); margin: 0; }

/* Promo banner */
.promo-banner { position: relative; border-radius: 28px; overflow: hidden; min-height: 320px; display: flex; align-items: center; box-shadow: var(--shadow-lg); }
.promo-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(4,10,18,.94) 0%, rgba(4,10,18,.75) 40%, rgba(4,10,18,.3) 72%); }
.promo-content { position: relative; z-index: 1; padding: 48px; max-width: 520px; color: #fff; }
.promo-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); font-size: 12px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.promo-content h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; line-height: 1.15; margin: 0 0 12px; letter-spacing: -0.01em; }
.promo-content p { font-size: 15px; color: rgba(255,255,255,.8); margin: 0 0 24px; }
@media (max-width: 767px) { .promo-content { padding: 32px 24px; } .promo-banner { min-height: 280px; } }

/* Trust strip */
.trust-strip { background: transparent; border-top: 1px solid rgba(255,255,255,.08); }
.trust-strip-inner { max-width: 1280px; margin: 0 auto; padding: 30px 20px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.trust-strip-inner > div { display: flex; align-items: center; gap: 10px; }
.trust-strip-inner svg { color: var(--accent-light); flex-shrink: 0; }
.trust-strip-inner strong { display: block; font-size: 13px; font-weight: 600; color: #fff; }
.trust-strip-inner span { display: block; font-size: 12px; color: rgba(255,255,255,.5); }
@media (max-width: 900px) { .trust-strip-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Newsletter — dark, with drifting "cool air" glow */
.newsletter-section { position: relative; overflow: hidden; background: radial-gradient(ellipse 900px 500px at 20% 0%, #132234 0%, transparent 60%), linear-gradient(135deg, #0a0f16, #171717 60%); color: #fff; text-align: center; padding: 76px 20px; }
.newsletter-section::before, .newsletter-section::after { content: ''; position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; pointer-events: none; }
.newsletter-section::before { width: 420px; height: 420px; background: var(--accent-light); opacity: .28; top: -180px; left: -80px; animation: airDrift1 11s ease-in-out infinite alternate; }
.newsletter-section::after { width: 380px; height: 380px; background: var(--accent); opacity: .22; bottom: -180px; right: -60px; animation: airDrift2 13s ease-in-out infinite alternate; }
@keyframes airDrift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(50px,30px) scale(1.18); } }
@keyframes airDrift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-40px,-25px) scale(1.12); } }
.newsletter-section > * { position: relative; z-index: 1; }
.newsletter-section h2 { font-size: 26px; margin: 0 0 10px; letter-spacing: -0.01em; }
.newsletter-section p { color: rgba(255,255,255,.7); max-width: 420px; margin: 0 auto 24px; }
.newsletter-section form { display: flex; gap: 8px; justify-content: center; }
.newsletter-section input { border-radius: 999px; border: none; padding: 12px 18px; width: 260px; }
.newsletter-section button { border-radius: 999px; border: none; background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; padding: 12px 24px; font-weight: 600; transition: transform .15s; }
.newsletter-section button:hover { transform: translateY(-1px); }

/* Footer — dark bookend to match the hero */
.site-footer { position: relative; overflow: hidden; background: linear-gradient(175deg, #10161e, #0a0d12 70%); border-top: 1px solid rgba(255,255,255,.06); }
.site-footer::before { content: ''; position: absolute; width: 520px; height: 300px; left: 50%; top: -140px; transform: translateX(-50%); background: radial-gradient(ellipse at center, var(--accent-light) 0%, transparent 70%); opacity: .14; filter: blur(50px); pointer-events: none; }
.footer-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 72px 20px 48px; display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, .9fr) minmax(0, .9fr) minmax(0, .9fr) minmax(0, 1.3fr); gap: 28px; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); padding: 56px 20px 40px; } }
.footer-logo { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 10px; color: #fff; }
.footer-about { font-size: 13px; color: rgba(255,255,255,.5); max-width: 240px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 34px; height: 34px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: background .18s, color .18s, border-color .18s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-heading { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.4); margin: 0 0 14px; }
.footer-inner ul li { font-size: 14px; color: rgba(255,255,255,.68); margin-bottom: 10px; }
.footer-inner ul li a:hover { color: var(--accent-light); }
.footer-inner form { display: flex; flex-direction: column; gap: 8px; }
.footer-inner form input { border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: #fff; border-radius: 8px; padding: 8px 10px; }
.footer-inner form input::placeholder { color: rgba(255,255,255,.4); }
.footer-inner form button { border: none; border-radius: 8px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; padding: 9px; font-weight: 600; font-size: 13px; }
.newsletter-ok { color: #34d399; font-size: 13px; }
.footer-bottom { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.08); padding: 22px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.35); margin: 0; }
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* Payment method badges (stylized, brand-colored) */
.pay-badge { display: inline-flex; align-items: center; justify-content: center; gap: 3px; height: 26px; min-width: 42px; padding: 0 10px; border-radius: 6px; font-size: 12px; font-weight: 800; line-height: 1; }
.pay-visa { background: #fff; color: #1434cb; font-style: italic; letter-spacing: .01em; }
.pay-mc { background: #16191f; padding: 0 9px; }
.pay-mc i { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }
.pay-mc i:first-child { background: #eb001b; margin-right: -5px; }
.pay-mc i:last-child { background: #f79e1b; opacity: .85; }
.pay-paypal { background: #fff; color: #003087; font-style: normal; font-weight: 700; }
.pay-paypal b { color: #009cde; font-weight: 800; }
.pay-apple { background: #000; color: #fff; font-weight: 600; }
.pay-klarna { background: #ffb3c7; color: #0a0a0a; letter-spacing: -.01em; }
@media (max-width: 600px) { .footer-bottom { justify-content: center; text-align: center; } }

/* Buttons (generic) */
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 10px 22px; font-size: 14px; font-weight: 600; border: 1px solid transparent; transition: transform .15s, box-shadow .15s, background .15s, border-color .15s; }
.btn-dark { background: #171717; color: #fff; }
.btn-dark:hover { background: #2b2b2b; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: #fff; border-color: #d4d4d4; color: var(--text); }
.btn-outline:hover { border-color: #171717; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:disabled { opacity: .5; cursor: default; transform: none; box-shadow: none; }

/* Catalog header */
.catalog-header { margin-bottom: 28px; }
.catalog-header h1 { font-size: 30px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 8px; }
.catalog-header p { font-size: 14.5px; color: var(--muted); margin: 0; max-width: 560px; }

/* Catalog layout */
.catalog-layout { display: flex; gap: 40px; align-items: flex-start; }
.filters { width: 260px; flex-shrink: 0; display: flex; flex-direction: column; gap: 18px; }
.filter-group { border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; }
.filter-head { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; cursor: pointer; list-style: none; color: var(--text); }
.filter-head::-webkit-details-marker { display: none; }
.filter-head svg:first-child { color: var(--accent); flex-shrink: 0; }
.filter-head span { flex: 1; }
.filter-head .chev { color: var(--muted); transition: transform .2s; flex-shrink: 0; }
details[open] > .filter-head .chev { transform: rotate(180deg); }
.filter-group .opt { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 13.5px; color: #404040; margin-top: 12px; }
.filter-group .opt span { display: flex; align-items: center; gap: 8px; }
.filter-group .opt em { font-style: normal; font-size: 12px; color: var(--muted); }
.filters select { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 8px; }
.catalog-main { flex: 1; min-width: 0; }
.catalog-main .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 1150px) { .catalog-main .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .catalog-main .product-grid { grid-template-columns: 1fr; } }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.results-count { font-size: 14px; color: var(--muted); }
.btn-accent-block { display: flex; width: 100%; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; border: none; box-shadow: 0 8px 20px rgba(2,132,199,.3); margin-bottom: 8px; }
.btn-accent-block:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(2,132,199,.4); }

/* Price range slider */
.price-slider { position: relative; height: 30px; margin: 10px 2px 6px; }
.price-slider-track { position: absolute; top: 50%; left: 0; right: 0; height: 4px; background: var(--border); border-radius: 999px; transform: translateY(-50%); }
.price-slider-range { position: absolute; top: 50%; height: 4px; background: var(--accent); border-radius: 999px; transform: translateY(-50%); }
.price-slider input[type="range"] { position: absolute; top: 0; left: 0; width: 100%; height: 30px; margin: 0; background: none; -webkit-appearance: none; appearance: none; pointer-events: none; }
.price-slider input[type="range"]::-webkit-slider-runnable-track { -webkit-appearance: none; background: transparent; height: 30px; }
.price-slider input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 17px; height: 17px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); box-shadow: 0 1px 4px rgba(0,0,0,.3); cursor: pointer; margin-top: 7.5px; }
.price-slider input[type="range"]::-moz-range-track { background: transparent; height: 30px; border: none; }
.price-slider input[type="range"]::-moz-range-thumb { pointer-events: auto; width: 17px; height: 17px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); box-shadow: 0 1px 4px rgba(0,0,0,.3); cursor: pointer; }
.price-values { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 600; color: var(--text); }

/* Filters sidebar promo card */
.filters-promo { display: flex; align-items: center; gap: 12px; background: linear-gradient(165deg, #171d25, #0e1318); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 16px; color: #fff; }
.filters-promo-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); display: flex; align-items: center; justify-content: center; }
.filters-promo strong { display: block; font-size: 13px; }
.filters-promo span { display: block; font-size: 11.5px; color: rgba(255,255,255,.55); margin-top: 2px; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn { display: flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 6px; border-radius: 10px; border: 1px solid var(--border); color: var(--text); font-size: 14px; font-weight: 600; transition: background .15s, border-color .15s, color .15s; }
.page-btn:hover { border-color: var(--accent); color: var(--accent); }
.page-btn.active { background: linear-gradient(135deg, var(--accent-light), var(--accent)); border-color: transparent; color: #fff; }
.page-btn.disabled { opacity: .35; pointer-events: none; }
.page-ellipsis { color: var(--muted); padding: 0 4px; }

/* Catalog trust strip */
.catalog-trust { margin-top: 48px; background: linear-gradient(165deg, #12181f, #0a0d12); border-radius: 24px; padding: 32px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.catalog-trust > div { display: flex; align-items: center; gap: 14px; }
.catalog-trust svg { color: var(--accent-light); flex-shrink: 0; }
.catalog-trust strong { display: block; color: #fff; font-size: 13.5px; }
.catalog-trust span { display: block; color: rgba(255,255,255,.5); font-size: 12px; margin-top: 2px; }
@media (max-width: 900px) { .catalog-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .catalog-trust { grid-template-columns: 1fr; } }

@media (max-width: 900px) { .catalog-layout { flex-direction: column; } .filters { width: 100%; } }

/* Product page */
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; }
@media (max-width: 900px) { .product-detail { grid-template-columns: minmax(0, 1fr); } }
.gallery-main { position: relative; aspect-ratio: 1/1; border-radius: 20px; overflow: hidden; background: #f5f5f5; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; }
.gallery-thumbs img { width: 76px; height: 76px; object-fit: cover; border-radius: 12px; border: 2px solid transparent; cursor: pointer; }
.gallery-thumbs img.active { border-color: #171717; }
.spec-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px 16px; font-size: 14px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.spec-grid dt { color: var(--muted); }
.spec-grid dd { margin: 0; }
.qty-stepper { display: flex; align-items: center; border: 1px solid #d4d4d4; border-radius: 999px; }
.qty-stepper button { border: none; background: none; padding: 8px 12px; font-size: 16px; }
.qty-stepper span { width: 28px; text-align: center; font-size: 14px; }
.action-row { display: flex; gap: 10px; margin: 20px 0; align-items: center; }
.action-row .btn { flex: 1; }
.secondary-actions { display: flex; gap: 20px; font-size: 13px; color: var(--muted); }
.secondary-actions button { background: none; border: none; display: flex; align-items: center; gap: 6px; color: inherit; font-size: 13px; }
.secondary-actions button:hover { color: var(--accent); }

/* Reviews */
.reviews-list { margin-top: 16px; }
.review-item { padding: 16px 0; border-bottom: 1px solid #f0f0f0; }
.review-title { font-weight: 600; font-size: 14px; margin: 6px 0 4px; }
.review-body { font-size: 14px; color: #404040; }
.review-meta { font-size: 12px; color: #a3a3a3; margin-top: 6px; text-transform: uppercase; letter-spacing: .03em; }

/* Cart */
.cart-header { margin-bottom: 24px; }
.cart-header h1 { font-size: 30px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 8px; }
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); margin: 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: #d4d4d4; }

.cart-layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 40px; align-items: flex-start; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: minmax(0, 1fr); } }

.cart-items { border: 1px solid var(--border); border-radius: 18px; padding: 0 24px; }
.cart-table-head { display: grid; grid-template-columns: minmax(0, 1fr) 100px 130px 100px; gap: 16px; padding: 18px 0 14px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.cart-table-head span:nth-child(2) { text-align: right; }
.cart-table-head span:nth-child(3) { text-align: center; }
.cart-table-head span:nth-child(4) { text-align: right; }
.cart-item { display: grid; grid-template-columns: minmax(0, 1fr) 100px 130px 100px; gap: 16px; align-items: center; padding: 20px 0; border-top: 1px solid #f0f0f0; }
.cart-item-media { display: flex; gap: 14px; align-items: flex-start; min-width: 0; }
.cart-item img { width: 88px; height: 88px; object-fit: cover; border-radius: 14px; background: #f5f5f5; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-tag { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--accent); margin: 4px 0 0; }
.cart-item-stock { font-size: 12px; color: #059669; margin: 6px 0 0; font-weight: 500; }
.cart-item-price-col { text-align: right; font-size: 14px; color: var(--text); }
.cart-item-qty-col { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cart-item-remove { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--muted); background: none; border: none; padding: 0; cursor: pointer; }
.cart-item-remove:hover { color: #e11d48; }
.cart-item-total-col { text-align: right; font-weight: 700; font-size: 15px; }
.cart-back-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; }
@media (max-width: 700px) {
  .cart-table-head { display: none; }
  .cart-item { grid-template-columns: 1fr; gap: 12px; }
  .cart-item-price-col { display: none; }
  .cart-item-qty-col { flex-direction: row; justify-content: space-between; }
  .cart-item-total-col { text-align: left; }
}

.cart-summary { background: linear-gradient(165deg, #12181f, #0a0d12); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 26px; position: sticky; top: 90px; color: #fff; }
.cart-summary h2 { font-size: 18px; font-weight: 700; margin: 0 0 18px; color: #fff; }
.select-icon-wrap { position: relative; }
.select-icon-wrap svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--accent-light); pointer-events: none; }
.select-icon-wrap select { width: 100%; appearance: none; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); color: #fff; border-radius: 10px; padding: 11px 14px 11px 40px; font-size: 13.5px; }
.cart-summary .coupon-row input { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); color: #fff; }
.cart-summary .coupon-row input::placeholder { color: rgba(255,255,255,.4); }
.cart-summary .coupon-row .btn-outline { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
.cart-summary .coupon-row .btn-outline:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,.65); }
.summary-row span:last-child { color: #fff; font-weight: 600; }
.summary-row.total { font-size: 17px; font-weight: 700; border-top: 1px solid rgba(255,255,255,.12); padding-top: 12px; margin-top: 10px; color: #fff; }
.summary-row.total span { color: #fff; }
.summary-sub { font-size: 11.5px; color: rgba(255,255,255,.4); margin: -4px 0 0; }

/* Light trust strip (used on cart/checkout — lighter page context than the catalog's dark one) */
.cart-trust { margin-top: 32px; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 24px 28px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.cart-trust > div { display: flex; align-items: center; gap: 12px; }
.cart-trust .trust-icon { width: 40px; height: 40px; border-radius: 12px; background: #eff6ff; color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-trust strong { display: block; font-size: 13.5px; }
.cart-trust span { display: block; font-size: 12px; color: var(--muted); }
@media (max-width: 900px) { .cart-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .cart-trust { grid-template-columns: 1fr; } }
.coupon-row { display: flex; gap: 8px; margin-bottom: 16px; }
.coupon-row input { flex: 1; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; }
.empty-state { text-align: center; padding: 100px 20px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

/* Checkout */
.checkout-layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 40px; align-items: flex-start; }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: minmax(0, 1fr); } }
.form-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
@media (max-width: 480px) { .form-grid { grid-template-columns: minmax(0, 1fr); } }
.form-grid input, .form-grid select { border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; width: 100%; }
.form-grid .full { grid-column: 1 / -1; }
fieldset { border: none; padding: 0; margin: 0 0 28px; }
legend { font-size: 16px; font-weight: 600; margin-bottom: 12px; padding: 0; }
.radio-card { display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; margin-bottom: 8px; font-size: 14px; cursor: pointer; }
.radio-card:has(input:checked) { border-color: #171717; }
.order-confirm { text-align: center; padding: 100px 20px; max-width: 480px; margin: 0 auto; }
.order-confirm h1 { font-size: 26px; margin-bottom: 12px; }
.order-confirm p { color: var(--muted); margin-bottom: 28px; }

/* Admin */
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th, .admin-table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table th { font-size: 12px; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); font-weight: 600; }
.admin-table img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; background: #f5f5f5; }
.admin-table tr:hover { background: var(--bg-alt); }
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.admin-form { max-width: 720px; }
.admin-form label { display: block; font-size: 13px; font-weight: 600; margin: 16px 0 6px; }
.admin-form label:first-child { margin-top: 0; }
.admin-form input[type="text"], .admin-form input[type="number"], .admin-form input[type="email"], .admin-form input[type="password"], .admin-form select, .admin-form textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; font-size: 14px;
}
.admin-form textarea { resize: vertical; }
.admin-form .checkbox-row { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.admin-form .checkbox-row label { margin: 0; font-weight: 400; }
.admin-form .two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0 16px; }
@media (max-width: 480px) { .admin-form .two-col { grid-template-columns: minmax(0, 1fr); } }
.admin-actions { display: flex; gap: 10px; margin-top: 28px; }
.image-manager-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; }
.image-manager-item { display: block; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--bg-alt); }
.image-manager-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.image-manager-remove { display: flex; align-items: center; gap: 6px; padding: 8px; font-size: 12px; color: var(--muted); border-top: 1px solid var(--border); }
.status-pill { font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 999px; display: inline-block; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-paid { background: #dbeafe; color: #1e40af; }
.status-shipped { background: #e0e7ff; color: #3730a3; }
.status-completed { background: #dcfce7; color: #166534; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

/* Account */
.account-header { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.account-avatar { width: 56px; height: 56px; border-radius: 999px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; flex-shrink: 0; }
.account-header-info { min-width: 0; }
.account-header-info h1 { font-size: 22px; font-weight: 700; margin: 0; overflow-wrap: anywhere; }
.account-header-info p { color: var(--muted); font-size: 13px; margin: 2px 0 0; overflow-wrap: anywhere; }
.account-logout { margin-left: auto; flex-shrink: 0; font-size: 14px; }
@media (max-width: 480px) {
  .account-header { flex-wrap: wrap; }
  .account-logout { margin-left: 72px; }
}
.account-tabs { display: flex; gap: 20px; margin: 28px 0 28px; border-bottom: 1px solid var(--border); overflow-x: auto; }
.account-tabs a { padding: 10px 2px; font-size: 14px; font-weight: 500; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; transition: color .15s; }
.account-tabs a:hover { color: #171717; }
.account-tabs a.active { color: #171717; border-color: #171717; font-weight: 600; }
.account-card { border: 1px solid var(--border); border-radius: 16px; padding: 20px 22px; margin-bottom: 14px; transition: box-shadow .15s, border-color .15s; }
.account-card:hover { box-shadow: var(--shadow-sm); }
.order-card { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.order-card-slugs { color: var(--muted); font-size: 12px; margin-top: 4px; }
.account-empty { text-align: center; padding: 48px 20px; color: var(--muted); font-size: 14px; }
