/* ==========================================================================
   KARTNEST - Premium Direct-to-Consumer Brand Storefront Styles (kartnest.in)
   Clean, Original, High-Trust Aesthetics
   ========================================================================== */

/* Top Brand Announcement Banner */
.brand-top-ticker {
  background: var(--accent-primary);
  color: var(--accent-primary-text);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}

.brand-top-ticker a {
  text-decoration: underline;
  margin-left: 6px;
}

/* Sticky Minimalist Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Brand Logo */
.brand-identity {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none !important;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-badge-official {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav Menu */
.header-nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.header-nav-menu a,
.header-nav-menu button {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  background: none;
  cursor: pointer;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.header-nav-menu a:hover,
.header-nav-menu button:hover,
.header-nav-menu a.active,
.header-nav-menu button.active {
  color: var(--text-main);
}

.header-nav-menu button.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-brand);
  border-radius: 2px;
}

/* Header Action Controls (Search, Theme, Profile, Cart, Admin) */
.header-actions-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-picker-dropdown {
  position: relative;
}

.theme-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.18), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  width: 220px;
  padding: 6px;
  display: none;
  z-index: 1050;
}

.theme-dropdown-menu.active {
  display: block;
}

.theme-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a !important;
  transition: all 0.2s ease;
}

html[data-theme="theme-emerald"] .theme-menu-item {
  color: #f0fdf4 !important;
}

.theme-menu-item:hover {
  background: var(--bg-surface-subtle);
  color: var(--accent-brand) !important;
}

.theme-menu-item span {
  color: inherit !important;
}

.cart-btn-wrap {
  position: relative;
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-brand);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.admin-lock-btn {
  background: var(--bg-surface-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.admin-lock-btn:hover {
  color: var(--text-main);
  border-color: var(--border-medium);
}

/* ==========================================================================
   Hero Brand Showcase (Clean Editorial)
   ========================================================================== */
.hero-showcase-section {
  padding: 24px 0 36px;
}

.hero-showcase-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.hero-slide {
  display: none;
  min-height: 480px;
  padding: 60px 48px;
  align-items: center;
  position: relative;
}

.hero-slide.active {
  display: flex;
}

.hero-slide-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  mask-image: linear-gradient(to right, transparent 0%, black 35%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
}

.hero-slide-body {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-slide-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #38bdf8 !important;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-slide-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-slide-desc {
  font-size: 1.05rem;
  color: #f1f5f9 !important;
  line-height: 1.6;
  margin-bottom: 24px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-slide-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-slide-actions .btn-primary {
  background: #ffffff !important;
  color: #0f172a !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  border: none;
}

.hero-slide-actions .btn-primary:hover {
  background: #f8fafc !important;
  transform: translateY(-2px);
}

.hero-slide-badge {
  font-size: 0.85rem;
  color: #cbd5e1 !important;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.hero-nav-arrow:hover {
  background: var(--bg-surface-subtle);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev { left: 16px; }
.hero-next { right: 16px; }

/* ==========================================================================
   Brand Trust Pillars
   ========================================================================== */
.brand-trust-section {
  padding-bottom: 36px;
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.trust-pillar-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--accent-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-details h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.trust-item-details p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   Clean Product Cards
   ========================================================================== */
.catalog-section {
  padding: 20px 0 60px;
}

.catalog-header-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.catalog-header-bar h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.catalog-header-bar p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.category-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-pill:hover {
  border-color: var(--border-medium);
  color: var(--text-main);
}

.filter-pill.active {
  background: var(--accent-primary);
  color: var(--accent-primary-text);
  border-color: var(--accent-primary);
}

/* Responsive Departments Grid (PRD Requirement 5, 6 & 7) */
.departments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 1200px) {
  .departments-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .departments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* Products Grid Responsive & Single Product Centering (PRD Requirement 9 & 34) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.products-grid.single-product-grid {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

.products-grid.single-product-grid .clean-product-card {
  width: 100% !important;
  max-width: 360px !important;
  margin: 0 auto !important;
}

/* Clean Product Card */
.clean-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-smooth);
}

.clean-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.card-image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  background: var(--bg-surface-subtle);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.2, 0, 0.2, 1);
}

.clean-product-card:hover .card-image-box img {
  transform: scale(1.05);
}

.card-floating-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
}

.card-heart-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.card-heart-btn:hover {
  color: #dc2626;
  transform: scale(1.1);
}

.card-heart-btn.active {
  color: #dc2626;
}

.card-content-area {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category-label {
  display: none !important;
}

.card-title-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.card-title-text:hover {
  color: var(--accent-brand);
}

.card-tagline-text {
  display: none !important;
}

.card-rating-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.card-rating-stars {
  color: var(--color-star);
  display: flex;
  gap: 2px;
}

.card-rating-score {
  font-weight: 700;
  color: var(--text-main);
}

.card-rating-reviews {
  color: var(--text-muted);
}

.card-bottom-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.card-pricing-box {
  display: flex;
  flex-direction: column;
}

.card-price-primary {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

.card-price-original {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ==========================================================================
   Dedicated Clean Search Overlay
   ========================================================================== */
.search-overlay-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.search-overlay-wrapper.active {
  opacity: 1;
  pointer-events: auto;
}

.search-overlay-panel {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0 32px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-20px);
  transition: transform var(--transition-smooth);
}

.search-overlay-wrapper.active .search-overlay-panel {
  transform: translateY(0);
}

.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  margin-bottom: 16px;
}

.search-bar-inner input {
  flex: 1;
  background: transparent;
  font-size: 1.05rem;
  color: var(--text-main);
}

.search-results-box {
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.search-result-item:hover {
  background: var(--bg-surface-subtle);
}

.search-result-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-subtle);
}

/* ==========================================================================
   Dedicated Slide-Out Shopping Bag Drawer
   ========================================================================== */
.drawer-backdrop-screen {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.drawer-backdrop-screen.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-slide-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 460px;
  height: 100%;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-drawer);
  z-index: 2101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
}

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

.drawer-top-bar {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-top-bar h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.free-delivery-tracker {
  padding: 12px 24px;
  background: var(--bg-surface-subtle);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
}

.tracker-bar-track {
  height: 4px;
  background: var(--border-subtle);
  border-radius: 4px;
  margin-top: 6px;
  overflow: hidden;
}

.tracker-bar-fill {
  height: 100%;
  background: var(--accent-brand);
  border-radius: 4px;
  transition: width var(--transition-fast);
}

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

.drawer-item-row {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-item-row img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: var(--bg-surface-subtle);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.drawer-item-info {
  flex: 1;
}

.drawer-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.drawer-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.drawer-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stepper-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  background: var(--bg-surface-subtle);
}

.stepper-btn {
  width: 26px;
  height: 26px;
  background: transparent;
  color: var(--text-main);
  font-weight: 700;
  cursor: pointer;
}

.stepper-val {
  padding: 0 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.drawer-bottom-checkout {
  padding: 20px 24px;
  background: var(--bg-surface-subtle);
  border-top: 1px solid var(--border-subtle);
}

.summary-detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.summary-detail-row.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
  margin-top: 10px;
}

/* ==========================================================================
   Dedicated Customer Profile Modal
   ========================================================================== */
.clean-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.clean-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.clean-modal-dialog {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
}

.clean-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
}

.clean-modal-close:hover {
  color: var(--text-main);
  background: var(--border-subtle);
}

.profile-modal-body {
  padding: 30px;
}

.profile-hero-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--accent-brand);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
}

.profile-section-heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.profile-order-card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 12px;
  background: var(--bg-surface);
}

/* ==========================================================================
   Clean Single-Page Checkout Modal
   ========================================================================== */
.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.clean-input {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.9rem;
}

.clean-input:focus {
  border-color: var(--accent-brand);
}

.payment-radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  cursor: pointer;
  background: var(--bg-surface);
  transition: border-color var(--transition-fast);
}

.payment-radio-option:hover {
  border-color: var(--accent-brand);
}

/* ==========================================================================
   Dedicated Delivery Address Form Modal (App-Native Design)
   ========================================================================== */
.address-modal-dialog {
  background: #ffffff !important;
  color: #0f172a !important;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.2) !important;
  border-radius: 16px !important;
}

.delivery-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-bottom: 1.5px solid #f1f5f9;
  background: #ffffff;
}

.delivery-back-btn {
  background: transparent;
  border: none;
  color: #0f172a;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.15s;
}

.delivery-back-btn:hover {
  background: #f1f5f9;
}

.delivery-header-title {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1e293b;
  text-transform: uppercase;
  font-family: var(--font-heading, inherit);
}

.delivery-form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.delivery-section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.delivery-section-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.btn-use-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #9333ea;
  border: 1.5px solid #d8b4fe;
  border-radius: 9999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-use-location:hover {
  background: #faf5ff;
  border-color: #9333ea;
}

.delivery-input-group {
  position: relative;
  width: 100%;
}

.delivery-underline-input {
  width: 100%;
  box-sizing: border-box;
  background: transparent !important;
  border: none !important;
  border-bottom: 1.5px solid #cbd5e1 !important;
  border-radius: 0 !important;
  padding: 10px 2px 8px !important;
  font-size: 0.95rem !important;
  color: #0f172a !important;
  font-weight: 500;
  transition: border-color 0.2s ease;
}

.delivery-underline-input::placeholder {
  color: #64748b;
  opacity: 0.85;
  font-weight: 400;
}

.delivery-underline-input:focus {
  outline: none !important;
  border-bottom-color: #2563eb !important;
  box-shadow: none !important;
}

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

.delivery-select-wrap {
  position: relative;
}

.delivery-underline-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 24px !important;
  background: transparent !important;
}

.delivery-select-arrow {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.pincode-status-text {
  font-size: 0.74rem;
  font-weight: 700;
  position: absolute;
  right: 4px;
  bottom: 10px;
  color: #2563eb;
}

/* ==========================================================================
   Clean Brand Footer
   ========================================================================== */
.brand-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
  margin-top: 40px;
}

.footer-columns-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-bio-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 320px;
}

.footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-links-list a:hover {
  color: var(--text-main);
}

.footer-legal-bar {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .trust-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-columns-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

/* Default Desktop: Ensure Mobile-Only App Chrome is Hidden */
.mobile-categories-strip {
  display: none !important;
}

.mobile-app-bottom-nav {
  display: none !important;
}

/* Tablet Layout (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-slide {
    padding: 36px 68px !important;
    min-height: 380px !important;
  }
  .hero-slide-title {
    font-size: 2.1rem !important;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }
}

/* Mobile Native App Layout (max-width: 768px) */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .container {
    padding: 0 14px !important;
  }

  /* Clean Mobile Header */
  .header-nav-menu {
    display: none !important;
  }

  .header-inner {
    padding: 10px 14px !important;
    height: 56px !important;
  }

  .brand-name {
    font-size: 1.22rem !important;
  }

  .brand-badge-official {
    font-size: 0.65rem !important;
    padding: 2px 6px !important;
  }

  /* Hide duplicate Cart, Profile, Wishlist from top header (accessed via bottom dock) */
  .header-actions-wrap #profileTriggerBtn,
  .header-actions-wrap .cart-btn-wrap,
  .header-actions-wrap #wishlistToggleBtn {
    display: none !important;
  }

  .header-actions-wrap {
    gap: 6px !important;
  }

  .header-actions-wrap .btn-icon {
    width: 36px !important;
    height: 36px !important;
  }

  /* Single Mobile Horizontal Category Strip */
  .mobile-categories-strip {
    display: flex !important;
    gap: 8px;
    padding: 8px 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    white-space: nowrap;
    position: sticky;
    top: 56px;
    z-index: 989;
  }

  .mobile-categories-strip::-webkit-scrollbar {
    display: none;
  }

  .mobile-category-chip {
    padding: 6px 14px;
    border-radius: 9999px;
    background: var(--bg-surface-subtle);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .mobile-category-chip.active {
    background: var(--text-main);
    color: var(--bg-surface);
    border-color: var(--text-main);
  }

  /* Hide duplicate category pills in catalog header */
  #categoryFilterPills,
  .category-filter-pills {
    display: none !important;
  }

  .catalog-header-bar {
    margin-bottom: 14px !important;
  }

  #catalogHeaderTitle {
    font-size: 1.25rem !important;
  }

  .catalog-header-bar p {
    font-size: 0.8rem !important;
  }

  /* Mobile Hero Carousel */
  .hero-showcase-section {
    padding: 10px 0 16px !important;
  }

  .hero-showcase-carousel {
    border-radius: 14px !important;
  }

  /* Hide intrusive arrows that overlap headline text */
  .hero-nav-arrow {
    display: none !important;
  }

  .hero-slide {
    padding: 24px 18px !important;
    min-height: 260px !important;
  }

  .hero-slide-media {
    width: 100% !important;
    opacity: 0.25 !important;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%) !important;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%) !important;
  }

  .hero-slide-body {
    max-width: 100% !important;
  }

  .hero-slide-tag {
    font-size: 0.7rem !important;
    margin-bottom: 6px !important;
  }

  .hero-slide-title {
    font-size: 1.55rem !important;
    line-height: 1.22 !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.02em !important;
  }

  .hero-slide-desc {
    font-size: 0.84rem !important;
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
    max-width: 95% !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-slide-actions {
    gap: 10px !important;
  }

  .hero-slide-actions .btn-primary {
    padding: 8px 18px !important;
    font-size: 0.82rem !important;
  }

  .hero-slide-badge {
    font-size: 0.74rem !important;
  }

  /* Mobile 2-Column App Grid */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .clean-product-card {
    border-radius: 12px !important;
    border: 1px solid var(--border-subtle) !important;
  }

  .card-image-box {
    height: 155px !important;
  }

  .card-content-area {
    padding: 10px !important;
  }

  .card-floating-badge {
    top: 8px !important;
    left: 8px !important;
  }

  .card-heart-btn {
    top: 8px !important;
    right: 8px !important;
    width: 32px !important;
    height: 32px !important;
  }

  .card-title-text {
    font-size: 0.84rem !important;
    line-height: 1.3 !important;
    height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px !important;
  }

  .card-rating-line {
    margin-bottom: 6px !important;
    font-size: 0.72rem !important;
  }

  .card-bottom-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
  }

  .card-price-primary {
    font-size: 0.98rem !important;
    font-weight: 800 !important;
  }

  .card-price-original {
    font-size: 0.78rem !important;
  }

  .card-bottom-row .btn {
    width: 100% !important;
    padding: 7px 10px !important;
    font-size: 0.78rem !important;
    justify-content: center !important;
  }

  /* Native Mobile Bottom Navigation Dock */
  .mobile-app-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: calc(56px + env(safe-area-inset-bottom, 0px)) !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(226, 232, 240, 0.9) !important;
    z-index: 9998 !important;
    align-items: center !important;
    justify-content: space-around !important;
    box-shadow: 0 -3px 16px rgba(15, 23, 42, 0.08) !important;
  }

  html[data-theme="theme-emerald"] .mobile-app-bottom-nav {
    background: rgba(12, 36, 28, 0.96) !important;
    border-top-color: rgba(23, 66, 53, 0.9) !important;
  }

  html[data-theme="theme-warm"] .mobile-app-bottom-nav {
    background: rgba(250, 248, 245, 0.96) !important;
    border-top-color: rgba(231, 226, 215, 0.9) !important;
  }

  .mobile-nav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 100%;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.66rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
  }

  .mobile-nav-btn svg { width: 20px; height: 20px; }
  .mobile-nav-btn.active { color: var(--accent-brand); }
  .mobile-nav-badge {
    position: absolute;
    top: 5px;
    right: calc(50% - 16px);
    background: #ef4444;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 1px 4px rgba(239, 68, 68, 0.4);
  }

  /* Native Mobile Bottom-Sheet Drawers */
  .clean-modal-backdrop {
    align-items: flex-end !important;
    padding: 0 !important;
  }

  .clean-modal-dialog {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 22px 22px 0 0 !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    transform: translateY(100%);
    transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin: 0 !important;
    padding-bottom: max(20px, env(safe-area-inset-bottom)) !important;
  }

  .clean-modal-backdrop.active .clean-modal-dialog {
    transform: translateY(0) !important;
  }

  .clean-modal-dialog::before {
    content: '';
    display: block;
    width: 44px;
    height: 4.5px;
    background: #cbd5e1;
    border-radius: 9999px;
    margin: 8px auto 14px;
  }

  html[data-theme="theme-emerald"] .clean-modal-dialog::before {
    background: #225c4a;
  }

  .checkout-form-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .checkout-form-grid > div {
    grid-column: span 1 !important;
  }

  .cart-slide-drawer {
    width: 100% !important;
    max-width: 100% !important;
  }

  .trust-pillars-grid {
    grid-template-columns: 1fr;
  }

  .footer-columns-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-footer {
    padding: 36px 0 20px !important;
  }
}

/* ==========================================================================
   Dedicated Product Detail Page (PDP) Experience
   ========================================================================== */
.pdp-page {
  padding: 32px 0 72px;
}

.pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pdp-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.pdp-breadcrumb a:hover {
  color: var(--accent-brand);
}

.pdp-breadcrumb-sep {
  opacity: 0.4;
}

.pdp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-brand);
  text-decoration: none;
  margin-right: 14px;
}

.pdp-stage {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 64px;
}

/* PDP Gallery */
.pdp-gallery {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdp-main-image-wrap {
  width: 100%;
  aspect-ratio: auto;
  min-height: 380px;
  max-height: 640px;
  background: var(--bg-surface-subtle);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  padding: 12px;
}

.pdp-main-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain !important;
  object-position: center;
  transition: transform 0.4s ease, opacity 0.25s ease;
}

.pdp-main-image-wrap:hover .pdp-main-image {
  transform: scale(1.04);
}

.pdp-floating-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
}

.pdp-thumbnails-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0;
}

.pdp-thumb-item {
  width: 76px;
  height: 90px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-surface-subtle);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.pdp-thumb-item.active {
  border-color: var(--accent-brand);
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.25);
}

.pdp-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pdp-reassurance-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.pdp-reassurance-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.pdp-reassurance-pill svg {
  color: var(--accent-brand);
  flex-shrink: 0;
}

/* PDP Info Column */
.pdp-info-column {
  display: flex;
  flex-direction: column;
}

.pdp-brand-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.pdp-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.pdp-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 16px;
}

.pdp-rating-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.pdp-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.pdp-rating-number {
  font-weight: 700;
  font-size: 0.95rem;
}

.pdp-reviews-anchor {
  font-size: 0.85rem;
  color: var(--accent-brand);
  text-decoration: underline;
  cursor: pointer;
}

.pdp-price-box {
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 24px;
}

.pdp-price-flex {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}

.pdp-price-now {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.pdp-price-was {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pdp-discount-pill {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pdp-tax-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Swatches and Selectors */
.pdp-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pdp-swatches {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.pdp-swatch-circle {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  outline: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pdp-swatch-circle.active {
  outline: 2px solid var(--accent-brand);
  outline-offset: 2px;
}

.pdp-sizes-row {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.pdp-size-btn {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-medium);
  background: var(--bg-surface);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pdp-size-btn:hover {
  border-color: var(--accent-brand);
}

.pdp-size-btn.active {
  background: var(--accent-brand);
  color: #ffffff;
  border-color: var(--accent-brand);
}

/* Actions */
.pdp-actions-row {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
  align-items: center;
}

.pdp-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  overflow: hidden;
  height: 48px;
}

.pdp-qty-btn {
  width: 40px;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.pdp-qty-btn:hover {
  background: var(--bg-surface-subtle);
}

.pdp-qty-val {
  min-width: 36px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.pdp-btn-add {
  flex: 1.2;
  height: 48px;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pdp-btn-buy {
  flex: 1;
  height: 48px;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Pincode checker */
.pdp-pincode-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
}

.pdp-pincode-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.pdp-pincode-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface-subtle);
  color: var(--text-main);
  font-size: 0.9rem;
}

.pdp-pincode-result {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  display: none;
}

/* Details and Accordion */
.pdp-accordions {
  border-top: 1px solid var(--border-subtle);
}

.pdp-accordion-item {
  border-bottom: 1px solid var(--border-subtle);
}

.pdp-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.pdp-accordion-content {
  padding: 0 0 18px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.pdp-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.pdp-spec-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.pdp-spec-table td {
  padding: 8px 0;
  font-size: 0.88rem;
}

.pdp-spec-table td:first-child {
  color: var(--text-muted);
  width: 40%;
}

.pdp-spec-table td:last-child {
  color: var(--text-main);
  font-weight: 600;
}

/* Reviews section */
.pdp-reviews-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 56px;
}

.pdp-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}

.pdp-review-card {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.pdp-review-card:last-child {
  border-bottom: none;
}

.pdp-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.pdp-review-author {
  font-weight: 700;
  font-size: 0.92rem;
}

.pdp-review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #10b981;
  font-size: 0.78rem;
  font-weight: 600;
}

.pdp-review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .pdp-stage {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pdp-gallery {
    position: static;
  }
  .pdp-title {
    font-size: 1.7rem;
  }
  .pdp-reassurance-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Figma Make & Luxury D2C Design System Alignment
   ========================================================================== */

/* Active Category Indicator on Navbar */
.nav-category-link {
  position: relative;
  border-bottom: 2px solid transparent;
  border-radius: 0 !important;
  padding: 6px 14px 8px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: #475569 !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-category-link:hover {
  color: #090d16 !important;
}

.nav-category-link.active {
  border-bottom: 2.5px solid #2563eb !important;
  color: #090d16 !important;
  background: transparent !important;
  font-weight: 700 !important;
}

/* 2-Column Split Hero Card (Luxury Flagship Banner) */
.hero-showcase-section {
  padding: 24px 0 36px;
}

.hero-showcase-carousel {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(9, 13, 22, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-slide-split {
  display: none;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(ellipse at 25% 15%, #1e2c4d 0%, #090e1a 100%);
  width: 100%;
  position: relative;
}

.hero-slide-split.active {
  display: flex;
}

.hero-split-left {
  flex: 1 1 52%;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-split-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.32);
  color: #93c5fd;
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
}

.hero-split-title {
  color: #ffffff;
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-split-desc {
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 28px;
}

.hero-split-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.btn-hero-primary {
  background: #ffffff !important;
  color: #090d16 !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-hero-primary:hover {
  background: #f8fafc !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.38);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-2px);
}

.hero-dots-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.25s ease;
}

.hero-dot.active {
  width: 26px;
  height: 7px;
  border-radius: 9999px;
  background: #ffffff;
}

.hero-split-right {
  flex: 1 1 48%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #090e1a;
}

.hero-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide-split:hover .hero-split-img {
  transform: scale(1.03);
}

@media (max-width: 860px) {
  .hero-slide-split {
    flex-direction: column;
  }
  .hero-split-left {
    padding: 38px 24px;
  }
  .hero-split-title {
    font-size: 2.2rem;
  }
  .hero-split-right {
    height: 280px;
  }
}

/* Shop by Department 6-Card Minimalist Row */
.departments-section {
  padding: 44px 0 24px;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.dept-card {
  background: #ffffff;
  border: 1px solid #eaedf2;
  border-radius: 18px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(9, 13, 22, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}

.dept-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -4px rgba(9, 13, 22, 0.08);
  border-color: #cbd5e1;
}

.dept-card.active {
  border-color: #2563eb;
  background: #f8faff;
  box-shadow: 0 0 0 1.5px #2563eb;
}

.dept-card-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dept-card:hover .dept-card-icon {
  transform: scale(1.15);
}

.dept-card-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #090d16;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .departments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .departments-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .dept-card {
    padding: 16px 8px;
  }
  .dept-card-icon {
    font-size: 1.6rem;
  }
}

/* Green Best Seller Badge */
.badge-best-seller {
  background: #059669 !important;
  color: #ffffff !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  padding: 5px 12px !important;
  border-radius: 9999px !important;
  display: inline-block !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3) !important;
}

/* Main Catalog Section */
.catalog-section {
  padding: 32px 0 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Luxury Product Card */
.clean-product-card {
  background: #ffffff;
  border: 1px solid #eaedf2;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(9, 13, 22, 0.03);
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.clean-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px -8px rgba(9, 13, 22, 0.1);
  border-color: #cbd5e1;
}

.card-image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  background: #f8fafc;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f1f5f9;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.clean-product-card:hover .card-image-box img {
  transform: scale(1.05);
}

.card-floating-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
}

.card-heart-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(234, 237, 242, 0.9);
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(9, 13, 22, 0.08);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-heart-btn:hover {
  transform: scale(1.1);
  color: #dc2626;
  background: #ffffff;
}

.card-heart-btn.active {
  color: #dc2626;
}

.card-content-area {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.card-color-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #475569;
}

.card-color-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.card-title-text {
  font-size: 1rem;
  font-weight: 700;
  color: #090d16;
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 2px 0 6px;
  cursor: pointer;
  transition: color 0.15s;
}

.card-title-text:hover {
  color: #2563eb;
}

.card-desc-snippet {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-pricing-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 14px;
}

.card-price-primary {
  font-size: 1.3rem;
  font-weight: 800;
  color: #090d16;
  letter-spacing: -0.02em;
}

.card-price-original {
  font-size: 0.88rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.card-discount-pill {
  font-size: 0.72rem;
  font-weight: 800;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 2px 7px;
  border-radius: 6px;
}

.card-actions-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-card-details {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 9px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #090d16;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.2s;
}

.btn-card-details:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.btn-card-add {
  flex: 1.4;
  text-align: center;
  padding: 9px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  background: #090d16;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(9, 13, 22, 0.15);
}

.btn-card-add:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(9, 13, 22, 0.22);
}

/* Placeholder Coming Soon Cards */
.placeholder-product-card {
  background: #fafbfc;
  border: 1.5px dashed #d1d9e2;
  border-radius: 18px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  transition: all 0.25s;
}

.placeholder-product-card:hover {
  border-color: #94a3b8;
  background: #f8fafc;
  transform: translateY(-2px);
}

.placeholder-sparkle {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.3));
}

.placeholder-text {
  font-size: 0.86rem;
  color: #64748b;
  font-weight: 600;
}

/* Shopping Bag Slide-Out Drawer */
.cart-slide-drawer {
  width: 440px;
  background: #ffffff;
  box-shadow: -8px 0 44px rgba(9, 13, 22, 0.2);
  border-left: 1px solid #eaedf2;
}

.drawer-top-bar {
  padding: 20px 24px;
  border-bottom: 1px solid #eaedf2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-top-bar h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #090d16;
  letter-spacing: -0.02em;
}

.free-delivery-tracker {
  padding: 14px 24px;
  background: #f0fdf4;
  border-bottom: 1px solid rgba(5, 150, 105, 0.15);
}

.tracker-bar-track {
  height: 6px;
  border-radius: 999px;
  background: #dcfce7;
  overflow: hidden;
  margin-top: 6px;
}

.tracker-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.drawer-scroll-items {
  padding: 8px 0;
  overflow-y: auto;
  flex: 1;
}

.drawer-item-row {
  padding: 18px 24px;
  border-bottom: 1px solid #eaedf2;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.drawer-item-row img {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  border: 1px solid #eaedf2;
  object-fit: cover;
  background: #f8fafc;
  flex-shrink: 0;
}

.drawer-item-info {
  flex: 1;
}

.drawer-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #090d16;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.drawer-item-price {
  font-size: 0.98rem;
  font-weight: 800;
  color: #090d16;
  white-space: nowrap;
}

.drawer-item-color {
  font-size: 0.78rem;
  color: #64748b;
  margin: 3px 0 10px;
}

.drawer-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stepper-box {
  border: 1px solid #eaedf2;
  border-radius: 999px;
  padding: 3px 10px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.stepper-btn {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  line-height: 1;
}

.stepper-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #090d16;
}

.drawer-remove-link {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 0.15s;
}

.drawer-remove-link:hover {
  color: #dc2626;
}

.drawer-bottom-checkout {
  padding: 22px 24px;
  background: #ffffff;
  border-top: 1px solid #eaedf2;
  box-shadow: 0 -4px 20px rgba(9, 13, 22, 0.04);
}

#couponInput {
  border: 1px solid #d1d9e2;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  background: #f8fafc;
}

#btnApplyCoupon {
  background: #ffffff;
  border: 1px solid #090d16;
  color: #090d16;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

#btnApplyCoupon:hover {
  background: #090d16;
  color: #ffffff;
}

#btnProceedCheckout {
  background: #090d16 !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.96rem !important;
  padding: 14px !important;
  transition: all 0.25s !important;
  box-shadow: 0 4px 16px rgba(9, 13, 22, 0.2) !important;
  cursor: pointer !important;
  border: none !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#btnProceedCheckout:hover {
  background: #1e293b !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(9, 13, 22, 0.3) !important;
}

/* Empty Bag Drawer */
.empty-bag-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  padding: 40px 24px;
}

.empty-bag-illustration {
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 20px rgba(56, 189, 248, 0.2));
}

.empty-bag-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #090d16;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.empty-bag-desc {
  font-size: 0.88rem;
  color: #64748b;
  max-width: 260px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

.btn-empty-continue {
  background: #090d16;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 30px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(9, 13, 22, 0.18);
}

.btn-empty-continue:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(9, 13, 22, 0.25);
}

/* PDP Breadcrumbs & Reassurance matching Screenshot 5 */
.pdp-breadcrumb {
  font-size: 0.84rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pdp-back-home {
  color: #090d16;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}

.pdp-back-home:hover {
  color: #2563eb;
}

.badge-best-seller.pdp-floating-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
}

.pdp-main-image-wrap {
  border-radius: 22px;
  border: 1px solid #eaedf2;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 4px 24px rgba(9, 13, 22, 0.04);
}

.pdp-thumbnail {
  border-radius: 12px;
  border: 1.5px solid #eaedf2;
  transition: all 0.2s;
  cursor: pointer;
}

.pdp-thumbnail.active {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px #2563eb;
}

.pdp-reassurance-row {
  display: flex !important;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.pdp-reassurance-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #eaedf2;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 1px 3px rgba(9, 13, 22, 0.03);
}

.pdp-reassurance-pill svg {
  stroke: #059669;
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.pdp-brand-tag {
  font-size: 0.76rem;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.pdp-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #090d16;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.pdp-tagline {
  font-size: 0.96rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 16px;
}

.pdp-btn-add {
  background: #090d16 !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  padding: 13px 26px !important;
  box-shadow: 0 4px 14px rgba(9, 13, 22, 0.2);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.pdp-btn-add:hover {
  background: #1e293b !important;
  transform: translateY(-1px);
}

.pdp-btn-buy {
  background: #ffffff !important;
  color: #090d16 !important;
  border: 1.5px solid #090d16 !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  padding: 13px 26px !important;
  transition: all 0.2s;
  cursor: pointer;
}

.pdp-btn-buy:hover {
  background: #f8fafc !important;
  border-color: #1e293b !important;
}

.pdp-pincode-card {
  background: #f8fafc;
  border: 1px solid #eaedf2;
  border-radius: 14px;
  padding: 18px;
  margin-top: 22px;
}

#pdpPincodeBtn {
  background: #090d16 !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
}

#pdpPincodeBtn:hover {
  background: #1e293b !important;
}

/* ==========================================================================
   KARTNEST LUXURY REDESIGN V4 STYLES (Clean, D2C, High-Conversion)
   ========================================================================== */

/* Brand Dot */
.brand-name .brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  display: inline-block;
  margin-left: 2px;
}

/* Header Live Search Bar */
.header-search-bar {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  padding: 0 16px;
  height: 42px;
  width: 100%;
  max-width: 420px;
  gap: 10px;
  color: #64748b;
  transition: all 0.2s ease;
}

.header-search-bar:focus-within {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.header-search-bar input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 0.88rem;
  color: #0f172a;
  font-family: inherit;
}

.header-search-clear {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #94a3b8;
  cursor: pointer;
  padding: 0;
}

/* Header Action Link (Track Order) */
.header-action-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
  color: #334155;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 9999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.header-action-link:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

/* Luxury Cart Pill */
.btn-cart-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #090d16;
  color: #ffffff;
  border: none;
  padding: 9px 18px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(9, 13, 22, 0.15);
  transition: all 0.2s;
}

.btn-cart-pill:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(9, 13, 22, 0.25);
}

.cart-pill-count {
  background: #2563eb;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Category Sub-Header Navigation */
.sub-category-bar {
  border-top: 1px solid #f1f5f9;
  background: #ffffff;
  overflow-x: auto;
  white-space: nowrap;
}

.sub-category-inner {
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

@media (max-width: 860px) {
  .header-search-bar, .sub-category-bar, .header-action-link .action-text {
    display: none !important;
  }
}

/* Hero Pill Badge & Pricing */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #bfdbfe;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-sparkle {
  color: #60a5fa;
}

.hero-pill-discount {
  background: #ef4444;
  color: #ffffff;
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: 9999px;
  font-weight: 800;
}

.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-current-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-mrp-price {
  font-size: 1.1rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.hero-save-badge {
  background: rgba(5, 150, 105, 0.25);
  border: 1px solid #10b981;
  color: #34d399;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
}

.hero-trust-pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust-pill {
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
}

/* Floating Feature Chips over Hero Image */
.hero-chip-stat {
  position: absolute;
  background: rgba(9, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 6;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.chip-top-left {
  top: 24px;
  left: 24px;
}

.chip-bottom-right {
  bottom: 24px;
  right: 24px;
}

.chip-top-right {
  top: 24px;
  right: 24px;
}

/* Flash Deal Ribbon */
.flash-deal-ribbon {
  background: linear-gradient(90deg, #090e1a 0%, #1e2c4d 50%, #090e1a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  color: #ffffff;
}

.flash-deal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.flash-deal-badge {
  background: #ef4444;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.flash-deal-text {
  font-size: 0.88rem;
  color: #e2e8f0;
}

.flash-deal-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #94a3b8;
}

.timer-digits {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  font-weight: 700;
}

.timer-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.92rem;
}

/* Circular Category Story Capsules */
.dept-capsule-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dept-capsule-card:hover {
  transform: translateY(-4px);
}

.dept-capsule-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 3px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(9, 13, 22, 0.06);
  overflow: hidden;
  transition: all 0.25s ease;
}

.dept-capsule-card:hover .dept-capsule-ring {
  border-color: #2563eb;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
  transform: scale(1.05);
}

.dept-capsule-card.active .dept-capsule-ring {
  border-color: #2563eb;
  box-shadow: 0 0 0 2.5px #2563eb;
}

.dept-capsule-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.dept-capsule-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #090d16;
  text-align: center;
  line-height: 1.25;
  transition: color 0.15s;
}

.dept-capsule-card:hover .dept-capsule-title,
.dept-capsule-card.active .dept-capsule-title {
  color: #2563eb;
}

@media (max-width: 768px) {
  .dept-capsule-ring {
    width: 72px;
    height: 72px;
  }
  .dept-capsule-title {
    font-size: 0.78rem;
  }
}

/* Product Card Luxury Upgrades */
.badge-discount-tag {
  background: #dc2626;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 9999px;
  margin-left: 6px;
  box-shadow: 0 2px 6px rgba(220, 38, 38, 0.3);
}

.card-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.card-stars-line {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  font-weight: 700;
}

.card-star-glyph {
  color: #f59e0b;
}

.card-rating-num {
  color: #090d16;
}

.card-review-count {
  color: #94a3b8;
  font-weight: 500;
}

.card-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.card-save-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 2px 6px;
  border-radius: 4px;
}

.card-shipping-tag {
  font-size: 0.75rem;
  color: #059669;
  font-weight: 600;
  margin-bottom: 12px;
}

.btn-card-buy {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #090d16;
  background: #ffffff;
  border: 1.5px solid #090d16;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-card-buy:hover {
  background: #f8fafc;
  border-color: #1e293b;
}

/* Preview Cards */
.preview-product-card {
  opacity: 0.95;
}

.badge-preview-tag {
  background: #475569;
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.card-drop-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
}

.btn-card-notify {
  width: 100%;
  padding: 9px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #090d16;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-card-notify:hover {
  background: #e2e8f0;
}

/* Section Pill Tag */
.section-pill-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

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

/* Brand Trust Section */
.brand-trust-section {
  padding: 30px 0;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin: 30px 0;
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-pillar-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #eaedf2;
  border-radius: 14px;
}

.trust-pillar-card .trust-icon-box {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #090d16;
  margin-bottom: 2px;
}

.trust-content p {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.35;
  margin: 0;
}

/* Feature Spotlight Section */
.feature-spotlight-section {
  padding: 60px 0;
  background: #fdfdfd;
}

.spotlight-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #eaedf2;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 2px 10px rgba(9, 13, 22, 0.03);
  transition: all 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(9, 13, 22, 0.08);
  border-color: #cbd5e1;
}

.feature-icon-badge {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #090d16;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Customer Reviews Section */
.customer-reviews-section {
  padding: 60px 0;
  background: #f8fafc;
  border-top: 1px solid #eaedf2;
  border-bottom: 1px solid #eaedf2;
}

.reviews-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.review-quote-card {
  background: #ffffff;
  border: 1px solid #eaedf2;
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 2px 8px rgba(9, 13, 22, 0.03);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #090d16;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.review-author strong {
  display: block;
  font-size: 0.88rem;
  color: #090d16;
}

.review-author span {
  font-size: 0.75rem;
  color: #059669;
  font-weight: 600;
}

/* FAQ Accordion Section */
.faq-accordion-section {
  padding: 60px 0 80px;
}

.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: #2563eb;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: #090d16;
  cursor: pointer;
}

.faq-arrow {
  font-size: 1.4rem;
  font-weight: 400;
  color: #64748b;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
  color: #2563eb;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px 20px;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

@media (max-width: 960px) {
  .trust-pillars-grid, .spotlight-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .trust-pillars-grid, .spotlight-features-grid {
    grid-template-columns: 1fr;
  }
}
