/* ==========================================================================
   HOMETOWN & PEPPERFRY PRO MAX - UI/UX DESIGN SYSTEM (DEEP FURNITURE)
   ========================================================================== */

:root {
  /* Brand Palette - Clean Retail Luxury */
  --ht-red: #D13B28;              /* HomeTown Signature Crimson Red */
  --ht-red-hover: #B82F1D;
  --ht-red-subtle: #FDF1EF;
  --ht-dark: #1F1F1F;             /* Primary Text */
  --ht-body: #4A4A4A;             /* Secondary Text */
  --ht-muted: #7E7E7E;            /* Supporting Text */
  --ht-navy: #0B2533;             /* Contrast Accent */
  --ht-sale-green: #0E8345;       /* Savings & Trust */
  --ht-bg: #F8F9FA;               /* Soft Studio Grey */
  --ht-surface: #FFFFFF;
  --ht-border: #E8ECEF;
  --ht-border-hover: #CFD7DF;
  --ht-whatsapp: #25D366;
  --ht-whatsapp-hover: #1EBE5D;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);

  /* Shadows */
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.09);
  --shadow-drawer: -8px 0 32px rgba(0, 0, 0, 0.16);

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset - Zero Horizontal Slide */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--ht-bg);
  color: var(--ht-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  max-width: 100%;
  width: 100%;
  position: relative;
}

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

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

input {
  font-family: inherit;
}

.container {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* SVG Icon Helper */
.svg-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

/* 1. TOP UTILITY STRIP */
.ht-utility-bar {
  background: var(--ht-navy);
  color: #DDE2E5;
  font-size: 0.8125rem;
  padding: 8px 0;
}

.ht-utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ht-deal-badge {
  background: var(--ht-red);
  color: #FFF;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  margin-right: 8px;
}

.ht-utility-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ht-utility-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.ht-utility-links a:hover {
  color: #FFF;
}

/* 2. MAIN HEADER */
.ht-header {
  background: var(--ht-surface);
  border-bottom: 1px solid var(--ht-border);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--shadow-subtle);
}

.ht-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 0;
}

.ht-logo {
  display: flex;
  flex-direction: column;
}

.ht-logo-main {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 900;
  color: var(--ht-navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.ht-logo-main span {
  color: var(--ht-red);
}

.ht-logo-tagline {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ht-muted);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Omnibar Search */
.ht-search-wrap {
  flex-grow: 1;
  max-width: 640px;
  position: relative;
}

.ht-search-inner {
  display: flex;
  align-items: center;
  background: #F1F3F5;
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  padding: 0 18px;
  transition: var(--ease-smooth);
}

.ht-search-inner:focus-within {
  background: #FFF;
  border-color: var(--ht-red);
  box-shadow: 0 0 0 4px rgba(209, 59, 40, 0.1);
}

.ht-search-inner input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 12px 10px;
  font-size: 0.9375rem;
  outline: none;
  color: var(--ht-dark);
}

.ht-search-inner svg {
  color: #718096;
  width: 20px;
  height: 20px;
}

/* Header Right Actions */
.ht-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ht-pincode-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: #F8F9FA;
  border: 1px solid var(--ht-border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ht-body);
}

.ht-pincode-badge strong {
  color: var(--ht-dark);
}

.ht-action-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ht-dark);
  gap: 4px;
  padding: 4px;
  transition: color 0.2s;
  position: relative;
}

.ht-action-link:hover {
  color: var(--ht-red);
}

.ht-action-link svg {
  width: 22px;
  height: 22px;
}

.ht-cart-counter {
  position: absolute;
  top: -3px;
  right: 4px;
  background: var(--ht-red);
  color: #FFF;
  font-size: 0.6875rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3. CATEGORY NAV BAR */
.ht-nav-strip {
  background: var(--ht-surface);
  border-bottom: 1px solid var(--ht-border);
}

.ht-nav-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 12px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.ht-nav-items a {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ht-dark);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}

.ht-nav-items a:hover, .ht-nav-items li.active a {
  color: var(--ht-red);
}

.ht-nav-items li.active a::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--ht-red);
}

.ht-nav-deal a {
  color: var(--ht-red) !important;
  font-weight: 800;
}

/* 4. CIRCLE CATEGORY BUBBLES */
.ht-bubble-section {
  padding: 24px 0 16px;
  background: var(--ht-surface);
  border-bottom: 1px solid var(--ht-border);
}

.ht-bubbles-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.ht-bubble-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.ht-bubble-item:hover {
  transform: translateY(-3px);
}

.ht-bubble-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: #F1F3F5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: var(--shadow-subtle);
  transition: var(--ease-smooth);
}

.ht-bubble-item:hover .ht-bubble-avatar, .ht-bubble-item.active .ht-bubble-avatar {
  border-color: var(--ht-red);
  box-shadow: 0 4px 12px rgba(209, 59, 40, 0.2);
}

.ht-bubble-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ht-bubble-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ht-dark);
}

/* 4. PURE SHOWROOM FRONT HERO PRESENTATION */
.ht-shop-front-hero {
  padding: 16px 0 28px;
}

/* Showroom Status Topbar */
.ht-shop-front-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF;
  border: 1px solid var(--ht-border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-subtle);
  flex-wrap: wrap;
  gap: 10px;
}

.ht-shop-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ht-shop-pill-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #DEF7EC;
  color: #03543F;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.live-blink-dot {
  width: 8px;
  height: 8px;
  background: #0E9F6E;
  border-radius: 50%;
  animation: pulse-live 1.6s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

.ht-shop-pill-location {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ht-dark);
  letter-spacing: 0.03em;
}

.ht-shop-pill-year {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ht-red);
  background: #FDF1EF;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
}

.ht-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ht-red);
  transition: color 0.2s;
}

.ht-topbar-link:hover {
  text-decoration: underline;
}

/* Dual Showcase Stage Layout */
/* 4. UNIFIED GRAND SHOWROOM HERO BANNER (CLEAN LUXURY LIGHT THEME) */
.ht-unified-hero-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF8F5 45%, #F4EFEB 100%);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.07), 0 2px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #E6DFD5;
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

/* Ambient Soft Lighting */
.ht-hero-ambient-bg {
  display: none;
}

.ht-hero-ambient-overlay {
  display: none;
}

.ht-unified-hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  padding: 36px 40px;
  width: 100%;
  align-items: center;
}

/* Left Column: Information & Actions */
.ht-unified-info {
  display: flex;
  flex-direction: column;
}

.ht-info-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.ht-info-tag-gold {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FCD34D;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ht-info-tag-crimson {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ht-unified-title {
  font-family: 'Plus Jakarta Sans', var(--font-display);
  font-size: 3.25rem;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-bottom: 8px;
}

.ht-unified-motto {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.ht-unified-desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 580px;
}

/* 4 Clean Metric Cards (Light Theme Stats) */
.ht-unified-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.ht-stat-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.ht-stat-item:hover {
  transform: translateY(-2px);
  border-color: #D97706;
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.12);
}

.ht-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 900;
  color: #D97706;
  letter-spacing: -0.02em;
}

.ht-stat-lbl {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.25;
}

/* Action Buttons */
.ht-unified-actions {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-wa-unified {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFF;
  font-weight: 800;
  font-size: 0.9375rem;
  padding: 13px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-wa-unified:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.55);
  color: #FFF;
}

.btn-primary-unified {
  background: linear-gradient(135deg, #D13B28 0%, #B82E1C 100%);
  color: #FFF;
  font-weight: 800;
  font-size: 0.9375rem;
  padding: 13px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(209, 59, 40, 0.35);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-primary-unified:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(209, 59, 40, 0.55);
  color: #FFF;
}

.btn-directions-unified {
  grid-column: span 2;
  background: #FFFFFF;
  color: #1E293B;
  border: 1.5px solid #CBD5E1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-directions-unified:hover {
  background: #F8FAFC;
  border-color: #D13B28;
  color: #D13B28;
}

/* Bottom Meta Info */
.ht-unified-meta {
  display: flex;
  gap: 18px;
  font-size: 0.75rem;
  color: #475569;
  padding-top: 14px;
  border-top: 1px solid #E2E8F0;
  flex-wrap: wrap;
}

/* Right Column: Pristine Building Showcase (Zero Black Background) */
.ht-unified-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ht-unified-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08), 0 0 0 1px #E2E8F0;
  background: #FFFFFF;
}

.ht-stage-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ht-unified-visual:hover .ht-stage-photo {
  transform: scale(1.03);
}

.ht-stage-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Luxury Badges on Visual */
.ht-stage-badge {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #0F172A;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.03em;
}

.ht-stage-badge.top-left {
  top: 14px;
  left: 14px;
}

.ht-stage-badge.top-right {
  top: 14px;
  right: 14px;
  background: #D13B28;
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 14px rgba(209, 59, 40, 0.35);
}

.ht-stage-badge-bottom {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #B45309;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1.5px solid #FDE68A;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  z-index: 4;
}

/* Switcher Controls (Light Theme) */
.ht-unified-switcher {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  background: #F1F5F9;
  padding: 5px 8px;
  border-radius: 30px;
  border: 1px solid #E2E8F0;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.unified-switch-btn {
  background: transparent;
  color: #475569;
  border: none;
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.unified-switch-btn:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.unified-switch-btn.active {
  background: #D13B28;
  color: #FFF;
  box-shadow: 0 2px 8px rgba(209, 59, 40, 0.35);
}

.unified-full-link {
  color: #475569;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}

.unified-full-link:hover {
  color: #0F172A;
  background: #F8FAFC;
  border-color: #94A3B8;
}

/* Category Story Bubble Header */
.ht-bubble-header {
  text-align: center;
  margin-bottom: 18px;
}

.ht-bubble-sub {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ht-red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.ht-bubble-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ht-navy);
}

@media (max-width: 992px) {
  .ht-unified-hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }
  .ht-unified-visual {
    max-width: 100%;
    height: 340px;
  }
  .ht-hero-ambient-overlay {
    background: linear-gradient(180deg, rgba(11, 19, 32, 0.94) 0%, rgba(11, 19, 32, 0.98) 100%);
  }
}

@media (max-width: 600px) {
  .ht-unified-visual {
    height: 280px;
  }
  .ht-unified-title {
    font-size: 1.85rem;
  }
  .ht-unified-features {
    grid-template-columns: 1fr;
  }
  .ht-unified-actions {
    grid-template-columns: 1fr;
  }
  .btn-directions-unified {
    grid-column: span 1;
  }
}

/* 6. TRUST VALUE PROPOSITIONS STRIP */
.ht-trust-strip {
  background: var(--ht-surface);
  border-top: 1px solid var(--ht-border);
  border-bottom: 1px solid var(--ht-border);
  padding: 24px 0;
  margin-bottom: 40px;
}

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

.ht-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ht-trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--ht-red-subtle);
  color: var(--ht-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ht-trust-icon-box svg {
  width: 26px;
  height: 26px;
}

.ht-trust-text h4 {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--ht-dark);
  margin-bottom: 2px;
}

.ht-trust-text p {
  font-size: 0.8125rem;
  color: var(--ht-muted);
}

/* 7. SECTION HEADERS */
.ht-section-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.ht-bar-title h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ht-dark);
}

.ht-bar-title p {
  font-size: 0.9375rem;
  color: var(--ht-muted);
  margin-top: 4px;
}

.ht-link-more {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--ht-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ht-link-more:hover {
  text-decoration: underline;
}

/* 8. SHOP BY ROOM */
.ht-rooms {
  padding: 10px 0 45px;
}

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

.ht-room-tile {
  background: var(--ht-surface);
  border: 1px solid var(--ht-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--ease-smooth);
}

.ht-room-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--ht-border-hover);
}

.ht-room-thumb {
  height: 210px;
  overflow: hidden;
  background: #E2E8F0;
}

.ht-room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ht-room-tile:hover .ht-room-thumb img {
  transform: scale(1.06);
}

.ht-room-caption {
  padding: 18px 20px;
  text-align: center;
}

.ht-room-caption h4 {
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.ht-room-caption span {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ht-red);
}

/* 9. PRODUCTS CATALOG (HOMETOWN / PEPPERFRY CARDS) */
.ht-catalog {
  padding: 10px 0 60px;
}

.ht-filter-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.ht-chip-btn {
  background: var(--ht-surface);
  border: 1px solid var(--ht-border);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ht-body);
  white-space: nowrap;
  transition: var(--ease-smooth);
}

.ht-chip-btn:hover, .ht-chip-btn.active {
  background: var(--ht-navy);
  color: #FFF;
  border-color: var(--ht-navy);
}

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

.ht-card {
  background: var(--ht-surface);
  border: 1px solid var(--ht-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--ease-smooth);
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.ht-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #D1D5DB;
}

.ht-card-media {
  position: relative;
  height: 230px;
  background: #F1F5F9;
  overflow: hidden;
}

.ht-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ht-card:hover .ht-card-media img {
  transform: scale(1.05);
}

.ht-tag-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ht-red);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
}

.ht-tag-spec {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #FFF;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  backdrop-filter: blur(4px);
}

.ht-card-details {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ht-card-brand {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ht-red);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.ht-card-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ht-dark);
  line-height: 1.35;
  height: 2.7em;
  overflow: hidden;
  margin-bottom: 8px;
}

.ht-card-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  color: #D97706;
  font-weight: 700;
  margin-bottom: 10px;
}

.ht-card-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 4px;
}

.ht-price-now {
  font-size: 1.3125rem;
  font-weight: 900;
  color: var(--ht-dark);
}

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

.ht-card-savings {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ht-sale-green);
  margin-bottom: 14px;
}

.ht-card-btns {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.btn-card-order-wa {
  background: var(--ht-whatsapp);
  color: #FFF;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--ease-smooth);
}

.btn-card-order-wa:hover {
  background: var(--ht-whatsapp-hover);
}

.btn-card-add-cart {
  background: #FFF;
  border: 1px solid var(--ht-border);
  color: var(--ht-navy);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.875rem;
  transition: var(--ease-smooth);
}

.btn-card-add-cart:hover {
  background: var(--ht-navy);
  color: #FFF;
  border-color: var(--ht-navy);
}

/* 10. SHOWROOM GALLERY & 10S VIDEO REEL */
.ht-showroom {
  background: var(--ht-surface);
  border-top: 1px solid var(--ht-border);
  border-bottom: 1px solid var(--ht-border);
  padding: 60px 0;
}

.ht-gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.ht-gallery-box {
  position: relative;
  height: 230px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--ht-border);
  box-shadow: var(--shadow-card);
}

.ht-gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ht-gallery-box:hover img {
  transform: scale(1.07);
}

.ht-gallery-glass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
  padding: 14px 16px;
  color: #FFF;
}

.ht-gallery-glass span {
  display: inline-block;
  background: var(--ht-red);
  color: #FFF;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  margin-bottom: 4px;
}

.ht-gallery-glass h5 {
  font-size: 0.9375rem;
  font-weight: 700;
}

/* Video Walkthrough Player */
.ht-video-showcase {
  background: var(--ht-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  color: #FFF;
  box-shadow: var(--shadow-hover);
}

.ht-video-text {
  padding: 50px 45px;
}

.ht-video-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.2);
  color: #FBBF24;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ht-video-text h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
}

.ht-video-text h3 span {
  color: #F59E0B;
}

.ht-video-text p {
  color: #CBD5E1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.ht-video-screen {
  height: 420px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-video-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 11. STORE LOCATION & TIMINGS */
.ht-location-box {
  background: var(--ht-surface);
  border: 1px solid var(--ht-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin: 50px 0;
  box-shadow: var(--shadow-card);
}

.ht-location-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.ht-location-info p {
  color: var(--ht-body);
  margin-bottom: 20px;
}

.ht-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 0.9375rem;
}

.ht-info-list div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ht-map-frame {
  height: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--ht-border);
}

.ht-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* 12. FOOTER */
.ht-footer-main {
  background: #0B1320;
  color: #94A3B8;
  padding: 60px 0 30px;
  font-size: 0.875rem;
}

.ht-footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 45px;
}

.ht-footer-cols h4 {
  color: #FFF;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ht-footer-cols ul {
  list-style: none;
}

.ht-footer-cols ul li {
  margin-bottom: 10px;
}

.ht-footer-cols ul li a:hover {
  color: #FFF;
}

.ht-footer-end {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

/* 13. CART DRAWER */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease-smooth);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #FFF;
  z-index: 1200;
  box-shadow: var(--shadow-drawer);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--ht-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 800;
}

.drawer-close {
  font-size: 1.4rem;
  color: var(--ht-muted);
}

.drawer-body {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
}

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

.btn-checkout-wa {
  width: 100%;
  background: var(--ht-whatsapp);
  color: #FFF;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--ease-smooth);
}

.btn-checkout-wa:hover {
  background: var(--ht-whatsapp-hover);
}

/* Floating WhatsApp */
.floating-wa-btn {
  position: fixed;
  bottom: 80px;
  right: 25px;
  background: var(--ht-whatsapp);
  color: #FFF;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--ease-smooth);
}

.floating-wa-btn:hover {
  transform: scale(1.08) translateY(-2px);
}

.floating-wa-btn svg {
  width: 32px;
  height: 32px;
  fill: #FFF;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .ht-hero-card {
    grid-template-columns: 1fr;
  }
  .ht-hero-visual {
    height: 320px;
  }
  .ht-unified-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .ht-unified-visual {
    height: 380px;
    max-width: 100%;
  }
  .ht-product-deck, .ht-rooms-grid, .ht-gallery-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .ht-video-showcase, .ht-location-box {
    grid-template-columns: 1fr;
  }
  .ht-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ht-footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .ht-utility-bar {
    display: none;
  }
  .ht-pincode-badge {
    display: none;
  }
  .ht-unified-title {
    font-size: 2.2rem;
  }
  .ht-unified-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ht-unified-actions {
    grid-template-columns: 1fr;
  }
  .btn-directions-unified {
    grid-column: span 1;
  }
  .ht-unified-visual {
    height: 290px;
  }
  .ht-product-deck, .ht-rooms-grid, .ht-gallery-row {
    grid-template-columns: 1fr;
  }
  .ht-trust-grid {
    grid-template-columns: 1fr;
  }
  .ht-hero-body {
    padding: 35px 24px;
  }
  .ht-hero-title {
    font-size: 2.2rem;
  }
  .ht-footer-cols {
    grid-template-columns: 1fr;
  }
}

/* Category Specific Page Styles */
.ht-cat-hero {
  background: linear-gradient(135deg, #FAF8F5 0%, #F5EFEB 100%);
  border-bottom: 1px solid var(--ht-border);
  padding: 36px 0;
  margin-bottom: 30px;
}
.ht-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--ht-muted);
  margin-bottom: 12px;
}
.ht-breadcrumb a {
  color: var(--ht-body);
  text-decoration: none;
  font-weight: 600;
}
.ht-breadcrumb a:hover {
  color: var(--ht-red);
}
.ht-cat-hero-content h1 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--ht-navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.ht-cat-hero-content p {
  color: var(--ht-muted);
  font-size: 0.95rem;
  max-width: 700px;
  line-height: 1.5;
}
.ht-cat-badge-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.ht-cat-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF;
  border: 1px solid var(--ht-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ht-dark);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.ht-custom-cta-card {
  background: linear-gradient(135deg, #FFF9F8 0%, #FFF0ED 100%);
  border: 2px dashed rgba(209, 59, 40, 0.3);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
}
.ht-custom-cta-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ht-dark);
  margin-bottom: 6px;
}
.ht-custom-cta-info p {
  font-size: 0.9rem;
  color: var(--ht-muted);
}
@media (max-width: 640px) {
  .ht-custom-cta-card {
    flex-direction: column;
    text-align: center;
  }
}
}

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */

@media (max-width: 992px) {
  .ht-unified-content {
    grid-template-columns: 1fr !important;
    gap: 40px;
    padding: 30px 0;
  }
  
  .ht-unified-visual {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

@media (max-width: 768px) {
  /* Header & Navigation */
  .ht-navbar {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
  }
  
  .ht-nav-links {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    justify-content: flex-start;
  }
  
  .ht-nav-links::-webkit-scrollbar {
    height: 4px;
  }
  .ht-nav-links::-webkit-scrollbar-thumb {
    background-color: var(--ht-border);
    border-radius: 4px;
  }

  /* Hero Section */
  .ht-shop-front-hero {
    padding: 20px 0;
  }
  
  .ht-hero-brand h1 {
    font-size: 2.2rem;
  }
  
  /* Brands Strip */
  .ht-brands-strip > div > div {
    gap: 24px !important;
  }
  
  .ht-brands-strip > div > div > div {
    font-size: 1.15rem !important;
  }
  
  /* Category Bubbles */
  .ht-bubbles-row {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding-bottom: 16px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
  }
  
  .ht-bubbles-row::-webkit-scrollbar {
    display: none;
  }
  
  .ht-bubble-item {
    flex: 0 0 auto;
    width: 85px;
  }
  
  .ht-bubble-avatar {
    width: 70px;
    height: 70px;
  }
  
  .ht-bubble-text {
    font-size: 0.75rem;
  }
  
  /* Trust Strip */
  .ht-trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Product Grid */
  .ht-product-deck {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 20px;
  }
  
  /* Footer */
  .ht-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
