/* ============================================================
   DEALVOLT — PURE STATIC CSS STYLESHEET
   100% Shared-Hosting Compatible | Complete Design System
   ============================================================ */

:root {
  --dv-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --dv-font-size: 14px;
  --dv-line-height: 1.45;

  --dv-primary: #2874f0;
  --dv-primary-dark: #1d5ec4;
  --dv-accent: #fb641b;
  --dv-accent-dark: #e04e06;
  --dv-success: #388e3c;
  --dv-warning: #f5a623;

  --dv-page: #f1f3f6;
  --dv-surface: #ffffff;
  --dv-surface-muted: #f8f9fb;

  --dv-text: #212121;
  --dv-text-muted: #6b7280;
  --dv-text-subtle: #7b7f8a;

  --dv-border: #e5e7eb;
  --dv-border-soft: #edf0f5;

  --dv-radius-sm: 4px;
  --dv-radius-md: 8px;
  --dv-radius-lg: 12px;
  --dv-radius-xl: 16px;

  --dv-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --dv-shadow-md: 0 8px 20px rgba(15, 23, 42, 0.08);
  --dv-shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.14);

  --dv-space-1: 4px;
  --dv-space-2: 8px;
  --dv-space-3: 12px;
  --dv-space-4: 16px;
  --dv-space-5: 20px;
  --dv-space-6: 24px;
}

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

html {
  font-family: var(--dv-font-sans);
  font-size: var(--dv-font-size);
  line-height: var(--dv-line-height);
  color: var(--dv-text);
  background: var(--dv-page);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--dv-page);
  color: var(--dv-text);
  overflow-x: hidden;
}

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

button,
input,
select,
textarea {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
}

button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--dv-primary);
  outline-offset: 2px;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.fk-header {
  background: var(--dv-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 90;
}

.fk-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0 6px;
}

.fk-brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fk-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.fk-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  overflow: hidden;
}

.fk-brand-mark img,
.fk-brand-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.fk-brand-name {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.fk-brand-sub {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.travel-pill {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  transition: background-color 150ms ease;
}

.travel-pill:hover {
  background: rgba(255, 255, 255, 0.25);
}

.fk-location {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background-color 150ms ease;
  white-space: nowrap;
}

.fk-location:hover {
  background: rgba(255, 255, 255, 0.15);
}

.fk-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-btn {
  background: #fff;
  color: var(--dv-primary);
  min-height: 32px;
  padding: 4px 16px;
  border-radius: var(--dv-radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 120ms ease, background-color 120ms ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.login-btn:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.login-btn.logged-in {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.login-btn.logged-in:hover {
  background: rgba(255, 255, 255, 0.26);
}

/* MAIN BAR (Search & Action links) */
.fk-mainbar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 0 12px;
}

.fk-search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--dv-radius-md);
  min-height: 44px;
  padding: 0 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.fk-search-icon {
  color: #7b7f8a;
  font-size: 1.3rem;
  line-height: 1;
}

.fk-search-box input {
  appearance: none;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.92rem;
  color: var(--dv-text);
}

.fk-search-box input::placeholder {
  color: #71717a;
}

.search-submit {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--dv-radius-sm);
  background: var(--dv-primary);
  color: #fff;
  font-size: 0.95rem;
  transition: opacity 150ms ease;
}

.search-submit:hover {
  opacity: 0.9;
}

.fk-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.nav-link {
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--dv-radius-sm);
  transition: background-color 150ms ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.14);
}

.seller-link {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: var(--dv-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background-color 150ms ease;
}

.seller-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cart-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  margin-left: 4px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ffe500;
  color: #212121;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

/* Mobile Header elements */
.fk-mobile-location-bar,
.fk-mobile-actions {
  display: none;
}

/* CATEGORY STRIP */
.fk-category-bar {
  background: var(--dv-surface);
  border-bottom: 1px solid var(--dv-border);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.fk-category-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 76px;
  padding: 6px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.fk-category-row::-webkit-scrollbar {
  display: none;
}

.fk-category {
  position: relative;
  flex: 0 0 auto;
  min-width: 78px;
  min-height: 64px;
  border: none;
  background: transparent;
  color: var(--dv-text);
  border-radius: var(--dv-radius-md);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 10px;
  white-space: nowrap;
  opacity: 0.85;
  transition: all 140ms ease;
}

.fk-category:hover {
  background: #f0f5ff;
  color: var(--dv-primary);
  opacity: 1;
}

.fk-category-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f4f6f9;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 140ms ease;
}

.fk-category:hover .fk-category-icon {
  transform: scale(1.08);
}

.fk-category.active {
  color: var(--dv-primary);
  opacity: 1;
}

.fk-category.active::after {
  position: absolute;
  right: 12px;
  bottom: 1px;
  left: 12px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--dv-primary);
  content: '';
}

.fk-category.active .fk-category-icon {
  background: #e8f0ff;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.homepage {
  padding-top: 18px;
}

.homepage-hero {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 42px 48px;
  border-radius: var(--dv-radius-lg);
  background: #0e3767;
  color: #fff;
  box-shadow: var(--dv-shadow-md);
}

.homepage-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 55, 103, 0.98) 0%, rgba(14, 55, 103, 0.85) 48%, rgba(14, 55, 103, 0.2) 100%);
  content: '';
  z-index: 1;
}

.homepage-hero>img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 55%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 530px;
}

.hero-kicker {
  margin: 0 0 10px;
  color: #ffe500;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero-content>p:not(.hero-kicker) {
  max-width: 440px;
  margin: 14px 0 0;
  color: #dbeafe;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-actions button {
  border: none;
  border-radius: var(--dv-radius-sm);
  background: #ffe500;
  color: #212121;
  padding: 12px 22px;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(255, 229, 0, 0.35);
  transition: transform 140ms ease, filter 140ms ease;
}

.hero-actions button:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.hero-actions span {
  color: #cbd5e1;
  font-size: 0.76rem;
}

.hero-price {
  position: absolute;
  right: 8%;
  bottom: 28px;
  z-index: 2;
  display: grid;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
  line-height: 1;
}

.hero-price strong {
  color: #ffe500;
  font-size: 2.6rem;
  line-height: 1;
}

.hero-price small {
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  margin-top: 4px;
}

/* PROMO HIGHLIGHT CARDS */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  align-items: stretch;
}

.promo-card {
  position: relative;
  height: 200px;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--dv-radius-lg);
  padding: var(--dv-space-4);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.06);
  background: #fff;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.1);
}

.promo-card.warm {
  background: linear-gradient(135deg, #fff8eb 0%, #f7e0ae 100%);
}

.promo-card.cyan {
  background: linear-gradient(135deg, #eaf9ff 0%, #cdebfd 100%);
}

.promo-card.dark {
  background: linear-gradient(135deg, #32354a 0%, #151622 100%);
  color: #fff;
}

.promo-card.featured {
  background: linear-gradient(135deg, #fff2eb 0%, #ffc593 100%);
  border: 2px solid #fb641b;
}

.promo-topline {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4b5563;
}

.promo-card.dark .promo-topline {
  color: #cbd5e1;
}

.promo-card h3 {
  position: relative;
  z-index: 1;
  width: 58%;
  margin: 8px 0 4px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.promo-card p {
  position: relative;
  z-index: 1;
  width: 58%;
  margin: 0;
  font-size: 0.82rem;
  color: #64748b;
}

.promo-card.dark p {
  color: #94a3b8;
}

.promo-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  color: #212121;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--dv-radius-sm);
  padding: 4px 8px;
}

.promo-card.dark .promo-label {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.promo-card.featured .promo-label {
  background: #fb641b;
  color: #fff;
}

.promo-card img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 0 0 0;
}

/* ============================================================
   CATALOG TOOLBAR & PRODUCT GRID
   ============================================================ */
.section-block {
  padding: 24px 0 48px;
}

.shelf-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: var(--dv-space-4) var(--dv-space-5);
  background: #fff;
  border-radius: var(--dv-radius-lg) var(--dv-radius-lg) 0 0;
  border: 1px solid var(--dv-border);
  border-bottom: 1px solid var(--dv-border-soft);
}

.shelf-heading-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.shelf-heading h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
}

.deal-eyebrow {
  display: block;
  color: var(--dv-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.item-count-badge {
  color: var(--dv-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.toolbar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sort-select {
  padding: 6px 12px;
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-sm);
  background: #fff;
  color: var(--dv-text);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
  margin-top: 18px;
}

/* PRODUCT CARD */
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--dv-surface);
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-lg);
  box-shadow: var(--dv-shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(40, 116, 240, 0.14);
}

.product-deal-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  border-radius: var(--dv-radius-sm);
  background: var(--dv-accent);
  color: #fff;
  padding: 3px 8px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(251, 100, 27, 0.35);
}

.wishlist-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
  color: #94a3b8;
  font-size: 1.15rem;
  transition: color 150ms ease, transform 150ms ease;
}

.wishlist-button:hover {
  transform: scale(1.1);
  color: #ef4444;
}

.wishlist-button.active {
  color: #ef4444;
}

.wishlist-float-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--dv-border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--dv-shadow-sm);
  color: var(--dv-text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wishlist-float-btn:hover {
  color: #ef4444;
  transform: scale(1.08);
}

.wishlist-float-btn.active {
  background: #fff;
  border-color: #ef4444;
  color: #ef4444;
}

.product-image-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  background: var(--dv-surface-muted);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 220ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.04);
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  color: var(--dv-primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.product-body h3 {
  margin: 0 0 8px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 38px;
  color: #1f2937;
}

/* Rating */
.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--dv-success);
  color: #fff;
  padding: 2px 6px;
  border-radius: var(--dv-radius-sm);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.review-count {
  color: var(--dv-text-subtle);
  font-size: 0.74rem;
}

/* Price Display */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.selling-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.02em;
}

.original-price {
  color: #88909d;
  font-size: 0.85rem;
  text-decoration: line-through;
}

.discount-badge {
  color: var(--dv-success);
  font-size: 0.8rem;
  font-weight: 800;
}

.product-supporting-info {
  font-size: 0.72rem;
  color: #4b5563;
  margin-bottom: 8px;
}

.stock-indicator {
  font-size: 0.72rem;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 12px;
}

/* Actions */
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}

.cart-button {
  width: 100%;
  min-height: 38px;
  border: none;
  border-radius: var(--dv-radius-sm);
  background: #fff;
  color: var(--dv-accent);
  border: 1px solid var(--dv-accent);
  font-weight: 800;
  font-size: 0.82rem;
  transition: all 140ms ease;
}

.cart-button:hover {
  background: #fff5f0;
}

.cart-button--added {
  background: var(--dv-success) !important;
  color: #fff !important;
  border-color: var(--dv-success) !important;
}

.buy-now-button {
  width: 100%;
  min-height: 38px;
  border: none;
  border-radius: var(--dv-radius-sm);
  background: var(--dv-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  transition: background-color 140ms ease, transform 100ms ease;
}

.buy-now-button:hover {
  background: var(--dv-accent-dark);
}

.demo-card-note {
  display: block;
  margin-top: 8px;
  color: #9ca3af;
  font-size: 0.65rem;
  text-align: center;
}

/* Empty search results */
.empty-catalog {
  grid-column: 1 / -1;
  padding: 64px 20px;
  text-align: center;
  background: #fff;
  border-radius: var(--dv-radius-lg);
  border: 1px solid var(--dv-border);
}

.empty-catalog h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  color: #374151;
}

.empty-catalog p {
  color: #6b7280;
  margin-bottom: 16px;
}

.reset-search-btn {
  background: var(--dv-primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--dv-radius-sm);
  font-weight: 700;
}

/* ============================================================
   SLIDE-OUT DRAWERS (CART & WISHLIST)
   ============================================================ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 250ms ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background: #fff;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.2);
  z-index: 101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--dv-border);
  background: #fff;
}

.drawer-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: #6b7280;
  transition: background-color 150ms ease;
}

.drawer-close-btn:hover {
  background: #f1f5f9;
  color: #111827;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--dv-border-soft);
  border-radius: var(--dv-radius-md);
  background: #fdfdfd;
}

.drawer-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: var(--dv-radius-sm);
  padding: 6px;
}

.drawer-item-info h4 {
  margin: 0 0 4px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
}

.drawer-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
}

.drawer-item-mrp {
  font-size: 0.75rem;
  color: #88909d;
  text-decoration: line-through;
  margin-left: 6px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--dv-border);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: #fff;
}

.qty-val {
  font-weight: 800;
  font-size: 0.85rem;
}

.drawer-item-remove {
  color: #ef4444;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px;
  cursor: pointer;
}

.drawer-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--dv-border);
  background: #f8fafc;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 8px;
}

.summary-row.savings {
  color: var(--dv-success);
  font-weight: 700;
}

.summary-row.total {
  font-size: 1.15rem;
  font-weight: 900;
  color: #111827;
  border-top: 1px dashed var(--dv-border);
  padding-top: 10px;
  margin-top: 10px;
}

.checkout-btn {
  width: 100%;
  min-height: 44px;
  border-radius: var(--dv-radius-sm);
  background: var(--dv-accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-top: 14px;
  box-shadow: 0 4px 14px rgba(251, 100, 27, 0.3);
  transition: background-color 140ms ease;
}

.checkout-btn:hover {
  background: var(--dv-accent-dark);
}

.drawer-empty {
  text-align: center;
  padding: 48px 16px;
  color: #6b7280;
}

.drawer-empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

/* ============================================================
   MODALS (Quick View, Address, Login)
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(3px);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  background: #fff;
  border-radius: var(--dv-radius-lg);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.2);
  width: min(640px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.96);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--dv-border-soft);
}

.modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.modal-body {
  padding: 22px;
}

/* Quick View Specific */
.quickview-card {
  width: min(840px, 100%);
}

.quickview-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
}

.quickview-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quickview-main-img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: var(--dv-radius-md);
  padding: 16px;
}

.quickview-info h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
}

.quickview-highlights {
  margin: 16px 0;
  padding-left: 20px;
  font-size: 0.85rem;
  color: #374151;
  display: grid;
  gap: 6px;
}

/* Forms (Address & Login) */
.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-sm);
  font-size: 0.9rem;
}

.form-submit-btn {
  width: 100%;
  min-height: 42px;
  background: var(--dv-primary);
  color: #fff;
  border-radius: var(--dv-radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: #1e293b;
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--dv-radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  pointer-events: auto;
  transform: translateY(20px);
  opacity: 0;
  transition: all 220ms ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  font-size: 1.15rem;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: #172337;
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid h3 {
  color: #878787;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-grid li,
.footer-grid a {
  color: #fff;
  font-size: 0.82rem;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 120ms ease;
  cursor: pointer;
}

.footer-grid li:hover,
.footer-grid a:hover {
  opacity: 1;
  text-decoration: underline;
}

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

.social-pill {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.76rem;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  color: #878787;
  font-size: 0.78rem;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quickview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fk-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .fk-topbar-right {
    position: absolute;
    top: 10px;
    right: 16px;
  }

  .fk-actions {
    display: none;
  }

  .fk-mobile-actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.08);
  }

  .fk-mobile-actions button,
  .fk-mobile-actions a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
  }

  .fk-mobile-actions a:hover,
  .fk-mobile-actions a.active,
  .fk-mobile-actions button:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffe500;
    font-weight: 800;
  }

  .homepage-hero {
    min-height: 280px;
    padding: 24px;
  }

  .homepage-hero>img {
    width: 70%;
    opacity: 0.35;
  }

  .hero-price {
    right: 20px;
    bottom: 20px;
  }

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

  .product-card .product-body {
    padding: 12px;
  }

  .product-card .product-actions {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-card .cart-button,
  .product-card .buy-now-button {
    min-height: 32px;
    font-size: 0.76rem;
    padding: 4px 8px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   FULL PAGES: CART, CHECKOUT & ORDERS (MATCHING OLD UI)
   ============================================================ */
.dealvolt-cart {
  padding-top: 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: 20px;
  align-items: start;
}

.cart-list,
.price-summary {
  padding: 20px;
}

.cart-list-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--dv-border-soft);
}

.cart-list-heading h2 {
  margin: 6px 0 0;
}

.cart-demo-badge {
  padding: 5px 8px;
  border-radius: var(--dv-radius-sm);
  background: #e8f0ff;
  color: var(--dv-primary);
  font-size: 0.68rem;
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--dv-border-soft);
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item-image {
  width: 128px;
  height: 128px;
  object-fit: contain;
  padding: 8px;
  border-radius: var(--dv-radius-md);
  background: var(--dv-surface-muted);
}

.cart-item-details h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.cart-price-row,
.cart-actions-row,
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.cart-price-row strong {
  color: var(--dv-accent);
  font-size: 1.35rem;
}

.cart-price-row .line-through {
  color: var(--dv-text-subtle);
  font-size: 0.82rem;
  text-decoration: line-through;
}

.cart-delivery {
  margin: 12px 0 16px;
  color: var(--dv-success);
  font-size: 0.78rem;
}

.cart-actions-row {
  justify-content: flex-start;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-sm);
}

.qty-box button,
.qty-box span {
  display: grid;
  width: 32px;
  height: 32px;
  min-height: 0;
  place-items: center;
}

.qty-box button {
  border: none;
  background: var(--dv-surface-muted);
}

.qty-box span {
  font-weight: 700;
}

.price-summary {
  border-top: 3px solid var(--dv-primary);
}

.price-summary h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.summary-row {
  padding: 13px 0;
  border-bottom: 1px solid var(--dv-border-soft);
  color: var(--dv-text-muted);
}

.summary-row.total {
  color: var(--dv-text);
  font-size: 1.15rem;
}

.summary-row.total strong {
  color: var(--dv-accent);
  font-size: 1.35rem;
}

.free-text {
  color: var(--dv-success);
  font-weight: 700;
}

.cart-summary-note {
  margin: 14px 0 0;
  color: var(--dv-text-subtle);
  font-size: 0.72rem;
  line-height: 1.4;
}

.checkout-section {
  padding: 0;
}

.checkout-page {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.7fr);
  gap: 20px;
  align-items: start;
}

.checkout-main {
  display: grid;
  gap: 14px;
}

.checkout-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0 8px;
}

.checkout-kicker {
  margin: 0 0 5px;
  color: var(--dv-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.checkout-title-row h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.checkout-demo-note,
.checkout-step>p {
  margin: 6px 0 0;
  color: var(--dv-text-muted);
  font-size: 0.78rem;
}

.checkout-step {
  padding: 20px;
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-lg);
  background: var(--dv-surface);
  box-shadow: var(--dv-shadow-sm);
}

.step-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-heading>span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--dv-primary);
  color: #fff;
  font-weight: 800;
}

.step-heading h3 {
  margin: 0;
  flex: 1;
  font-size: 1.05rem;
}

.step-heading strong {
  color: var(--dv-success);
  font-size: 0.75rem;
}

.address-box,
.payment-box {
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--dv-radius-md);
  background: var(--dv-surface-muted);
}

.address-box p {
  margin: 5px 0 0;
  color: var(--dv-text-muted);
  font-size: 0.82rem;
}

.address-box b {
  display: inline-block;
  margin-top: 10px;
  color: var(--dv-success);
  font-size: 0.78rem;
}

.checkout-items {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.checkout-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dv-border-soft);
  font-size: 0.88rem;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.payment-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--dv-radius-sm);
  background: #e8f0ff;
  color: var(--dv-primary);
  font-size: 0.72rem;
  font-weight: 800;
}

.payment-method p {
  margin: 3px 0 0;
  color: var(--dv-text-muted);
  font-size: 0.75rem;
}

.confirmation-step {
  border-top: 3px solid var(--dv-accent);
}

.checkout-place-button {
  width: 100%;
  margin-top: 16px;
  min-height: 48px;
}

.checkout-summary {
  position: sticky;
  top: 18px;
  padding: 20px;
  border: 1px solid var(--dv-border);
  border-top: 3px solid var(--dv-primary);
  border-radius: var(--dv-radius-lg);
  background: var(--dv-surface);
  box-shadow: var(--dv-shadow-md);
}

.summary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dv-border-soft);
}

.summary-heading h3 {
  margin: 0;
  font-size: 1.15rem;
}

.summary-heading span {
  color: var(--dv-text-subtle);
  font-size: 0.75rem;
}

.checkout-summary .summary-row {
  padding: 14px 0;
}

.summary-saving {
  color: var(--dv-success);
  font-weight: 700;
}

.checkout-total {
  margin-top: 4px;
  border-top: 1px solid var(--dv-border);
  border-bottom: none;
  color: var(--dv-text);
}

.checkout-total strong:last-child {
  color: var(--dv-accent);
  font-size: 1.4rem;
}

.summary-disclaimer {
  margin: 12px 0 0;
  color: var(--dv-text-subtle);
  font-size: 0.7rem;
  line-height: 1.45;
}

.empty-page {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  padding: 28px;
}

.empty-page h2,
.empty-page p {
  margin: 0;
}

.empty-page p {
  color: #6b7280;
}

.empty-icon {
  font-size: 3rem;
}

/* ─── Wishlist ─── */
.wishlist-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dv-border-soft);
}

.wishlist-title {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
}

.wishlist-sub {
  margin: 4px 0 0;
  color: var(--dv-text-muted);
  font-size: 0.85rem;
}

.wishlist-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .wishlist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

.primary-button,
.secondary-button {
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 700;
}

.primary-button {
  border: none;
  background: var(--dv-accent);
  color: #fff;
}

.secondary-button {
  border: 1px solid var(--dv-border);
  background: var(--dv-surface);
  color: var(--dv-text);
}

.panel {
  background: var(--dv-surface);
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-lg);
  box-shadow: var(--dv-shadow-sm);
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dv-text-subtle);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-sm);
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--dv-text);
  background: var(--dv-background);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  border-color: var(--dv-primary);
  box-shadow: 0 0 0 3px rgba(40, 116, 240, 0.15);
}

.site-footer {
  background: #172337;
  color: #d6dbe5;
  padding: 40px 0 18px;
}

.section-heading h2,
.flash-sale-header h2,
.listing-title,
.orders-section h2,
.wishlist-section h2,
.cart-list h2 {
  color: var(--dv-text);
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
}

.product-card,
.category-card,
.wishlist-item,
.order-card,
.checkout-card,
.cart-list,
.price-summary {
  background: var(--dv-surface);
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-lg);
}

/* ============================================================
   PRODUCT DETAILS PAGE STYLES (DEDICATED FULL-PAGE)
   ============================================================ */
.details-section {
  padding: 24px 0 60px;
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-lg);
  padding: 28px;
  box-shadow: var(--dv-shadow-sm);
}

.details-gallery {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-main-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--dv-radius-md);
  background: #f8fafc;
  border: 1px solid var(--dv-border-soft);
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.detail-main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.detail-main-image-wrap:hover .detail-main-image {
  transform: scale(1.06);
}

.gallery-control {
  position: absolute;
  top: 50%;
  display: grid;
  width: 38px;
  height: 56px;
  min-height: 0;
  place-items: center;
  border: 1px solid var(--dv-border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--dv-text);
  font-size: 1.8rem;
  transform: translateY(-50%);
  cursor: pointer;
  border-radius: var(--dv-radius-sm);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2;
  transition: background 0.15s;
}
.gallery-control:hover {
  background: #fff;
  color: var(--dv-primary);
}
.gallery-control.previous { left: 8px; }
.gallery-control.next { right: 8px; }

.detail-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.detail-thumbnails button {
  flex: 0 0 74px;
  height: 74px;
  min-height: 0;
  padding: 6px;
  border: 1.5px solid var(--dv-border);
  border-radius: var(--dv-radius-sm);
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.15s ease;
}

.detail-thumbnails button.active,
.detail-thumbnails button:hover {
  border-color: var(--dv-primary);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(40, 116, 240, 0.2);
}

.detail-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.detail-actions .cart-btn {
  background: #ff9f00;
  color: #fff;
  border: none;
  border-radius: var(--dv-radius-sm);
  padding: 14px;
  font-weight: 900;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 159, 0, 0.35);
  transition: all 0.2s ease;
}
.detail-actions .cart-btn:hover {
  background: #f59100;
  transform: translateY(-1px);
}

.detail-actions .buy-btn {
  background: var(--dv-accent);
  color: #fff;
  border: none;
  border-radius: var(--dv-radius-sm);
  padding: 14px;
  font-weight: 900;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(251, 100, 27, 0.35);
  transition: all 0.2s ease;
}
.detail-actions .buy-btn:hover {
  background: #e65100;
  transform: translateY(-1px);
}

/* Right Details Info */
.details-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-brand-badge {
  color: var(--dv-primary);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.detail-title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
}

.detail-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rating-pill-green {
  background: var(--dv-success);
  color: #fff;
  padding: 4px 9px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rating-count-text {
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 600;
}

.assured-tag {
  background: #e0f2fe;
  color: var(--dv-primary);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 800;
}

.detail-price-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--dv-radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.selling-price-large {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--dv-accent);
  line-height: 1;
}

.original-price-large {
  font-size: 1.1rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.discount-large-badge {
  background: #e8f5e9;
  color: var(--dv-success);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.95rem;
}

.offers-container {
  border: 1px solid #e2e8f0;
  border-radius: var(--dv-radius-md);
  padding: 16px;
  background: #fff;
}

.offers-container h4 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: #334155;
  margin-bottom: 8px;
  line-height: 1.4;
}
.offer-item:last-child {
  margin-bottom: 0;
}
.offer-tag-icon {
  color: var(--dv-success);
  font-weight: 800;
}

.delivery-check-card {
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-md);
  padding: 16px;
  background: #f8fafc;
}

.delivery-check-card h4 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.pincode-input-group {
  display: flex;
  gap: 8px;
  max-width: 320px;
  margin-bottom: 8px;
}
.pincode-input-group input {
  flex: 1;
  height: 38px;
  padding: 6px 12px;
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-sm);
  font-size: 0.88rem;
}
.pincode-input-group button {
  background: var(--dv-primary);
  color: #fff;
  border: none;
  border-radius: var(--dv-radius-sm);
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
}

.specs-preview-list {
  padding-left: 18px;
  margin: 0;
  color: #475569;
  font-size: 0.88rem;
  display: grid;
  gap: 6px;
}

/* Bottom Full-Width Panels */
.product-details-panels {
  margin-top: 32px;
  display: grid;
  gap: 24px;
}

.deep-panel {
  background: #fff;
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-lg);
  padding: 26px;
  box-shadow: var(--dv-shadow-sm);
}

.deep-panel h3 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  border-bottom: 1px solid var(--dv-border-soft);
  padding-bottom: 12px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table tr {
  border-bottom: 1px solid #f1f5f9;
}
.spec-table th {
  text-align: left;
  padding: 12px 14px 12px 0;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 600;
  width: 25%;
  vertical-align: top;
}
.spec-table td {
  padding: 12px 0;
  color: #1e293b;
  font-size: 0.88rem;
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  margin-top: 14px;
}

.rating-summary-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--dv-radius-md);
  padding: 24px;
  text-align: center;
}
.rating-big-num {
  font-size: 3rem;
  font-weight: 900;
  color: #111827;
  line-height: 1;
}

.user-review-card {
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}
.user-review-card:last-child {
  border-bottom: none;
}
.user-review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .details-layout {
    grid-template-columns: 1fr;
  }
  .details-gallery {
    position: static;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .details-section {
    padding: 14px 0 40px;
  }
  .details-layout {
    padding: 16px;
  }
  .detail-main-image-wrap {
    height: 280px;
    padding: 12px;
  }
  .detail-title {
    font-size: 1.3rem;
  }
  .selling-price-large {
    font-size: 1.9rem;
  }
  .detail-actions {
    grid-template-columns: 1fr;
  }
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    padding: 4px 0;
  }
  .spec-table tr {
    padding: 8px 0;
    display: block;
  }
  .deep-panel {
    padding: 18px;
  }
}

/* ============================================================
   DEDICATED WISHLIST PAGE STYLES (FLIPKART ACCOUNT LAYOUT)
   ============================================================ */
.wishlist-page-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.account-profile-card {
  background: #fff;
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  box-shadow: var(--dv-shadow-sm);
}

.account-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e8f0ff;
  color: var(--dv-primary);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.account-nav-panel {
  background: #fff;
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-md);
  box-shadow: var(--dv-shadow-sm);
  overflow: hidden;
}

.account-nav-section {
  border-bottom: 1px solid var(--dv-border-soft);
  padding: 12px 0;
}
.account-nav-section:last-child {
  border-bottom: none;
}

.account-nav-title {
  font-size: 0.76rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-nav-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.account-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 46px;
  color: #334155;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.15s ease;
}

.account-nav-list a:hover {
  background: #f8fafc;
  color: var(--dv-primary);
}

.account-nav-list a.active {
  background: #f0f5ff;
  color: var(--dv-primary);
  font-weight: 800;
  border-left: 4px solid var(--dv-primary);
  padding-left: 42px;
}

/* Mobile compact account strip */
.mobile-account-strip {
  display: none;
  background: #fff;
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-sm);
  padding: 10px 14px;
  margin-bottom: 12px;
  box-shadow: var(--dv-shadow-sm);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-account-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mobile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f0ff;
  color: var(--dv-primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mobile-account-info strong {
  display: block;
  font-size: 0.92rem;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-account-sub {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  white-space: nowrap;
}

.mobile-account-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.mobile-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  color: #334155;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: all 0.15s ease;
}

.mobile-chip:hover {
  background: #e2e8f0;
  color: var(--dv-primary);
}

.wishlist-main-section {
  padding: 24px 0 64px;
}

.wishlist-main-card {
  background: #fff;
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-md);
  box-shadow: var(--dv-shadow-sm);
  overflow: hidden;
}

.wishlist-card-header {
  padding: 16px 22px;
  border-bottom: 1px solid var(--dv-border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wishlist-card-header h1 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
}

.wishlist-item-row {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr 180px;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--dv-border-soft);
  align-items: center;
  transition: background-color 0.15s;
}

.wishlist-item-row:hover {
  background: #fafafa;
}

.wishlist-item-row:last-child {
  border-bottom: none;
}

.wishlist-item-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: var(--dv-surface-muted);
  border-radius: 8px;
  padding: 8px;
  display: block;
}

.wishlist-item-title {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
}

.wishlist-item-title a {
  color: inherit;
  text-decoration: none;
}
.wishlist-item-title a:hover {
  color: var(--dv-primary);
}

.wishlist-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 8px;
  flex-wrap: wrap;
}

.wishlist-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.wishlist-delivery-note {
  margin: 6px 0 0;
  font-size: 0.8rem;
  color: var(--dv-success);
  font-weight: 600;
}

.wishlist-actions-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 180px;
}

.wishlist-move-btn {
  background: var(--dv-accent);
  color: #fff;
  border: none;
  border-radius: var(--dv-radius-sm);
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(251, 100, 27, 0.25);
  transition: all 0.15s ease;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
.wishlist-move-btn:hover {
  background: #e65100;
  transform: translateY(-1px);
}

.wishlist-buynow-btn {
  width: 100%;
  text-align: center;
  min-height: 38px;
  padding: 8px 16px;
}

.wishlist-delete-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #94a3b8;
  cursor: pointer;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  transition: all 0.15s ease;
  z-index: 5;
}
.wishlist-delete-btn:hover {
  color: #ef4444;
  background: #fef2f2;
  border-color: #fecaca;
}

/* ============================================================
   RESPONSIVE: TABLET & MOBILE COMPACT (< 860px)
   ============================================================ */
@media (max-width: 860px) {
  .wishlist-page-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .account-sidebar {
    display: none;
  }
  .mobile-account-strip {
    display: flex;
  }
  .wishlist-main-section {
    padding: 14px 0 48px;
  }
  .wishlist-item-row {
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 16px 14px;
    align-items: start;
  }
  .wishlist-item-img {
    width: 96px;
    height: 96px;
    padding: 6px;
  }
  .wishlist-item-title {
    font-size: 0.95rem;
    padding-right: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .wishlist-actions-cell {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
  }
  .wishlist-move-btn,
  .wishlist-buynow-btn {
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }
  .wishlist-delete-btn {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }
}

/* ============================================================
   RESPONSIVE: SMALL MOBILE (< 480px, e.g. iPhone, Galaxy)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 20px);
  }
  .wishlist-card-header {
    padding: 12px 14px;
  }
  .wishlist-card-header h1 {
    font-size: 1.08rem;
  }
  .wishlist-item-row {
    grid-template-columns: 80px 1fr;
    gap: 10px;
    padding: 12px 10px;
  }
  .wishlist-item-img {
    width: 80px;
    height: 80px;
    padding: 4px;
  }
  .wishlist-item-title {
    font-size: 0.88rem;
    line-height: 1.3;
    padding-right: 24px;
    margin-bottom: 4px;
  }
  .wishlist-price-row strong {
    font-size: 1.15rem;
  }
  .wishlist-actions-cell {
    gap: 6px;
    margin-top: 8px;
  }
  .wishlist-move-btn,
  .wishlist-buynow-btn {
    padding: 7px 6px;
    font-size: 0.78rem;
    min-height: 36px;
  }
  .mobile-chip {
    padding: 4px 8px;
    font-size: 0.72rem;
  }
}
