/* ===== CSS Variables & Reset ===== */
:root {
  --primary: #231158;
  --primary-foreground: #ffffff;
  --secondary: #B8312F;
  --secondary-foreground: #ffffff;
  --accent: #B8312F;
  --accent-foreground: #ffffff;
  --destructive: #B8312F;
  --success: #22c55e;
  --background: #faf8ff;
  --foreground: #1a0f3d;
  --card: #ffffff;
  --card-foreground: #1a0f3d;
  --muted: #f3f0fa;
  --muted-foreground: #6b5d8a;
  --border: #e5deee;
  --ring: #231158;
  --radius: 12px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input {
  font-family: inherit;
}

/* ===== Gradients (JD Fashion brand colors) ===== */
.gradient-primary {
  background: linear-gradient(135deg, #231158, #3b1f87);
}
.gradient-secondary {
  background: linear-gradient(135deg, #B8312F, #8a1c1a);
}
.gradient-cool {
  background: linear-gradient(135deg, #2c1a6b, #4c2ba0);
}
.gradient-emerald {
  background: linear-gradient(135deg, #231158, #7a1a18);
}
.gradient-sunset {
  background: linear-gradient(135deg, #B8312F, #501a52);
}
.gradient-warm {
  background: linear-gradient(135deg, #B8312F, #231158);
}
.gradient-festive {
  background: linear-gradient(135deg, #231158, #B8312F);
}

/* ===== Layout ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8px;
}

.min-h-screen {
  min-height: 100vh;
}

.main-content {
  padding: 0 8px;
}

@media (min-width: 640px) {
  .container, .main-content {
    padding: 0 16px;
  }
}

/* ===== Shadows ===== */
.shadow-card {
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
}
.shadow-elevated {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.05);
}
.shadow-glow {
  box-shadow: 0 0 20px rgba(35,17,88,0.3);
}
.shadow-golden {
  box-shadow: 0 0 15px rgba(184,49,47,0.3);
}

/* ===== HEADER ===== */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, #231158, #3b1f87);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
}

.top-bar-left, .top-bar-right {
  display: none;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.top-bar-link:hover {
  color: #fff;
}

.top-bar-divider {
  opacity: 0.5;
}

@media (min-width: 768px) {
  .top-bar-left, .top-bar-right {
    display: flex;
  }
}

/* Marquee */
.marquee-text {
  font-size: 11px;
  font-weight: 500;
  color: var(--primary-foreground);
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}

@media (min-width: 768px) {
  .marquee-text {
    max-width: 50%;
  }
}

.marquee-inner {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Main Header */
.main-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.main-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-icon span {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.05em;
}

.logo-text {
  display: none;
}

.logo-text h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--foreground);
  letter-spacing: -0.025em;
}

.logo-text p {
  font-size: 10px;
  color: var(--muted-foreground);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

/* Search */
.search-form {
  flex: 1;
  max-width: 640px;
  display: none;
}

@media (min-width: 768px) {
  .search-form {
    display: flex;
  }
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.search-wrapper:focus-within .search-icon {
  color: var(--primary);
}

.search-wrapper input {
  width: 100%;
  padding: 12px 96px 12px 44px;
  border-radius: 12px;
  border: 2px solid var(--muted);
  background: rgba(241,245,249,0.3);
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}

.search-wrapper input:focus {
  border-color: rgba(35,17,88,0.5);
  background: var(--card);
}

.search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 22px;
  background: #ff3f6c;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: .25s;
  border: none; cursor: pointer;
}

.search-btn:hover { background: #0f0f1a; }

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 2px;
}

@media (min-width: 640px) {
  .header-icons {
    gap: 4px;
  }
}

.header-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 12px;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.header-icon-link svg {
  transition: transform 0.2s;
}

.header-icon-link:hover svg {
  transform: scale(1.1);
}

.header-icon-link span {
  font-size: 10px;
  font-weight: 500;
  margin-top: 2px;
}

.header-icon-link:hover {
  color: var(--primary);
}

.wishlist-link:hover {
  color: var(--destructive);
}

.offers-link {
  display: none !important;
}

.wishlist-link, .account-link {
  display: none !important;
}

@media (min-width: 768px) {
  .wishlist-link, .account-link {
    display: flex !important;
  }
}

@media (min-width: 1024px) {
  .offers-link {
    display: flex !important;
  }
}

.mobile-menu-btn {
  padding: 8px;
  color: var(--foreground);
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Navigation */
.main-nav {
  display: none;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(15,23,42,0.8);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
  border-bottom-color: rgba(35,17,88,0.5);
}

.nav-link svg {
  transition: transform 0.2s;
}

.nav-link:hover svg {
  transform: rotate(180deg);
}

.nav-link-deals {
  color: var(--destructive);
  font-weight: 700;
}

/* ===== MEGA DROPDOWN ===== */
.nav-item { position: relative; }
.mega-dropdown {
  position: absolute; top: 100%; left: 0;
  width: 520px; background: var(--card); border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); padding: 20px;
  display: none; z-index: 50;
  grid-template-columns: 1fr 1fr; gap: 20px;
  animation: fadeInUp 0.2s ease;
}
.nav-item:hover .mega-dropdown { display: grid; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mega-col h5 {
  font-size: 11px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px;
}
.mega-col ul { display: flex; flex-direction: column; gap: 8px; }
.mega-col ul li a {
  font-size: 13px; color: var(--foreground); transition: color 0.2s; padding: 2px 0; display: block;
}
.mega-col ul li a:hover { color: var(--primary); }
.mega-feature {
  position: relative; border-radius: 10px; overflow: hidden; height: 140px; margin-bottom: 10px;
}
.mega-feature img { width: 100%; height: 100%; object-fit: cover; }
.mega-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 12px;
}
.mega-feature-overlay h6 { color: #fff; font-weight: 700; font-size: 14px; }
.mega-feature-overlay span { color: var(--secondary); font-size: 12px; font-weight: 600; }
.mega-offer {
  padding: 10px 12px; background: linear-gradient(135deg, #fef3c7, #fed7aa);
  border-radius: 8px; font-size: 12px;
}
.mega-offer strong { color: #92400e; display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.mega-offer p { color: #9a3412; margin-top: 2px; font-size: 11px; }

@media (max-width: 1023px) {
  .mega-dropdown { display: none !important; }
}

/* ===== HERO CAROUSEL ===== */
.hero-section {
  padding: 16px 0 8px;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.hero-slides {
  position: relative;
  height: 220px;
}

@media (min-width: 640px) {
  .hero-slides { height: 320px; }
}
@media (min-width: 768px) {
  .hero-slides { height: 420px; }
}
@media (min-width: 1024px) {
  .hero-slides { height: 480px; }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,0.85), rgba(15,23,42,0.5), transparent);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-content-inner {
  padding: 0 24px;
  max-width: 560px;
}

@media (min-width: 640px) {
  .hero-content-inner { padding: 0 40px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(184,49,47,0.9);
  color: var(--secondary-foreground);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: 0 0 15px rgba(184,49,47,0.3);
}

.hero-content h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .hero-content h2 { font-size: 48px; }
}
@media (min-width: 768px) {
  .hero-content h2 { font-size: 60px; }
}

.hero-content > .hero-content-inner > p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  font-weight: 300;
}

@media (min-width: 640px) {
  .hero-content > .hero-content-inner > p { font-size: 20px; margin-top: 16px; }
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

@media (min-width: 640px) {
  .hero-buttons { margin-top: 28px; }
}

.btn-primary-hero {
  padding: 12px 28px;
  background: linear-gradient(135deg, #B8312F, #8a1c1a);
  color: var(--secondary-foreground);
  font-weight: 700;
  border-radius: 12px;
  transition: opacity 0.2s;
  font-size: 14px;
  box-shadow: 0 0 15px rgba(184,49,47,0.3);
}

@media (min-width: 640px) {
  .btn-primary-hero { padding: 14px 28px; font-size: 16px; }
}

.btn-primary-hero:hover {
  opacity: 0.9;
}

.btn-outline-hero {
  padding: 12px 28px;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  transition: background 0.2s;
  font-size: 14px;
}

@media (min-width: 640px) {
  .btn-outline-hero { padding: 14px 28px; font-size: 16px; }
}

.btn-outline-hero:hover {
  background: rgba(255,255,255,0.1);
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: var(--foreground);
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.95);
}

.carousel-btn-left { left: 12px; }
.carousel-btn-right { right: 12px; }

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  height: 8px;
  border-radius: 999px;
  transition: all 0.3s;
  width: 8px;
  background: rgba(255,255,255,0.4);
}

.dot.active {
  width: 32px;
  background: var(--secondary);
  box-shadow: 0 0 15px rgba(184,49,47,0.3);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 16px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border: 1px solid rgba(226,232,240,0.5);
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
}

.feature-desc {
  font-size: 12px;
  color: var(--muted-foreground);
}

/* ===== CATEGORY SECTION ===== */
.category-section {
  padding: 32px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .section-title { font-size: 24px; }
}

.section-subtitle {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-top: 2px;
}

.view-all-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.view-all-link:hover {
  text-decoration: underline;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(10, 1fr);
    gap: 12px;
  }
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.category-img-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--muted);
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

@media (min-width: 640px) {
  .category-img-wrapper {
    width: 72px;
    height: 72px;
  }
}

.category-item:hover .category-img-wrapper {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(35,17,88,0.3);
}

.category-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.category-item:hover .category-img-wrapper img {
  transform: scale(1.1);
}

.category-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35,17,88,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.category-item:hover .category-img-overlay {
  opacity: 1;
}

.category-label {
  text-align: center;
}

.category-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--foreground);
  display: block;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .category-name { font-size: 12px; }
}

.category-count {
  font-size: 9px;
  color: var(--muted-foreground);
  display: none;
}

@media (min-width: 640px) {
  .category-count { display: block; }
}

/* ===== PRICE SECTION ===== */
.price-section {
  padding: 16px 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .price-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.price-card {
  display: block;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  transition: box-shadow 0.2s;
}

@media (min-width: 640px) {
  .price-card { padding: 20px; }
}

.price-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.price-emoji {
  font-size: 30px;
  display: block;
  margin-bottom: 8px;
}

.price-title {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

@media (min-width: 640px) {
  .price-title { font-size: 16px; }
}

.price-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 10px;
}

@media (min-width: 640px) {
  .price-subtitle { font-size: 12px; }
}

/* ===== COLLECTION SECTION ===== */
.collection-section {
  padding: 16px 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.collection-card {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 208px;
}

@media (min-width: 640px) {
  .collection-card { height: 256px; }
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.collection-card:hover img {
  transform: scale(1.1);
}

.collection-overlay {
  position: absolute;
  inset: 0;
}

.collection-overlay-men {
  background: linear-gradient(to top, rgba(35,17,88,0.9), rgba(35,17,88,0.3), transparent);
}

.collection-overlay-women {
  background: linear-gradient(to top, rgba(236,72,153,0.9), rgba(236,72,153,0.3), transparent);
}

.collection-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.collection-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.collection-title {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
}

.collection-desc {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-top: 4px;
}

.collection-cta {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== TRENDING / PRODUCT SECTION ===== */
.trending-section {
  padding: 24px 0;
}

.trending-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trending-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Product Card */
.product-card {
  display: block;
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.3s;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.1);
}

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.6), transparent, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .product-img-overlay {
  opacity: 1;
}

/* Product Hover Actions */
.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  display: flex;
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.product-card:hover .product-actions {
  transform: translateY(0);
}

.product-action-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--foreground);
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
}

.product-action-cart:hover {
  background: var(--primary);
  color: #fff;
}

.product-action-wish {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  transition: all 0.2s;
}

.product-action-wish:hover {
  background: var(--destructive);
  color: #fff;
}

/* Product Badges */
.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}

.badge-trending {
  background: linear-gradient(135deg, #231158, #3b1f87);
}

.badge-discount {
  background: linear-gradient(135deg, #B8312F, #8a1c1a);
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.badge-new {
  background: linear-gradient(135deg, #10b981, #059669);
}

/* Wishlist button on card */
.product-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s;
  color: var(--foreground);
}

.product-card:hover .product-wishlist-btn {
  opacity: 1;
}

.product-wishlist-btn:hover {
  background: rgba(239,68,68,0.1);
  color: var(--destructive);
}

/* Product Info */
.product-info {
  padding: 12px;
}

.product-brand {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s;
}

.product-card:hover .product-name {
  color: var(--primary);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--success);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}

.rating-count {
  font-size: 10px;
  color: var(--muted-foreground);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}

.price-current {
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
}

.price-original {
  font-size: 12px;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.product-offer {
  font-size: 10px;
  font-weight: 600;
  color: var(--success);
  margin-top: 2px;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  padding: 32px 0;
}

.newsletter-card {
  background: linear-gradient(135deg, #231158, #3b1f87);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

@media (min-width: 640px) {
  .newsletter-card { padding: 48px 40px; }
}

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.newsletter-content > p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  flex-direction: column;
}

@media (min-width: 480px) {
  .newsletter-form { flex-direction: row; }
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 14px;
  outline: none;
  backdrop-filter: blur(8px);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.25);
}

.newsletter-form button {
  padding: 12px 28px;
  background: linear-gradient(135deg, #B8312F, #8a1c1a);
  color: var(--secondary-foreground);
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

.newsletter-note {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
  padding: 24px 0 40px;
}

.brands-section .section-header {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .brands-grid { grid-template-columns: repeat(6, 1fr); }
}

.brand-card {
  padding: 20px 16px;
  background: var(--card);
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.brand-card:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(35,17,88,0.15);
}

/* ===== DEAL OF THE DAY ===== */
.deal-section { padding: 24px 0; }
.deal-banner {
  position: relative; border-radius: 16px; padding: 40px 24px; text-align: center; overflow: hidden;
}
.deal-decor-1, .deal-decor-2 {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.3;
}
.deal-decor-1 { width: 200px; height: 200px; background: var(--secondary); top: -40px; right: -40px; }
.deal-decor-2 { width: 150px; height: 150px; background: var(--accent); bottom: -30px; left: -30px; }
.deal-content { position: relative; z-index: 1; }
.deal-label {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
  border-radius: 999px; background: rgba(255,255,255,0.2); color: #fff;
  font-size: 12px; font-weight: 700; margin-bottom: 12px; backdrop-filter: blur(8px);
}
.deal-label svg { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.deal-banner h2 { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: #fff; }
@media (min-width: 640px) { .deal-banner h2 { font-size: 42px; } }
.deal-banner > .deal-content > p { color: rgba(255,255,255,0.8); font-size: 14px; margin: 8px 0 20px; }
.countdown { display: flex; align-items: center; justify-content: center; gap: 8px; }
.countdown-box {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border-radius: 10px;
  padding: 12px 16px; min-width: 60px; text-align: center;
}
.countdown-box span { display: block; font-size: 24px; font-weight: 800; color: #fff; }
.countdown-box small { font-size: 10px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; }
.countdown-sep { font-size: 24px; font-weight: 700; color: rgba(255,255,255,0.6); }
.deal-shop-btn {
  display: inline-block; margin-top: 20px; padding: 12px 28px; background: var(--card);
  color: var(--foreground); font-weight: 700; border-radius: 12px; font-size: 14px;
  transition: all 0.2s; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.deal-shop-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ===== BESTSELLERS ===== */
.bestseller-section { padding: 24px 0; }

/* ===== FLAT 199 STORE ===== */
.flat199-section { padding: 24px 0; }
.flat199-banner {
  position: relative; border-radius: 16px; padding: 40px 24px; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.flat199-decor-1, .flat199-decor-2 {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3;
}
.flat199-decor-1 { width: 250px; height: 250px; background: var(--secondary); top: -60px; right: 20%; }
.flat199-decor-2 { width: 180px; height: 180px; background: var(--accent); bottom: -40px; left: 10%; }
.flat199-content { position: relative; z-index: 1; max-width: 500px; }
.flat199-label {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.2); color: #fff; font-size: 12px; font-weight: 700;
  margin-bottom: 12px; backdrop-filter: blur(8px);
}
.flat199-content h2 { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 8px; }
@media (min-width: 640px) { .flat199-content h2 { font-size: 42px; } }
.flat199-content > p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.flat199-btn {
  display: inline-block; padding: 12px 28px; background: linear-gradient(135deg, #B8312F, #8a1c1a);
  color: var(--secondary-foreground); font-weight: 700; border-radius: 12px; font-size: 14px;
  box-shadow: 0 0 15px rgba(184,49,47,0.3); transition: opacity 0.2s;
}
.flat199-btn:hover { opacity: 0.9; }
.flat199-image {
  position: relative; z-index: 1; width: 200px; height: 200px; border-radius: 16px;
  overflow: hidden; border: 4px solid rgba(255,255,255,0.2); flex-shrink: 0; display: none;
}
@media (min-width: 768px) { .flat199-image { display: block; } }
.flat199-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== MOSAIC GRID ===== */
.mosaic-section { padding: 24px 0; }
.mosaic-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 12px;
}
@media (min-width: 768px) {
  .mosaic-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
}
.mosaic-card {
  position: relative; border-radius: 14px; overflow: hidden; display: block;
}
.mosaic-large { grid-column: span 2; grid-row: span 2; }
.mosaic-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.mosaic-card:hover img { transform: scale(1.1); }
.mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.75), rgba(15,23,42,0.2), transparent);
}
.mosaic-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; color: #fff;
}
.mosaic-label {
  display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 10px;
  font-weight: 700; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); margin-bottom: 6px;
}
.mosaic-content h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.mosaic-large .mosaic-content h3 { font-size: 22px; }
@media (min-width: 768px) { .mosaic-large .mosaic-content h3 { font-size: 28px; } }
.mosaic-price { font-size: 12px; color: rgba(255,255,255,0.8); }
.mosaic-cta {
  display: inline-block; margin-top: 8px; padding: 6px 16px; border-radius: 8px;
  background: linear-gradient(135deg, #B8312F, #8a1c1a); color: var(--secondary-foreground);
  font-size: 12px; font-weight: 700; transition: opacity 0.2s;
}

/* ===== TRIPLE CATEGORY BANNER ===== */
.triple-section { padding: 24px 0; }
.triple-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 768px) { .triple-grid { grid-template-columns: repeat(3, 1fr); } }
.triple-card {
  position: relative; border-radius: 14px; overflow: hidden; height: 200px; display: block;
}
@media (min-width: 768px) { .triple-card { height: 220px; } }
.triple-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.triple-card:hover img { transform: scale(1.1); }
.triple-overlay { position: absolute; inset: 0; opacity: 0.8; }
.triple-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; color: #fff; z-index: 1;
}
.triple-content h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.triple-content p { font-size: 14px; color: rgba(255,255,255,0.85); margin: 4px 0 12px; }
.triple-btn {
  display: inline-block; padding: 8px 20px; border-radius: 999px;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); font-size: 12px;
  font-weight: 700; transition: all 0.2s;
}
.triple-card:hover .triple-btn { background: var(--secondary); color: var(--secondary-foreground); }

/* ===== NEW ARRIVALS ===== */
.newarrivals-section { padding: 24px 0; }

/* ===== BADGE PREMIUM ===== */
.badge-premium {
  background: linear-gradient(135deg, #231158, #B8312F);
}

/* ===== BRANDS V2 ===== */
.brands-header { justify-content: center; flex-direction: column; align-items: center; text-align: center; }
.brands-grid-8 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px;
}
@media (min-width: 640px) { .brands-grid-8 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .brands-grid-8 { grid-template-columns: repeat(8, 1fr); } }
.brand-card-v2 {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px 12px; background: var(--card); border-radius: 12px; text-align: center;
  border: 1px solid var(--border); transition: all 0.2s; gap: 4px;
}
.brand-card-v2 strong { font-size: 13px; color: var(--foreground); }
.brand-card-v2 span { font-size: 10px; color: var(--muted-foreground); }
.brand-card-v2:hover {
  border-color: var(--primary); color: var(--primary);
  box-shadow: 0 0 20px rgba(35,17,88,0.15);
}
.brand-card-v2:hover strong { color: var(--primary); }

/* ===== DESIGNER WEAR BANNER ===== */
.designer-section {
  padding: 24px 0;
}

.designer-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
}

@media (min-width: 640px) {
  .designer-banner { height: 280px; }
}

@media (min-width: 768px) {
  .designer-banner { height: 320px; }
}

.designer-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.designer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.88), rgba(99, 102, 241, 0.7), rgba(139, 92, 246, 0.5));
}

.designer-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.designer-badge-exclusive {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.9);
  color: var(--secondary-foreground);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.designer-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .designer-content h2 { font-size: 44px; }
}

@media (min-width: 768px) {
  .designer-content h2 { font-size: 52px; }
}

.designer-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 300;
}

@media (min-width: 640px) {
  .designer-content > p { font-size: 16px; }
}

.designer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #B8312F, #8a1c1a);
  color: var(--secondary-foreground);
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  transition: opacity 0.2s;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.designer-btn:hover {
  opacity: 0.9;
}

/* ===== PREMIUM COLLECTION ===== */
.premium-section {
  padding: 24px 0;
}

/* ===== DOWNLOAD APP BANNER ===== */
.app-banner-section {
  padding: 16px 0;
}

.app-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, #B8312F, #8a1c1a);
  border-radius: 14px;
  gap: 16px;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .app-banner { padding: 18px 28px; flex-wrap: nowrap; }
}

.app-banner-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.app-banner-title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

@media (min-width: 640px) {
  .app-banner-title { font-size: 16px; }
}

.app-banner-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.app-banner-btn {
  padding: 10px 24px;
  background: #fff;
  color: #8a1c1a;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.app-banner-btn:hover {
  background: #f8fafc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== MORE TO EXPLORE ===== */
.explore-section {
  padding: 24px 0;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

@media (min-width: 640px) {
  .explore-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .explore-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
  }
}

@media (min-width: 1024px) {
  .explore-grid {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 250px;
  }
}

.explore-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: block;
}

.explore-card-tall {
  grid-row: span 2;
}

.explore-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.explore-card:hover img {
  transform: scale(1.08);
}

.explore-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent 50%);
}

.explore-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.explore-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
}

.explore-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.explore-price {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f0f1a;
  color: rgba(255,255,255,0.72);
  margin-top: 32px;
  border-top: 4px solid #ff3f6c;
}
.site-footer .footer-trust-strip {
  background: #161624;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-footer .footer-col h4 {
  color: #fff !important;
  font-size: 13px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 18px; position: relative; padding-bottom: 10px;
}
.site-footer .footer-col h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px; background: #ff3f6c;
}
.site-footer .footer-col ul li a { transition: .2s; }
.site-footer .footer-col ul li a:hover { color: #ff3f6c; padding-left: 4px; }
.site-footer .logo-icon-gold {
  background: #fff; padding: 6px; box-shadow: 0 6px 20px rgba(255,63,108,.25);
}
.site-footer .social-link {
  background: rgba(255,255,255,.08) !important;
  transition: .25s;
}
.site-footer .social-link:hover {
  background: #ff3f6c !important; transform: translateY(-3px);
}
.site-footer .footer-bottom {
  background: #08080f; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-trust-strip { border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
}
@media (min-width: 768px) { .footer-trust-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-trust-item { display: flex; align-items: center; gap: 12px; padding: 12px; }
.footer-trust-icon { font-size: 24px; }
.footer-trust-title { font-size: 14px; font-weight: 700; color: #fff; }
.footer-trust-desc { font-size: 11px; color: rgba(255,255,255,0.6); }
.footer-main { padding: 48px 0 0; }
.logo-icon-gold { background: #fff; box-shadow: 0 0 15px rgba(184,49,47,0.3); padding: 4px; }
.logo-icon-gold img { width: 100%; height: 100%; object-fit: contain; }
.footer-col h4 { color: var(--secondary); }
.download-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); margin-top: 16px; margin-bottom: 8px; }
.download-btns { display: flex; gap: 8px; }
.download-btn {
  padding: 8px 12px; background: rgba(255,255,255,0.1); border-radius: 8px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.8); transition: all 0.2s;
}
.download-btn:hover { background: rgba(255,255,255,0.2); }
.payment-strip {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 24px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.payment-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); }
.payment-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-badge {
  padding: 4px 10px; background: rgba(255,255,255,0.1); border-radius: 4px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 24px; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
}

.footer-logo .logo-icon span {
  font-size: 16px;
}

.footer-logo h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.footer-tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.contact-list svg {
  flex-shrink: 0;
  color: var(--primary);
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* ===== NOTIFICATION (hidden) ===== */
.notification-list {
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  max-height: 100vh;
  width: 100%;
  flex-direction: column-reverse;
  padding: 16px;
}

@media (min-width: 640px) {
  .notification-list {
    bottom: 0;
    right: 0;
    top: auto;
    flex-direction: column;
    max-width: 420px;
  }
}
/* ========================================================
   JD FASHIONS — HOMEPAGE V3
   Inspired by Myntra · Ajio · Snitch · Meesho
   ======================================================== */

:root {
  --jd-red: #ff3f6c;          /* Myntra-style hot pink */
  --jd-red-dark: #e02b58;
  --jd-orange: #ff905a;
  --jd-yellow: #ffd54a;
  --jd-purple: #8e3cf7;
  --jd-blue: #2874f0;
  --jd-dark: #0f0f1a;
  --jd-ink: #1c1c2e;
  --jd-text: #2b2b3a;
  --jd-mute: #6b6b7e;
  --jd-line: #ececf2;
  --jd-bg: #fafafc;
  --jd-cream: #fff5ef;
  --jd-grad-hot: linear-gradient(135deg,#ff3f6c 0%,#ff905a 100%);
  --jd-grad-cool: linear-gradient(135deg,#8e3cf7 0%,#ff3f6c 100%);
  --jd-grad-night: linear-gradient(135deg,#0f0f1a 0%,#3b2a4f 100%);
  --jd-grad-meesho: linear-gradient(135deg,#f43397 0%,#9b2cb6 100%);
  --jd-shadow-sm: 0 4px 14px rgba(15,15,26,.06);
  --jd-shadow-md: 0 14px 40px rgba(15,15,26,.10);
  --jd-shadow-lg: 0 30px 70px rgba(15,15,26,.18);
  --font-display: 'Playfair Display', 'Inter', serif;
}

.main-content-new { display: block; background: var(--jd-bg); }
.section-wrap { max-width: 1360px; margin: 0 auto; padding: 70px 32px; }
.block-head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; margin-bottom: 48px; gap: 18px;
  position: relative;
}
.block-head > div {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; max-width: 80%; margin: 0 auto;
}
.block-head .view-all {
  position: absolute; right: 0; top: 14px;
}
.block-head-center { text-align: center; }
@media (max-width: 760px) {
  .block-head .view-all { position: static; margin-top: 14px; }
}

/* — eyebrow: hairline-flanked uppercase tag, no pill — */
.block-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 10px; font-weight: 800;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--jd-ink); background: none; padding: 0; border-radius: 0;
}
.block-eyebrow::before, .block-eyebrow::after {
  content: ''; display: block;
  width: 36px; height: 1.5px; background: var(--jd-red);
}

/* — heading: huge Playfair, italic word in red, soft red highlight bar — */
.block-head h2, .section-title-center h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 900; color: var(--jd-ink);
  letter-spacing: -.025em; line-height: 1;
  position: relative; display: inline-block;
}
.block-head h2 em, .section-title-center h2 em {
  font-style: italic; color: var(--jd-red);
  font-weight: 900; position: relative;
  margin-left: 6px;
}
.block-head h2 em::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: 8%;
  height: 30%; background: rgba(255,63,108,.14); z-index: -1;
  border-radius: 4px;
}
.block-head > div::after {
  content: '✦'; display: block;
  font-size: 14px; color: var(--jd-red);
  margin: 6px auto 0;
  font-style: normal; line-height: 1;
}

.section-title-center {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; margin-bottom: 48px; gap: 14px;
  max-width: 80%; margin-left: auto; margin-right: auto;
}
.section-title-center::after {
  content: '✦'; display: block;
  font-size: 14px; color: var(--jd-red);
  margin-top: 6px; line-height: 1;
}
.section-sub { color: var(--jd-mute); margin-top: 4px; font-size: 14px; letter-spacing: .04em; }
.view-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .18em;
  color: #fff; padding: 13px 24px;
  background: var(--jd-ink); border: 2px solid var(--jd-ink);
  border-radius: 0; transition: .3s; text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(15,15,26,.18);
}
.view-all:hover {
  background: var(--jd-red); border-color: var(--jd-red); color: #fff;
  transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,63,108,.35);
}

/* ============================ HERO MEGA (Snitch/Ajio editorial split) ============================ */
.hero-mega {
  position: relative; width: 100%;
  height: 78vh; min-height: 560px; max-height: 720px;
  overflow: hidden; background: #faf6f1;
}
.hero-mega-slides { position: relative; width: 100%; height: 100%; }
.hero-mega-slide {
  position: absolute; inset: 0; opacity: 0;
  pointer-events: none; visibility: hidden;
  transition: opacity 1s cubic-bezier(.4,0,.2,1), visibility 0s linear 1s;
}
.hero-mega-slide.active {
  opacity: 1; pointer-events: auto; visibility: visible;
  transition: opacity 1s cubic-bezier(.4,0,.2,1), visibility 0s linear 0s;
  z-index: 1;
}
.hero-mega-slide img {
  position: absolute; right: 0; top: 0;
  width: 62%; height: 100%; object-fit: cover;
  animation: kenburns 22s ease-out infinite;
}
@keyframes kenburns {
  0% { transform: scale(1.04); }
  100% { transform: scale(1.12); }
}
.hero-mega-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #faf6f1 0%, #faf6f1 38%, transparent 58%);
}
.hero-mega-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1360px; margin: 0 auto;
  padding: 0 60px 110px; color: #0f0f1a;
}
.hero-mega-content > * { max-width: 540px; }
.hero-mega-tag {
  display: inline-flex; align-items: center; width: fit-content;
  padding: 8px 18px; background: #0f0f1a; color: #fff;
  border-radius: 0; font-size: 11px; font-weight: 800;
  letter-spacing: .28em; margin-bottom: 26px; text-transform: uppercase;
}
.hero-mega-content h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 900; line-height: .96; letter-spacing: -.035em;
  color: #0f0f1a;
}
.hero-mega-content h1 em {
  font-style: italic; display: inline-block;
  color: var(--jd-red);
}
.hero-mega-content > p {
  font-size: clamp(14px, 1.2vw, 17px);
  margin-top: 22px;
  color: #4a4a5e; line-height: 1.7;
}
.hero-mega-content > p strong {
  color: #0f0f1a; font-weight: 800;
  border-bottom: 2px solid var(--jd-red);
}
.hero-mega-btns { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.btn-solid {
  padding: 16px 34px; background: #0f0f1a;
  color: #fff; font-weight: 800; font-size: 14px; border-radius: 0;
  letter-spacing: .12em; text-transform: uppercase;
  transition: .3s cubic-bezier(.4,0,.2,1); display: inline-block;
  border: 2px solid #0f0f1a;
}
.btn-solid:hover { background: var(--jd-red); border-color: var(--jd-red); }
.btn-outline {
  padding: 16px 34px; border: 2px solid #0f0f1a;
  background: transparent; color: #0f0f1a;
  font-weight: 800; font-size: 14px; border-radius: 0;
  letter-spacing: .12em; text-transform: uppercase; transition: .3s;
}
.btn-outline:hover { background: #0f0f1a; color: #fff; }

.hero-mega-prev, .hero-mega-next {
  position: absolute; bottom: 28px; top: auto; transform: none;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: #0f0f1a;
  border: 1px solid #ececf2; box-shadow: var(--jd-shadow-md);
  font-size: 22px; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: .25s; line-height: 1;
}
.hero-mega-prev { right: 84px; left: auto; }
.hero-mega-next { right: 24px; }
.hero-mega-prev:hover, .hero-mega-next:hover {
  background: #0f0f1a; color: #fff; border-color: #0f0f1a;
  transform: scale(1.08);
}
.hero-mega-dots {
  position: absolute; bottom: 40px; left: 60px;
  display: flex; gap: 8px; z-index: 10;
}
.hmd {
  width: 28px; height: 3px; border-radius: 0;
  background: #d2d2dc; border: none; cursor: pointer; transition: .3s;
}
.hmd.active { background: #ff3f6c; width: 48px; }
@media (max-width: 760px) {
  .hero-mega-content { padding: 0 28px 90px; }
  .hero-mega-dots { left: 28px; bottom: 30px; }
  .hero-mega-prev { right: 76px; }
  .hero-mega-next { right: 18px; }
}

/* ============================ HEADER POLISH ============================ */
.sticky-header {
  background: #fff;
  box-shadow: 0 1px 0 rgba(15,15,26,.04);
}
.main-header {
  background: #fff !important;
  border-bottom: 1px solid #f0f0f5 !important;
  box-shadow: none !important;
}
.main-header-inner {
  padding: 16px 0 !important; gap: 36px !important;
}
.logo-link { gap: 14px !important; }
.logo-text h1 {
  font-size: 22px !important; letter-spacing: -.025em !important;
  color: #0f0f1a !important; font-weight: 800 !important;
}
.logo-text p {
  font-size: 9px !important; letter-spacing: .32em !important;
  color: #ff3f6c !important; font-weight: 800 !important;
  margin-top: 4px;
}

/* Search bar — premium pill */
.search-form { max-width: 580px !important; }
.search-wrapper input {
  padding: 14px 110px 14px 48px !important;
  border-radius: 999px !important;
  border: 2px solid #ececf2 !important;
  background: #fafafc !important;
  font-size: 14px !important; font-weight: 500;
  transition: .25s !important;
}
.search-wrapper input:focus {
  border-color: #0f0f1a !important;
  background: #fff !important;
  box-shadow: 0 6px 24px rgba(15,15,26,.08) !important;
}
.search-wrapper input::placeholder { color: #9a9aae; font-weight: 500; }
.search-icon { left: 20px !important; color: #9a9aae !important; }
.search-wrapper:focus-within .search-icon { color: #ff3f6c !important; }
.search-btn {
  right: 5px !important;
  padding: 10px 24px !important;
  background: linear-gradient(135deg, #ff3f6c 0%, #e02b58 100%) !important;
  border-radius: 999px !important;
  font-size: 11px !important; letter-spacing: .18em !important;
  box-shadow: 0 6px 18px rgba(255,63,108,.32) !important;
}
.search-btn:hover {
  background: #0f0f1a !important;
  box-shadow: 0 10px 24px rgba(15,15,26,.28) !important;
  transform: translateY(-50%) translateY(-1px);
}

/* Header icons */
.header-icons { gap: 6px !important; }
.header-icon-link {
  flex-direction: column !important;
  padding: 8px 14px !important;
  color: #2b2b3a !important;
  border-radius: 12px;
  transition: .25s !important;
  position: relative;
}
.header-icon-link svg {
  width: 22px !important; height: 22px !important;
  stroke-width: 1.8 !important;
}
.header-icon-link span {
  font-size: 10px !important; font-weight: 700 !important;
  letter-spacing: .08em; text-transform: uppercase;
  margin-top: 4px !important;
}
.header-icon-link:hover {
  background: #fafafc; color: #ff3f6c !important;
  transform: translateY(-2px);
}
.header-icon-link:hover svg { transform: scale(1.08) !important; }
.cart-link::after {
  content: ''; position: absolute;
  top: 6px; right: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff3f6c; border: 2px solid #fff;
}

/* Navigation */
.main-nav { border-top: 1px solid #f0f0f5 !important; position: relative; }
.main-nav > .nav-inner {
  max-width: 100%; padding: 0 16px;
  gap: 0 !important;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-link {
  padding: 12px 10px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important; text-transform: uppercase;
  color: #0f0f1a !important;
  border-bottom: none !important;
  position: relative;
  transition: color .25s !important;
  white-space: nowrap;
}
.nav-link::before {
  content: ''; position: absolute;
  left: 10px; right: 10px; bottom: 2px;
  height: 2px; background: #ff3f6c;
  transform: scaleX(0); transform-origin: center;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover { color: #ff3f6c !important; }
.nav-link:hover::before { transform: scaleX(1); }
.nav-link svg { width: 10px !important; height: 10px !important; opacity: .55; }
.nav-link:hover svg { opacity: 1; }
.nav-link-deals {
  color: #fff !important;
  background: linear-gradient(135deg, #ff3f6c, #e02b58);
  border-radius: 999px;
  margin: 2px 4px;
  padding: 8px 16px !important;
  box-shadow: 0 4px 14px rgba(255,63,108,.28);
}
.nav-link-deals::before { display: none; }
.nav-link-deals:hover {
  color: #fff !important; background: #0f0f1a;
  box-shadow: 0 8px 20px rgba(15,15,26,.24);
}
@media (min-width: 1200px) {
  .nav-link { padding: 13px 12px !important; font-size: 11.5px !important; letter-spacing: .08em !important; }
}
@media (min-width: 1400px) {
  .nav-link { padding: 14px 14px !important; font-size: 11.5px !important; letter-spacing: .1em !important; }
}

/* Anchor right-side mega dropdowns to the right so they don't overflow */
.nav-item:nth-last-child(-n+2) .mega-dropdown {
  left: auto !important; right: 0 !important;
}

/* Mega dropdown polish */
.mega-dropdown {
  width: 580px !important;
  border-radius: 0 0 18px 18px !important;
  box-shadow: 0 30px 60px rgba(15,15,26,.18) !important;
  border: 1px solid #f0f0f5;
  border-top: none;
  padding: 28px !important;
  margin-top: 0;
}
/* hover bridge so cursor can travel from link to dropdown without dropping */
.nav-item::after {
  content: ''; position: absolute;
  left: 0; right: 0; top: 100%;
  height: 12px; pointer-events: none;
}
.nav-item:hover::after { pointer-events: auto; }
.mega-col h5 {
  color: #0f0f1a !important;
  font-size: 10px !important; letter-spacing: .22em !important;
  padding-bottom: 10px; border-bottom: 1px solid #ececf2;
  margin-bottom: 14px !important;
}
.mega-col ul li a {
  font-size: 13px !important; font-weight: 500;
  color: #2b2b3a !important;
  transition: .2s !important;
}
.mega-col ul li a:hover { color: #ff3f6c !important; padding-left: 4px; }
.mega-feature { border-radius: 12px !important; height: 160px !important; }
.mega-feature-overlay {
  background: linear-gradient(0deg, rgba(0,0,0,.78), transparent 60%) !important;
}
.mega-feature-overlay h6 {
  font-family: 'Playfair Display', serif !important;
  font-size: 16px !important; font-weight: 800 !important;
}
.mega-feature-overlay span {
  color: #ffd54a !important; font-size: 11px !important;
  font-weight: 800 !important; letter-spacing: .14em;
  text-transform: uppercase;
}
.mega-offer {
  background: #0f0f1a !important;
  border-radius: 10px !important; padding: 14px !important;
  border: none;
}
.mega-offer strong {
  color: #ffd54a !important;
  font-size: 10px !important; letter-spacing: .22em !important;
}
.mega-offer p { color: rgba(255,255,255,.85) !important; font-size: 12px !important; margin-top: 4px; }

/* ============================ TOP BAR V2 ============================ */
.top-bar-v2 {
  background: linear-gradient(90deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
  color: #fff; font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden;
}
.top-bar-v2::before {
  content: ''; position: absolute; left: -50%; top: 0; bottom: 0; width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255,63,108,.08), transparent);
  animation: tb2Shine 6s ease-in-out infinite;
}
@keyframes tb2Shine {
  0%, 100% { transform: translateX(0); opacity: 0; }
  50% { transform: translateX(380%); opacity: 1; }
}
.top-bar-v2-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; gap: 16px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.tb2-left, .tb2-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.tb2-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; font-weight: 600; letter-spacing: .02em;
  font-size: 11.5px; transition: .25s; color: #fff;
}
.tb2-pill:not(.tb2-pill-sale):hover {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22);
  transform: translateY(-1px);
}
.tb2-pill-quiet {
  background: transparent; border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.85);
}
.tb2-icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.tb2-icon-sm {
  width: 13px; height: 13px;
  flex-shrink: 0; opacity: .85;
}
.tb2-sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.18);
  display: inline-block; margin: 0 2px;
}
.tb2-pill-sale {
  background: linear-gradient(135deg, #ff3f6c 0%, #ff905a 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 18px rgba(255,63,108,.4);
  font-weight: 800; letter-spacing: .06em;
  animation: salePulse 2.4s ease-in-out infinite;
}
@keyframes salePulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(255,63,108,.4); }
  50% { box-shadow: 0 8px 24px rgba(255,63,108,.65); }
}
.tb2-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.78); font-weight: 600;
  font-size: 11.5px; letter-spacing: .03em; transition: .2s;
  position: relative; padding: 4px 0;
}
.tb2-link svg { transition: .2s; }
.tb2-link:hover { color: #fff; }
.tb2-link:hover svg { color: #ff3f6c; transform: translateY(-1px); }
.tb2-link-emph {
  color: #0f0f1a !important; font-weight: 800;
  padding: 5px 14px;
  background: linear-gradient(135deg, #ffd54a 0%, #ffb84a 100%);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(255,213,74,.32);
  margin-left: 6px;
}
.tb2-link-emph svg { opacity: 1; }
.tb2-link-emph:hover {
  color: #fff !important; background: #ff3f6c;
  box-shadow: 0 6px 18px rgba(255,63,108,.42);
  transform: translateY(-1px);
}
@media (max-width: 1100px) {
  .tb2-pill-quiet, .tb2-sep { display: none; }
}
@media (max-width: 760px) {
  .tb2-right .tb2-link:not(.tb2-link-emph) { display: none; }
  .tb2-pill-sale + .tb2-pill-quiet { display: none; }
}
@media (max-width: 760px) {
  .top-bar-v2-inner { padding: 8px 14px; }
  .tb2-right { display: none; }
  .tb2-pill { font-size: 11px; padding: 3px 10px; }
}

/* ============================ CIRCULAR CATEGORIES (Meesho/Myntra) ============================ */
.cat-circles-section {
  max-width: 1360px; margin: 0 auto; padding: 40px 32px 10px;
}
.cat-circles-track {
  display: flex; gap: 22px; overflow-x: auto;
  scrollbar-width: none; padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
}
.cat-circles-track::-webkit-scrollbar { display: none; }
.cat-circle {
  flex: 0 0 auto; text-align: center; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center;
  width: 96px; transition: .25s;
}
.cat-circle .cc-img {
  width: 96px; height: 96px; border-radius: 50%;
  overflow: hidden; padding: 3px;
  background: var(--jd-grad-hot);
  box-shadow: 0 8px 24px rgba(255,63,108,.18);
  transition: .35s cubic-bezier(.4,0,.2,1);
}
.cat-circle .cc-img img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%; border: 3px solid #fff; transition: .5s;
}
.cat-circle:hover { transform: translateY(-4px); }
.cat-circle:hover .cc-img { box-shadow: 0 14px 34px rgba(255,63,108,.4); transform: rotate(-4deg); }
.cat-circle:hover .cc-img img { transform: scale(1.1); }
.cat-circle span {
  display: block; margin-top: 12px;
  font-size: 13px; font-weight: 700; color: var(--jd-ink);
  letter-spacing: .02em;
}

/* ============================ CATEGORIES TO BAG (Myntra) ============================ */
.ctb-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.ctb-tile {
  position: relative; overflow: hidden; border-radius: 18px;
  aspect-ratio: 4/5; display: block; background: #f4f4f8;
  transition: .35s cubic-bezier(.4,0,.2,1); box-shadow: var(--jd-shadow-sm);
}
.ctb-tile:hover {
  transform: translateY(-8px); box-shadow: 0 28px 60px rgba(15,15,26,.16);
}
.ctb-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: .8s;
}
.ctb-tile:hover img { transform: scale(1.08); }
.ctb-label {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  padding: 18px 14px; text-align: center;
  border-radius: 12px;
  border-top: 3px solid var(--jd-red);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.ctb-label small {
  display: block; font-size: 10px; font-weight: 800;
  color: var(--jd-mute); letter-spacing: .28em;
}
.ctb-label strong {
  display: block; font-family: var(--font-display);
  font-size: 36px; font-weight: 900; color: var(--jd-red);
  line-height: 1; margin: 4px 0 6px;
  letter-spacing: -.02em;
}
.ctb-label span {
  display: block; font-size: 13px; font-weight: 800;
  color: var(--jd-ink); letter-spacing: .14em; text-transform: uppercase;
}
@media (max-width: 1100px) {
  .ctb-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .ctb-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ctb-label strong { font-size: 28px; }
}

/* ============================ TOP OFFERS (Ajio editorial mix) ============================ */
.top-offers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  grid-template-rows: 280px 220px;
}
.to-tile {
  position: relative; overflow: hidden; border-radius: 16px;
  display: block; box-shadow: var(--jd-shadow-sm); transition: .35s;
  background: #f4f4f8;
}
.to-tile:hover { transform: translateY(-5px); box-shadow: var(--jd-shadow-md); }
.to-big { grid-column: span 2; }
.to-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: .7s;
}
.to-tile:hover img { transform: scale(1.08); }
.to-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}
.to-content {
  position: absolute; inset: 0; padding: 32px;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff; z-index: 2; max-width: 70%;
}
.to-eyebrow {
  display: inline-block; font-size: 10px; font-weight: 900;
  letter-spacing: .28em; background: var(--jd-red);
  padding: 6px 12px; width: fit-content; margin-bottom: 12px;
}
.to-content h3 {
  font-family: var(--font-display);
  font-size: clamp(22px,2vw,34px); font-weight: 900;
  line-height: 1; letter-spacing: -.02em; margin-bottom: 6px;
}
.to-big .to-content h3 { font-size: clamp(32px,3vw,52px); margin-bottom: 10px; }
.to-content p { font-size: 13px; opacity: .9; margin-bottom: 14px; }
.to-btn {
  font-size: 12px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; border-bottom: 2px solid #fff;
  padding-bottom: 4px; width: fit-content;
}

/* ============================ PRODUCT RAIL (horizontal scroller) ============================ */
.product-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr);
  gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 18px; scrollbar-width: thin;
  scrollbar-color: var(--jd-red) #ececf2;
}
.product-rail::-webkit-scrollbar { height: 8px; }
.product-rail::-webkit-scrollbar-track { background: #ececf2; border-radius: 999px; }
.product-rail::-webkit-scrollbar-thumb { background: var(--jd-red); border-radius: 999px; }
.product-rail .p-card { scroll-snap-align: start; }
@media (min-width: 1200px) {
  .product-rail { grid-auto-columns: minmax(0, 1fr); grid-template-columns: repeat(5, 1fr); grid-auto-flow: row; overflow-x: visible; }
}

/* ============================ BRAND SPOTLIGHT (Myntra "Brands to Bag") ============================ */
.brand-spotlight-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.brand-spot {
  position: relative; border-radius: 14px; overflow: hidden;
  background: #f4f4f8; box-shadow: var(--jd-shadow-sm);
  transition: .3s cubic-bezier(.4,0,.2,1); display: block;
  aspect-ratio: 5/6;
}
.brand-spot:hover { transform: translateY(-5px); box-shadow: var(--jd-shadow-lg); }
.brand-spot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; transition: .6s;
}
.brand-spot:hover img { transform: scale(1.08); }
.bs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
}
.bs-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 14px 16px; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  color: #fff;
}
.bs-discount {
  display: inline-block; background: var(--jd-red); color: #fff;
  font-size: 10px; font-weight: 900; letter-spacing: .15em;
  padding: 5px 10px; margin-bottom: 8px;
}
.bs-info strong {
  display: block; font-family: var(--font-display);
  font-size: 18px; font-weight: 800; color: #fff;
  letter-spacing: -.01em; line-height: 1.1;
}
.bs-shop {
  font-size: 11px; font-weight: 800;
  color: rgba(255,255,255,.85); letter-spacing: .08em;
  margin-top: 6px; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 2px; transition: .3s;
}
.brand-spot:hover .bs-shop { color: var(--jd-yellow); border-color: var(--jd-yellow); }

/* ============================ OCCASION GRID (Ajio editorial) ============================ */
.occasion-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.occ-tile {
  position: relative; overflow: hidden; border-radius: 18px;
  aspect-ratio: 3/4; display: block;
  box-shadow: var(--jd-shadow-sm); transition: .35s;
}
.occ-tile:hover { transform: translateY(-5px); box-shadow: var(--jd-shadow-md); }
.occ-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: .7s; filter: saturate(1.05);
}
.occ-tile:hover img { transform: scale(1.1); }
.occ-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.05) 55%, transparent 100%);
  transition: .35s;
}
.occ-tile:hover .occ-overlay {
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.occ-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 16px; color: #fff; z-index: 2;
}
.occ-content span {
  font-size: 9px; font-weight: 900; letter-spacing: .25em;
  background: rgba(255,255,255,.22); backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: 999px;
  display: inline-block; margin-bottom: 8px;
}
.occ-content h3 {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 800; letter-spacing: -.01em; line-height: 1.05;
  margin-bottom: 2px;
}
.occ-content p { font-size: 12px; opacity: .85; }

@media (max-width: 1100px) {
  .top-offers-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 200px; }
  .to-big { grid-column: span 2; }
  .brand-spotlight-grid { grid-template-columns: repeat(3, 1fr); }
  .occasion-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .cat-circle { width: 78px; }
  .cat-circle .cc-img { width: 78px; height: 78px; }
  .cat-circle span { font-size: 12px; }
  .top-offers-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; grid-template-rows: none; }
  .to-big { grid-column: span 1; }
  .brand-spotlight-grid { grid-template-columns: 1fr 1fr; }
  .occasion-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================ legacy promo grid (kept for back-compat) ============================ */
.promo-grid-wrap { display: none; }
.promo-card {
  position: relative; overflow: hidden; border-radius: 22px;
  display: block; box-shadow: var(--jd-shadow-md);
  transition: .4s cubic-bezier(.4,0,.2,1);
}
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--jd-shadow-lg); }
.promo-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: .8s;
}
.promo-card:hover img { transform: scale(1.08); }
.pcard-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,15,26,.85) 0%, rgba(15,15,26,.25) 55%, transparent 100%);
}
.pcard-big .pcard-gradient {
  background: linear-gradient(115deg, rgba(255,63,108,.85) 0%, rgba(142,60,247,.55) 60%, transparent 100%);
}
.pcard-red .pcard-gradient { background: linear-gradient(0deg, rgba(244,51,151,.92), rgba(244,51,151,.25)); }
.pcard-purple .pcard-gradient { background: linear-gradient(0deg, rgba(142,60,247,.92), rgba(142,60,247,.25)); }
.pcard-gold .pcard-gradient { background: linear-gradient(0deg, rgba(255,144,90,.92), rgba(255,213,74,.35)); }
.pcard-content {
  position: absolute; inset: 0; padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; z-index: 2;
}
.pcard-eyebrow {
  font-size: 10px; font-weight: 900; letter-spacing: .25em;
  background: rgba(255,255,255,.22); padding: 6px 12px;
  border-radius: 999px; width: fit-content; margin-bottom: 10px;
  backdrop-filter: blur(8px);
}
.pcard-content h3 {
  font-family: var(--font-display);
  font-size: clamp(28px,2.4vw,40px); font-weight: 900; line-height: 1;
  margin-bottom: 8px; letter-spacing: -.02em;
}
.pcard-big .pcard-content h3 { font-size: clamp(40px,3.6vw,64px); }
.pcard-content p { font-size: 14px; opacity: .92; margin-bottom: 16px; }
.pcard-btn {
  display: inline-flex; align-items: center; padding: 12px 22px;
  background: #fff; color: var(--jd-ink);
  font-weight: 800; font-size: 13px; border-radius: 999px;
  width: fit-content; transition: .3s; letter-spacing: .04em;
}
.promo-card:hover .pcard-btn { background: var(--jd-yellow); transform: translateX(4px); }
.pcard-ribbon {
  position: absolute; top: 18px; right: -32px; transform: rotate(35deg);
  background: var(--jd-yellow); color: var(--jd-ink);
  padding: 6px 40px; font-size: 11px; font-weight: 900;
  letter-spacing: .2em; z-index: 3; box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* ============================ CATEGORY SHOWCASE ============================ */
.category-showcase { max-width: 1360px; margin: 0 auto; padding: 70px 32px; }
.cat-showcase-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px;
  grid-template-rows: 620px;
}
.cs-card {
  position: relative; overflow: hidden; border-radius: 24px;
  display: block; box-shadow: var(--jd-shadow-md); transition: .4s;
}
.cs-card:hover { transform: translateY(-5px); box-shadow: var(--jd-shadow-lg); }
.cs-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: .8s;
}
.cs-card:hover img { transform: scale(1.08); }
.cs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,15,26,.88) 0%, rgba(15,15,26,.2) 50%, transparent 100%);
}
.cs-content {
  position: absolute; inset: 0; padding: 32px; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
}
.cs-count {
  font-size: 11px; font-weight: 800; letter-spacing: .2em;
  background: rgba(255,255,255,.18); padding: 6px 14px;
  border-radius: 999px; width: fit-content; margin-bottom: 10px;
  backdrop-filter: blur(10px);
}
.cs-content h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 38px); font-weight: 800; line-height: 1;
  letter-spacing: -.02em; margin-bottom: 6px;
}
.cs-featured .cs-content h3 { font-size: clamp(34px, 3.2vw, 56px); }
.cs-content p { font-size: 14px; opacity: .9; margin-bottom: 14px; }
.cs-arrow {
  display: inline-flex; align-items: center; padding: 12px 24px;
  background: #fff; color: var(--jd-ink);
  font-weight: 800; font-size: 13px; border-radius: 999px;
  width: fit-content; transition: .3s; letter-spacing: .05em;
}
.cs-card:hover .cs-arrow { background: var(--jd-red); color: #fff; }
.cs-sale-badge {
  position: absolute; top: 24px; left: 24px; z-index: 3;
  background: #fff; color: var(--jd-red); padding: 14px 18px;
  border-radius: 16px; font-size: 11px; font-weight: 800;
  letter-spacing: .12em; box-shadow: var(--jd-shadow-md);
  text-align: center; line-height: 1;
}
.cs-sale-badge strong {
  display: block; font-size: 26px; font-weight: 900;
  color: var(--jd-red); margin: 4px 0;
}
.cs-right-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}

/* ============================ DEAL HERO ============================ */
.deal-section-new { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
.deal-hero {
  position: relative; overflow: hidden; border-radius: 28px;
  min-height: 380px; box-shadow: var(--jd-shadow-lg);
  background: var(--jd-grad-night);
}
.deal-hero-bg { position: absolute; inset: 0; }
.deal-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.deal-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,15,26,.88) 0%, rgba(15,15,26,.55) 60%, rgba(15,15,26,.3) 100%);
}
.deal-hero-content {
  position: relative; z-index: 2; padding: 60px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center;
}
.deal-tag {
  display: inline-flex; align-items: center; padding: 8px 18px;
  background: var(--jd-yellow); color: var(--jd-ink);
  border-radius: 999px; font-size: 11px; font-weight: 900;
  letter-spacing: .2em; margin-bottom: 18px;
}
.dp-countdown {
  display: flex; align-items: center; gap: 8px; margin-bottom: 22px; color: #fff;
}
.dp-countdown > div {
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 14px 16px; border-radius: 14px; min-width: 70px; text-align: center;
}
.dp-countdown strong {
  display: block; font-size: 28px; font-weight: 900;
  font-family: var(--font-display);
}
.dp-countdown small { font-size: 9px; letter-spacing: .2em; opacity: .8; }
.dp-countdown > span { font-size: 22px; font-weight: 800; opacity: .5; }
.deal-left h2 {
  font-family: var(--font-display); color: #fff;
  font-size: clamp(34px, 4vw, 60px); font-weight: 900; line-height: 1;
  letter-spacing: -.02em; margin-bottom: 12px;
}
.deal-left p { color: rgba(255,255,255,.88); font-size: 16px; margin-bottom: 24px; max-width: 480px; }
.deal-left p strong { color: var(--jd-yellow); }
.deal-cta {
  display: inline-block; padding: 18px 38px;
  background: #fff; color: var(--jd-ink); font-weight: 800;
  border-radius: 999px; font-size: 14px; letter-spacing: .06em;
  transition: .3s; box-shadow: 0 14px 40px rgba(0,0,0,.25);
}
.deal-cta:hover { background: var(--jd-yellow); transform: translateY(-3px); }
.deal-right { display: flex; justify-content: center; align-items: center; }
.deal-float-tag {
  width: 220px; height: 220px; border-radius: 50%;
  background: var(--jd-grad-hot); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 25px 60px rgba(255,63,108,.5);
  animation: floaty 4s ease-in-out infinite;
  border: 6px solid rgba(255,255,255,.18);
}
.deal-float-tag strong { font-size: 72px; font-weight: 900; line-height: 1; font-family: var(--font-display); }
.deal-float-tag span { font-size: 20px; font-weight: 800; letter-spacing: .25em; margin-top: 4px; }
@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

/* ============================ PRODUCT CARDS ============================ */
.product-grid-new {
  display: grid; gap: 22px;
  grid-template-columns: repeat(5, 1fr);
}
.p-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--jd-shadow-sm); transition: .35s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.p-card:hover {
  transform: translateY(-8px); box-shadow: var(--jd-shadow-lg);
}
.p-img {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: #f4f4f8;
}
.p-img img {
  width: 100%; height: 100%; object-fit: cover; transition: .8s;
}
.p-card:hover .p-img img { transform: scale(1.08); }
.p-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 6px 12px; border-radius: 8px;
  font-size: 11px; font-weight: 900; letter-spacing: .05em;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.p-tag-red { background: var(--jd-red); color: #fff; }
.p-tag-gold { background: linear-gradient(135deg,#ffd54a,#ff905a); color: #fff; }
.p-tag-green { background: #2ecc71; color: #fff; }
.p-tag-purple { background: var(--jd-purple); color: #fff; }
.p-wish {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.95); border: none;
  font-size: 18px; color: var(--jd-mute); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--jd-shadow-sm); transition: .25s;
}
.p-wish:hover { color: var(--jd-red); transform: scale(1.15); }
.p-info { padding: 16px 16px 18px; }
.p-brand {
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  color: var(--jd-mute); text-transform: uppercase; margin-bottom: 4px;
}
.p-info h4 {
  font-size: 14px; font-weight: 600; color: var(--jd-ink);
  margin-bottom: 8px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.p-rating {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; color: #fff;
  background: #2ecc71; padding: 2px 8px; border-radius: 6px;
  margin-bottom: 10px;
}
.p-price { display: flex; align-items: center; gap: 8px; }
.p-price strong { font-size: 17px; font-weight: 800; color: var(--jd-ink); }
.p-price s { font-size: 13px; color: var(--jd-mute); }

/* ============================ DUAL BANNER (Snitch-style card on image) ============================ */
.dual-wrap {
  max-width: 1360px; margin: 70px auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.dual-banner {
  position: relative; overflow: hidden; border-radius: 20px;
  min-height: 420px; display: block;
  box-shadow: var(--jd-shadow-sm); transition: .4s;
  background: #f4f4f8;
}
.dual-banner:hover { transform: translateY(-6px); box-shadow: var(--jd-shadow-lg); }
.dual-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: .8s;
}
.dual-banner:hover img { transform: scale(1.06); }
.dual-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.05) 100%);
}
.dual-banner-content {
  position: absolute; left: 36px; bottom: 32px; right: 36px; z-index: 2;
  color: #fff;
}
.db-tag {
  display: inline-block; font-size: 10px; font-weight: 900;
  letter-spacing: .28em; color: #fff;
  padding: 6px 14px; background: var(--jd-red);
  margin-bottom: 16px; text-transform: uppercase;
}
.dual-banner-content h3 {
  font-family: var(--font-display); color: #fff;
  font-size: clamp(28px, 3vw, 44px); font-weight: 900; line-height: .98;
  letter-spacing: -.02em; margin-bottom: 8px;
  text-shadow: 0 4px 18px rgba(0,0,0,.35);
}
.dual-banner-content p {
  font-size: 14px; color: rgba(255,255,255,.92); margin-bottom: 20px;
  letter-spacing: .04em;
}
.db-btn {
  display: inline-flex; padding: 13px 28px; background: #fff;
  color: #0f0f1a; font-weight: 800; font-size: 12px;
  border-radius: 0; letter-spacing: .14em; text-transform: uppercase;
  transition: .3s;
}
.dual-banner:hover .db-btn { background: var(--jd-red); color: #fff; }
.db-discount {
  position: absolute; top: 22px; right: 22px; z-index: 3;
  background: var(--jd-red); color: #fff;
  width: 84px; height: 84px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; letter-spacing: .14em;
  box-shadow: 0 12px 30px rgba(255,63,108,.45);
}
.db-discount strong { font-size: 22px; font-weight: 900; line-height: 1; font-family: var(--font-display); }

/* ============================ PRICE BANNERS ============================ */
.price-banner-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.price-banner {
  position: relative; overflow: hidden; border-radius: 20px;
  min-height: 240px; display: flex;
  transition: .35s; box-shadow: var(--jd-shadow-sm);
}
.price-banner:hover { transform: translateY(-6px); box-shadow: var(--jd-shadow-lg); }
.pb1 { background: #fff5ef; }
.pb2 { background: #ffeef3; }
.pb3 { background: #f1ebff; }
.pb4 { background: #eaf3ff; }
.price-banner { border: 1px solid var(--jd-line); }
.pb-left {
  flex: 1; padding: 28px; display: flex; flex-direction: column; justify-content: center;
}
.pb-label {
  font-size: 10px; font-weight: 800; letter-spacing: .22em;
  color: var(--jd-ink); margin-bottom: 4px;
}
.price-banner h3 {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 900;
  color: #0f0f1a; line-height: 1;
}
.price-banner p { font-size: 14px; color: var(--jd-text); margin: 6px 0 16px; font-weight: 600; }
.pb-cta {
  font-size: 12px; font-weight: 800; color: var(--jd-ink);
  border-bottom: 2px solid var(--jd-ink); padding-bottom: 2px;
  width: fit-content; letter-spacing: .06em;
}
.price-banner img {
  width: 45%; object-fit: cover; transition: .8s;
}
.price-banner:hover img { transform: scale(1.08); }

/* ============================ FULL BANNER (split editorial) ============================ */
.full-banner-section { max-width: 1360px; margin: 0 auto; padding: 70px 32px; }
.full-banner {
  position: relative; overflow: hidden; border-radius: 24px;
  background: #0f0f1a; box-shadow: var(--jd-shadow-lg);
  display: grid; grid-template-columns: 1.05fr 1fr; min-height: 520px;
}
.fb-left {
  padding: 70px 60px; color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.fb-tag {
  display: inline-flex; padding: 8px 18px;
  background: var(--jd-yellow); color: #0f0f1a;
  border-radius: 0; font-size: 10px; font-weight: 900;
  letter-spacing: .28em; margin-bottom: 22px; width: fit-content;
}
.fb-left h2 {
  font-family: var(--font-display); font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 900; line-height: .98; letter-spacing: -.02em; margin-bottom: 18px;
}
.fb-left h2 em { font-style: italic; color: var(--jd-yellow); }
.fb-left p {
  font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.78);
  margin-bottom: 28px; max-width: 460px;
}
.fb-btn {
  display: inline-flex; padding: 14px 30px; background: #fff;
  color: #0f0f1a; font-weight: 800; font-size: 12px;
  border-radius: 0; letter-spacing: .14em; text-transform: uppercase;
  transition: .3s; width: fit-content;
}
.fb-btn:hover { background: var(--jd-red); color: #fff; }
.fb-quote {
  position: relative; margin-top: 36px;
  padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.12);
  max-width: 480px;
}
.fb-quote-mark {
  position: absolute; top: 6px; left: -6px;
  font-family: var(--font-display);
  font-size: 80px; font-weight: 900;
  color: var(--jd-yellow); line-height: 1;
  opacity: .55;
}
.fb-quote p {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500; font-style: italic;
  color: rgba(255,255,255,.92); line-height: 1.5;
  letter-spacing: -.005em; padding-left: 22px;
  margin-bottom: 12px;
}
.fb-quote-author {
  display: inline-block; padding-left: 22px;
  font-size: 11px; font-weight: 800;
  color: var(--jd-yellow); letter-spacing: .22em; text-transform: uppercase;
}

.fb-right {
  position: relative; overflow: hidden;
  background: #1c1c2e;
}
.fb-img-main {
  position: absolute; top: 40px; right: 40px;
  width: 62%; height: calc(100% - 80px); object-fit: cover;
  border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.fb-img-sub {
  position: absolute; bottom: 60px; left: 30px;
  width: 42%; height: 45%; object-fit: cover;
  border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,.5);
  border: 4px solid #0f0f1a;
}
.fb-badge {
  position: absolute; top: 30px; left: 28px; z-index: 3;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--jd-red); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px rgba(255,63,108,.5);
  border: 4px solid #fff;
}
.fb-badge strong { font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.fb-badge span { font-family: var(--font-display); font-size: 36px; font-weight: 900; line-height: 1; margin: 2px 0; }
.fb-badge small { font-size: 11px; font-weight: 800; letter-spacing: .25em; }

@media (max-width: 880px) {
  .full-banner { grid-template-columns: 1fr; }
  .fb-left { padding: 50px 32px; }
  .fb-right { min-height: 380px; }
  .fb-img-main { width: 70%; height: calc(100% - 60px); top: 30px; right: 30px; }
  .fb-img-sub { width: 50%; height: 40%; bottom: 40px; left: 24px; }
  .fb-stats { gap: 18px; }
}

/* ============================ TRIPLE PROMO ============================ */
.triple-new {
  max-width: 1360px; margin: 70px auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.triple-new-card {
  position: relative; overflow: hidden; border-radius: 20px;
  min-height: 420px; box-shadow: var(--jd-shadow-sm); transition: .4s;
}
.triple-new-card:hover { transform: translateY(-6px); box-shadow: var(--jd-shadow-lg); }
.triple-new-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: .8s;
}
.triple-new-card:hover img { transform: scale(1.1); }
.tn-overlay, .tn-overlay-blue, .tn-overlay-red, .tn-overlay-purple {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
}
.tn-content {
  position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2;
  color: #fff;
}
.tn-tag {
  display: inline-block; font-size: 10px; font-weight: 900;
  letter-spacing: .25em; color: #fff;
  padding: 5px 12px; background: var(--jd-red);
  margin-bottom: 12px; text-transform: uppercase;
}
.tn-content h3 {
  font-family: var(--font-display); color: #fff;
  font-size: 26px; font-weight: 900; letter-spacing: -.02em;
  line-height: 1; margin-bottom: 6px;
  text-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.tn-content p { font-size: 13px; color: rgba(255,255,255,.9); margin-bottom: 14px; }
.tn-btn {
  display: inline-flex; padding: 11px 22px; background: #fff;
  color: #0f0f1a; font-weight: 800; font-size: 11px;
  border-radius: 0; width: fit-content; letter-spacing: .14em;
  text-transform: uppercase; transition: .3s;
}
.triple-new-card:hover .tn-btn { background: var(--jd-red); color: #fff; }

/* ============================ LOOKBOOK ============================ */
.lookbook-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 320px 320px;
}
.lb-card {
  position: relative; overflow: hidden; border-radius: 22px;
  display: block; box-shadow: var(--jd-shadow-md); transition: .4s;
}
.lb-card:hover { transform: translateY(-5px); box-shadow: var(--jd-shadow-lg); }
.lb-tall { grid-row: span 2; }
.lb-wide { grid-column: span 2; }
.lb-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: .8s; }
.lb-card:hover img { transform: scale(1.1); }
.lb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,15,26,.85), transparent 60%);
}
.lb-content {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  color: #fff; z-index: 2;
}
.lb-content span {
  font-size: 10px; font-weight: 900; letter-spacing: .25em;
  background: var(--jd-red); padding: 5px 12px;
  border-radius: 999px; display: inline-block; margin-bottom: 10px;
}
.lb-content h3 {
  font-family: var(--font-display);
  font-size: clamp(22px,2vw,32px); font-weight: 800; line-height: 1.05;
  letter-spacing: -.02em;
}

/* ============================ APP BANNER ============================ */
.app-banner-wrap { max-width: 1360px; margin: 0 auto; padding: 70px 32px; }
.app-banner-new {
  position: relative; overflow: hidden; border-radius: 28px;
  background: #0f0f1a;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px;
  padding: 60px; align-items: center;
  box-shadow: var(--jd-shadow-lg);
  border: 1px solid #1c1c2e;
}
.app-banner-bg {
  position: absolute; inset: 0; opacity: .15; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.4) 1px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.4) 1px, transparent 2px);
  background-size: 80px 80px, 60px 60px;
}
.app-banner-text { position: relative; z-index: 2; color: #fff; }
.app-eyebrow {
  display: inline-flex; padding: 8px 18px; background: rgba(255,255,255,.22);
  border-radius: 999px; font-size: 11px; font-weight: 900;
  letter-spacing: .22em; margin-bottom: 18px; backdrop-filter: blur(10px);
}
.app-banner-text h2 {
  font-family: var(--font-display); font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 900; line-height: 1; letter-spacing: -.02em; margin-bottom: 14px;
}
.app-banner-text p { font-size: 16px; opacity: .92; margin-bottom: 26px; max-width: 480px; line-height: 1.6; }
.app-banner-text p strong { color: var(--jd-yellow); }
.app-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.app-download-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px; background: #0f0f1a; color: #fff;
  border-radius: 14px; transition: .3s;
}
.app-download-btn:hover { transform: translateY(-3px); background: var(--jd-ink); }
.app-download-btn span { display: flex; flex-direction: column; line-height: 1.1; }
.app-download-btn small { font-size: 9px; letter-spacing: .14em; opacity: .8; }
.app-download-btn strong { font-size: 14px; font-weight: 800; }
.app-banner-phone {
  position: relative; z-index: 2;
  border-radius: 22px; overflow: hidden;
  box-shadow: var(--jd-shadow-lg); transform: rotate(-3deg);
}
.app-banner-phone img { width: 100%; display: block; }

/* ============================ BRANDS (logo-plate style) ============================ */
.brands-grid-new {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.brand-card-new {
  background: #fff; border: 1px solid var(--jd-line);
  height: 130px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: .3s; cursor: pointer; position: relative; overflow: hidden;
}
.brand-card-new::before {
  content: ''; position: absolute; inset: 0;
  background: #0f0f1a; transform: translateY(100%); transition: .35s cubic-bezier(.4,0,.2,1);
}
.brand-card-new:hover { transform: translateY(-4px); box-shadow: var(--jd-shadow-md); border-color: #0f0f1a; }
.brand-card-new:hover::before { transform: translateY(0); }
.brand-card-new:hover .bc-logo, .brand-card-new:hover .bc-mark, .brand-card-new:hover .bc-name { color: #fff; }
.bc-logo {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  color: #0f0f1a; transition: .35s;
}
.bc-mark {
  font-family: var(--font-display); font-size: 34px;
  font-weight: 900; line-height: 1; letter-spacing: -.04em;
  color: #0f0f1a; transition: .35s;
}
.bc-mark.bc-script {
  font-style: italic; font-size: 32px;
  background: linear-gradient(135deg, #0f0f1a 0%, #0f0f1a 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-card-new:hover .bc-mark.bc-script {
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bc-name {
  font-size: 9px; font-weight: 800;
  letter-spacing: .35em; color: var(--jd-mute);
  margin-top: 6px; transition: .35s;
}
.brand-card-new:hover .bc-name { color: var(--jd-yellow); }

/* ============================ NEWSLETTER ============================ */
.newsletter-wrap { max-width: 1360px; margin: 0 auto; padding: 70px 32px; }
.newsletter-new-inner {
  position: relative; overflow: hidden; border-radius: 28px;
  background: var(--jd-grad-night); padding: 80px 60px;
  text-align: center; box-shadow: var(--jd-shadow-lg);
}
.newsletter-deco, .newsletter-deco-2 {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 1;
}
.newsletter-deco {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,63,108,.45), transparent 70%);
  top: -120px; left: -120px;
}
.newsletter-deco-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(142,60,247,.45), transparent 70%);
  bottom: -160px; right: -160px;
}
.newsletter-content-new { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; color: #fff; }
.nl-eyebrow {
  display: inline-flex; padding: 8px 18px; background: rgba(255,255,255,.16);
  border-radius: 999px; font-size: 11px; font-weight: 900;
  letter-spacing: .22em; margin-bottom: 18px; backdrop-filter: blur(10px);
}
.newsletter-content-new h2 {
  font-family: var(--font-display); font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 900; letter-spacing: -.02em; margin-bottom: 14px; line-height: 1.05;
}
.newsletter-content-new > p { font-size: 16px; opacity: .88; margin-bottom: 32px; line-height: 1.6; }
.newsletter-form-new {
  display: flex; gap: 12px; max-width: 520px; margin: 0 auto;
  background: #fff; padding: 8px; border-radius: 999px;
  box-shadow: 0 14px 50px rgba(0,0,0,.3);
}
.newsletter-form-new input {
  flex: 1; padding: 14px 22px; border: none; outline: none;
  background: transparent; font-size: 14px; color: var(--jd-ink);
}
.newsletter-form-new button {
  padding: 14px 30px; border: none; cursor: pointer;
  background: var(--jd-grad-hot); color: #fff;
  font-weight: 800; font-size: 13px; border-radius: 999px;
  letter-spacing: .06em; transition: .3s;
}
.newsletter-form-new button:hover { transform: scale(1.04); box-shadow: 0 10px 30px rgba(255,63,108,.5); }
.nl-note { margin-top: 18px; font-size: 12px; opacity: .7; letter-spacing: .04em; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1100px) {
  .product-grid-new { grid-template-columns: repeat(4,1fr); }
  .promo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 280px; grid-template-rows: none; }
  .cat-showcase-grid { grid-template-columns: 1fr; grid-template-rows: 460px 460px; }
  .price-banner-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid-new { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .hero-mega-slide img { width: 100%; opacity: .55; }
  .hero-mega-overlay { background: linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.6) 100%); }
}
@media (max-width: 760px) {
  .hero-mega { height: 70vh; min-height: 460px; }
  .hero-mega-content { padding: 0 28px; }
  .hero-mega-dots { left: 28px; }
  .hero-mega-prev, .hero-mega-next { width: 44px; height: 44px; font-size: 24px; }
  .section-wrap, .promo-grid-wrap, .category-showcase, .deal-section-new,
  .full-banner-section, .app-banner-wrap, .newsletter-wrap, .triple-new, .dual-wrap {
    padding: 40px 18px;
  }
  .product-grid-new { grid-template-columns: 1fr 1fr; gap: 14px; }
  .promo-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .dual-wrap, .triple-new, .price-banner-grid, .brands-grid-new {
    grid-template-columns: 1fr;
  }
  .dual-banner-content { left: 16px; right: 16px; bottom: 16px; padding: 18px 20px; }
  .dual-banner { min-height: 360px; }
  .triple-new-card { min-height: 360px; }
  .tn-content { left: 14px; right: 14px; bottom: 14px; padding: 16px 18px; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .lb-tall, .lb-wide { grid-row: auto; grid-column: span 2; }
  .deal-hero-content, .app-banner-new {
    grid-template-columns: 1fr; padding: 40px 28px; text-align: center;
  }
  .deal-right { display: none; }
  .full-banner-content { padding: 50px 28px; }
  .newsletter-form-new { flex-direction: column; border-radius: 22px; padding: 14px; }
  .newsletter-form-new button, .newsletter-form-new input { width: 100%; border-radius: 14px; text-align: center; }
  .dp-countdown { justify-content: center; flex-wrap: wrap; }
  .pcard-content h3 { font-size: 28px; }
}
/* =========================================================
   JD FASHIONS — INNER PAGES (matches home design system)
   Palette: #0f0f1a · #ff3f6c · #ffd54a · #fafafc
   ========================================================= */

:root {
  --jdp-red: #ff3f6c;
  --jdp-dark: #0f0f1a;
  --jdp-text: #2b2b3a;
  --jdp-mute: #6b6b7e;
  --jdp-line: #ececf2;
  --jdp-bg: #fafafc;
}

body { background: var(--jdp-bg); }

/* ============================ BREADCRUMB ============================ */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--jdp-mute);
  padding: 22px 0; letter-spacing: .04em;
}
.breadcrumb a { color: var(--jdp-mute); transition: .2s; font-weight: 600; }
.breadcrumb a:hover { color: var(--jdp-red); }
.breadcrumb-current { color: var(--jdp-dark); font-weight: 700; }

/* ============================ PROMO BANNER ============================ */
.promo-banner {
  border-radius: 0; padding: 14px 20px; text-align: center;
  margin-bottom: 24px; background: var(--jdp-dark);
  border-left: 4px solid var(--jdp-red);
}
.promo-banner p { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .04em; }
.promo-banner strong { font-weight: 800; color: var(--jdp-red); }

/* ============================ PRODUCTS PAGE ============================ */
.products-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: 18px 22px; margin-bottom: 24px;
  background: #fff; border: 1px solid var(--jdp-line);
  border-radius: 14px; box-shadow: 0 4px 14px rgba(15,15,26,.04);
}
.toolbar-left { display: flex; align-items: center; gap: 16px; }
.filter-toggle-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border: 2px solid var(--jdp-dark);
  border-radius: 0; font-size: 11px; font-weight: 800;
  color: var(--jdp-dark); background: #fff; cursor: pointer;
  transition: .25s; letter-spacing: .14em; text-transform: uppercase;
}
.filter-toggle-btn:hover { background: var(--jdp-dark); color: #fff; }
.products-count { font-size: 13px; color: var(--jdp-mute); font-weight: 600; }
.sort-select {
  padding: 10px 16px; border: 1px solid var(--jdp-line); border-radius: 8px;
  font-size: 13px; font-weight: 600; background: #fff;
  color: var(--jdp-dark); outline: none; cursor: pointer;
  transition: .2s;
}
.sort-select:focus, .sort-select:hover { border-color: var(--jdp-red); }

.products-layout { display: flex; gap: 24px; }

/* Filters Sidebar */
.filters-sidebar {
  width: 280px; flex-shrink: 0; background: #fff;
  border-radius: 14px; padding: 24px;
  border: 1px solid var(--jdp-line);
  box-shadow: 0 4px 14px rgba(15,15,26,.04);
  height: fit-content; position: sticky; top: 140px; display: none;
}
@media (min-width: 1024px) { .filters-sidebar { display: block; } }
.filters-sidebar.filters-open {
  display: block; position: fixed; top: 0; left: 0; bottom: 0;
  width: 320px; z-index: 100; border-radius: 0; overflow-y: auto;
}
.filter-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--jdp-dark);
}
.filter-header h3 {
  font-family: var(--font-display); font-size: 18px;
  font-weight: 800; color: var(--jdp-dark); letter-spacing: -.01em;
}
.filter-clear {
  font-size: 11px; color: var(--jdp-red); font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; background: none; border: none;
}
.filter-clear:hover { text-decoration: underline; }
.filter-group { padding: 18px 0; border-top: 1px solid var(--jdp-line); }
.filter-group:first-of-type { border-top: none; }
.filter-group-title {
  font-size: 11px; font-weight: 800; color: var(--jdp-dark);
  margin-bottom: 14px; letter-spacing: .14em; text-transform: uppercase;
}
.filter-checkbox {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--jdp-text);
  padding: 6px 0; cursor: pointer; transition: .2s; font-weight: 500;
}
.filter-checkbox:hover { color: var(--jdp-red); }
.filter-checkbox input { accent-color: var(--jdp-red); width: 16px; height: 16px; cursor: pointer; }
.filter-count { color: var(--jdp-mute); font-size: 11px; }

.size-filter-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-filter-btn {
  padding: 8px 14px; border: 1px solid var(--jdp-line); border-radius: 0;
  font-size: 12px; font-weight: 700; background: #fff;
  color: var(--jdp-dark); cursor: pointer; transition: .2s;
  min-width: 42px; letter-spacing: .04em;
}
.size-filter-btn:hover, .size-filter-btn.active {
  border-color: var(--jdp-dark); background: var(--jdp-dark); color: #fff;
}

.color-filter-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.color-swatch {
  display: inline-block; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer; transition: .25s;
  border: 2px solid #fff; box-shadow: 0 0 0 1px var(--jdp-line); box-sizing: border-box;
}
.color-swatch:hover, .color-swatch.active {
  box-shadow: 0 0 0 2px var(--jdp-red); transform: scale(1.1);
}

/* Products Grid Area */
.products-grid-area { flex: 1; min-width: 0; }
.products-page-grid {
  display: grid !important;
  grid-template-columns: repeat(2,1fr) !important; gap: 18px;
}
@media (min-width: 640px) { .products-page-grid { grid-template-columns: repeat(3,1fr) !important; } }
@media (min-width: 1280px) { .products-page-grid { grid-template-columns: repeat(4,1fr) !important; } }

/* ============================ PRODUCT DETAIL ============================ */
.product-detail-layout {
  display: grid; grid-template-columns: 1fr; gap: 40px; padding: 24px 0;
}
@media (min-width: 768px) { .product-detail-layout { grid-template-columns: 1.05fr 1fr; gap: 48px; } }

/* Image Gallery */
.product-gallery { display: flex; flex-direction: column-reverse; gap: 14px; }
@media (min-width: 768px) { .product-gallery { flex-direction: row; } }
.gallery-thumbs { display: flex; gap: 10px; }
@media (min-width: 768px) { .gallery-thumbs { flex-direction: column; } }
.gallery-thumb {
  width: 72px; height: 90px; border-radius: 8px; overflow: hidden;
  cursor: pointer; border: 2px solid var(--jdp-line);
  transition: .25s; flex-shrink: 0; background: #f4f4f8;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--jdp-dark); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main {
  flex: 1; border-radius: 14px; overflow: hidden;
  aspect-ratio: 3/4; background: #f4f4f8;
  border: 1px solid var(--jdp-line);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-main:hover img { transform: scale(1.06); }

/* Product Detail Info */
.product-detail-info { padding: 8px 0; }
.detail-brand {
  font-size: 11px; font-weight: 800; color: var(--jdp-red);
  text-transform: uppercase; letter-spacing: .2em;
}
.detail-name {
  font-family: var(--font-display); font-size: 30px;
  font-weight: 800; color: var(--jdp-dark);
  margin: 10px 0 12px; letter-spacing: -.02em; line-height: 1.1;
}
@media (min-width: 640px) { .detail-name { font-size: 36px; } }
.detail-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.detail-rating .rating-badge {
  font-size: 12px; padding: 4px 10px; background: #2ecc71; color: #fff;
  border-radius: 6px; font-weight: 700;
}
.detail-price-row { display: flex; align-items: baseline; gap: 12px; margin: 18px 0; flex-wrap: wrap; }
.detail-current {
  font-size: 32px; font-weight: 900; color: var(--jdp-dark);
  font-family: var(--font-display); letter-spacing: -.01em;
}
.detail-original { font-size: 17px; color: var(--jdp-mute); text-decoration: line-through; }
.detail-discount { font-size: 14px; font-weight: 800; color: var(--jdp-red); }
.detail-tax { font-size: 12px; color: var(--jdp-mute); }
.detail-divider { border: none; border-top: 1px solid var(--jdp-line); margin: 22px 0; }

.detail-section-title {
  font-size: 12px; font-weight: 800; color: var(--jdp-dark);
  margin-bottom: 14px; letter-spacing: .14em; text-transform: uppercase;
}
.size-options { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.size-option {
  padding: 12px 22px; border: 2px solid var(--jdp-line); border-radius: 0;
  font-size: 13px; font-weight: 700; cursor: pointer; transition: .25s;
  background: #fff; color: var(--jdp-dark); min-width: 52px; letter-spacing: .04em;
}
.size-option:hover, .size-option.active {
  border-color: var(--jdp-dark); background: var(--jdp-dark); color: #fff;
}
.color-options { display: flex; gap: 12px; margin-bottom: 24px; }
.color-option {
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  border: 3px solid #fff; box-shadow: 0 0 0 1px var(--jdp-line);
  transition: .25s;
}
.color-option:hover, .color-option.active {
  box-shadow: 0 0 0 2px var(--jdp-red); transform: scale(1.1);
}

/* Action Buttons */
.detail-actions { display: flex; gap: 12px; margin: 24px 0; flex-wrap: wrap; }
.btn-add-cart {
  flex: 1; min-width: 180px; padding: 16px 24px;
  background: #fff; color: var(--jdp-dark);
  font-weight: 800; font-size: 13px; border-radius: 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 2px solid var(--jdp-dark); cursor: pointer;
  letter-spacing: .14em; text-transform: uppercase; transition: .3s;
}
.btn-add-cart:hover { background: var(--jdp-dark); color: #fff; }
.btn-buy-now {
  flex: 1; min-width: 180px; padding: 16px 24px;
  background: var(--jdp-red); color: #fff;
  font-weight: 800; font-size: 13px; border-radius: 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 2px solid var(--jdp-red); cursor: pointer;
  letter-spacing: .14em; text-transform: uppercase; transition: .3s;
  box-shadow: 0 14px 30px rgba(255,63,108,.3);
}
.btn-buy-now:hover { background: #e02b58; border-color: #e02b58; transform: translateY(-2px); }
.btn-wishlist-detail {
  width: 54px; height: 54px; border: 2px solid var(--jdp-line); border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--jdp-mute); transition: .25s; cursor: pointer; background: #fff;
}
.btn-wishlist-detail:hover { border-color: var(--jdp-red); color: var(--jdp-red); }

/* Delivery Info */
.delivery-info {
  margin: 24px 0; padding: 20px; background: #fff;
  border-radius: 14px; border: 1px solid var(--jdp-line);
}
.delivery-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--jdp-text); padding: 8px 0; font-weight: 500;
}
.delivery-row svg { color: var(--jdp-red); flex-shrink: 0; }

/* Product Tabs */
.product-tabs { margin-top: 40px; }
.tabs-header {
  display: flex; border-bottom: 2px solid var(--jdp-line);
  gap: 0; overflow-x: auto;
}
.tab-btn {
  padding: 14px 24px; font-size: 12px; font-weight: 800;
  color: var(--jdp-mute); border: none; background: none;
  cursor: pointer; border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: .25s;
  letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
}
.tab-btn.active, .tab-btn:hover { color: var(--jdp-dark); border-bottom-color: var(--jdp-red); }
.tab-content {
  padding: 24px 0; font-size: 14px; color: var(--jdp-text);
  line-height: 1.8; display: none;
}
.tab-content.active { display: block; }

/* Reviews on detail */
.review-card {
  padding: 20px 0; border-bottom: 1px solid var(--jdp-line);
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--jdp-red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; font-family: var(--font-display);
}
.review-name { font-weight: 700; font-size: 14px; color: var(--jdp-dark); }
.review-date { font-size: 11px; color: var(--jdp-mute); letter-spacing: .04em; }
.review-text { font-size: 14px; color: var(--jdp-text); line-height: 1.7; }

/* ============================ CART PAGE ============================ */
.cart-layout {
  display: grid; grid-template-columns: 1fr; gap: 24px; padding: 24px 0;
}
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 2fr 1fr; gap: 32px; } }

.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  display: flex; gap: 18px; padding: 20px;
  background: #fff; border-radius: 14px;
  border: 1px solid var(--jdp-line); transition: .25s;
}
.cart-item:hover { border-color: var(--jdp-dark); box-shadow: 0 8px 24px rgba(15,15,26,.06); }
.cart-item-img {
  width: 96px; height: 128px; border-radius: 10px;
  overflow: hidden; flex-shrink: 0; background: #f4f4f8;
}
@media (min-width: 640px) { .cart-item-img { width: 110px; height: 140px; } }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-brand {
  font-size: 11px; font-weight: 800; color: var(--jdp-red);
  text-transform: uppercase; letter-spacing: .15em;
}
.cart-item-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--jdp-dark); margin-top: 4px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  letter-spacing: -.01em;
}
.cart-item-meta { font-size: 12px; color: var(--jdp-mute); margin-top: 6px; }
.cart-item-price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 10px; }
.cart-item-price-row strong { font-size: 18px; font-weight: 800; color: var(--jdp-dark); }
.cart-item-price-row s { font-size: 13px; color: var(--jdp-mute); }
.cart-qty-controls { display: flex; align-items: center; gap: 14px; margin-top: 14px; }
.qty-group {
  display: flex; align-items: center;
  border: 1px solid var(--jdp-line); border-radius: 8px;
  background: #fff;
}
.qty-btn {
  padding: 8px 14px; font-size: 16px; font-weight: 700;
  background: none; border: none; cursor: pointer;
  color: var(--jdp-dark); transition: .2s;
}
.qty-btn:hover { background: var(--jdp-dark); color: #fff; }
.qty-value { padding: 0 14px; font-size: 14px; font-weight: 700; }
.cart-remove-btn {
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--jdp-red);
  cursor: pointer; background: none; border: none;
  padding: 6px 10px; transition: .2s;
}
.cart-remove-btn:hover { color: var(--jdp-dark); }

/* Order Summary */
.order-summary {
  background: #fff; border-radius: 14px;
  border: 1px solid var(--jdp-line);
  padding: 26px; height: fit-content;
  position: sticky; top: 140px;
}
.order-summary h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  color: var(--jdp-dark); margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 2px solid var(--jdp-dark);
  letter-spacing: -.01em;
}
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 14px; padding: 8px 0;
}
.summary-label { color: var(--jdp-mute); font-weight: 500; }
.summary-value { color: var(--jdp-dark); font-weight: 600; }
.summary-green { color: #2ecc71; font-weight: 700; }
.summary-divider { border: none; border-top: 1px dashed var(--jdp-line); margin: 12px 0; }
.summary-total {
  font-weight: 800; font-size: 18px;
  color: var(--jdp-dark); font-family: var(--font-display);
}
.btn-checkout {
  width: 100%; margin-top: 22px; padding: 16px;
  background: var(--jdp-red); color: #fff;
  font-weight: 800; font-size: 13px; border-radius: 0;
  border: none; cursor: pointer; transition: .3s;
  letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(255,63,108,.3);
}
.btn-checkout:hover { background: #e02b58; transform: translateY(-2px); }
.summary-savings {
  text-align: center; font-size: 12px; color: var(--jdp-mute);
  margin-top: 14px; padding: 10px;
  background: #fff5ef; border-radius: 8px; font-weight: 600;
}

/* Empty state */
.empty-state { text-align: center; padding: 100px 20px; }
.empty-state svg { margin: 0 auto 20px; color: var(--jdp-mute); width: 64px; height: 64px; }
.empty-state h2 {
  font-family: var(--font-display); font-size: 32px;
  font-weight: 800; color: var(--jdp-dark); letter-spacing: -.02em;
}
.empty-state p { color: var(--jdp-mute); margin-top: 10px; font-size: 15px; }
.empty-state a {
  display: inline-block; margin-top: 28px;
  padding: 16px 36px; background: var(--jdp-dark);
  color: #fff; font-weight: 800; font-size: 13px;
  border-radius: 0; transition: .3s;
  letter-spacing: .14em; text-transform: uppercase;
}
.empty-state a:hover { background: var(--jdp-red); transform: translateY(-2px); }

/* ============================ LOGIN PAGE ============================ */
.login-wrapper {
  display: flex; justify-content: center; align-items: center;
  padding: 60px 16px; min-height: 70vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,63,108,.05), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15,15,26,.04), transparent 50%);
}
.login-card {
  max-width: 460px; width: 100%; background: #fff;
  border-radius: 18px; box-shadow: 0 24px 60px rgba(15,15,26,.10);
  padding: 32px; border: 1px solid var(--jdp-line);
}
@media (min-width: 640px) { .login-card { padding: 44px; } }

.role-toggle {
  display: flex; border-radius: 0; overflow: hidden;
  border: 2px solid var(--jdp-dark); margin-bottom: 28px;
}
.role-btn {
  flex: 1; padding: 12px; font-size: 11px; font-weight: 800;
  text-align: center; cursor: pointer; transition: .25s;
  border: none; background: #fff; color: var(--jdp-dark);
  letter-spacing: .14em; text-transform: uppercase;
}
.role-btn.active { background: var(--jdp-dark); color: #fff; }

.login-brand { text-align: center; margin-bottom: 28px; }
.login-brand .logo-icon {
  margin: 0 auto 14px; width: 72px; height: 72px;
  background: transparent; padding: 0;
}
.login-brand h2 {
  font-size: 26px; font-family: var(--font-display);
  font-weight: 800; color: var(--jdp-dark); letter-spacing: -.02em;
}
.login-brand p {
  font-size: 12px; color: var(--jdp-mute);
  margin-top: 6px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}

.login-form { display: flex; flex-direction: column; gap: 18px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 800;
  color: var(--jdp-dark); margin-bottom: 8px;
  letter-spacing: .14em; text-transform: uppercase;
}
.form-group input {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--jdp-line); border-radius: 10px;
  background: #fafafc; font-size: 14px; outline: none;
  transition: .2s; color: var(--jdp-dark); font-weight: 500;
}
.form-group input:focus {
  border-color: var(--jdp-red); background: #fff;
  box-shadow: 0 0 0 3px rgba(255,63,108,.1);
}
.password-wrapper { position: relative; }
.password-toggle {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(8px);
  background: none; border: none; color: var(--jdp-mute); cursor: pointer;
}
.password-toggle:hover { color: var(--jdp-red); }
.btn-login {
  width: 100%; padding: 16px;
  background: var(--jdp-red); color: #fff;
  font-weight: 800; font-size: 13px; border-radius: 0;
  border: none; cursor: pointer; transition: .3s;
  letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(255,63,108,.3); margin-top: 6px;
}
.btn-login:hover { background: #e02b58; transform: translateY(-2px); }
.login-toggle {
  text-align: center; font-size: 13px;
  color: var(--jdp-mute); margin-top: 24px; font-weight: 500;
}
.login-toggle button {
  background: none; border: none; color: var(--jdp-red);
  font-weight: 800; cursor: pointer; letter-spacing: .04em;
}
.login-toggle button:hover { text-decoration: underline; }

/* ============================ PRODUCT CARDS (override styles.css) ============================ */
.product-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(15,15,26,.05);
  transition: .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  border: 1px solid var(--jdp-line);
}
.product-card:hover {
  transform: translateY(-6px); border-color: var(--jdp-dark);
  box-shadow: 0 22px 50px rgba(15,15,26,.12);
}
.product-img-wrapper {
  position: relative; aspect-ratio: 4/5; overflow: hidden; background: #f4f4f8;
}
.product-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover; transition: .7s;
}
.product-card:hover .product-img-wrapper img { transform: scale(1.08); }
.product-img-overlay { display: none; }
.product-actions {
  position: absolute; left: 0; right: 0; bottom: -60px;
  display: flex; gap: 6px; padding: 10px;
  background: rgba(255,255,255,.96); transition: .3s;
}
.product-card:hover .product-actions { bottom: 0; }
.product-action-cart {
  flex: 1; padding: 10px; background: var(--jdp-dark); color: #fff;
  border: none; border-radius: 6px; font-size: 11px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: .25s;
}
.product-action-cart:hover { background: var(--jdp-red); }
.product-action-wish {
  width: 38px; height: 38px; border: 1px solid var(--jdp-line);
  background: #fff; border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--jdp-mute); transition: .25s;
}
.product-action-wish:hover { color: var(--jdp-red); border-color: var(--jdp-red); }
.product-badges {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: flex; flex-direction: column; gap: 6px;
}
.badge {
  padding: 5px 10px; font-size: 10px; font-weight: 900;
  letter-spacing: .08em; border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.badge-trending { background: var(--jdp-red); color: #fff; }
.badge-discount { background: var(--jdp-red); color: #fff; }
.badge-new { background: #2ecc71; color: #fff; }
.badge-bestseller { background: var(--jdp-dark); color: #fff; }
.badge-premium { background: linear-gradient(135deg,#ffd54a,#ff905a); color: #fff; }
.product-wishlist-btn {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.95); border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--jdp-mute); cursor: pointer; transition: .25s;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.product-wishlist-btn:hover { color: var(--jdp-red); transform: scale(1.12); }
.product-info { padding: 16px; }
.product-brand {
  font-size: 11px; font-weight: 800; color: var(--jdp-mute);
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 4px;
}
.product-name {
  font-size: 14px; font-weight: 600; color: var(--jdp-dark);
  margin-bottom: 8px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; overflow: hidden;
}
.product-rating {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 8px;
}
.product-rating .rating-badge {
  font-size: 10px; padding: 2px 8px; background: #2ecc71; color: #fff;
  border-radius: 4px; font-weight: 700;
}
.rating-count { font-size: 11px; color: var(--jdp-mute); }
.product-price { display: flex; align-items: center; gap: 8px; }
.price-current { font-size: 17px; font-weight: 800; color: var(--jdp-dark); }
.price-original { font-size: 13px; color: var(--jdp-mute); text-decoration: line-through; }
.product-offer {
  font-size: 11px; color: var(--jdp-red); font-weight: 700;
  margin-top: 6px; letter-spacing: .04em;
}

/* Page hero band (Myntra-style category page hero) */
.page-hero {
  background: var(--jdp-dark); color: #fff;
  padding: 36px 0; margin-bottom: 18px;
  border-bottom: 4px solid var(--jdp-red);
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px);
  font-weight: 900; letter-spacing: -.02em; text-align: center;
}
.page-hero p {
  text-align: center; font-size: 13px;
  color: rgba(255,255,255,.7); margin-top: 6px;
  letter-spacing: .04em;
}
