/* ==========================================================================
   HOMZART CLONE - E-COMMERCE & ENQUIRY PORTAL STYLESHEET
   Supports 100% Locked Mobile Interface (<=768px) AND Pixel-Perfect Desktop (>=769px)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #FAF7F2;
  --bg-secondary: #FFFDF9;
  --bg-card: #FFFFFF;
  --bg-gold-light: #FFF8E7;
  --bg-gold-banner: #F7E49D;
  --bg-fresh-green: #1F3627;
  --color-gold: #D6971C;
  --color-gold-dark: #B87E10;
  --color-accent: #E58622;
  --color-text-main: #2C2621;
  --color-text-muted: #736C65;
  --color-border: #E8E2D9;
  --color-border-light: #F2ECE4;
  --color-success: #00897B;
  --color-badge-red: #D9534F;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 8px rgba(44, 38, 33, 0.05);
  --shadow-md: 0 8px 24px rgba(44, 38, 33, 0.08);
  --shadow-lg: 0 16px 36px rgba(44, 38, 33, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ==========================================================================
   1. ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background-color: var(--bg-gold-banner);
  color: #3D3212;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  text-align: center;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .announcement-bar {
    padding: 8px 0;
    display: flex;
    align-items: center;
  }
  .announcement-text-scroller {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 16s linear infinite;
  }
}

@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

.announcement-bar span.code {
  background: rgba(255,255,255,0.85);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  color: #A06400;
}

.announcement-bar a {
  text-decoration: underline;
  margin-left: 6px;
  font-weight: 700;
}

/* ==========================================================================
   2. MAIN HEADER & NAVIGATION
   ========================================================================== */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 900;
  background-color: var(--bg-secondary);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 10px;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 2px;
}

.brand-logo .dot {
  color: var(--color-gold);
  font-size: 38px;
  line-height: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: transparent;
  color: var(--color-text-main);
  font-size: 11px;
  font-weight: 600;
  position: relative;
  transition: var(--transition);
}

.header-action-btn:hover {
  color: var(--color-gold);
}

.header-action-btn svg {
  width: 22px;
  height: 22px;
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--color-gold);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-search {
  position: relative;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background-color: #F3EFEA;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  transition: var(--transition);
}

.search-input-wrapper:focus-within {
  background-color: #FFFFFF;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(214, 151, 28, 0.15);
}

.search-input-wrapper input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 6px 10px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--color-text-main);
  outline: none;
}

.search-input-wrapper svg {
  color: var(--color-text-muted);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Search Dropdown Results */
.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  max-height: 380px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-results-dropdown.active {
  display: block;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border-light);
  cursor: pointer;
  transition: var(--transition);
}

.search-item:hover {
  background-color: var(--bg-gold-light);
}

.search-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.search-item .title {
  font-size: 13.5px;
  font-weight: 600;
}

.search-item .price {
  font-size: 12.5px;
  color: var(--color-gold-dark);
  font-weight: 700;
}

.category-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 16px 12px;
  border-top: 1px solid var(--color-border-light);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
}

@media (min-width: 769px) {
  .category-nav {
    justify-content: center;
    padding: 10px 0 12px;
    gap: 32px;
  }
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav a {
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-text-main);
  transition: var(--transition);
  cursor: pointer;
}

.category-nav a:hover,
.category-nav a.active {
  color: var(--color-gold-dark);
}

.category-nav a.sale-tag {
  color: var(--color-badge-red);
  font-weight: 700;
}

/* ==========================================================================
   3. HERO BANNER
   ========================================================================== */
.hero-banner-section {
  padding: 20px 0;
}

.hero-banner-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
}

.hero-banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 24, 18, 0.75) 0%, rgba(30, 24, 18, 0.25) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 520px;
  padding-left: 50px;
}

.hero-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--bg-gold-banner);
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-gold);
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(214, 151, 28, 0.35);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   4. CIRCULAR CATEGORY ICONS (DESKTOP 8-COLUMNS x 2 ROWS)
   ========================================================================== */
.category-circles-section {
  padding: 28px 0 36px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-main);
  text-align: center;
}

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

.circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-align: center;
}

.circle-img-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FFFFFF;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-card);
  transition: var(--transition);
}

.circle-card:hover .circle-img-wrapper {
  transform: scale(1.06);
  border-color: var(--color-gold);
  box-shadow: 0 8px 20px rgba(214, 151, 28, 0.25);
}

.circle-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-card span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.2;
}

/* ==========================================================================
   5. BENTO FEATURE BANNERS (DESKTOP ASYMMETRIC BENTO)
   ========================================================================== */
.bento-grid-section {
  padding: 20px 0 40px;
}

.bento-grid-desktop {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 20px;
}

.bento-card-main {
  grid-row: 1 / 3;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.bento-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-card-main:hover img {
  transform: scale(1.05);
}

.bento-card-small {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.bento-card-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-card-small:hover img {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(20,16,12,0.85) 100%);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
}

.bento-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.btn-shop-now-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: rgba(255,255,255,0.95);
  color: #2C2621;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
}

/* ==========================================================================
   6. "IF IT'S TRENDING IT'S ON HOMZART." (DEALS UNDER GOLD DESKTOP 5-COL)
   ========================================================================== */
.trending-section {
  background-color: #FEF7DC;
  padding: 44px 0;
  margin: 30px 0 40px;
}

.trending-header {
  text-align: center;
  margin-bottom: 8px;
}

.trending-title-main {
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.15;
  color: #211C16;
  font-weight: 400;
}

.trending-title-main strong.brand-text {
  font-weight: 700;
  font-size: 38px;
  position: relative;
  display: inline-block;
}

.brand-underline-svg {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 8px;
  overflow: visible;
}

.trending-timer-line {
  font-size: 13.5px;
  color: #38301B;
  font-weight: 500;
  text-align: center;
  margin: 12px 0 28px;
}

.trending-timer-line strong {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.trending-grid-desktop {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.trending-card-item {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(44, 38, 33, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.btn-enquire-outlined {
  width: 100%;
  background: #FFFFFF;
  color: #2C2621;
  border: 1.5px solid #D4CEBE;
  padding: 10px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
  transition: var(--transition);
}

.btn-enquire-outlined:hover {
  background: var(--color-text-main);
  color: #FFFFFF;
  border-color: var(--color-text-main);
}

.btn-view-all-blue {
  background: #E8F0FE;
  color: #1A73E8;
  border: none;
  padding: 11px 32px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin: 24px auto 0;
  box-shadow: 0 2px 8px rgba(26,115,232,0.12);
  transition: var(--transition);
}

.btn-view-all-blue:hover {
  background: #D2E3FC;
}

.badge-discount-pill {
  display: inline-block;
  background: #E0F2F1;
  color: var(--color-success);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}

/* ==========================================================================
   7. THE ART EDIT & RUGS SHOWCASE
   ========================================================================== */
.art-edit-section {
  padding: 30px 0;
}

.art-grid-5col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.art-card {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid #E8DFD1;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.art-card:hover img {
  transform: scale(1.06);
}

.art-overlay {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  padding: 14px;
  color: #FFFFFF;
  text-align: center;
}

.art-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
}

/* GIFTING BANNER */
.gifting-banner-section {
  background-color: var(--bg-gold-banner);
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gifting-text h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: #3D3212;
}

.gifting-text p {
  font-size: 15px;
  color: #665219;
  font-weight: 600;
}

/* ==========================================================================
   8. MONSOON DINING ESSENTIALS (DESKTOP 6-COLUMNS x 2 ROWS)
   ========================================================================== */
.monsoon-dining-section {
  padding: 40px 0;
}

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

.dining-item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  cursor: pointer;
}

.dining-img-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #E2F5F4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: var(--transition);
}

.dining-item-card:hover .dining-img-ring {
  transform: scale(1.08);
  background-color: #D2EFEB;
}

.dining-img-ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dining-item-card span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-main);
  line-height: 1.25;
  letter-spacing: 0.4px;
}

/* ==========================================================================
   9. EXPLORE BY SPACES (DESKTOP 4-COLUMNS GRID)
   ========================================================================== */
.explore-spaces-section {
  padding: 30px 0 40px;
}

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

.space-card-item {
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.space-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.space-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.space-card-item:hover img {
  transform: scale(1.06);
}

.space-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(18, 14, 10, 0.88) 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
}

.space-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.space-sub {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.3;
}

/* ==========================================================================
   10. WHAT MAKES YOUR HOME "HOME" (DESKTOP 5-COLUMNS REELS)
   ========================================================================== */
.home-reels-section {
  padding: 30px 0 50px;
}

.reels-grid-desktop {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.reel-item-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.reel-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 15.5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: #2C2621;
}

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

.reel-item-box:hover .reel-media-wrapper img {
  transform: scale(1.05);
}

.reel-logo-watermark {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 0.9;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  text-align: right;
}

.reel-subtitle-overlay {
  position: absolute;
  bottom: 24px;
  left: 14px;
  right: 14px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

.reel-influencer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-main);
  padding-left: 2px;
}

/* ==========================================================================
   11. FRESH CORNER (DARK GREEN SECTION DESKTOP)
   ========================================================================== */
.fresh-corner-section {
  background-color: var(--bg-fresh-green);
  color: #FFFFFF;
  padding: 50px 0;
  margin: 40px 0;
}

.fresh-header {
  text-align: center;
  margin-bottom: 28px;
}

.fresh-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
}

.fresh-sub {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 4px;
}

.fresh-plants-grid-desktop {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.plant-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: var(--transition);
}

.plant-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.plant-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.plant-card span {
  font-size: 13px;
  font-weight: 600;
  color: #E2F5E5;
}

/* ==========================================================================
   12. PRODUCT CATALOG DESKTOP 4-COLUMNS
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #F5F1EB;
  cursor: pointer;
}

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

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

.badge-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-badge-red);
  color: #FFFFFF;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--radius-full);
}

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

.product-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-text-main);
  margin: 4px 0 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  margin-top: auto;
}

.price-current {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-main);
}

.price-old {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.btn-enquire-card {
  width: 100%;
  background: #2C2621;
  color: #FFFFFF;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-enquire-card:hover {
  background: var(--color-gold);
}

/* ==========================================================================
   13. MODALS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 20, 16, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-card {
  background: var(--bg-card);
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 32px;
}

.main-image-view {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #F4EFEA;
}

.main-image-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.thumb-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
}

.thumb-btn.active {
  border-color: var(--color-gold);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.btn-enquire-primary {
  width: 100%;
  background: var(--color-gold);
  color: #FFFFFF;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-whatsapp-secondary {
  width: 100%;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

/* Enquiry Form Modal */
.enquiry-modal-card {
  max-width: 560px;
  padding: 32px;
}

.product-summary-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-primary);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}

.product-summary-bar img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-size: 14px;
  outline: none;
}

.btn-submit-enquiry {
  background: var(--color-gold);
  color: #FFFFFF;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  margin-top: 8px;
}

.enquiry-success-box {
  text-align: center;
  padding: 30px 10px;
  display: none;
}

.success-icon-ring {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #E8F5E9;
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

/* ==========================================================================
   14. FLOATING ACTION BUTTONS & ASK VAANI SPEECH WIDGET
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 800;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
}

.float-btn.whatsapp { background: #25D366; }
.float-btn.quick-enquiry { background: var(--color-gold); }

.ask-vaani-widget {
  position: fixed;
  bottom: 24px;
  right: 90px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ask-vaani-btn {
  background: linear-gradient(135deg, #C2185B, #AD1457);
  color: #FFFFFF;
  padding: 9px 18px;
  border-radius: 20px 20px 4px 20px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(194, 24, 91, 0.4);
  cursor: pointer;
}

.ask-vaani-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  object-fit: cover;
}

/* ==========================================================================
   15. FOOTER & ACCORDION (DESKTOP GRID / MOBILE ACCORDION)
   ========================================================================== */
.site-footer {
  background-color: #231E19;
  color: #ECE7E1;
  padding-top: 60px;
  padding-bottom: 30px;
  margin-top: 60px;
}

.footer-top-banner {
  background: #2E2822;
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-desktop-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--bg-gold-banner);
  margin-bottom: 16px;
}

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

.footer-col ul a {
  font-size: 13.5px;
  color: #B5AEA5;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: #8C847C;
}

/* ==========================================================================
   100% LOCKED MOBILE SPECIFIC OVERRIDES (<= 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .header-top-row { padding: 10px 0 6px; }
  .header-search { flex: 100%; margin-bottom: 8px; }
  .search-input-wrapper input { font-size: 13px; }
  .brand-logo { font-size: 28px; }
  .hero-banner-card { height: 360px; }
  .hero-content { padding-left: 20px; padding-bottom: 20px; }
  .hero-title { font-size: 28px; }
  .category-circles-grid { grid-template-columns: repeat(4, 1fr); gap: 14px 8px; }
  .circle-img-wrapper { width: 72px; height: 72px; }
  .bento-grid-desktop { display: flex; flex-direction: column; gap: 14px; }
  .bento-card-main { height: 220px; }
  .bento-card-small { height: 170px; }
  .trending-grid-desktop { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 14px; scrollbar-width: none; }
  .trending-card-item { min-width: 250px; width: 250px; flex-shrink: 0; }
  .art-grid-5col { display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none; }
  .art-card { min-width: 150px; height: 180px; flex-shrink: 0; }
  .dining-grid-desktop { grid-template-columns: repeat(3, 1fr); gap: 18px 10px; }
  .dining-img-ring { width: 88px; height: 88px; }
  .spaces-grid-desktop { display: flex; gap: 14px; overflow-x: auto; scrollbar-width: none; }
  .space-card-item { min-width: 170px; height: 260px; flex-shrink: 0; }
  .reels-grid-desktop { display: flex; gap: 14px; overflow-x: auto; scrollbar-width: none; }
  .reel-item-box { width: 175px; min-width: 175px; flex-shrink: 0; }
  .fresh-plants-grid-desktop { grid-template-columns: repeat(3, 1fr); gap: 12px 8px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-modal-body { grid-template-columns: 1fr; padding: 20px; }
  .footer-desktop-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .accordion-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; cursor: pointer; color: var(--bg-gold-banner); font-size: 15px; font-weight: 700; }
  .accordion-content { display: none; padding-bottom: 14px; }
  .ask-vaani-widget { bottom: 16px; right: 16px; }
}

/* ==========================================================================
   16. SCROLL REVEAL MICRO-ANIMATIONS (CINEMATIC SLOW TRANSITIONS)
   ========================================================================== */
.reveal-element {
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1), transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-element.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-item {
  opacity: 0;
  transform: translateY(45px) scale(0.96);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-item.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================================================================
   17. MOBILE APP-LIKE BOTTOM BAR
   ========================================================================== */
.mobile-app-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px !important; /* Leave space for bottom bar */
  }
  
  .mobile-app-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #231E19;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    align-items: center;
    justify-content: space-around;
    padding: 0 10px;
  }
  
  .mobile-app-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #B5AEA5;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex: 1;
    transition: color 0.3s;
  }
  
  .mobile-app-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2px;
  }
  
  .mobile-app-btn.active {
    color: #D6971C;
  }
  
  /* Position the floating WhatsApp widget slightly higher on mobile to prevent overlapping bottom bar */
  .floating-actions {
    display: flex !important;
    bottom: 76px !important;
    right: 16px !important;
  }
}


