/* ═══════════════════════════════════════════════
   Loccake — Public Site Styles
   ═══════════════════════════════════════════════ */

:root {
  --color-cream: #faf7f2;
  --color-warm: #f5efe6;
  --color-gold: #c9956b;
  --color-gold-dark: #a87c56;
  --color-gold-light: rgba(201, 149, 107, 0.1);
  --color-dark: #1e1e2d;
  --color-text: #3d3d4e;
  --color-text-light: #7a7a8c;
  --color-white: #ffffff;
  --color-border: #e8e4de;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════ NAVBAR ══════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1005;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar--solid,
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  padding: 10px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}

.logo-icon {
  display: flex;
  align-items: center;
  color: var(--color-gold);
}

.navbar--solid .logo-icon,
.navbar.scrolled .logo-icon {
  color: var(--color-gold);
}

.navbar:not(.navbar--solid):not(.scrolled) .logo-icon {
  color: var(--color-white);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-dark);
  letter-spacing: -0.5px;
}

.navbar:not(.navbar--solid):not(.scrolled) .logo-text {
  color: var(--color-white);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  color: var(--color-text);
  white-space: nowrap;
}

.navbar:not(.navbar--solid):not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.85);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
  background: var(--color-gold-light);
}

.navbar:not(.navbar--solid):not(.scrolled) .nav-link:hover,
.navbar:not(.navbar--solid):not(.scrolled) .nav-link.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.15);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.navbar:not(.navbar--solid):not(.scrolled) .nav-toggle span {
  background: var(--color-white);
}

/* Hamburger → X animation */
.nav-toggle.active span { background: var(--color-white); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════ BUTTONS ══════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(201,149,107,0.3);
}

.btn--primary:hover {
  background: var(--color-gold-dark);
  box-shadow: 0 4px 16px rgba(201,149,107,0.35);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-light);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.35);
}

.btn--outline-light:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.12);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}

.btn--whatsapp:hover {
  background: #1da851;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transform: translateY(-1px);
}

.btn--sm { padding: 8px 20px; font-size: 13px; }
.btn--lg { padding: 14px 36px; font-size: 15px; }

/* ══════════════ HERO ══════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--color-dark);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(32, 25, 14, 0.85), rgba(30,30,45,0.55));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 120px 0 80px;
}

.hero__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__title em {
  color: var(--color-gold);
  font-style: italic;
}

.hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════ PAGE HEADER ══════════════ */

.page-header {
  position: relative;
  padding: 160px 0 80px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-dark);
  text-align: center;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,30,45,0.75);
}

.page-header__content {
  position: relative;
  z-index: 1;
}

.page-header__content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--color-white);
  margin-bottom: 12px;
}

.page-header__content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}

/* ══════════════ SECTIONS ══════════════ */

.section {
  padding: 80px 0;
}

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--color-text-light);
  max-width: 520px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ══════════════ PRODUCTS GRID ══════════════ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

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

.product-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-warm);
}

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

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

.product-card__info {
  padding: 20px 24px 24px;
}

.product-card__category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  margin-bottom: 6px;
  display: block;
}

.product-card__info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.product-card__info p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.product-card__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold-dark);
}

/* ══════════════ MENU SECTION ══════════════ */

.menu-section {
  padding-top: 56px;
}

.menu-category {
  margin-bottom: 56px;
}

.menu-category__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-gold-light);
}

.menu-note {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-gold);
}

.menu-note p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.menu-note a {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
}

.menu-note a:hover { text-decoration: underline; }

/* ══════════════ ABOUT ══════════════ */

.about-section {
  background: var(--color-white);
}

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

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  max-height: 480px;
}

.about-content .section-tag { text-align: left; }
.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-content .btn {
  margin-top: 12px;
}

/* ══════════════ REVIEWS ══════════════ */

.reviews-section {
  background: var(--color-warm);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.review-stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold-dark);
}

/* ══════════════ GALLERY ══════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

/* ══════════════ CONTACT ══════════════ */

.contact-section {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-tag { text-align: left; }
.contact-info .section-title {
  text-align: left;
  margin-bottom: 32px;
}

.contact-item {
  margin-bottom: 24px;
}

.contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.contact-item a {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover { text-decoration: underline; }

.contact-map img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-height: 400px;
}

/* ══════════════ PRODUCT DETAIL ══════════════ */

.product-detail {
  padding-top: 120px;
}

.back-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gold);
  text-decoration: none;
  margin-bottom: 28px;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--color-gold-dark);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.product-gallery__main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
  background: var(--color-warm);
}

.product-gallery__main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: flex;
  gap: 12px;
}

.thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumb:hover { opacity: 0.85; }

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

.product-info__category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.product-info__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.product-info__price {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gold-dark);
  margin-bottom: 24px;
}

.product-info__desc p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.product-info__notes {
  background: var(--color-warm);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 24px 0;
}

.info-note {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 8px;
}

.info-note:last-child { margin-bottom: 0; }

.product-info__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ══════════════ RELATED ══════════════ */

.related-section {
  background: var(--color-warm);
}

.related-section .section-title {
  margin-bottom: 36px;
}

/* ══════════════ FOOTER ══════════════ */

.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__logo .logo-text {
  color: var(--color-white);
}

.footer__logo .logo-icon {
  color: var(--color-gold);
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
}

.footer__links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__links a {
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ══════════════ INFO CARDS (delivery, payment, transport) ══════════════ */

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.info-cards-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-gold-light);
  color: var(--color-gold);
  margin-bottom: 20px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.info-card__detail {
  margin-top: 16px;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  text-align: left;
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.8;
}

.info-card__detail strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.info-card--whatsapp {
  border: 2px solid rgba(37,211,102,0.25);
}

.info-card--whatsapp .info-card__icon {
  background: rgba(37,211,102,0.1);
  color: #25d366;
}

.info-card--whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 8px 24px rgba(37,211,102,0.15);
}

/* ══════════════ CONTENT BLOCKS ══════════════ */

.content-block {
  max-width: 720px;
}

.content-block--center {
  margin: 0 auto;
  text-align: center;
}

.content-block .section-tag { text-align: center; }
.content-block .section-title { margin-bottom: 20px; }

.content-block__text {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.content-block__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.content-note {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-gold);
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ══════════════ FEATURES GRID ══════════════ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold-light);
  color: var(--color-gold);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ══════════════ ABOUT GRID REVERSE ══════════════ */

.about-grid--reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  direction: rtl;
}

.about-grid--reverse > * {
  direction: ltr;
}

/* ══════════════ CONTACT PAGE EXTRAS ══════════════ */

.hours-table {
  margin-top: 4px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
}

.hours-row span:first-child {
  font-weight: 500;
  color: var(--color-text);
}

.hours-row--closed span:last-child {
  color: #e63946;
  font-weight: 500;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ══════════════ RESPONSIVE ══════════════ */

@media (max-width: 900px) {
  .about-grid,
  .about-grid--reverse,
  .contact-grid,
  .product-detail__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-grid--reverse {
    direction: ltr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Prevent scroll when menu or modal is open */
  body.menu-open, body.modal-open {
    overflow: hidden;
  }

  /* Backdrop for Mobile Menu Drawer */
  .menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 30, 45, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999; /* Higher than page sections, but lower than .navbar (z-index: 1000/1005) */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  body.menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Premium Mobile Menu Slide-over Drawer starting from the right */
  .nav-menu {
    display: flex !important; /* Force flex layouts */
    position: fixed;
    top: 0;
    right: -100%; /* Initially off-screen */
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -10px 0 32px rgba(30, 30, 45, 0.15);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    z-index: 1002; /* Slide drawer should sit nicely behind toggle */
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 110px 24px 40px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-left: 1px solid var(--color-border);
  }

  .nav-menu.open {
    right: 0 !important; /* Slide in! */
  }

  /* Styled Mobile Nav Links in Side Drawer */
  .nav-menu .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark) !important; /* Explicitly dark link text on mobile drawer bg */
    padding: 16px 20px;
    border-radius: 12px;
    width: 100%;
    max-width: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(232, 228, 222, 0.5);
    transition: background 0.2s ease, padding-left 0.2s ease, color 0.2s ease;
    background: transparent;
  }

  /* Explicitly override any transparent/solid header styling in mobile drawer */
  .navbar .nav-menu .nav-link,
  .navbar:not(.navbar--solid):not(.scrolled) .nav-menu .nav-link {
    color: var(--color-dark) !important;
    background: transparent !important;
  }

  .navbar .nav-menu .nav-link:hover,
  .navbar .nav-menu .nav-link.active,
  .navbar:not(.navbar--solid):not(.scrolled) .nav-menu .nav-link:hover,
  .navbar:not(.navbar--solid):not(.scrolled) .nav-menu .nav-link.active {
    color: var(--color-gold-dark) !important;
    background: var(--color-cream) !important;
  }

  /* Right-facing arrow in side drawer links for native iOS/Android feel */
  .nav-menu .nav-link::after {
    content: "→";
    font-size: 16px;
    color: var(--color-gold);
    opacity: 0.6;
    transition: transform 0.2s ease;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--color-gold-dark);
    background: var(--color-cream);
    padding-left: 24px;
  }

  .nav-menu .nav-link:hover::after,
  .nav-menu .nav-link.active::after {
    transform: translateX(4px);
    opacity: 1;
  }

  /* Ensure the active active toggle is dark on the white mobile drawer */
  .nav-toggle {
    display: flex;
    z-index: 1005; /* Keep above drawer */
  }

  .nav-toggle.active span {
    background: var(--color-dark) !important;
  }

  .nav-actions .btn { display: none; }

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

  .hero__content {
    padding: 140px 0 60px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__desc {
    font-size: 15px;
  }

  .section {
    padding: 56px 0;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .product-gallery__thumbs {
    gap: 8px;
  }

  .thumb {
    width: 56px;
    height: 56px;
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .content-block__actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

/* Sticky Bottom Nav Bar for Mobile App Feel */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 80px; /* Leave space so bottom content isn't covered */
  }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--color-border);
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    padding: 0 8px;
  }

  .mobile-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    gap: 4px;
    flex: 1;
    height: 100%;
    transition: var(--transition);
  }

  .mobile-bottom-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: var(--transition);
  }

  .mobile-bottom-nav__icon--ara {
    background: var(--color-gold-light);
    color: var(--color-gold);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(201, 149, 107, 0.2);
  }

  .mobile-bottom-nav__item--active,
  .mobile-bottom-nav__item--active .mobile-bottom-nav__icon {
    color: var(--color-gold);
  }

  .mobile-bottom-nav__item:hover .mobile-bottom-nav__icon,
  .mobile-bottom-nav__item:hover {
    color: var(--color-gold-dark);
  }

  .mobile-bottom-nav__item--whatsapp {
    color: #25D366 !important;
  }

  .mobile-bottom-nav__item--whatsapp .mobile-bottom-nav__icon {
    color: #25D366 !important;
  }
}

/* ══════════════ ARA MODAL / POPUP ══════════════ */
.ara-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10010; /* Make sure it's on top of bottom-nav and sidebar */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.ara-modal--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ara-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 45, 0.65);
  backdrop-filter: blur(6px);
}

.ara-modal__content {
  position: relative;
  background: var(--color-white);
  border-radius: 20px;
  width: 90%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  border: 1px solid var(--color-border);
}

.ara-modal--open .ara-modal__content {
  transform: translateY(0) scale(1);
}

.ara-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--color-cream);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-light);
  transition: var(--transition);
}

.ara-modal__close:hover {
  background: var(--color-warm);
  color: var(--color-dark);
}

.ara-modal__close svg {
  display: block;
}

.ara-modal__header {
  text-align: center;
  margin-bottom: 24px;
}

.ara-modal__icon {
  width: 60px;
  height: 60px;
  background: var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.ara-modal__header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-dark);
  margin: 0;
}

.ara-modal__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ara-modal__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ara-modal__item strong {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ara-modal__item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

.ara-modal__phone-link {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  margin-top: 4px;
}

.ara-modal__phone-link:hover {
  color: var(--color-gold);
}

.ara-modal__divider {
  height: 1px;
  background: var(--color-border);
}

.btn--block {
  width: 100%;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .ara-modal {
    align-items: flex-end;
  }

  .ara-modal__content {
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 100%;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 36px 24px 50px; /* Extra padding-bottom because of the bottom nav */
  }

  .ara-modal--open .ara-modal__content {
    transform: translateY(0);
  }
}

/* ── Blog ── */

.blog-list-section {
  padding-top: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(45, 31, 19, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(45, 31, 19, 0.12);
}

.blog-card__image-wrap {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-warm);
}

.blog-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__image-wrap img {
  transform: scale(1.04);
}

.blog-card__placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.blog-card__body {
  padding: 22px 24px 26px;
}

.blog-card__date {
  display: block;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.blog-card__title {
  /* font-family: var(--font-display); */
  font-size: 1.35rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-card__title a {
  color: var(--color-dark);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--color-gold);
}

.blog-card__excerpt {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.blog-card__link {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
}

.blog-card__link:hover {
  text-decoration: underline;
}

.blog-article__header {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: var(--color-dark);
}

.blog-article__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 10, 0.25) 0%, rgba(20, 14, 10, 0.82) 100%);
}

.blog-article__header-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 56px;
  color: var(--color-white);
  max-width: 820px;
}

.blog-article__back {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.blog-article__back:hover {
  color: var(--color-white);
}

.blog-article__date {
  display: block;
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 12px;
}

.blog-article__title {
  /* font-family: var(--font-display); */
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.blog-article__excerpt {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.92;
}

.blog-article__content {
  max-width: 760px;
  padding: 56px 24px 80px;
}

.blog-block {
  margin-bottom: 24px;
}

.blog-block--title {
  /* font-family: var(--font-display); */
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-dark);
  margin-top: 40px;
  margin-bottom: 18px;
}

.blog-block--subtitle {
  /* font-family: var(--font-display); */
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--color-gold-dark, #9a6f42);
  margin-top: 28px;
  margin-bottom: 14px;
}

.blog-block--paragraph {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
}

.blog-block--italic {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  padding: 18px 22px;
  border-left: 4px solid var(--color-gold);
  background: var(--color-warm);
  border-radius: 0 12px 12px 0;
}

.blog-block--image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(45, 31, 19, 0.1);
}

.blog-block--image figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
}

.blog-block--map iframe {
  width: 100%;
  min-height: 420px;
}

.blog-block--cta {
  margin-top: 36px;
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-warm), #f8efe3);
  text-align: center;
}

.blog-block--cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.empty-state-box {
  text-align: center;
  padding: 48px 24px;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .blog-article__header {
    min-height: 320px;
  }

  .blog-article__content {
    padding: 40px 16px 64px;
  }

  .blog-block--title {
    font-size: 1.6rem;
  }
}
