/* ==========================================
   AVORUSH PREMIUM DESIGN SYSTEM & CSS
   Inspired by Cafe24 Organic Premium Layout
   ========================================== */

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

/* Variables & Tokens */
:root {
  /* Harmonious, tailored organic-wellness color palette (HSL) */
  --primary-green: hsl(102, 38%, 35%);        /* Creamy forest/avocado skin green */
  --primary-green-light: hsl(102, 45%, 55%);  /* Avocado creamy flesh green */
  --primary-green-ultra-light: hsl(102, 30%, 93%); /* Off-green cream tint */
  --accent-gold: hsl(41, 75%, 52%);          /* Warm honey/oil amber */
  --accent-gold-hover: hsl(41, 80%, 46%);
  --accent-coral: hsl(12, 70%, 60%);          /* Soft salmon/tomato slice orange */
  --bg-dark: hsl(102, 20%, 9%);               /* Premium dark slate-olive for footer/dark sections */
  --bg-cream: hsl(40, 30%, 98%);              /* Organic off-white/light cream */
  --bg-white: hsl(0, 0%, 100%);
  --text-dark: hsl(102, 25%, 15%);            /* Soft high-contrast dark green-slate for readability */
  --text-muted: hsl(102, 10%, 50%);           /* Earthy olive gray */
  --border-light: hsl(102, 15%, 88%);
  --border-trans: rgba(85, 107, 47, 0.08);

  /* Fonts */
  --font-heading: 'Outfit', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  /* Shadows, borders, durations */
  --shadow-premium: 0 15px 35px rgba(26, 38, 12, 0.05), 0 5px 15px rgba(26, 38, 12, 0.02);
  --shadow-hover: 0 25px 50px rgba(26, 38, 12, 0.1), 0 10px 20px rgba(26, 38, 12, 0.05);
  --shadow-glass: 0 8px 32px 0 rgba(85, 107, 47, 0.06);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color: var(--text-dark);
  font-family: var(--font-body);
  background-color: var(--bg-cream);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: hsl(102, 15%, 80%);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-green-light);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.2;
}

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

li {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-fast);
}

/* Layout Utilities */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background-color: #ffffff;
  color: var(--text-dark);
}

.section-dark h2 {
  color: var(--text-dark);
}

/* Section Header (Cafe24 style) */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-header .sub-title {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.section-header .main-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
}

.section-dark .section-header .main-title {
  color: var(--bg-white);
}

.section-header .desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Image styling */
img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 1. TOP ANNOUNCEMENT BANNER */
.top-announcement {
  background-color: var(--bg-dark);
  color: var(--bg-white);
  padding: 10px 24px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1001;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.top-announcement .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-announcement a {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: underline;
  margin-left: 8px;
}

.top-announcement a:hover {
  color: var(--bg-white);
}

.top-announcement .dismiss-options {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
}

.top-announcement .dont-show {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.top-announcement .dont-show input {
  cursor: pointer;
  accent-color: var(--accent-gold);
}

.top-announcement .close-btn {
  color: var(--bg-white);
  font-size: 1.1rem;
}

.top-announcement .close-btn:hover {
  color: var(--accent-coral);
}

/* 2. STICKY GLASS HEADER */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(254, 253, 250, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-trans);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  box-shadow: var(--shadow-premium);
}

/* Top Bar / Header Main Row Layout */
.header-main-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 10px;
  position: relative;
}

.header-left-spacer {
  flex: 1;
  min-width: 150px;
}

/* Centered Logo Row */
.header-logo-container {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-centered-svg {
  display: block;
  max-width: 240px;
  height: auto;
  transition: var(--transition-smooth);
}

.logo-centered-svg:hover {
  transform: scale(1.03);
}

.right-utilities {
  flex: 1;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.social-icon-header {
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.social-icon-header svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon-header:hover {
  color: var(--primary-green);
  transform: translateY(-2px);
  background-color: rgba(0,0,0,0.04);
}

/* Centered Bottom Navigation Bar */
.header-nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 16px;
  border-top: 1px solid rgba(85, 107, 47, 0.04);
}

/* Centered Menu Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 44px;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

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

/* Header Icons Bar (Search & Cart Drawer inside Top Bar right utilities) */
.header-icon-btn {
  color: var(--text-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}

.header-icon-btn svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-fast);
  stroke: var(--text-dark);
  stroke-width: 2;
  fill: none;
}

.header-icon-btn:hover svg {
  stroke: var(--primary-green);
  transform: translateY(-2px);
}

.header-icon-btn .badge-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--accent-coral);
  color: var(--bg-white);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: var(--radius-full);
  line-height: 1;
}

.mobile-header-bar {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.mobile-menu-toggle {
  font-size: 1.5rem;
  color: var(--text-dark);
  background: none;
  border: none;
}


/* 3. HERO SLIDESHOW BANNER */
.hero-slider {
  position: relative;
  height: 520px;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.slide-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide .slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide .slide-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(26, 38, 12, 0.75) 30%, rgba(26, 38, 12, 0.25) 100%);
  z-index: 2;
}

.slide .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.slide.active .slide-image img {
  transform: scale(1);
}

/* Slide Content */
.slide .slide-content {
  position: relative;
  z-index: 3;
  color: var(--bg-cream);
  max-width: 650px;
  padding-left: 20px;
}

.slide .slide-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.slide .slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--bg-white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth) 0.15s;
}

.slide .slide-desc {
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(254, 253, 250, 0.85);
  margin-bottom: 35px;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth) 0.3s;
}

.slide .slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 20px rgba(212, 163, 89, 0.2);
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth) 0.45s;
}

.slide .slide-btn:hover {
  background-color: var(--bg-white);
  color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 255, 255, 0.15);
}

.slide.active .slide-tag,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: rgba(254, 253, 250, 0.35);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--accent-gold);
  width: 24px;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: rgba(26, 38, 12, 0.4);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(254, 253, 250, 0.1);
  transition: var(--transition-fast);
}

.slider-nav-btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

/* 4. PRODUCT CARDS & GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(var(--columns, 4), 1fr);
  gap: 30px 24px;
}

.product-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-trans);
  transition: var(--transition-smooth);
  position: relative;
}

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

/* Card Badge */
.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 5;
}

.card-badge.sale {
  background-color: var(--accent-coral);
}

/* Card Image & Hover Overlay */
.card-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--primary-green-ultra-light);
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

/* Cafe24 Style Hover Icon Box */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 38, 12, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 4;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.product-card:hover .card-overlay {
  opacity: 1;
  visibility: visible;
}

.card-action-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.card-action-btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-2px) scale(1.05);
}

.product-card:hover .card-action-btn {
  transform: translateY(0);
}

.product-card:hover .card-action-btn:nth-child(2) {
  transition-delay: 0.05s;
}

.product-card:hover .card-action-btn:nth-child(3) {
  transition-delay: 0.1s;
}

/* Card Details */
.card-details {
  padding: 20px;
}

.card-details .category {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.card-details .title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-details .title:hover {
  color: var(--primary-green);
}

.card-details .description {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}

.card-details .price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-details .price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
}

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

/* 5. BRAND PHILOSOPHY ON-STORE GRID */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.philosophy-card {
  background-color: var(--bg-cream);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-trans);
  transition: var(--transition-smooth);
}

.philosophy-card:hover {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
}

.philosophy-card .card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-green-ultra-light);
  color: var(--primary-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.philosophy-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.philosophy-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 6. BEST SELLER TABS SYSTEM */
.best-seller-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.tab-btn:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.tab-btn.active {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--bg-white);
}

/* Tab Panels */
.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* 7. MIDDLE LONG BANNER */
.middle-promo-banner {
  background-color: var(--bg-dark);
  color: var(--bg-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.middle-promo-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(85, 107, 47, 0.2) 0%, rgba(26, 38, 12, 0) 70%);
}

.middle-promo-banner .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.middle-promo-banner .tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: block;
}

.middle-promo-banner h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--bg-white);
}

.middle-promo-banner p {
  font-size: 0.95rem;
  color: rgba(254, 253, 250, 0.8);
  margin-bottom: 35px;
  line-height: 1.6;
}

.middle-promo-banner .banner-btn {
  background-color: var(--bg-white);
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  display: inline-block;
}

.middle-promo-banner .banner-btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* 8. ONLY ON: HORIZONTAL CAROUSEL */
.slider-section {
  position: relative;
}

.slider-container-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}

.horizontal-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none; /* Firefox */
}

.horizontal-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.horizontal-slider .product-card {
  min-width: 280px;
  flex: 0 0 calc(25% - 18px); /* 4 Columns */
}

/* Scroll Indicators / Drag buttons */
.slide-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: -30px;
  margin-bottom: 20px;
}

.slide-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
  transition: var(--transition-fast);
}

.slide-arrow-btn:hover {
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-color: var(--primary-green);
}

/* 9. BRAND STORY & VIDEO */
.brand-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.brand-video-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-premium);
}

.brand-video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(26, 38, 12, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.play-button {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding-left: 4px; /* Align play icon */
  box-shadow: 0 8px 25px rgba(212, 163, 89, 0.4);
  transition: var(--transition-smooth);
}

.play-button:hover {
  transform: scale(1.1);
  background-color: var(--bg-white);
  color: var(--primary-green);
}

.brand-story-text {
  padding-right: 30px;
}

.brand-story-text h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.brand-story-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* 10. MAPS & LOCATION CARD */
.offline-card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-trans);
}

.offline-details {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offline-details h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--primary-green);
}

.offline-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
}

.info-item .icon {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-top: 2px;
}

.info-item .details h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.info-item .details p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.offline-map-preview {
  position: relative;
  background-color: var(--primary-green-ultra-light);
  min-height: 400px;
}

/* A highly stylized simulated Google Map */
.map-fallback {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 40% 40%, #e2e8cc 0%, #d4ddb6 60%, #cbd4a9 100%);
  position: relative;
  overflow: hidden;
}

.map-grid-line {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
}

.map-grid-line.v { width: 2px; height: 100%; top: 0; }
.map-grid-line.h { height: 2px; width: 100%; left: 0; }

.map-park {
  position: absolute;
  background-color: #abbb83;
  border-radius: var(--radius-md);
}

.map-road {
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.map-pin {
  position: absolute;
  top: 45%;
  left: 48%;
  transform: translate(-50%, -100%);
  z-index: 10;
  text-align: center;
  animation: pulse-pin 2s infinite;
}

@keyframes pulse-pin {
  0% { transform: translate(-50%, -100%) scale(1); }
  50% { transform: translate(-50%, -105%) scale(1.05); }
  100% { transform: translate(-50%, -100%) scale(1); }
}

.pin-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: var(--radius-full);
  border: 3px solid var(--bg-white);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.pin-shadow {
  width: 20px;
  height: 6px;
  background: rgba(0,0,0,0.15);
  border-radius: var(--radius-full);
  margin: 8px auto 0;
  filter: blur(2px);
}

.pin-label {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-dark);
  color: var(--bg-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.pin-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: var(--bg-dark) transparent transparent;
}

.map-btn-overlay {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-premium);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.map-btn-overlay:hover {
  background-color: var(--primary-green);
  color: var(--bg-white);
}

/* 11. FOOTER SYSTEM (Cafe24 Layout) */
.main-footer {
  background-color: var(--bg-dark);
  color: rgba(254, 253, 250, 0.65);
  padding: 80px 0 30px;
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(254, 253, 250, 0.08);
  padding-bottom: 30px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  color: var(--bg-white);
}

.footer-logo span {
  color: var(--accent-gold);
}

.footer-links {
  display: flex;
  gap: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(254, 253, 250, 0.85);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

/* Footer columns grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 40px;
  border-bottom: 1px solid rgba(254, 253, 250, 0.08);
  padding-bottom: 50px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 0.88rem;
  color: var(--bg-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.footer-col p, .footer-col li {
  margin-bottom: 10px;
}

.footer-col li span {
  color: rgba(254, 253, 250, 0.4);
  margin-right: 8px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(254, 253, 250, 0.05);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icon:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(254, 253, 250, 0.4);
}

/* 12. SIDE SLIDING SHOPPING CART DRAWER */
.cart-drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(26, 38, 12, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100%;
  background-color: var(--bg-white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.cart-drawer-overlay.open .cart-drawer {
  right: 0;
}

/* Cart Header */
.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
}

.cart-close-btn {
  font-size: 1.4rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

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

/* Cart Items Scroll Container */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty-message {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
}

.cart-empty-message .icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--border-light);
}

/* Individual Cart Item Card */
.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.cart-item-details {
  flex: 1;
}

.cart-item-details .title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-item-details .options {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}

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

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
  height: 28px;
}

.quantity-btn {
  width: 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

.quantity-btn:hover {
  background-color: var(--primary-green-ultra-light);
}

.quantity-input {
  width: 32px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  background: none;
  color: var(--text-dark);
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}

.cart-item-remove {
  font-size: 0.75rem;
  color: var(--accent-coral);
  font-weight: 600;
  cursor: pointer;
}

/* Cart Footer Calculations */
.cart-footer {
  padding: 24px;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-light);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.summary-row.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  border-top: 1px solid var(--border-light);
  padding-top: 15px;
  margin-top: 10px;
  margin-bottom: 24px;
}

.checkout-btn {
  width: 100%;
  background-color: var(--primary-green);
  color: var(--bg-white);
  padding: 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  box-shadow: 0 8px 20px rgba(85, 107, 47, 0.25);
}

.checkout-btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: 0 10px 20px rgba(212, 163, 89, 0.25);
  transform: translateY(-2px);
}

/* 13. QUICK-VIEW PRODUCT OPTIONS MODAL */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(26, 38, 12, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-container {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
}

.modal-close-btn:hover {
  background-color: var(--accent-coral);
  color: var(--bg-white);
}

/* Quick-view Inside Grid */
.modal-content {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 36px;
  padding: 40px;
}

.modal-img-wrapper {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-trans);
}

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

.modal-details {
  display: flex;
  flex-direction: column;
}

.modal-details .category {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.modal-details .title {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal-details .price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.modal-details .price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-green);
}

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

.modal-details .description {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Options Selectors Inside Modal */
.options-group {
  margin-bottom: 20px;
}

.options-group h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option-checkbox-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-cream);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-trans);
  transition: var(--transition-fast);
}

.option-checkbox-label:hover {
  background-color: var(--primary-green-ultra-light);
  border-color: var(--primary-green-light);
}

.option-checkbox-label input {
  margin-right: 12px;
  accent-color: var(--primary-green);
}

.option-checkbox-label .option-left {
  display: flex;
  align-items: center;
}

.option-checkbox-label .price-add {
  color: var(--accent-gold);
  font-weight: 700;
}

/* Modal Add to Cart Action Row */
.modal-action-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.modal-action-row .quantity-control {
  height: 48px;
}

.modal-action-row .quantity-btn {
  width: 44px;
}

.modal-action-row .quantity-input {
  width: 44px;
}

.modal-add-btn {
  flex: 1;
  height: 48px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-add-btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

/* 14. SEARCH DROP-DOWN OVERLAY */
.search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  background-color: rgba(254, 253, 250, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1500;
  transform: translateY(-100%);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border-light);
  padding: 60px 0;
}

.search-overlay.open {
  transform: translateY(0);
}

.search-box {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrapper input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid var(--text-dark);
  padding: 16px 50px 16px 0;
  font-size: 1.65rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  outline: none;
}

.search-input-wrapper input::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

.search-input-wrapper svg {
  position: absolute;
  right: 10px;
  width: 28px;
  height: 28px;
  stroke: var(--text-dark);
  stroke-width: 2;
  fill: none;
}

.search-results-preview {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-height: 250px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-cream);
}

.search-result-item img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
}

.search-result-item h5 {
  font-size: 0.8rem;
  font-weight: 700;
}

.search-result-item p {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.search-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* 15. RESPONSIVE MEDIA BREAKPOINTS */
@media (max-width: 1199px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .horizontal-slider .product-card {
    min-width: 260px;
    flex: 0 0 calc(33.33% - 16px);
  }
}

@media (max-width: 991px) {
  .section {
    padding: 60px 0;
  }
  
  .header-main-row {
    display: none; /* Hide desktop utility/logo bar on smaller screens */
  }

  .header-logo-container,
  .header-nav-container {
    display: none; /* Hide centered logo and nav rows on mobile */
  }

  .mobile-header-bar {
    display: flex; /* Show compact bar on mobile */
  }

  .nav-menu {
    display: none; /* Collapsed on mobile */
  }

  .mobile-menu-toggle {
    display: block;
  }

  .brand-story {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brand-story-text {
    padding-right: 0;
  }

  .offline-card-wrapper {
    grid-template-columns: 1fr;
  }

  .offline-details {
    padding: 30px;
  }

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

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

@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }

  .horizontal-slider .product-card {
    min-width: 200px;
    flex: 0 0 calc(50% - 12px);
  }

  .hero-slider {
    height: 440px;
  }

  .slide .slide-title {
    font-size: 2.25rem;
  }

  .slide .slide-desc {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .modal-content {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cart-drawer {
    width: 100%;
    right: -100%;
  }
}

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

/* 16. MOBILE SIDEBAR MENU PACKAGE */
.mobile-sidebar-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(26, 38, 12, 0.45);
  z-index: 1800;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background-color: var(--bg-white);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15);
  z-index: 1801;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  padding: 30px 24px;
}

.mobile-sidebar-overlay.open .mobile-sidebar {
  left: 0;
}

.mobile-sidebar .logo {
  margin-bottom: 40px;
}

.mobile-sidebar .nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-sidebar .nav-list a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.mobile-sidebar .mobile-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   AVORUSH BRAND SPECIFIC REFINEMENTS (LOGO, TABS, FOOTER, CHAT)
   ========================================================================== */

/* 1. Header Centered PNG Logo */
.header-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  .header-logo-img {
    height: 38px;
  }
}

/* 2. Official Instagram Icon & Brand Gradients */
a[aria-label="Instagram"] svg {
  fill: none !important;
  stroke: currentColor !important;
}

/* 3. Horizontal Scrollable Menu Tabs */
.scrollable-tabs {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 30px;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  scrollbar-width: thin;
}

.scrollable-tabs::-webkit-scrollbar {
  height: 4px;
}

.scrollable-tabs::-webkit-scrollbar-track {
  background: transparent;
}

.scrollable-tabs::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

/* 4. Custom 3-Panel Footer System */
.avorush-custom-footer {
  width: 100%;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  border-top: 1px solid #f0ece6;
}

.footer-panel-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.3fr;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (max-width: 991px) {
  .footer-panel-row {
    grid-template-columns: 1fr;
  }
}

.footer-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  min-height: 320px;
  box-sizing: border-box;
}

.footer-panel.panel-opening {
  background-color: #b9c7b1; /* Olive green */
  color: #ffffff;
}

.footer-panel.panel-opening h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-panel.panel-opening p {
  font-size: 0.88rem;
  margin: 8px 0;
  letter-spacing: 0.05em;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-panel.panel-address {
  background-color: #f9f6f0; /* Cream */
  color: #8c6239; /* Gold/brown */
}

.footer-panel.panel-address h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 24px;
  color: #8c6239;
  text-transform: uppercase;
}

.footer-panel.panel-address p {
  font-size: 0.88rem;
  margin: 8px 0;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.6;
}

.footer-panel.panel-image {
  padding: 0;
  background: url('images/sandwich_board.png') no-repeat center center;
  background-size: cover;
  min-height: 320px;
}

/* Bottom copyright & chat row */
.footer-bottom-row {
  background-color: #ffffff;
  padding: 24px 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #f0ece6;
  min-height: 70px;
}

@media (max-width: 768px) {
  .footer-bottom-row {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
    text-align: center;
  }
}

.footer-copyright {
  font-size: 0.88rem;
  color: #8c6239; /* Gold/brown matching image */
  font-weight: 500;
  text-align: center;
}

/* Let's Chat! active button */
.chat-widget-btn {
  position: absolute;
  right: 40px;
  bottom: 15px;
  background-color: #8c6239; /* Matching exact button style */
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-family: var(--font-body);
}

@media (max-width: 768px) {
  .chat-widget-btn {
    position: static;
    margin-top: 8px;
  }
}

.chat-widget-btn:hover {
  background-color: #734e2c;
  transform: translateY(-2px);
}

.chat-widget-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* 5. Live Chat Drawer Styles */
.chat-drawer {
  position: fixed;
  bottom: -450px;
  right: 40px;
  width: 320px;
  height: 400px;
  background-color: #ffffff;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  z-index: 3000;
  transition: bottom 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: var(--font-body);
  overflow: hidden;
}

.chat-drawer.open {
  bottom: 0;
}

@media (max-width: 576px) {
  .chat-drawer {
    right: 15px;
    width: calc(100% - 30px);
  }
}

.chat-drawer-header {
  background-color: #8c6239;
  color: #ffffff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-drawer-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.chat-drawer-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background-color: #f9f6f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.chat-msg.bot {
  background-color: #ffffff;
  color: #1a260c;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.chat-msg.user {
  background-color: #8c6239;
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.chat-drawer-footer {
  padding: 10px 12px;
  border-top: 1px solid #f0ece6;
  display: flex;
  gap: 8px;
  background-color: #ffffff;
}

.chat-drawer-footer input {
  flex: 1;
  border: 1px solid #e2ded8;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 0.85rem;
  outline: none;
}

.chat-drawer-footer input:focus {
  border-color: #8c6239;
}

.chat-drawer-footer button {
  background-color: #8c6239;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.chat-drawer-footer button:hover {
  background-color: #734e2c;
}

/* 6. About Page Responsive Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-text-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid #f7f4ee;
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-text-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(140, 98, 57, 0.05);
}

/* 7. Alternating Philosophy Feature Block */
.philosophy-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 40px;
}
.philosophy-row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.philosophy-row:nth-child(even) {
  flex-direction: row-reverse;
}
.philosophy-col-img {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  aspect-ratio: 4 / 3;
}
.philosophy-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.philosophy-col-img:hover img {
  transform: scale(1.05);
}
.philosophy-col-text {
  flex: 1.2;
}
.philosophy-col-text h3 {
  font-family: var(--font-header);
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 16px;
  font-weight: 800;
}
.philosophy-col-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

@media (max-width: 991px) {
  .philosophy-row {
    flex-direction: column !important;
    gap: 30px;
  }
  .philosophy-col-img {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* 8. Premium Alternating Gallery Grid */
.premium-gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.gallery-row {
  display: flex;
  gap: 24px;
}
.gallery-row:nth-child(odd) .gallery-col-left {
  flex: 1;
  aspect-ratio: 1 / 1.25;
}
.gallery-row:nth-child(odd) .gallery-col-right {
  flex: 1.5;
  aspect-ratio: 1.5 / 1;
}
.gallery-row:nth-child(even) .gallery-col-left {
  flex: 1.5;
  aspect-ratio: 1.5 / 1;
}
.gallery-row:nth-child(even) .gallery-col-right {
  flex: 1;
  aspect-ratio: 1 / 1.25;
}
.gallery-cell {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
  cursor: pointer;
  background-color: #ffffff;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.gallery-cell:hover img {
  transform: scale(1.04);
}
.gallery-cell-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 38, 12, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  color: var(--bg-white);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.gallery-cell:hover .gallery-cell-overlay {
  opacity: 1;
}

@media (max-width: 767px) {
  .gallery-row {
    flex-direction: column !important;
    gap: 16px;
  }
  .gallery-row:nth-child(odd) .gallery-col-left,
  .gallery-row:nth-child(odd) .gallery-col-right,
  .gallery-row:nth-child(even) .gallery-col-left,
  .gallery-row:nth-child(even) .gallery-col-right {
    flex: none !important;
    aspect-ratio: 4 / 3 !important;
  }
}

