/* ═══════════════════════════════════════════════
   ICASE.COM.PK — Premium Black & White Theme
   ═══════════════════════════════════════════════ */

:root {
  --black: #0a0a0a;
  --ink: #141414;
  --gray-900: #1c1c1c;
  --gray-700: #3d3d3d;
  --gray-500: #6f6f6f;
  --gray-300: #d4d4d4;
  --gray-100: #f2f2f2;
  --gray-50: #f8f8f8;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 40px rgba(0, 0, 0, .08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .16);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-head: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.sale-popup-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1240px, 92%);
  margin-inline: auto;
}

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all .35s var(--ease);
  white-space: nowrap;
}

.btn i { transition: transform .35s var(--ease); }
.btn:hover i { transform: translateX(4px); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--gray-700); transform: translateY(-2px); }

.btn-light { background: var(--white); color: var(--black); }
.btn-light:hover { background: var(--gray-100); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,255,255,.15); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .5);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
  padding: 12px 26px;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ─────────── Announcement Bar ─────────── */
.announce-bar {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 9px 0;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
}

.announce-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.announce-track span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.announce-track i { font-size: 11px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────── Header ─────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow .3s;
}

.header.scrolled { box-shadow: 0 6px 30px rgba(0,0,0,.07); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand img { height: 68px; width: auto; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; }

.nav-link {
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .02em;
  color: var(--ink);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .25s;
}

.nav-link i { font-size: 10px; transition: transform .3s; }
button.nav-link { cursor: pointer; background: none; }

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--black);
  transition: width .35s var(--ease);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.hot-dot {
  width: 7px; height: 7px;
  background: var(--black);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .5; }
}

/* Dropdown */
.nav-item-drop { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  translate: -50% 12px;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  z-index: 40;
  transition: all .3s var(--ease);
}

.nav-item-drop:hover .dropdown,
.nav-item-drop.open .dropdown { opacity: 1; visibility: visible; translate: -50% 0; }
.nav-item-drop:hover .nav-link i,
.nav-item-drop.open .nav-link i { transform: rotate(180deg); }

@media (hover: none) {
  .nav-item-drop:hover .dropdown { opacity: 0; visibility: hidden; translate: -50% 12px; }
  .nav-item-drop:hover .nav-link i { transform: none; }
  .nav-item-drop.open .dropdown { opacity: 1; visibility: visible; translate: -50% 0; }
  .nav-item-drop.open .nav-link i { transform: rotate(180deg); }
}

.dropdown a {
  display: block;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all .2s;
}

.dropdown a:hover { background: var(--gray-50); color: var(--black); padding-left: 22px; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 6px; }

.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 17px;
  color: var(--ink);
  transition: all .25s;
}

.icon-btn:hover { background: var(--gray-100); }

.badge {
  position: absolute;
  top: 2px; right: 0;
  min-width: 17px; height: 17px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

/* Search panel */
.search-panel {
  max-height: 0;
  overflow: hidden;
  border-top: 0 solid var(--gray-100);
  transition: max-height .4s var(--ease);
  background: var(--white);
}

.search-panel.open { max-height: 90px; border-top-width: 1px; }

.search-panel-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  color: var(--gray-500);
}

.search-panel input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 17px;
  font-family: var(--font-body);
  color: var(--ink);
  background: transparent;
}

.search-close { font-size: 18px; color: var(--gray-500); transition: color .2s; }
.search-close:hover { color: var(--black); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all .3s;
}

/* ─────────── Mobile Drawer ─────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: all .35s;
  z-index: 950;
}

.drawer-overlay.open { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed;
  top: 0; left: 0;
  width: min(340px, 86vw);
  height: 100dvh;
  background: var(--white);
  z-index: 960;
  transform: translateX(-100%);
  transition: transform .45s var(--ease);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--gray-100);
}

.drawer-head img { height: 52px; }

.drawer-nav { flex: 1; padding: 14px 10px; overflow-y: auto; }

.drawer-nav a {
  display: block;
  padding: 15px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}

.drawer-nav a:hover { background: var(--gray-50); }

.drawer-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  text-align: left;
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.drawer-toggle i { font-size: 12px; transition: transform .25s var(--ease); }
.drawer-item.open .drawer-toggle { background: var(--gray-50); }
.drawer-item.open .drawer-toggle i { transform: rotate(180deg); }
.drawer-sub {
  display: none;
  padding: 0 6px 10px 12px;
}
.drawer-item.open .drawer-sub { display: block; }
.drawer-sub a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 11px 14px;
}

.drawer-foot {
  padding: 18px 22px;
  border-top: 1px solid var(--gray-100);
  display: grid;
  gap: 12px;
}

.drawer-foot a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

/* ─────────── Hero ─────────── */
.hero { position: relative; }

.hero-slide {
  position: relative;
  height: min(88vh, 780px);
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 6s ease-out;
}

.swiper-slide-active .hero-bg { transform: scale(1); }

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.62) 45%, rgba(0,0,0,.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 1240px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.06);
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.hero-content h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.hero-content p {
  margin: 24px 0 36px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,.82);
  max-width: 520px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slide-in animation for active slide content */
.hero-slide .hero-tag,
.hero-slide h1,
.hero-slide p,
.hero-slide .hero-cta {
  opacity: 0;
  transform: translateY(34px);
  transition: all .9s var(--ease);
}

.swiper-slide-active .hero-tag { opacity: 1; transform: none; transition-delay: .15s; }
.swiper-slide-active h1 { opacity: 1; transform: none; transition-delay: .3s; }
.swiper-slide-active p { opacity: 1; transform: none; transition-delay: .45s; }
.swiper-slide-active .hero-cta { opacity: 1; transform: none; transition-delay: .6s; }

/* Hero controls */
.hero-pagination { bottom: 30px !important; }

.hero-pagination .swiper-pagination-bullet {
  width: 34px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.4);
  opacity: 1;
  transition: all .3s;
}

.hero-pagination .swiper-pagination-bullet-active { background: var(--white); width: 52px; }

.hero-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 10;
  width: 54px; height: 54px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.05);
  transition: all .3s;
}

.hero-nav:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.hero-prev { left: 28px; }
.hero-next { right: 28px; }

/* ─────────── Trust Strip ─────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 34px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
}

.trust-item { display: flex; align-items: center; gap: 16px; }

.trust-item i {
  width: 54px; height: 54px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  transition: transform .35s var(--ease);
}

.trust-item:hover i { transform: rotate(-8deg) scale(1.08); }

.trust-item h4 { font-family: var(--font-head); font-size: 15.5px; font-weight: 700; }
.trust-item p { font-size: 13px; color: var(--gray-500); }

/* ─────────── Sections ─────────── */
.section { padding: 90px 0; }
.section-gray { background: var(--gray-50); }

.section-head { text-align: center; margin-bottom: 54px; }

.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  gap: 20px;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.eyebrow.light { color: rgba(255,255,255,.65); }

.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  text-transform: uppercase;
}

.section-head p { margin-top: 12px; color: var(--gray-500); font-size: 16px; }

/* ─────────── Categories ─────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
}

.cat-tall { grid-row: span 2; }

.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s;
  filter: grayscale(35%);
}

.cat-card:hover img { transform: scale(1.07); filter: grayscale(0%); }

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.05) 55%);
}

.cat-info {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  z-index: 2;
  color: var(--white);
}

.cat-info h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.cat-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
}

.cat-info span i { transition: transform .3s; }
.cat-card:hover .cat-info span i { transform: translateX(5px); }

/* ─────────── Product Cards ─────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all .4s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.p-media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: var(--gray-50);
}

.p-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.product-card:hover .p-media img { transform: scale(1.08); }

.p-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: var(--black);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 6px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}

.p-tag.sale { background: var(--white); color: var(--black); border: 1px solid var(--gray-300); }

.p-actions {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(12px);
  transition: all .35s var(--ease);
}

.product-card:hover .p-actions { opacity: 1; transform: none; }

.p-actions button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-size: 14.5px;
  color: var(--ink);
  transition: all .25s;
}

.p-actions button:hover, .p-actions button.active { background: var(--black); color: var(--white); }

.p-name a { transition: opacity .2s; }
.p-name a:hover { opacity: .65; }

.p-add {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 3;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(14px);
  transition: all .35s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-card:hover .p-add { opacity: 1; transform: none; }
.p-add:hover { background: var(--gray-700); }
.p-add.is-oos,
.p-add:disabled {
  opacity: 1;
  transform: none;
  background: #ececec;
  color: #6f6f6f;
  pointer-events: none;
  cursor: not-allowed;
}
.product-card:hover .p-add.is-oos { background: #ececec; }

.p-body { padding: 18px 18px 22px; }

.p-cat { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gray-500); font-weight: 600; }

.p-name {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 700;
  margin: 6px 0 8px;
  line-height: 1.3;
}

.p-rating { font-size: 12px; color: var(--black); letter-spacing: 2px; }
.p-rating small { color: var(--gray-500); font-size: 12px; letter-spacing: 0; margin-left: 6px; }

.p-price { margin-top: 10px; display: flex; align-items: baseline; gap: 10px; }
.p-price .now { font-family: var(--font-head); font-weight: 800; font-size: 18px; }
.p-price .old { font-size: 13.5px; color: var(--gray-500); text-decoration: line-through; }

/* ─────────── Flash Deal ─────────── */
.deal {
  background: var(--black);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.deal::before {
  content: 'SALE';
  position: absolute;
  right: -40px;
  bottom: -60px;
  font-family: var(--font-head);
  font-size: 300px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.07);
  line-height: 1;
  pointer-events: none;
}

.deal-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.deal-media { position: relative; }

.deal-media img {
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.deal-badge {
  position: absolute;
  top: -22px; right: -22px;
  width: 92px; height: 92px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 24px;
  animation: spin-wobble 5s ease-in-out infinite;
  box-shadow: 0 14px 40px rgba(255,255,255,.18);
}

@keyframes spin-wobble {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

.deal-text h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -.01em;
}

.deal-text > p { margin: 18px 0 26px; color: rgba(255,255,255,.72); max-width: 480px; }

.deal-price { display: flex; align-items: baseline; gap: 16px; margin-bottom: 30px; }
.price-now { font-family: var(--font-head); font-size: 40px; font-weight: 900; }
.price-old { font-size: 20px; color: rgba(255,255,255,.5); text-decoration: line-through; }

.countdown { display: flex; gap: 14px; margin-bottom: 36px; }

.count-box {
  width: 82px;
  padding: 16px 0 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(4px);
}

.count-box span {
  display: block;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.count-box small {
  display: block;
  margin-top: 6px;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ─────────── New Arrivals slider ─────────── */
.arrow-controls { display: flex; gap: 10px; }

.arrow-btn {
  width: 48px; height: 48px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  transition: all .3s;
}

.arrow-btn:hover { background: var(--black); border-color: var(--black); color: var(--white); }

.new-swiper { overflow: hidden; padding: 4px; margin: -4px; }
.new-swiper .swiper-slide { height: auto; }
.new-swiper .product-card { height: 100%; }

/* ─────────── Promo Banners ─────────── */
.promo-section { padding-top: 0; }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.promo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
  filter: grayscale(50%) brightness(.75);
}

.promo-card:hover img { transform: scale(1.06); filter: grayscale(0%) brightness(.8); }

.promo-copy { position: relative; z-index: 2; padding: 38px; color: var(--white); }

.promo-copy span { font-size: 11.5px; font-weight: 700; letter-spacing: .24em; color: rgba(255,255,255,.75); }

.promo-copy h3 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.12;
  margin: 10px 0 16px;
}

.link-line {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--white);
  padding-bottom: 4px;
}

.link-line i { transition: transform .3s; }
.promo-card:hover .link-line i { transform: translateX(6px); }

/* ─────────── Stats ─────────── */
.stats {
  background: var(--black);
  color: var(--white);
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat h3 {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.stat h3::after { content: '+'; }
.stat h3[data-decimal]::after { content: ''; }

.stat p {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ─────────── Reviews ─────────── */
.review-swiper { overflow: hidden; padding-bottom: 56px !important; }

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 34px 30px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all .35s var(--ease);
}

.review-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.stars { font-size: 15px; letter-spacing: 4px; }

.review-card p { font-size: 15px; color: var(--gray-700); flex: 1; }

.reviewer { display: flex; align-items: center; gap: 14px; }

.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
}

.reviewer h5 { font-family: var(--font-head); font-size: 15px; font-weight: 700; }
.reviewer span { font-size: 12.5px; color: var(--gray-500); }

.review-pagination .swiper-pagination-bullet { background: var(--gray-300); opacity: 1; }
.review-pagination .swiper-pagination-bullet-active { background: var(--black); width: 26px; border-radius: 4px; }

/* ─────────── Instagram ─────────── */
.insta-section { padding-bottom: 0; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.insta-item { position: relative; aspect-ratio: 1; overflow: hidden; }

.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(60%);
  transition: all .6s var(--ease);
}

.insta-item i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: var(--white);
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .4s;
}

.insta-item:hover img { filter: grayscale(0%); transform: scale(1.08); }
.insta-item:hover i { opacity: 1; }

/* ─────────── Newsletter ─────────── */
.newsletter {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}

.newsletter p { margin-top: 10px; color: rgba(255,255,255,.65); }

.news-form {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px;
  border-radius: 100px;
  min-width: min(480px, 100%);
}

.news-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 15px;
  padding: 0 18px;
  font-family: var(--font-body);
  min-width: 0;
}

.news-form input::placeholder { color: rgba(255,255,255,.45); }

/* ─────────── Footer ─────────── */
.footer { background: var(--white); border-top: 1px solid var(--gray-100); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding: 76px 0 56px;
}

.foot-logo { height: 74px; width: auto; margin-bottom: 18px; }

.foot-brand p { font-size: 14.5px; color: var(--gray-500); max-width: 320px; }

.socials { display: flex; gap: 10px; margin-top: 22px; }

.footer .socials a {
  width: 42px;
  height: 42px;
  padding: 0;
  gap: 0;
  border: 1.5px solid var(--gray-300);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  color: var(--ink);
  transition: background .3s, border-color .3s, color .3s, transform .3s;
}

.footer .socials a i {
  width: auto;
  font-size: 15px;
  line-height: 1;
}

.footer .socials a:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  padding-left: 0;
  transform: translateY(-3px);
}

.foot-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.foot-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-500);
  padding: 6px 0;
  transition: all .25s;
}

.foot-col a:hover { color: var(--black); padding-left: 6px; }

.foot-col a i { font-size: 13px; width: 16px; }

.footer-bottom { border-top: 1px solid var(--gray-100); padding: 22px 0; }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 13.5px; color: var(--gray-500); }

.pay-icons { display: flex; align-items: center; gap: 12px; font-size: 26px; color: var(--gray-700); }

.pay-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  border: 1px solid var(--gray-300);
  padding: 5px 12px;
  border-radius: 100px;
  color: var(--gray-700);
}

/* ─────────── Back to top ─────────── */
.back-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 50px; height: 50px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .35s var(--ease);
  box-shadow: var(--shadow-lg);
}

.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--gray-700); }

/* ─────────── Toast ─────────── */
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  translate: -50% 0;
  background: var(--black);
  color: var(--white);
  padding: 15px 28px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .4s var(--ease);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.toast.show { opacity: 1; visibility: visible; transform: none; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hide-mobile { display: none; }
  .header-inner { height: 68px; }
  .brand img { height: 54px; }

  .deal-inner { grid-template-columns: 1fr; gap: 44px; }
  .deal-badge { top: -16px; right: 8px; width: 76px; height: 76px; font-size: 20px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .section { padding: 66px 0; }
}

@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; gap: 12px; }
  .cat-tall { grid-row: span 1; }

  .hero-slide { min-height: 480px; height: 74vh; }
  .hero-nav { display: none; }
  .hero-content p { font-size: 14.5px; }
  .btn { padding: 13px 24px; font-size: 12.5px; }

  .p-body { padding: 13px 13px 16px; }
  .p-name { font-size: 14px; }
  .p-price .now { font-size: 15.5px; }
  .p-price .old { font-size: 12px; }
  .p-add { font-size: 11px; padding: 11px; left: 10px; right: 10px; bottom: 10px; }

  .count-box { width: 68px; padding: 12px 0 10px; }
  .count-box span { font-size: 23px; }
  .price-now { font-size: 30px; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-item { flex-direction: column; text-align: center; gap: 10px; }

  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding: 56px 0 40px; }
  .news-form { min-width: 100%; }
  .news-form .btn { padding: 12px 18px; }
}

/* ─────────── Sale popup ─────────── */
.sale-popup {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center; padding: 18px;
}
.sale-popup[hidden] { display: none !important; }
.sale-popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,10,10,.62);
  backdrop-filter: blur(4px);
}
.sale-popup-box {
  position: relative; z-index: 1;
  width: min(440px, 100%);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: salePop .35s var(--ease);
}
@keyframes salePop {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.sale-popup-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: #111;
  display: grid; place-items: center; z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.sale-popup-img { width: 100%; max-height: 280px; object-fit: cover; }
.sale-popup-body { padding: 22px 24px 26px; text-align: center; }
.sale-popup-body h3 {
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
  margin-bottom: 8px; text-transform: uppercase;
}
.sale-popup-body p { color: var(--gray-500); font-size: 14.5px; margin-bottom: 16px; }
.sale-popup-count {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin: 6px 0 16px;
}
.sale-popup-count div {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: 12px; padding: 10px 4px;
}
.sale-popup-count b { display: block; font-family: var(--font-head); font-size: 20px; }
.sale-popup-count span { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-500); }
.sale-popup-code {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  width: 100%; margin: 0 0 14px; padding: 12px;
  border: 1.5px dashed var(--black); border-radius: 12px;
  font-family: var(--font-head); font-size: 22px; font-weight: 800; letter-spacing: .12em;
}
.sale-popup-code small { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--gray-500); text-transform: uppercase; }
.sale-popup-body .btn { width: 100%; justify-content: center; }
