@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Minimal E-Commerce Color Palette */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F6F2;
  --border-color: #EFE9E0;
  --primary-color: #222222; /* Pure Charcoal Black */
  --accent-color: #8A5A3C;  /* Terracotta / Walnut Accent */
  --text-main: #222222;
  --text-muted: #666666;
  
  --shadow-subtle: 0 2px 8px rgba(34, 34, 34, 0.03);
  --shadow-hover: 0 8px 24px rgba(34, 34, 34, 0.04);
  --transition: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-main: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background: var(--bg-primary);
  line-height: 1.6;
  font-size: 15px; /* Desktop body: 15px - 16px */
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1280px; /* Container width spec */
  margin: 0 auto;
  padding: 0 48px; /* Desktop side padding: 40px - 60px */
  width: 100%;
  box-sizing: border-box;
}

/* Utility Animations */
.fade-up {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Header */
.section-title-wrap {
  text-align: center;
  margin-bottom: 36px;
}

.section-title-wrap h2 {
  font-size: 30px; /* Section Heading Spec: 28px - 36px */
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section-title-wrap p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.section-subtitle {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 14px;
}

.section-divider::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--accent-color);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .section-title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-top: 8px;
}

.section-header .section-title .accent,
.section-header .section-title .highlight {
  color: var(--accent-color);
  font-style: normal;
}

.section-header .section-tag-box {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.section-header .section-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 12px auto 0;
}

.section-divider .line {
  width: 40px;
  height: 1px;
  background: var(--border-color);
  display: inline-block;
}

.section-divider .diamond {
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  transform: rotate(45deg);
  display: inline-block;
  margin: 0 10px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px; /* Height spec: 42px - 48px */
  padding: 0 28px;
  background: var(--primary-color);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent-color);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 28px;
  background: transparent;
  color: var(--primary-color);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--primary-color);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #FFFFFF;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 28px;
  background: transparent;
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid #FFFFFF;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--primary-color);
}

.btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px; /* Button Height Spec */
  background: var(--primary-color);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-order:hover {
  background: var(--accent-color);
}

/* 1. Announcement Bar */
.announcement-bar {
  background: var(--primary-color);
  color: #FFFFFF;
  padding: 8px 0;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
}

/* 2. Sticky Header wrapper */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  transition: var(--transition);
}

/* Subtle border/shadow ONLY after scrolling */
.site-header.scrolled {
  box-shadow: 0 4px 16px rgba(34, 34, 34, 0.05);
  border-bottom-color: transparent;
}

/* Main Navbar */
.main-header {
  height: 80px; /* Navbar height: 76px - 84px */
  border-bottom: 1px solid var(--border-color);
  background: #FFFFFF;
  display: flex;
  align-items: center;
}

.header-container {
  display: grid;
  grid-template-columns: 220px 1fr 220px; /* Expanded side columns for larger logo balance */
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.logo-img {
  height: 46px; /* Prominent premium logo visibility */
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  justify-self: center;
}

.nav-item {
  font-size: 14px; /* Navigation text: 14px - 15px */
  font-weight: 500; /* Medium weight */
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
  position: relative;
  padding: 6px 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--accent-color);
  transition: var(--transition);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.nav-item:hover,
.nav-item.active {
  color: var(--accent-color);
}

/* Hide mobile-specific links on desktop navbar view */
.mobile-menu-divider,
.mobile-category {
  display: none;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}

.icon-btn {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 6px;
}

.icon-btn svg {
  width: 22px; /* Icons size: 22px - 24px */
  height: 22px;
}

.icon-btn:hover {
  color: var(--accent-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

/* Category sub-nav bar */
.category-nav-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  height: 50px; /* Height: 48px - 54px */
  display: flex;
  align-items: center;
}

.category-nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px; /* Equal spacing centered */
}

.category-nav-link {
  font-size: 12px; /* Font size: 12px - 13px */
  font-weight: 500; /* Medium weight */
  letter-spacing: 0.8px; /* Letter spacing spec */
  text-transform: uppercase;
  color: var(--primary-color);
  position: relative;
  padding: 4px 0;
}

.category-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-color);
  transition: var(--transition);
}

.category-nav-link:hover {
  color: var(--accent-color); /* Changes to brown accent */
}

.category-nav-link:hover::after {
  width: 100%; /* Small underline on hover */
}

/* 4. Hero Section - split layout */
.hero-section {
  background: var(--bg-secondary);
  padding: 0;
  display: flex;
  align-items: center;
  min-height: 540px; /* Desktop Hero height: 500px - 600px */
}

.hero-container {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr; /* 45% text / 55% image split */
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-card-left {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.hero-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.hero-title {
  margin-bottom: 16px;
}

.hero-title .brand {
  font-size: 42px; /* Prominent readable heading */
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  display: block;
}

.hero-title .subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.hero-divider {
  width: 32px;
  height: 1.5px;
  background: var(--accent-color);
  margin: 16px 0;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.65;
}

.hero-cta-row {
  margin-top: 24px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin: 28px 0 0;
}

.hero-stats .stat-box {
  padding: 6px 16px;
  border-left: 2px solid var(--primary-color);
  background: transparent;
}

.hero-stats .stat-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.hero-stats .stat-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-footer-text {
  margin-top: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

.hero-footer-text .collection {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.hero-footer-text .tagline {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-visual-right {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-img {
  width: 100%;
  height: 540px; /* lifestyle furniture visual dominant */
  object-fit: cover;
  box-shadow: var(--shadow-subtle);
}

/* 5. Shop By Category */
.shop-categories-section {
  padding: 80px 0; /* Section padding: 70px - 90px */
  background: #FFFFFF;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; /* Category gap: 20px - 24px */
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.category-img-box {
  width: 100%;
  height: 280px; /* Category cards larger */
  overflow: hidden;
  background: var(--bg-secondary);
  margin-bottom: 16px;
}

.category-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--transition);
}

.category-card:hover .category-img-box img {
  transform: scale(1.02);
}

.category-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 4px;
}

.category-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--accent-color);
  transition: var(--transition);
}

.category-card:hover .category-name::after {
  width: 100%;
}

/* 6. Promotional Campaign Banner */
.promo-banner-section {
  background-size: cover;
  background-position: center;
  padding: 100px 0; /* Target height: 300px - 400px */
  position: relative;
  text-align: center;
}

.promo-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 1;
}

.promo-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.promo-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 8px;
  display: inline-block;
}

.promo-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Premium Image Banner (New) */
.premium-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 400px; /* 350px - 450px desktop */
  margin: 60px 0; /* 50-70px spacing */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.premium-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35); /* Subtle dark overlay */
  z-index: 1;
}

.premium-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.premium-banner h3 {
  font-size: 32px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

/* Split Banner Style */
.premium-split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 450px;
  margin: 60px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.split-banner-img-wrap {
  overflow: hidden;
  height: 100%;
}

.split-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
}

.split-banner-content .tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.split-banner-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* 7. Featured Products Grid */
.bestsellers-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns max on desktop */
  gap: 24px; /* grid gap: 20px - 28px */
}

/* Rebuilt & Simplified Product Card */
.product-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-hover);
}

.product-image-container {
  height: 260px; /* Product images larger: 55-60% visual area */
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.product-card-image {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s var(--transition);
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-color);
  color: #FFFFFF;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 7px;
  z-index: 5;
}

.product-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 5;
}

.product-wishlist-btn svg {
  width: 12px;
  height: 12px;
}

.product-wishlist-btn:hover {
  background: #FFFFFF;
  color: var(--accent-color);
}

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

.product-card-title {
  font-size: 16px; /* Product name spec: 16px - 18px */
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.4;
  margin-bottom: 4px;
}

.product-card-category {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.product-rating .stars {
  color: #D4AF37;
  font-size: 10px;
}

.product-rating .rating-num {
  font-size: 9.5px;
  color: var(--text-muted);
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.product-price-row .price-current {
  font-size: 18px; /* Product price spec: 17px - 20px */
  font-weight: 700;
  color: var(--primary-color);
}

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

.product-card-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 38px;
}

.product-card-actions {
  margin-top: auto;
}

/* 10. Brand Story Section (Split 50/50 Layout) */
.brand-story-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.brand-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.brand-story-left {
  position: relative;
}

.brand-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #FFFFFF;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
}

.brand-badge-overlay .brand-badge-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.brand-badge-overlay .brand-badge-text {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-story-right h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.brand-divider {
  width: 32px;
  height: 1.5px;
  background: var(--accent-color);
  margin-bottom: 16px;
}

.brand-story-right p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.brand-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.brand-stats .stat-item .stat-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.brand-stats .stat-item .stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* 11. Journal Section */
.journal-section {
  padding: 80px 0;
  background: #FFFFFF;
}

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

.journal-card {
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  transition: var(--transition);
}

.journal-card:hover {
  border-color: var(--primary-color);
}

.journal-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.journal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--transition);
}

.journal-card:hover .journal-img-wrap img {
  transform: scale(1.02);
}

.journal-card-content {
  padding: 18px;
}

.journal-tag {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 6px;
  display: inline-block;
}

.journal-card-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 6px;
  line-height: 1.4;
}

.journal-card-content p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Gap between sections */
main > section,
body > section {
  margin-bottom: 24px;
}

/* 12. Footer Section */
.footer {
  background: #1C1512;
  color: #FFFFFF;
  position: relative;
  overflow: visible;
}

.footer-top {
  padding: 48px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.footer-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  max-width: 260px;
  margin-top: 12px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 8px;
}

.footer-contact-item .icon-wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.footer-contact-item .icon-wrap svg {
  width: 11px;
  height: 11px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item a:hover {
  color: var(--accent-color);
}

.footer-social {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

.footer-social-link {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social-link svg {
  width: 11px;
  height: 11px;
}

.footer-social-link.whatsapp:hover { background: var(--green); color: #FFFFFF; border-color: var(--green); }
.footer-social-link.email:hover { background: var(--accent-color); color: #FFFFFF; border-color: var(--accent-color); }
.footer-social-link.phone:hover { background: var(--blue); color: #FFFFFF; border-color: var(--blue); }

.footer-details {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.footer-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: visible;
}

.footer-detail-card > div {
  min-width: 0;
  flex: 1;
}

.footer-detail-card:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

.footer-detail-card .detail-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  flex: none;
}

.footer-detail-card .detail-icon.location { background: rgba(255, 255, 255, 0.03); color: var(--accent-color); }
.footer-detail-card .detail-icon.gst { background: rgba(255, 255, 255, 0.01); color: rgba(255, 255, 255, 0.4); }
.footer-detail-card .detail-icon svg { width: 11px; height: 11px; }

.footer-detail-card strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.footer-detail-card p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.6;
  white-space: normal;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

/* About Page Styles */
.about-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0 40px;
  text-align: center;
  background: var(--bg-secondary);
}

.about-hero-content {
  max-width: 650px;
}

.about-est-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  border: 1px solid var(--border-color);
  margin-bottom: 12px;
}

.about-hero-title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.about-hero-title em { font-style: normal; font-weight: 700; color: var(--accent-color); }

.about-hero-diamond {
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  transform: rotate(45deg);
  margin: 0 auto 12px;
}

.about-hero-lead {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 10px;
}

.about-hero-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 auto 24px;
}

.about-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.about-scroll-hint span:first-child {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-scroll-line {
  width: 1px;
  height: 20px;
  background: var(--accent-color);
}

.section-divider-left {
  width: 32px;
  height: 1.5px;
  background: var(--accent-color);
  margin-bottom: 14px;
}

.section-tag {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 6px;
  display: inline-block;
}

/* Journey Section */
.journey-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.journey-grid {
  display: grid;
  grid-template-columns: 5fr 7fr; /* Split layout */
  gap: 48px;
  align-items: center;
}

.journey-image {
  position: relative;
  width: 100%;
}

.journey-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-subtle);
}

.journey-badge {
  position: absolute;
  bottom: 24px;
  right: -24px;
  background: #FFFFFF;
  padding: 16px 24px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-color);
  text-align: center;
  z-index: 5;
}

.journey-badge .number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
}

.journey-badge .label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.journey-content h2 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 14px;
}

.journey-content p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.journey-stats {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.journey-stat {
  text-align: left;
}

.journey-stat .number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.journey-stat .label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Core Values Section */
.values-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.value-card {
  background: #FFFFFF;
  padding: 38px 24px;
  border: 1px solid rgba(138, 90, 60, 0.06); /* Subtle walnut-tinted border */
  border-bottom: 2.5px solid rgba(138, 90, 60, 0.2); /* walnut accent bottom edge */
  text-align: center;
  box-shadow: 0 4px 20px rgba(34, 34, 34, 0.02);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  border-bottom-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(138, 90, 60, 0.06);
}

.value-icon {
  width: 28px; /* Safe size constraint on the SVG value-icon */
  height: 28px;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Timeline Section */
.timeline-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 40px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 10px;
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left .timeline-dot {
  right: -6px;
}

.timeline-item.right .timeline-dot {
  left: -6px;
}

.timeline-box {
  background: #FFFFFF;
  padding: 24px;
  border: 1px solid rgba(138, 90, 60, 0.06);
  border-bottom: 2px solid rgba(138, 90, 60, 0.15);
  box-shadow: 0 4px 16px rgba(34, 34, 34, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-box:hover {
  border-bottom-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(138, 90, 60, 0.05);
}

.timeline-year {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 6px;
}

.timeline-box h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.timeline-box p {
  font-size: 13px;
  color: var(--text-muted);
}

.visit-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.visit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.visit-card {
  padding: 24px 18px;
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  text-align: center;
  transition: var(--transition);
}

.visit-card:hover {
  border-color: var(--primary-color);
}

.visit-card .icon {
  font-size: 20px;
  margin-bottom: 10px;
}

.visit-card h3 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.visit-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Contact Page Styles */
.contact-hero {
  min-height: 35vh;
  padding: 90px 0 40px;
  text-align: center;
  background: var(--bg-secondary);
}

.contact-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border-color);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.contact-hero h1 {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
}

.contact-hero h1 em { font-style: normal; color: var(--accent-color); }
.contact-highlight { color: var(--primary-color); font-weight: 600; }

.contact-hero-text {
  max-width: 650px;
  margin: 10px auto 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-methods {
  padding: 80px 0;
  background: #FFFFFF;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  padding: 24px 18px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  background: #FFFFFF;
}

.contact-card:hover {
  border-color: var(--primary-color);
}

.contact-card-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 14px;
  border-radius: 50%;
}

.contact-card-icon.whatsapp { background: rgba(37, 211, 102, 0.05); color: var(--green); }
.contact-card-icon.email { background: rgba(138, 90, 60, 0.05); color: var(--accent-color); }
.contact-card-icon.call { background: rgba(33, 150, 243, 0.05); color: var(--blue); }

.contact-card h3 {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px; /* Standard premium touch-target height */
  padding: 0 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid;
  background: transparent;
  transition: var(--transition);
}

.btn-contact.green {
  border-color: #25D366;
  color: #25D366;
}
.btn-contact.green:hover {
  background: #25D366;
  color: #FFFFFF;
}

.btn-contact.blue {
  border-color: #2196F3;
  color: #2196F3;
}
.btn-contact.blue:hover {
  background: #2196F3;
  color: #FFFFFF;
}

.btn-contact.email {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.btn-contact.email:hover {
  background: var(--accent-color);
  color: #FFFFFF;
}

/* Inquiry Form */
.inquiry-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.inquiry-form-wrapper {
  max-width: 650px;
  padding: 36px;
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  margin: 0 auto; /* Beautifully centered form wrapper */
}

.form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-align: left;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  font-size: 13px;
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
}

.form-group textarea {
  min-height: 120px;
  padding: 10px 12px;
  resize: vertical;
}

/* Benefits Section Styles */
.benefits-section {
  padding: 80px 0;
  background: #FFFFFF;
}

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

.benefit-card {
  padding: 32px 24px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-hover);
}

.benefit-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--primary-color);
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover {
  color: var(--accent-color);
}

.faq-toggle {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 150px; /* Slide open height */
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ CTA Box */
.faq-cta {
  text-align: center;
  background: var(--bg-secondary);
  padding: 36px;
  border: 1px solid var(--border-color);
  max-width: 720px;
  margin: 0 auto;
}

.faq-cta h3 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.faq-cta p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.faq-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Shop By Room / Explore Our Collection */
.shop-by-room-section {
  padding: 80px 0;
  background: #FFFFFF;
}

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

.room-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: block;
}

/* Card 1 & 2 span 3 columns */
.room-card:nth-child(1) {
  grid-column: span 3;
}
.room-card:nth-child(2) {
  grid-column: span 3;
}
/* Card 3, 4, 5 span 2 columns */
.room-card:nth-child(3) {
  grid-column: span 2;
}
.room-card:nth-child(4) {
  grid-column: span 2;
}
.room-card:nth-child(5) {
  grid-column: span 2;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(34, 34, 34, 0.65) 0%, rgba(34, 34, 34, 0.1) 60%, rgba(34, 34, 34, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: background 0.3s ease;
}

.room-card-info {
  width: 100%;
}

.room-card-info h3 {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.room-card-cta {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  opacity: 0.85;
  transition: var(--transition);
  display: inline-block;
}

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

.room-card:hover .room-card-overlay {
  background: linear-gradient(to top, rgba(34, 34, 34, 0.75) 0%, rgba(34, 34, 34, 0.25) 60%, rgba(34, 34, 34, 0.05) 100%);
}

.room-card:hover .room-card-cta {
  opacity: 1;
  color: #FFFFFF;
}

/* View All Products CTA Section */
.view-all-cta-section {
  padding: 80px 0;
  text-align: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.view-all-cta-section h2 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.view-all-cta-section p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Products Catalog Pages */
.products-page-hero {
  padding: 56px 0 28px;
}

.products-page-grid {
  padding: 28px 0 56px;
}

/* 7. Mobile General and Grid Layout System (360px - 430px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px; /* Tablet side padding */
  }

  .header-container {
    grid-template-columns: 180px 1fr auto;
  }

  .nav-links {
    gap: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns tablet wrap for spacious cards */
    gap: 20px;
  }

  .categories-grid {
    gap: 20px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px; /* Mobile body: 14px - 15px */
  }

  .container {
    padding: 0 20px; /* Mobile side padding: 16px - 20px */
  }

  /* Sticky site-header scrolled state shadow */
  .site-header.scrolled {
    box-shadow: 0 2px 10px rgba(34, 34, 34, 0.05);
  }

  /* 4. Mobile Header Layout */
  .main-header {
    height: 68px; /* Mobile header height: 64px - 70px */
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .logo-img {
    height: 34px; /* Scaled mobile logo size */
  }

  /* Hide Desktop navigation items and category navbar */
  .category-nav-bar {
    display: none;
  }

  /* Hamburger Menu Slide-In Drawer styling from right */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 290px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 84px 24px 40px;
    gap: 0;
    box-shadow: -8px 0 32px rgba(34, 34, 34, 0.08);
    border-left: 1px solid var(--border-color);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    z-index: 1000;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-item {
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 15px 8px; /* Great touch target */
    text-align: left;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(34, 34, 34, 0.04);
    transition: padding-left 0.3s ease, color 0.3s ease;
  }

  .nav-item::after {
    display: none; /* Disable hover underline inside mobile drawer */
  }

  .nav-item:hover,
  .nav-item.active {
    color: var(--accent-color);
    padding-left: 12px; /* Indent shift animation */
  }

  /* Mobile Drawer Divider & Category Items */
  .mobile-menu-divider {
    display: block;
    height: 1px;
    background: rgba(34, 34, 34, 0.04);
    margin: 20px 0 10px;
  }

  .nav-item.mobile-category {
    font-size: 13.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    border-bottom: none;
    padding: 10px 8px;
  }

  .nav-item.mobile-category:hover {
    color: var(--primary-color);
    padding-left: 12px;
  }

  /* Mobile Icons (Only Search, Cart and Hamburger are visible) */
  .header-icons {
    gap: 12px;
  }

  .icon-btn.wishlist-btn,
  .icon-btn.account-btn {
    display: none; /* Hide wishlist & account from header on mobile */
  }

  .icon-btn svg {
    width: 21px; /* Mobile icons size: 20px - 22px */
    height: 21px;
  }

  /* Hamburger Menu Toggle Button Animation */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* 5. Mobile Hero Banner - Vertical Layout, Image First */
  .hero-section {
    padding: 28px 0;
    min-height: unset;
  }

  .hero-container {
    display: flex;
    flex-direction: column; /* Vertical Layout */
    gap: 24px;
  }

  .hero-visual-right {
    order: -1; /* Image First */
    width: 100%;
  }

  .hero-img {
    width: 100%;
    height: 360px; /* Hero image height spec: 320px - 420px */
    object-fit: cover;
  }

  .hero-card-left {
    padding: 0 8px;
    text-align: center;
  }

  .hero-title .brand {
    font-size: 26px; /* 20px - 28px Heading */
  }

  .hero-desc {
    font-size: 14.5px; /* 14px - 16px body */
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
  }

  .hero-stats .stat-box {
    border-left: none;
    border-top: 2px solid var(--primary-color);
    padding: 8px 12px;
  }

  .btn-primary, .btn-outline, .btn-outline-white, .btn-order {
    height: 46px; /* CTA spec height */
  }

  .hero-cta-row .btn-primary {
    width: 100%; /* Easy to click full width on mobile */
  }

  /* Spacing system mobile padding: 45px - 60px */
  .shop-categories-section,
  .bestsellers-section,
  .brand-story-section,
  .journal-section,
  .visit-section,
  .contact-methods,
  .inquiry-section,
  .benefits-section,
  .faq-section {
    padding: 50px 0;
  }

  /* Grid layouts */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .category-img-box {
    height: 180px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns mobile grid */
    gap: 16px;
  }

  .product-image-container {
    height: 170px;
    padding: 10px;
  }

  .product-card-image {
    max-width: 95%;
    max-height: 95%;
  }

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

  .product-card-title {
    font-size: 14px; /* Mobile product name spec: 14px - 16px */
  }

  .product-card-desc {
    display: none; /* Hide product description inside mobile cards for cleanliness */
  }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .brand-img {
    height: 260px;
  }

  .brand-stats {
    justify-content: center;
  }

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

  .journal-img-wrap {
    height: 150px;
  }

  .visit-cards, .contact-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand .footer-logo {
    justify-content: center;
    display: flex;
  }

  .footer-logo-img {
    margin: 0 auto;
  }

  .footer-brand-desc {
    max-width: 100%;
    margin: 12px auto 0;
    text-align: center;
  }

  .footer-nav {
    align-items: center;
  }

  /* Fix contact items: center icon + text together */
  .footer-contact-list {
    max-width: 280px;
    margin: 0 auto;
    align-items: flex-start;
  }

  .footer-contact-item {
    grid-template-columns: 20px 1fr;
    gap: 8px;
    text-align: left;
  }

  /* Center social icons */
  .footer-social {
    justify-content: center;
  }

  /* Footer detail cards stack */
  .footer-details {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
    padding: 16px 0;
  }

  .footer-detail-card {
    text-align: left;
    padding: 14px 12px;
  }

  .footer-detail-card p {
    font-size: 12px;
    line-height: 1.6;
  }

  /* Reduce container padding on mobile so footer details aren't cut */
  .container {
    padding: 0 16px;
  }

  /* Ensure footer bottom is fully visible */
  .footer {
    padding-bottom: 0;
    overflow: visible;
  }

  .footer-bottom {
    padding: 16px 0 20px;
  }

  .inquiry-form-wrapper {
    padding: 20px; /* Reduced padding on mobile to prevent squeezing */
  }

  .form-row {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Journey Section Mobile */
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .journey-image img {
    height: 320px;
  }

  .journey-badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -16px;
  }

  .journey-stats {
    justify-content: center;
    gap: 24px;
  }

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

  /* Values Section Mobile */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Timeline Mobile */
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 45px;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
    text-align: left;
  }

  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 14px;
  }

  /* Room Grid Mobile Tablet */
  .room-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .room-card:nth-child(1),
  .room-card:nth-child(2) {
    grid-column: span 2;
    height: 280px;
  }
  .room-card:nth-child(3),
  .room-card:nth-child(4) {
    grid-column: span 2;
    height: 240px;
  }
  .room-card:nth-child(5) {
    grid-column: span 4;
    height: 240px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .category-img-box {
    height: 110px; /* Symmetrical smaller image squares on mobile */
    margin-bottom: 8px;
  }

  .category-name {
    font-size: 10.5px;
    letter-spacing: 0.5px;
  }

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

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

  /* Room Grid Phone Stack */
  .room-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .room-card:nth-child(1),
  .room-card:nth-child(2),
  .room-card:nth-child(3),
  .room-card:nth-child(4) {
    grid-column: span 1;
    height: 150px;
  }
  .room-card:nth-child(5) {
    grid-column: span 2;
    height: 130px;
  }
  .room-card-overlay {
    padding: 14px;
  }
  .room-card-info h3 {
    font-size: 13px;
    margin-bottom: 2px;
  }
  .room-card-cta {
    font-size: 9px;
  }

  .premium-banner {
    height: 320px; /* 280-350px mobile */
    margin: 40px 0; /* 35-45px mobile */
  }

  .premium-banner h3 {
    font-size: 22px;
  }

  .premium-split-banner {
    grid-template-columns: 1fr;
    height: auto;
    margin: 40px 0;
  }

  .split-banner-img-wrap {
    height: 250px;
  }

  .split-banner-content {
    padding: 30px 24px;
    text-align: center;
  }

  .split-banner-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 34, 34, 0.3);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  z-index: 998;
  transition: opacity 0.3s ease;
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Search Overlay Styles */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.search-overlay-container {
  width: 100%;
  max-width: 600px;
  padding: 24px;
  position: relative;
  text-align: center;
}

.search-form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 8px;
}

.search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color);
  outline: none;
}

.search-input::placeholder {
  color: #A09690;
}

.search-submit-btn {
  color: var(--primary-color);
  padding: 6px;
  display: flex;
  align-items: center;
}

.search-submit-btn svg {
  width: 22px;
  height: 22px;
}

.search-close-btn {
  position: absolute;
  top: -40px;
  right: 24px;
  font-size: 24px;
  color: var(--primary-color);
  transition: var(--transition);
}

.search-close-btn:hover {
  color: var(--accent-color);
}

/* ==========================================================================
   Product Quick View Modal & Image Carousel Styles (Ultra-Premium Lightbox)
   ========================================================================== */
.product-image-container {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-card-title {
  cursor: pointer;
}

.product-quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-image-container:hover .product-quick-view-overlay {
  opacity: 1;
}

.btn-quick-view {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(10px);
  transition: transform 0.3s ease, background 0.2s ease;
}

.product-image-container:hover .btn-quick-view {
  transform: translateY(0);
}

.btn-quick-view:hover {
  background: #ffffff;
  color: var(--accent-color);
}

/* Modal Backdrop */
.product-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Modal Dialog Box - Zero Scrollbars, Pure Image Focus */
.product-modal-dialog {
  background: #121215;
  color: #F0F0F2;
  width: 100%;
  max-width: 740px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75), 0 0 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.product-modal-backdrop.active .product-modal-dialog {
  transform: scale(1) translateY(0);
}

/* Modal Header */
.product-modal-dialog .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

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

.modal-product-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  margin: 0;
}

.modal-image-counter {
  font-size: 11px;
  font-weight: 600;
  color: #A0A0B0;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #E0E0EA;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.modal-close-btn svg {
  width: 16px;
  height: 16px;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  transform: scale(1.08);
}

/* Modal Body - Carousel Only, No Scrollbar */
.product-modal-dialog .modal-body {
  padding: 20px 24px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-modal-dialog .modal-body::-webkit-scrollbar {
  display: none;
}

/* Carousel Section */
.modal-carousel-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.carousel-viewport {
  position: relative;
  width: 100%;
  height: clamp(280px, 55vh, 460px);
  background: #08080a;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.modal-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Carousel Nav Arrows */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 18, 22, 0.65);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  z-index: 10;
}

.carousel-nav-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-nav-btn:hover {
  background: var(--accent-color, #8A5A3C);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev-btn {
  left: 14px;
}

.carousel-nav-btn.next-btn {
  right: 14px;
}

/* Dots Pagination */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
  padding: 0;
  border: none;
}

.carousel-dot.active {
  background: #FFFFFF;
  width: 22px;
  border-radius: 10px;
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
}

/* Thumbnails */
.carousel-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}

.carousel-thumb {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

.carousel-thumb.active {
  opacity: 1;
  border-color: var(--accent-color, #8A5A3C);
  box-shadow: 0 0 12px rgba(138, 90, 60, 0.45);
  transform: translateY(-2px);
}

.carousel-thumb:hover:not(.active) {
  opacity: 0.9;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .product-modal-backdrop {
    padding: 16px;
  }

  .product-modal-dialog {
    max-width: 100%;
    border-radius: 16px;
  }

  .product-modal-dialog .modal-header {
    padding: 14px 18px;
  }

  .product-modal-dialog .modal-body {
    padding: 14px 16px 18px;
  }

  .carousel-viewport {
    height: clamp(240px, 45vh, 340px);
  }

  .modal-product-title {
    font-size: 1rem;
  }

  .carousel-nav-btn {
    width: 36px;
    height: 36px;
  }

  .carousel-nav-btn svg {
    width: 16px;
    height: 16px;
  }

  .carousel-thumb {
    width: 52px;
    height: 40px;
  }
}



