/* ─── Spec Grid (shared by product page + list view) ────────────────── */
.spec-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}
.spec-label {
  font-size: 1.6rem; font-weight: 400;
  color: rgba(20,20,20,0.45);
  padding: 4px 16px 4px 0;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.spec-value {
  font-size: 1.6rem; font-weight: 400;
  color: #141414;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.spec-label:last-of-type,
.spec-value:last-of-type { border-bottom: none; }

/* ─── CSS Variables ─────────────────────────────────────────────────── */
:root {
  --color-bg: #FFFFFF;
  --color-bg2: #F5F2EE;
  --color-amber: #F0A020;
  --color-amber-dark: #C07810;
  --color-text: #141414;
  --header-height: 65px;
  --site-px: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(240,160,32,0.18);
  padding-top: var(--header-height);
}
/* Media never forces horizontal overflow on small screens */
img, svg, iframe, video { max-width: 100%; }
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.92;
}
a { text-decoration: none; color: inherit; }

/* ─── Announcement Bar ──────────────────────────────────────────────── */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 36px; background: var(--color-amber);
  display: flex; align-items: center; justify-content: center;
  gap: 48px; overflow: hidden;
}
.announce-bar span {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.15rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #141414; white-space: nowrap;
}

/* ─── Header ────────────────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-height);
  background: var(--color-bg);
  border-bottom: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex; align-items: center;
  padding: 0 var(--site-px); gap: 32px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links {
  flex: 1; display: flex; justify-content: center;
  align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.25rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(20,20,20,0.65);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-amber); }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  color: rgba(20,20,20,0.65); text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem; font-weight: 600; letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--color-amber); }
.nav-phone svg { color: var(--color-amber); flex-shrink: 0; }
.nav-icons { display: flex; align-items: center; gap: 18px; }
.nav-icon-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(20,20,20,0.65);
  display: flex; align-items: center; justify-content: center;
  padding: 4px; transition: color 0.15s; position: relative;
}
.nav-icon-btn:hover { color: var(--color-amber); }
.nav-icon-btn:focus-visible { outline: 2px solid var(--color-amber); outline-offset: 3px; border-radius: 2px; }
.cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--color-amber); color: #141414;
  border-radius: 50%; width: 16px; height: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 900; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}

/* ─── Mobile Nav ────────────────────────────────────────────────────── */
.hamburger { display: none; }
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.5);
}
.mobile-nav.open { display: block; }
.mobile-nav-panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 280px; background: var(--color-bg);
  padding: 28px 24px; overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  border-right: 1px solid rgba(0,0,0,0.08);
}
.mobile-nav.open .mobile-nav-panel { transform: none; }
.mobile-nav-close { background: none; border: none; color: rgba(20,20,20,0.6); cursor: pointer; font-size: 2.4rem; margin-bottom: 24px; }
.mobile-nav-links { list-style: none; }
.mobile-nav-links li { border-bottom: 1px solid rgba(0,0,0,0.07); }
.mobile-nav-links a {
  display: block; padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.6rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(20,20,20,0.75);
  transition: color 0.15s;
}
.mobile-nav-links a:hover { color: var(--color-amber); }

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--color-amber); color: #141414;
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 1.2rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 13px 30px; cursor: pointer; border: none;
  transition: background 0.15s, color 0.15s;
}
.btn-primary:hover { background: #141414; color: #ffffff; }
.btn-primary:focus-visible { outline: 2px solid var(--color-amber); outline-offset: 3px; }
.btn-primary:active { background: var(--color-amber-dark); color: #141414; }

.btn-add-to-basket {
  width: 100%; padding: 10px 16px; border: none; cursor: pointer;
  background: rgba(240,160,32,0.08); color: var(--color-amber);
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.15rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
  border-top: 1px solid rgba(240,160,32,0.2);
}
.btn-add-to-basket:hover { background: var(--color-amber); color: #141414; }
.btn-add-to-basket:focus-visible { outline: 2px solid var(--color-amber); }
.btn-add-to-basket.added { background: var(--color-amber); color: #141414; }
.btn-add-to-basket:disabled { opacity: 0.4; cursor: not-allowed; }

/* ─── Product Card ──────────────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.product-card {
  cursor: pointer; background: var(--color-bg2);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  border: 1.5px solid rgba(20,20,20,0.1);
}
.product-card-link { display: flex; flex-direction: column; flex: 1; }
.product-img-wrap {
  width: 100%; aspect-ratio: 1; overflow: hidden;
  background: #ffffff; position: relative;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  padding: 10px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-info { padding: 14px 16px 12px; flex: 1; }
.product-brand {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.0rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-amber); margin-bottom: 3px;
}
.product-name {
  font-family: 'Inter', sans-serif;
  font-weight: 900; font-size: 1.4rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #141414; margin-bottom: 5px; line-height: 1.15;
}
.product-price {
  font-size: 1.3rem; font-weight: 300;
  color: rgba(20,20,20,0.5);
  display: flex; align-items: center; gap: 8px;
}
.price-main { color: #141414; font-weight: 700; font-size: 1.85rem; }
.price-main.price-sale { color: #dc2626; }
.price-was { text-decoration: line-through; font-size: 1.15rem; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--color-amber); color: #141414;
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 1.05rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 9px; z-index: 2;
}
.product-badge.badge-used {
  background: #C04800; color: #fff;
}

/* ─── "Të Përdorur" (Used) tag ──────────────────────────────────────── */
.te-perdorur-tag {
  display: inline-flex; align-items: center;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(20, 20, 20, 0.65);
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.0rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; margin: 4px 0 6px;
}

/* ─── "I Ri" (New) tag ──────────────────────────────────────────────── */
.i-ri-tag {
  display: inline-flex; align-items: center;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #15803d;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.0rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; margin: 4px 0 6px;
}

.out-of-stock .product-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.45);
}

/* ─── Skeleton ──────────────────────────────────────────────────────── */
.skeleton-shimmer {
  background: linear-gradient(90deg, rgba(0,0,0,0.04) 25%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
.skeleton-img { aspect-ratio: 1; width: 100%; }
.skeleton-card { pointer-events: none; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ─── Section Layout ────────────────────────────────────────────────── */
.collection-section { padding: 52px var(--site-px); }
.collection-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.collection-title { font-size: clamp(2.2rem, 3.5vw, 5rem); color: #141414; }
.view-all-link {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.15rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-amber);
  border-bottom: 1px solid var(--color-amber);
  padding-bottom: 2px; margin-bottom: 10px;
  transition: opacity 0.15s;
}
.view-all-link:hover { opacity: 0.65; }
.section-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 0 var(--site-px); }

/* ─── Marquee ───────────────────────────────────────────────────────── */
.marquee-band { background: var(--color-amber); overflow: hidden; padding: 10px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 0; animation: marquee 20s linear infinite; }
.marquee-item {
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 1.2rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #141414; padding: 0 32px;
}
.marquee-dot { color: rgba(20,20,20,0.35); font-size: 1.6rem; line-height: 1; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── Basket Drawer ─────────────────────────────────────────────────── */
.basket-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 400;
}
.basket-overlay.open { display: block; }
.basket-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 100vw;
  background: var(--color-bg);
  border-left: 1px solid rgba(0,0,0,0.1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.08);
  z-index: 401; display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.basket-drawer.open { transform: none; }
.basket-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.basket-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 2rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #141414;
}
.basket-close {
  background: none; border: none; cursor: pointer;
  color: rgba(20,20,20,0.45);
  transition: color 0.15s; padding: 4px;
}
.basket-close:hover { color: #141414; }
.basket-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.basket-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 16px; text-align: center; color: rgba(20,20,20,0.4); }
.basket-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.07);
}
.basket-item-img { width: 64px; height: 64px; flex-shrink: 0; background: #EDE9E3; overflow: hidden; }
.basket-item-img img { width: 100%; height: 100%; object-fit: cover; }
.basket-item-info { flex: 1; }
.basket-item-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.3rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; line-height: 1.2; color: #141414; }
.basket-item-price { color: var(--color-amber-dark); font-size: 1.3rem; margin-bottom: 8px; font-weight: 800; }
.basket-item-qty { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  background: rgba(0,0,0,0.07); border: none; cursor: pointer;
  color: #141414; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; transition: background 0.15s;
}
.qty-btn:hover { background: var(--color-amber); color: #141414; }
.basket-item-remove {
  background: none; border: none; cursor: pointer;
  color: rgba(20,20,20,0.3); padding: 4px;
  transition: color 0.15s; flex-shrink: 0;
}
.basket-item-remove:hover { color: #ef4444; }
.basket-footer { padding: 20px 24px; border-top: 1px solid rgba(0,0,0,0.08); display: flex; flex-direction: column; gap: 12px; }
.basket-total { display: flex; justify-content: space-between; align-items: center; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.6rem; letter-spacing: 0.06em; text-transform: uppercase; color: #141414; }
.basket-total-amount { color: var(--color-amber-dark); font-weight: 800; }
.btn-whatsapp { background: #25D366 !important; font-size: 1.15rem !important; }
.btn-whatsapp:hover { background: #1ebe5d !important; }

/* ─── Toast ─────────────────────────────────────────────────────────── */
.it-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: #141414; color: white;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 12px 24px; font-size: 1.3rem;
  z-index: 500; opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
  pointer-events: none;
}
.it-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.it-toast.success { border-color: var(--color-amber); }

/* ─── Footer ────────────────────────────────────────────────────────── */
footer {
  background: var(--color-bg2);
  border-top: 1px solid rgba(0,0,0,0.09);
}
.footer-banner {
  display: flex; align-items: center; justify-content: center;
  gap: 56px; padding: 22px var(--site-px);
  background: #141414;
}
.footer-badge {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.72); font-size: 1.2rem; font-weight: 300;
  letter-spacing: 0.01em; white-space: nowrap;
}
.footer-badge svg { color: var(--color-amber); flex-shrink: 0; }
.footer-inner { padding: 64px var(--site-px) 40px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(0,0,0,0.09);
}
.footer-brand-logo { height: 32px; width: auto; display: block; margin-bottom: 20px; }
.footer-brand-desc { font-size: 1.25rem; font-weight: 300; color: rgba(20,20,20,0.5); line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(0,0,0,0.16);
  display: flex; align-items: center; justify-content: center;
  color: rgba(20,20,20,0.5); transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.social-link:hover { border-color: var(--color-amber); color: var(--color-amber); background: rgba(240,160,32,0.06); }
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 1.15rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #141414; margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 1.25rem; font-weight: 300; color: rgba(20,20,20,0.5); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--color-amber); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px;
}
.footer-contact-item svg { color: var(--color-amber); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a, .footer-contact-item span {
  font-size: 1.2rem; font-weight: 300; color: rgba(20,20,20,0.55);
  line-height: 1.5; transition: color 0.15s;
}
.footer-contact-item a:hover { color: var(--color-amber); }
.newsletter-input {
  width: 100%; background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.12);
  padding: 11px 14px; color: #141414;
  font-family: 'Inter', sans-serif; font-size: 1.25rem;
  font-weight: 300; outline: none; margin-bottom: 10px;
  transition: border-color 0.15s;
}
.newsletter-input::placeholder { color: rgba(20,20,20,0.35); }
.newsletter-input:focus { border-color: rgba(240,160,32,0.6); }
.newsletter-btn {
  width: 100%; background: var(--color-amber); color: #141414;
  border: none; padding: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 1.2rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
.newsletter-btn:hover { background: #141414; color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding-top: 32px;
}
.footer-bottom p { font-size: 1.15rem; font-weight: 300; color: rgba(20,20,20,0.4); }
.footer-bottom-links { display: flex; gap: 20px; align-items: center; }
.footer-bottom-links a {
  font-size: 1.1rem; font-weight: 300; color: rgba(20,20,20,0.4);
  transition: color 0.15s; white-space: nowrap;
}
.footer-bottom-links a:hover { color: var(--color-amber); }
.footer-bottom-sep {
  width: 1px; height: 12px; background: rgba(0,0,0,0.18);
}

/* ─── SALE Nav Link ─────────────────────────────────────────────────── */
.nav-sale-link {
  color: #E02020 !important;
  position: relative;
}
.nav-links .nav-sale-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: #E02020; border-radius: 1px;
  animation: sale-pulse 1.8s ease-in-out infinite;
}
.mobile-nav-links .nav-sale-link { color: #E02020 !important; }
@keyframes sale-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ─── Sale Sticker (product card) ───────────────────────────────────── */
.sale-sticker {
  position: absolute; top: 10px; right: 10px;
  background: #E02020; color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 900; font-size: 1.05rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 9px; z-index: 2; line-height: 1;
}

/* ─── Shop Mega-Menu Dropdown ───────────────────────────────────────── */
:root { --nav-height: 65px; }
.shop-nav-link { display: inline-flex; align-items: center; gap: 5px; }
.dropdown-chevron {
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0; margin-top: 1px;
}
.has-dropdown.dropdown-open .dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--color-bg);
  border-top: 2px solid var(--color-amber);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 20px 64px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s cubic-bezier(0.4,0,0.2,1),
              visibility 0.22s,
              transform 0.22s cubic-bezier(0.4,0,0.2,1);
  z-index: 150;
}
.nav-dropdown.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 28px var(--site-px) 26px;
}
.dropdown-section-label {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.88rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(20,20,20,0.28); margin-bottom: 14px;
}
.dropdown-featured-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-bottom: 20px;
}
.dropdown-cat-card {
  position: relative; overflow: hidden; display: block;
  aspect-ratio: 16/9; background: #141414; text-decoration: none;
}
.dropdown-cat-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  filter: brightness(0.72);
}
.dropdown-cat-card:hover img { transform: scale(1.09); filter: brightness(0.48); }
.dropdown-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.96) 0%, rgba(6,6,6,0.28) 52%, rgba(6,6,6,0.08) 100%);
}
.dropdown-cat-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 14px 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.dropdown-cat-tag {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-amber); line-height: 1;
}
.dropdown-cat-name {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.3rem;
  letter-spacing: 0.07em; text-transform: uppercase; color: #fff;
  line-height: 1.1; display: flex; align-items: center; justify-content: space-between;
}
.dropdown-cat-arrow {
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  color: var(--color-amber); flex-shrink: 0;
}
.dropdown-cat-card:hover .dropdown-cat-arrow { opacity: 1; transform: translateX(0); }
.dropdown-cat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--color-amber); transform: scaleX(0); transform-origin: left;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.dropdown-cat-card:hover::after { transform: scaleX(1); }

/* Secondary categories strip */
.dropdown-secondary-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.dropdown-secondary-label {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.88rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(20,20,20,0.28); white-space: nowrap;
}
.dropdown-secondary-line { flex: 1; height: 1px; background: rgba(0,0,0,0.08); }
.dropdown-secondary-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(20,20,20,0.45); text-decoration: none; white-space: nowrap;
  transition: color 0.15s;
}
.dropdown-secondary-all svg { transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1); }
.dropdown-secondary-all:hover { color: var(--color-amber); }
.dropdown-secondary-all:hover svg { transform: translateX(3px); }
.dropdown-secondary-all:focus-visible {
  outline: 2px solid var(--color-amber); outline-offset: 3px; border-radius: 2px;
}
.dropdown-secondary-cols {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0 16px;
}
.dropdown-col { display: flex; flex-direction: column; min-width: 0; }
.dropdown-col + .dropdown-col { border-left: 1px solid rgba(0,0,0,0.06); padding-left: 15px; }
.dropdown-col-title {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-amber);
  padding: 0 9px 8px; margin-bottom: 4px;
  border-bottom: 1px solid rgba(0,0,0,0.09);
}
.dropdown-col-link {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 8px;
  color: rgba(20,20,20,0.6);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem;
  letter-spacing: 0.03em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.dropdown-col-link svg { color: rgba(20,20,20,0.32); flex-shrink: 0; transition: color 0.15s; }
.dropdown-col-link:hover { color: var(--color-amber); background: rgba(240,160,32,0.06); }
.dropdown-col-link:hover svg { color: var(--color-amber); }
.dropdown-col-link:focus-visible {
  outline: 2px solid var(--color-amber); outline-offset: -2px; border-radius: 3px;
}
@media (max-width: 1080px) {
  .dropdown-secondary-cols { grid-template-columns: repeat(3, 1fr); row-gap: 16px; }
  .dropdown-col + .dropdown-col { border-left: none; padding-left: 0; }
}

/* ─── Mobile Shop Accordion ─────────────────────────────────────────── */
.mobile-shop-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 14px 0;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.6rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(20,20,20,0.75); background: none; border: none;
  cursor: pointer; text-align: left; transition: color 0.15s;
}
.mobile-shop-toggle:hover { color: var(--color-amber); }
.mobile-shop-chevron { transition: transform 0.22s cubic-bezier(0.4,0,0.2,1); flex-shrink: 0; }
.mobile-shop-toggle.open .mobile-shop-chevron { transform: rotate(180deg); }
.mobile-shop-children {
  max-height: 0; overflow: hidden; list-style: none;
  transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
  padding-left: 12px;
}
.mobile-shop-children.open { max-height: 500px; }
.mobile-shop-children li { border-bottom: none; }
.mobile-shop-children a {
  display: block; padding: 9px 0;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.35rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(20,20,20,0.5); transition: color 0.15s;
}
.mobile-shop-children a:hover { color: var(--color-amber); }

/* ─── Scrollbar ─────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: rgba(240,160,32,0.3); }
::-webkit-scrollbar-thumb:hover { background: var(--color-amber); }

/* ─── Responsive ────────────────────────────────────────────────────── */
/* Tablet landscape / small laptop */
@media (max-width: 1100px) {
  :root { --site-px: 32px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-banner { gap: 28px; flex-wrap: wrap; }
  .nav-links { gap: 18px; }
  .nav-phone { display: none; }       /* freed up so 5 nav links fit cleanly */
}

/* Tablet portrait — collapse to the drawer nav */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* Touch ergonomics — tablets + phones get ≥44px hit areas and
   16px form fields so iOS Safari never zooms on focus */
@media (max-width: 1024px) {
  .nav-icon-btn { min-width: 44px; min-height: 44px; padding: 8px; }
  input, select, textarea { font-size: 16px; }
  .social-link { width: 42px; height: 42px; }
  .qty-btn { width: 32px; height: 32px; font-size: 1.7rem; }
  .basket-close, .basket-item-remove { min-width: 40px; min-height: 40px; }
  .mobile-nav-close { padding: 4px 10px; }
  .mobile-shop-children a { padding: 11px 0; }
}

/* Phone */
@media (max-width: 640px) {
  :root { --site-px: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-banner { gap: 16px 24px; padding: 18px var(--site-px); }
  .footer-badge { font-size: 1.1rem; }
  .footer-inner { padding: 44px var(--site-px) 32px; }
  .footer-top { padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-bottom-links { flex-wrap: wrap; gap: 14px; }
  .collection-section { padding: 38px var(--site-px); }
  .collection-header { flex-wrap: wrap; gap: 10px 16px; margin-bottom: 20px; }
  .basket-drawer { width: 100vw; }
  .spec-label, .spec-value { font-size: 1.35rem; }
  .spec-label { white-space: normal; padding-right: 12px; }
}

/* Belt-and-braces: never allow sideways scroll on hand-held widths */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
}
