/* ================================================================
   OPTICO4U — BRAND NEW PREMIUM DESIGN v2.0
   Inspired by Lenskart's clean, modern, premium aesthetic.
   Light theme | Inter Font | Cobalt + Coral palette
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Sora:wght@400;600;700;800&display=swap');

/* ── RESET & VARIABLES ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  /* Brand Colors */
  --blue:         #2563EB;
  --blue-dark:    #1D4ED8;
  --blue-light:   #EFF6FF;
  --blue-mid:     #DBEAFE;
  --coral:        #F97316;
  --coral-light:  #FFF7ED;
  --green:        #10B981;

  /* Neutral Colors */
  --white:        #FFFFFF;
  --off-white:    #F9FAFB;
  --gray-50:      #F8FAFC;
  --gray-100:     #F1F5F9;
  --gray-200:     #E2E8F0;
  --gray-300:     #CBD5E1;
  --gray-400:     #94A3B8;
  --gray-500:     #64748B;
  --gray-700:     #334155;
  --gray-900:     #0F172A;

  /* Dark Footer */
  --footer-bg:    #111827;
  --footer-text:  #9CA3AF;

  /* Shadows */
  --shadow-xs:    0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 6px rgba(0,0,0,0.05), 0 10px 15px rgba(0,0,0,0.1);
  --shadow-lg:    0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --shadow-blue:  0 10px 40px rgba(37,99,235,0.2);
  --shadow-card:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 16px 48px rgba(37,99,235,0.12);

  /* Radius */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Transition */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-fast:   0.15s;
  --t-normal: 0.25s;
  --t-slow:   0.4s;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--gray-700);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Sora', 'Inter', sans-serif;
  color: var(--gray-900);
  line-height: 1.2;
  font-weight: 700;
}

/* ── ANNOUNCEMENT STRIP ─────────────────────────────────────────── */
.lk-strip {
  background: var(--gray-900);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.lk-strip-inner {
  display: flex;
  align-items: center;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  gap: 64px;
}

.lk-strip-inner span { display: inline-flex; align-items: center; gap: 8px; opacity: 0.9; }
.lk-strip-inner i { font-size: 13px; color: var(--coral); }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAVBAR ─────────────────────────────────────────────────────── */
.lk-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--t-normal) var(--ease);
}

.lk-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  background: rgba(255, 255, 255, 0.95);
}

.lk-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Flex Columns */
.lk-nav-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.lk-nav-center {
  display: flex;
  justify-content: center;
  flex: 2;
}

.lk-nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
}

/* Logo */
.lk-logo img { height: 52px; width: auto; }

/* Nav Links */
.lk-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lk-nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 8px 18px;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
}

.lk-nav-links a:hover,
.lk-nav-links a.active {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

/* Dropdown */
.lk-nav-drop {
  position: relative;
}

.lk-nav-drop:hover .lk-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lk-drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 12px;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-normal) var(--ease-out);
  z-index: 100;
}

.lk-drop-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  transition: all var(--t-fast);
}

.lk-drop-menu a:hover {
  background: rgba(37, 99, 235, 0.05);
  color: var(--blue);
  padding-left: 20px;
}

.lk-drop-divider { height: 1px; background: rgba(0,0,0,0.05); margin: 8px 0; }

.lk-drop-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  padding: 4px 16px 8px;
}

/* Search Bar */
.lk-search {
  max-width: 240px;
  position: relative;
}

.lk-search input {
  width: 100%;
  height: 40px;
  padding: 0 44px 0 40px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  background: var(--gray-50);
  color: var(--gray-900);
  outline: none;
  transition: all var(--t-normal);
}

.lk-search input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.lk-search input::placeholder { color: var(--gray-400); font-size: 13px; }

.lk-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 15px;
  pointer-events: none;
}

.lk-search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  padding: 0 14px;
  border: none;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background var(--t-fast);
}

.lk-search-btn:hover { background: var(--blue-dark); }

/* Right Actions */
.lk-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lk-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  color: var(--gray-700);
  font-size: 18px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  position: relative;
  transition: all var(--t-fast);
  cursor: pointer;
}

.lk-action-btn:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-light);
}

.lk-cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}



/* User Pill */
.lk-user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--blue-light);
  border: 1.5px solid var(--blue-mid);
  border-radius: var(--r-full);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
}
.lk-user-pill:hover { background: var(--blue-mid); }
.lk-user-pill i { font-size: 18px; }

/* Auth Buttons */
.lk-btn-login {
  height: 38px;
  padding: 0 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--r-full);
  background: transparent;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.lk-btn-login:hover { border-color: var(--gray-700); color: var(--gray-900); }

.lk-btn-register {
  height: 38px;
  padding: 0 20px;
  border: none;
  border-radius: var(--r-full);
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.lk-btn-register:hover {
  background: var(--blue-dark);
  box-shadow: var(--shadow-blue);
}

/* Mobile hamburger */
.lk-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  background: var(--white);
  cursor: pointer;
  font-size: 20px;
  color: var(--gray-700);
  transition: all var(--t-fast);
}
.lk-hamburger:hover { border-color: var(--blue); color: var(--blue); }

/* Mobile menu */
.lk-mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 16px 24px 24px;
}

.lk-mobile-menu.open { display: block; }

.lk-mob-link {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--t-fast);
}
.lk-mob-link:hover { color: var(--blue); }
.lk-mob-link:last-child { border-bottom: none; }

.lk-mob-search {
  position: relative;
  margin-bottom: 16px;
}
.lk-mob-search input {
  width: 100%;
  height: 44px;
  padding: 0 16px 0 42px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: 14px;
  background: var(--gray-50);
  color: var(--gray-900);
  outline: none;
  font-family: 'Inter', sans-serif;
}
.lk-mob-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
}

@media (max-width: 992px) {
  .lk-nav-links, .lk-search { display: none !important; }
  .lk-hamburger { display: flex; }
}

@media (max-width: 480px) {
  .lk-btn-login { display: none; }
}


/* ── HERO SLIDER ─────────────────────────────────────────────────── */
.lk-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--gray-100);
}

@media (max-width: 768px) {
  .lk-hero { height: 400px; }
}
@media (max-width: 480px) {
  .lk-hero { height: 320px; }
}

.lk-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.lk-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}

.lk-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Left-side content overlay */
.lk-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.96) 0%,
    rgba(255,255,255,0.80) 35%,
    rgba(255,255,255,0.10) 65%,
    rgba(255,255,255,0) 100%
  );
}

.lk-slide-body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 max(24px, 5vw);
}

.lk-slide-content {
  max-width: 520px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s 0.3s var(--ease-out), transform 0.6s 0.3s var(--ease-out);
}

.lk-slide.active .lk-slide-content {
  opacity: 1;
  transform: translateX(0);
}

.lk-slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral-light);
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.lk-slide-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 14px;
}

.lk-slide-title span { color: var(--blue); }

.lk-slide-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 420px;
}

.lk-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--r-full);
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(37,99,235,0.28);
  transition: all var(--t-normal) var(--ease);
}
.lk-slide-cta:hover {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 14px 32px rgba(37,99,235,0.38);
  transform: translateY(-2px);
}
.lk-slide-cta i { font-size: 16px; transition: transform var(--t-fast); }
.lk-slide-cta:hover i { transform: translateX(4px); }

/* Hero nav arrows */
.lk-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: all var(--t-fast);
  opacity: 0;
}
.lk-hero:hover .lk-hero-arrow { opacity: 1; }
.lk-hero-arrow:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-50%) scale(1.05); }
.lk-hero-arrow.prev { left: 24px; }
.lk-hero-arrow.next { right: 24px; }

/* Hero dots */
.lk-hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.lk-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all var(--t-normal);
  border: none;
  padding: 0;
}
.lk-hero-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: var(--r-full);
}


/* ── MAIN CONTENT AREA ─────────────────────────────────────────── */
.lk-main { min-height: 60vh; }


/* ── SECTION STYLES ─────────────────────────────────────────────── */
.lk-section { padding: 40px 0; }
.lk-section-sm { padding: 24px 0; }

.lk-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.lk-section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.lk-section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.lk-section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--gray-900);
  margin: 0;
}

.lk-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  padding: 8px 18px;
  border: 1.5px solid var(--blue-mid);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.lk-view-all:hover { background: var(--blue); color: #fff; border-color: var(--blue); }


/* ── PRODUCT CARD ────────────────────────────────────────────────── */
.lk-product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.lk-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--blue-mid);
}

/* Card image area */
.lk-card-img {
  position: relative;
  background: linear-gradient(135deg, #F0F6FF 0%, #F8F9FA 100%);
  aspect-ratio: 4/3;
  overflow: hidden;
}

.lk-card-img img,
.lk-card-img .primary-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s var(--ease-out);
}

.lk-product-card:hover .lk-card-img img,
.lk-product-card:hover .lk-card-img .primary-image {
  transform: scale(1.06);
}

/* Secondary image (hover swap) */
.lk-card-img .secondary-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.lk-product-card:hover .lk-card-img .secondary-image { opacity: 1; }

/* Badges */
.lk-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.lk-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
}

.lk-badge-new    { background: var(--blue); color: #fff; }
.lk-badge-sale   { background: #EF4444; color: #fff; }
.lk-badge-prem   { background: var(--gray-900); color: #fff; }

/* Quick actions (appear on hover) */
.lk-card-actions {
  position: absolute;
  top: 10px;
  right: -56px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
  transition: right 0.35s var(--ease-out);
}
.lk-product-card:hover .lk-card-actions { right: 10px; }

.lk-quick-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-xs);
}
.lk-quick-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: scale(1.1); }

/* Slide-up cart button */
.lk-card-add {
  position: absolute;
  bottom: -56px;
  left: 0;
  right: 0;
  padding: 10px 14px;
  z-index: 3;
  transition: bottom 0.35s var(--ease-out);
  background: linear-gradient(to top, rgba(240,246,255,0.95) 70%, transparent);
}
.lk-product-card:hover .lk-card-add { bottom: 0; }

.lk-add-btn {
  display: block;
  width: 100%;
  padding: 10px 0;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: center;
}
.lk-add-btn:hover { background: var(--blue-dark); transform: scale(1.02); }

/* Card body */
.lk-card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lk-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.lk-card-name a { color: inherit; }
.lk-card-name a:hover { color: var(--blue); }

.lk-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.lk-price-sale { font-size: 16px; font-weight: 800; color: #DC2626; }
.lk-price-reg  { font-size: 16px; font-weight: 800; color: var(--gray-900); }
.lk-price-orig { font-size: 12px; font-weight: 500; color: var(--gray-400); text-decoration: line-through; }


/* ── PRODUCT HORIZONTAL SCROLL SECTION ──────────────────────────── */
.lk-scroll-wrap {
  position: relative;
}

.lk-scroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.lk-scroll-track::-webkit-scrollbar { display: none; }

.lk-scroll-item {
  flex: 0 0 220px;
  scroll-snap-align: start;
}

@media (max-width: 576px) {
  .lk-scroll-item { flex: 0 0 180px; }
}

/* Scroll arrows */
.lk-scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 5;
  transition: all var(--t-fast);
}
.lk-scroll-arrow:hover { background: var(--blue); color: #fff; transform: translateY(-50%) scale(1.08); }
.lk-scroll-arrow.left  { left: -21px; }
.lk-scroll-arrow.right { right: -21px; }

@media (max-width: 768px) {
  .lk-scroll-arrow { display: none; }
}


/* ── CATEGORY CARDS ─────────────────────────────────────────────── */
.lk-cat-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: all var(--t-normal) var(--ease);
  cursor: pointer;
  text-align: center;
}
.lk-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--blue-mid);
}
.lk-cat-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.lk-cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.lk-cat-card:hover .lk-cat-img img { transform: scale(1.05); }
.lk-cat-body { padding: 16px; }
.lk-cat-name { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.lk-cat-count { font-size: 12px; color: var(--gray-400); }


/* ── WHY CHOOSE US / FEATURE ITEMS ─────────────────────────────── */
.lk-feature-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--t-normal) var(--ease);
}
.lk-feature-item:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--blue-mid);
  transform: translateY(-4px);
}
.lk-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.lk-feature-title { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.lk-feature-text  { font-size: 13px; color: var(--gray-500); line-height: 1.6; }


/* ── TRUST BAR (above footer) ───────────────────────────────────── */
.lk-trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}
.lk-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lk-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--blue-light);
  color: var(--blue);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lk-trust-text strong { font-size: 14px; font-weight: 700; color: var(--gray-900); display: block; }
.lk-trust-text small  { font-size: 12px; color: var(--gray-500); }


/* ── FOOTER ─────────────────────────────────────────────────────── */
.lk-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 0 0;
}

.lk-footer-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 16px;
}

.lk-footer-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--footer-text);
  max-width: 280px;
  margin-bottom: 20px;
}

.lk-footer-social {
  display: flex;
  gap: 10px;
}

.lk-social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--footer-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all var(--t-fast);
}
.lk-social-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-3px); }

.lk-footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 20px;
}

.lk-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lk-footer-links a {
  font-size: 13.5px;
  color: var(--footer-text);
  transition: all var(--t-fast);
  display: inline-block;
}
.lk-footer-links a:hover { color: #fff; transform: translateX(4px); }

.lk-footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--footer-text);
  font-size: 13.5px;
  margin-bottom: 14px;
  transition: color var(--t-fast);
}
.lk-footer-contact a:hover { color: #fff; }
.lk-footer-contact i { color: var(--blue); font-size: 17px; }

.lk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  margin-top: 48px;
}
.lk-footer-bottom p { font-size: 13px; color: #6B7280; margin: 0; }
.lk-footer-pay { display: flex; gap: 12px; align-items: center; font-size: 22px; opacity: 0.4; color: #fff; }


/* ── WHATSAPP FLOAT ─────────────────────────────────────────────── */
.lk-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: all var(--t-normal) var(--ease);
}
.lk-wa-float:hover { background: #128C7E; color: #fff; transform: scale(1.1); box-shadow: 0 8px 24px rgba(37,211,102,0.5); }


/* ── BUTTONS (global) ───────────────────────────────────────────── */
.btn-primary {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  border-radius: var(--r-full) !important;
  transition: all var(--t-normal) !important;
}
.btn-primary:hover {
  background: var(--blue-dark) !important;
  border-color: var(--blue-dark) !important;
  box-shadow: var(--shadow-blue) !important;
  transform: translateY(-1px) !important;
}
.btn-outline-primary {
  color: var(--blue) !important;
  border-color: var(--blue) !important;
  font-weight: 600 !important;
  border-radius: var(--r-full) !important;
  font-family: 'Inter', sans-serif !important;
}
.btn-outline-primary:hover {
  background: var(--blue) !important;
  color: #fff !important;
}


/* ── FORM CONTROLS ──────────────────────────────────────────────── */
.form-control, .form-select {
  border: 1.5px solid var(--gray-200) !important;
  border-radius: var(--r-md) !important;
  font-size: 14px !important;
  font-family: 'Inter', sans-serif !important;
  transition: all var(--t-normal) !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1) !important;
}


/* ── CARD GENERIC ───────────────────────────────────────────────── */
.card { border-radius: var(--r-lg) !important; border-color: var(--gray-200) !important; }


/* ── CUSTOM SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }


/* ── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }


/* ── MISC UTILITY ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0;
}
.row { margin-left: 0 !important; margin-right: 0 !important; }
[class*='col-'] { padding-left: 8px !important; padding-right: 8px !important; }

/* hp-inner: full-width wrapper with just a little breathing room */
.hp-inner {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 576px)  { .hp-inner { padding-left: 20px; padding-right: 20px; } }
@media (min-width: 992px)  { .hp-inner { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 1400px) { .hp-inner { padding-left: 48px; padding-right: 48px; } }

/* 5-column grid utility */
.col-lg-2half {
  flex: 0 0 auto;
  width: 50%;
}
@media (min-width: 576px)  { .col-lg-2half { width: 33.333%; } }
@media (min-width: 768px)  { .col-lg-2half { width: 25%; } }
@media (min-width: 992px)  { .col-lg-2half { width: 20%; } }
.rounded-pill { border-radius: var(--r-full) !important; }

/* Accordion tweaks */
.accordion-button:not(.collapsed) { color: var(--blue) !important; background: var(--blue-light) !important; }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(37,99,235,0.1) !important; }

/* Cart / Checkout specific */
.cart-item-card { border: 1px solid var(--gray-200) !important; border-radius: var(--r-lg) !important; transition: all var(--t-normal) !important; }
.cart-item-card:hover { border-color: var(--blue-mid) !important; box-shadow: var(--shadow-card-hover) !important; }
.payment-method-card { cursor: pointer; border: 1.5px solid var(--gray-200) !important; border-radius: var(--r-lg) !important; transition: all var(--t-fast) !important; }
.payment-method-card:hover, .option-active { border-color: var(--blue) !important; background: var(--blue-light) !important; }
.prescription-section { background: var(--blue-light) !important; border: 1.5px solid var(--blue-mid) !important; border-radius: var(--r-lg) !important; }
.progress { background: var(--gray-200); border-radius: 4px; }
.progress-bar { background: var(--blue); }

/* ── PRODUCTS PAGE ───────────────────────────────────────────────── */

/* Page Header */
.lk-page-header {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}
.lk-page-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lk-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.lk-breadcrumb a { color: var(--gray-500); transition: color var(--t-fast); }
.lk-breadcrumb a:hover { color: var(--blue); }
.lk-breadcrumb i { font-size: 10px; }
.lk-page-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 4px;
}
.lk-page-sub {
  font-size: 13px;
  color: var(--gray-400);
  margin: 0;
}

/* Filter Sidebar */
.lk-filter-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.lk-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}
.lk-filter-reset {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  transition: opacity var(--t-fast);
}
.lk-filter-reset:hover { opacity: 0.7; }
.lk-filter-group {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.lk-filter-group:last-of-type { border-bottom: none; }
.lk-filter-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.lk-filter-select,
.lk-filter-input {
  width: 100%;
  height: 38px;
  padding: 0 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  background: var(--gray-50);
  outline: none;
  transition: border-color var(--t-fast);
  -webkit-appearance: none;
}
.lk-filter-select:focus,
.lk-filter-input:focus { border-color: var(--blue); background: var(--white); }
.lk-price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lk-price-input {
  flex: 1;
  height: 36px;
  padding: 0 10px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  background: var(--gray-50);
  outline: none;
  transition: border-color var(--t-fast);
  width: 100%;
}
.lk-price-input:focus { border-color: var(--blue); }
.lk-price-sep { color: var(--gray-400); font-size: 13px; flex-shrink: 0; }
.lk-filter-apply {
  display: block;
  width: calc(100% - 32px);
  margin: 14px 16px;
  height: 38px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background var(--t-fast);
}
.lk-filter-apply:hover { background: var(--blue-dark); }

/* Mobile filter open toggle */
.lk-filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--t-fast);
}
.lk-filter-toggle-btn:hover { border-color: var(--blue); color: var(--blue); }

/* Toolbar */
.lk-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.lk-toolbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.lk-toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.lk-toolbar-count {
  font-size: 13px;
  color: var(--gray-500);
}
.lk-clear-filters {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}
.lk-clear-filters:hover { color: #EF4444; border-color: #EF4444; }
.lk-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--r-full);
  padding: 3px 10px;
}
.lk-filter-chip a { color: var(--blue); font-size: 11px; line-height: 1; }

/* Empty State */
.lk-empty-state {
  text-align: center;
  padding: 64px 24px;
  background: var(--gray-50);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-200);
}
.lk-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--gray-400);
  margin: 0 auto 20px;
}
.lk-empty-title { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.lk-empty-sub   { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }

/* Load More Button */
.lk-load-more-btn {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 40px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  transition: all var(--t-normal);
  box-shadow: var(--shadow-sm);
}
.lk-load-more-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .col-lg-9 { width: 100%; }
}

/* ================================================================
   HOME PAGE (hp-*) STYLES
   ================================================================ */

/* ── SHARED SECTION ────────────────────────────────── */
.hp-section       { padding: 48px 0; }
.hp-section-alt   { background: var(--gray-50); }

.hp-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

.hp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.hp-section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  margin: 0;
}

.hp-section-sub {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 0;
  max-width: 520px;
}

.hp-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  padding: 9px 20px;
  border: 1.5px solid var(--blue-mid);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.hp-link-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.hp-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  padding: 13px 36px;
  border: 2px solid var(--gray-300);
  border-radius: var(--r-full);
  background: var(--white);
  transition: all var(--t-normal);
}
.hp-outline-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.12);
}

/* ── HERO SLIDER ────────────────────────────────────────────────── */
.hp-hero {
  position: relative;
  width: 100%;
  height: min(88vh, 640px);
  overflow: hidden;
  background: #ffffff;
}
.hp-slides { position: relative; width: 100%; height: 100%; }
.hp-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s;
}
.hp-slide.active { opacity: 1; visibility: visible; }
.hp-slide-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,12,34,0.82) 0%,
    rgba(6,12,34,0.55) 45%,
    rgba(6,12,34,0.12) 75%,
    rgba(6,12,34,0)    100%
  );
}
.hp-slide-body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 max(28px, 6vw);
}
.hp-slide-content {
  max-width: 580px;
  color: #fff;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s 0.35s ease, transform 0.7s 0.35s ease;
}
.hp-slide.active .hp-slide-content { opacity: 1; transform: translateY(0); }
.hp-slide-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(249,115,22,0.18);
  color: #FDBA74;
  border: 1px solid rgba(249,115,22,0.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hp-slide-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hp-title-hl {
  background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hp-slide-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 460px;
}
.hp-slide-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 14px 30px;
  border-radius: var(--r-full);
  letter-spacing: 0.3px;
  box-shadow: 0 8px 28px rgba(37,99,235,0.4);
  transition: all var(--t-normal);
  text-decoration: none;
}
.hp-cta-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,99,235,0.5); }
.hp-cta-primary i { transition: transform var(--t-fast); }
.hp-cta-primary:hover i { transform: translateX(4px); }
.hp-cta-ghost {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--r-full);
  backdrop-filter: blur(4px);
  transition: all var(--t-fast);
  text-decoration: none;
}
.hp-cta-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.6); }

.hp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  z-index: 10;
  transition: all var(--t-fast);
  opacity: 0;
}
.hp-hero:hover .hp-arrow { opacity: 1; }
.hp-arrow:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-50%) scale(1.08); }
.hp-arrow-prev { left: 28px; }
.hp-arrow-next { right: 28px; }
.hp-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none; cursor: pointer; padding: 0;
  transition: all var(--t-normal);
}
.hp-dot.active { background: #333; width: 28px; border-radius: var(--r-full); }
.hp-scroll-hint {
  position: absolute;
  bottom: 32px; right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
}
.hp-scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  display: flex; justify-content: center; padding-top: 5px;
}
.hp-scroll-wheel {
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}
@keyframes scrollWheel { 0%,100% { transform: translateY(0); opacity:1; } 50% { transform: translateY(8px); opacity:0.3; } }
@media (max-width: 768px) {
  .hp-hero { height: 48vw; }
  .hp-slide { background-size: cover; background-position: center center; }
  .hp-scroll-hint, .hp-arrow { display: none; }
  .hp-dots {
    bottom: 12px;
    background: rgba(255, 255, 255, 0.45);
    padding: 5px 10px;
    border-radius: 99px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    gap: 6px;
  }
  .hp-dot {
    width: 6px; height: 6px;
    background: rgba(0, 0, 0, 0.15);
  }
  .hp-dot.active {
    width: 18px;
    background: #000;
  }
}
@media (max-width: 480px) {
  .hp-hero { height: 42vw; min-height: unset; }
}

/* ── STATS BAR ───────────────────────────────────────────────────── */
.hp-stats-bar { background: var(--gray-900); padding: 28px 0; }
.hp-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.hp-stat-item { text-align: center; padding: 8px 40px; flex: 1; min-width: 120px; }
.hp-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hp-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; }
.hp-stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
@media (max-width: 576px) {
  .hp-stat-div { display: none; }
  .hp-stat-item { padding: 12px 20px; min-width: 50%; }
}

/* ── CATEGORY CARDS ─────────────────────────────────────────────── */
.hp-cat-card {
  display: flex; flex-direction: column;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-xs);
  color: inherit;
  text-decoration: none;
}
.hp-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--blue-mid);
  color: inherit;
}
.hp-cat-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.hp-cat-photo, .hp-cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
  display: block;
}
.hp-cat-card:hover .hp-cat-img img, .hp-cat-card:hover .hp-cat-photo { transform: scale(1.06); }
.hp-cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.15), transparent 60%); }
.hp-cat-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--gray-300);
}
.hp-cat-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  flex-wrap: wrap;
  gap: 4px;
}
.hp-cat-name { font-size: 15px; font-weight: 700; color: var(--gray-900); display: block; }
.hp-cat-desc { font-size: 12px; color: var(--gray-400); display: block; width: 100%; }
.hp-cat-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.hp-cat-card:hover .hp-cat-arrow { background: var(--blue); color: #fff; }

/* ── PRODUCT CARDS (NEW DESIGN) ────────────────────────────────── */
.hp-product-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.28s var(--ease-out);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--gray-100);
  position: relative;
}
.hp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.13);
  border-color: #BFDBFE;
}

/* Image area */
.hp-product-img {
  position: relative;
  background: #F3F4F6;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.hp-product-imglink { display: block; width: 100%; height: 100%; }
.hp-product-photo {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.45s var(--ease-out);
  display: block;
}
.hp-product-card:hover .hp-product-photo { transform: scale(1.06); }

/* Badges */
.hp-product-badges {
  position: absolute; top: 7px; left: 7px;
  display: flex; gap: 3px; flex-direction: column; z-index: 5;
}
.hp-badge {
  font-size: 9px; font-weight: 800;
  padding: 2px 7px; border-radius: 5px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hp-badge-dark { background: rgba(15,23,42,0.85); color: #fff; backdrop-filter: blur(4px); }
.hp-badge-red  { background: #EF4444; color: #fff; }
.hp-badge-blue { background: var(--blue); color: #fff; }

/* Side action buttons */
.hp-product-side-actions {
  position: absolute; top: 7px; right: 7px;
  display: flex; flex-direction: column; gap: 5px; z-index: 5;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.22s var(--ease-out);
}
.hp-product-card:hover .hp-product-side-actions {
  opacity: 1;
  transform: scale(1);
}
.hp-side-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; cursor: pointer;
  transition: all var(--t-fast);
  box-shadow: 0 1px 6px rgba(0,0,0,0.14);
  text-decoration: none;
}
.hp-side-btn:hover { background: var(--blue); color: #fff; transform: scale(1.1); }

/* Slide-up add to cart */
.hp-product-cta {
  position: absolute;
  bottom: -42px; left: 0; right: 0;
  z-index: 5;
  transition: bottom 0.26s var(--ease-out);
}
.hp-product-card:hover .hp-product-cta { bottom: 68px; }
.hp-product-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  width: calc(100% - 16px);
  margin: 0 8px;
  padding: 8px 0;
  background: var(--gray-900);
  color: #fff;
  border-radius: 8px;
  font-size: 10px; font-weight: 800;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.8px; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: background var(--t-fast);
}
.hp-product-cta-btn:hover { background: var(--blue); color: #fff; }

/* Info */
.hp-product-info {
  padding: 10px 12px 12px;
  flex: 1; display: flex; flex-direction: column; gap: 2px;
}
.hp-product-cat {
  font-size: 9.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--blue); margin-bottom: 1px;
}
.hp-product-name {
  font-size: 12.5px; font-weight: 600;
  color: var(--gray-900); line-height: 1.4; margin: 0;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.hp-product-name a { color: inherit; text-decoration: none; }
.hp-product-name a:hover { color: var(--blue); }
.hp-product-price {
  display: flex; align-items: center; gap: 6px;
  margin-top: 6px;
}
.hp-price-now {
  font-size: 14px; font-weight: 800;
  color: var(--gray-900);
  font-family: 'Sora', sans-serif;
}
.hp-price-now.sale { color: #EF4444; }
.hp-price-was {
  font-size: 10.5px; font-weight: 500;
  color: var(--gray-400); text-decoration: line-through;
}

/* ── FEATURE CARDS ──────────────────────────────────────────────── */
.hp-feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 16px 12px;
  text-align: center;
  transition: all var(--t-normal) var(--ease);
  height: 100%;
}
.hp-feature-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 16px 40px rgba(37,99,235,0.1);
  transform: translateY(-5px);
}
.hp-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin: 0 auto 10px;
}
.hp-feature-title { font-size: 13px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.hp-feature-text  { font-size: 11px; color: var(--gray-500); line-height: 1.5; margin: 0; }

@media (min-width: 768px) {
  .hp-feature-card { padding: 28px 22px; }
  .hp-feature-icon { width: 60px; height: 60px; font-size: 26px; margin: 0 auto 16px; border-radius: 16px; }
  .hp-feature-title { font-size: 15px; margin-bottom: 8px; }
  .hp-feature-text { font-size: 13px; line-height: 1.65; }
}

/* ── PROMO BANNER ───────────────────────────────────────────────── */
.hp-promo-banner {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 40%, #7C3AED 100%);
  padding: 56px 0;
  overflow: hidden;
  position: relative;
}
.hp-promo-banner::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hp-promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.hp-promo-text { flex: 1; min-width: 260px; }
.hp-promo-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 12px;
}
.hp-promo-title span {
  background: linear-gradient(135deg, #FDE68A, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hp-promo-sub { font-size: 15px; color: rgba(255,255,255,0.78); margin-bottom: 28px; }
.hp-promo-sub strong { color: #FDE68A; }
.hp-promo-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue);
  font-size: 14px; font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 13px 28px;
  border-radius: var(--r-full);
  transition: all var(--t-normal);
  text-decoration: none;
}
.hp-promo-btn:hover { background: var(--blue-light); color: var(--blue-dark); transform: translateY(-2px); }
.hp-promo-badge { flex-shrink: 0; }
.hp-promo-circle {
  width: 130px; height: 130px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 3px solid rgba(255,255,255,0.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  animation: promoPulse 2.5s ease-in-out infinite;
}
@keyframes promoPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.hp-promo-pct { font-family: 'Sora', sans-serif; font-size: 44px; font-weight: 800; color: #FDE68A; line-height: 1; }
.hp-promo-off  { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 2px; }

/* ── VIRTUAL TRY-ON ─────────────────────────────────────────────── */
.hp-tryon-banner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 24px rgba(37,99,235,0.06);
}
.hp-tryon-banner::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 300px; height: 300px;
  background: var(--blue-light);
  border-radius: 50%;
  transform: translate(30%, -40%);
  z-index: 0;
}
.hp-tryon-text { position: relative; z-index: 1; flex: 1; }
.hp-tryon-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800; color: var(--gray-900);
  line-height: 1.15; margin-bottom: 14px;
}
.hp-tryon-title span { color: var(--blue); }
.hp-tryon-sub { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; max-width: 480px; }
.hp-tryon-visual { position: relative; z-index: 1; flex-shrink: 0; }
.hp-tryon-icon-wrap {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 3px solid var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
}
.hp-tryon-icon { font-size: 52px; color: var(--blue); }
@media (max-width: 768px) {
  .hp-tryon-banner { flex-direction: column; padding: 32px 24px; }
  .hp-tryon-visual { display: none; }
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.hp-faq-list { display: flex; flex-direction: column; }
.hp-faq-item { border-bottom: 1px solid var(--gray-200); }
.hp-faq-item:first-child { border-top: 1px solid var(--gray-200); }
.hp-faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 4px;
  background: none; border: none;
  text-align: left;
  font-size: 15px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--gray-900); cursor: pointer;
  transition: color var(--t-fast);
}
.hp-faq-q:hover { color: var(--blue); }
.hp-faq-item.open .hp-faq-q { color: var(--blue); }
.hp-faq-icon { font-size: 18px; flex-shrink: 0; color: var(--blue); }
.hp-faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.hp-faq-item.open .hp-faq-a { max-height: 200px; }
.hp-faq-a p { padding: 0 4px 18px; font-size: 14px; color: var(--gray-500); line-height: 1.75; margin: 0; }


/* ================================================================
   ZENNI-STYLE PRODUCT CARDS (zn-*)
   ================================================================ */

/* Section background — light sky blue like Zenni */
.zn-section {
  background: #E8F4FD;
  padding: 48px 0;
}

/* Grid — horizontal scroll on mobile, grid on desktop */
.zn-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  flex-wrap: nowrap;
  gap: 12px;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.zn-grid::-webkit-scrollbar {
  display: none;
}
.zn-grid > .zn-card {
  flex: 0 0 auto;
  width: calc(50% - 6px);
  max-width: 200px;
  scroll-snap-align: start;
}

@media (min-width: 768px)  { 
  .zn-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    overflow: visible;
    padding: 0;
    margin: 0;
  } 
  .zn-grid > .zn-card { width: auto; max-width: none; flex: none; scroll-snap-align: none; }
}
@media (min-width: 992px)  { .zn-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .zn-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1400px) { .zn-grid { grid-template-columns: repeat(6, 1fr); } }

/* Card */
.zn-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: all 0.22s ease;
  cursor: pointer;
}
.zn-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}

/* Image area */
.zn-img {
  position: relative;
  background: #fff;
  padding: 8px 8px 0;
}

/* Top bar: badge left, heart right */
.zn-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

/* Badge — teal like Zenni "Top rated" */
.zn-badge {
  font-size: 9px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 3px 7px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}
.zn-badge-top  { background: #E0F7FA; color: #00838F; border: 1px solid #B2EBF2; }
.zn-badge-sale { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }

/* Heart button */
.zn-heart {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #9CA3AF;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s ease;
  padding: 0;
}
.zn-heart:hover { color: #EF4444; transform: scale(1.15); }

/* Product image */
.zn-imglink {
  display: block;
  width: 100%;
  height: 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.zn-imglink picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.zn-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease;
  color: #9ca3af;
  font-size: 12px;
}
/* Primary image — shown by default */
.zn-hover-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  transition: opacity 0.35s ease;
}
.zn-hover-primary  { opacity: 1; transition: opacity 0.35s ease, transform 0.35s ease; }
.zn-hover-secondary { opacity: 0; }
.zn-card.has-hover:hover .zn-hover-primary   { opacity: 0; }
.zn-card.has-hover:hover .zn-hover-secondary { opacity: 1; }

/* Fallback scale for cards without hover image */
.zn-card:not(.has-hover):hover .zn-hover-primary { transform: scale(1.05); }

/* Try On row */
.zn-tryon-row {
  display: flex;
  justify-content: center;
  padding: 6px 0 8px;
}
.zn-tryon-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  color: #374151;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1.5px solid #E5E7EB;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: all 0.18s ease;
}
.zn-tryon-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(37,99,235,0.15);
}
.zn-tryon-btn i { font-size: 11px; }

/* Info section */
.zn-info {
  padding: 6px 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid #F3F4F6;
}

/* Price row */
.zn-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.zn-price {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
  font-family: 'Sora', sans-serif;
}
.zn-price-old {
  font-size: 9px;
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 500;
}
.zn-stars {
  font-size: 9px;
  font-weight: 700;
  color: #F59E0B;
  display: flex;
  align-items: center;
  gap: 2px;
}

@media (min-width: 768px) {
  .zn-img { padding: 10px 10px 0; }
  .zn-imglink { height: 130px; padding: 4px 6px; }
  .zn-tryon-row { padding: 8px 0 10px; }
  .zn-tryon-btn { font-size: 11px; padding: 5px 14px; }
  .zn-info { padding: 8px 10px 12px; gap: 3px; }
  .zn-price { font-size: 14px; }
  .zn-price-old { font-size: 10px; }
  .zn-badge { font-size: 9.5px; padding: 3px 9px; }
  .zn-heart { font-size: 14px; width: 26px; height: 26px; }
  .zn-stars { font-size: 10px; }
}

/* Shape/category */
.zn-shape {
  font-size: 10.5px;
  color: #6B7280;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Name link */
.zn-name-link {
  font-size: 11.5px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  transition: color 0.15s;
}
.zn-name-link:hover { color: var(--blue); }

/* Add to Cart Bounce Animation */
.atc-btn-bounce {
  animation: atcUpDown 1.8s ease-in-out infinite;
}

@keyframes atcUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
