@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Monsieur+La+Doulaise&display=swap");

/* ================================================
   CSS VARIABLES
   ================================================ */
:root {
  --cream: #f5efe6;
  --espresso: #40220b;
  --amber: #d9b688;
  --amber-light: #e8cfa8;
  --amber-dark: #b89060;
  --text-dark: #2a1506;
  --text-muted: rgba(64, 34, 11, 0.6);
  --white: #ffffff;
  --font-display: "Playfair Display", Georgia, serif;
  --font-script: "Monsieur La Doulaise", cursive;
  --font-body: "DM Sans", sans-serif;
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; }

/* ================================================
   PAGE LOADER
   ================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.loader-script {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--amber);
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  from { opacity: 0.5; transform: scale(0.97); }
  to   { opacity: 1;   transform: scale(1.01); }
}

.loader-bar {
  width: 180px;
  height: 2px;
  background: rgba(217,182,136,0.2);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--amber);
  border-radius: 2px;
  animation: loaderFill 1.4s ease forwards;
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1.15;
  width: fit-content;
}

h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--amber), transparent);
  margin-top: 12px;
}

.section-header h2 { margin: 0 auto; }
.section-header h2::after { margin: 10px auto 0; }

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--amber-dark);
  font-size: 1rem;
  font-weight: 400;
  margin-top: 4px;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-dark);
  opacity: 0.9;
}

.note {
  font-size: 0.82rem;
  color: rgba(217,182,136,0.45);
  line-height: 1.5;
}

/* ================================================
   BUTTON
   ================================================ */
.dy-btn {
  border: 2px solid var(--amber);
  background-color: transparent;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color var(--transition), box-shadow var(--transition);
}

.dy-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--amber);
  transform: translateX(-101%);
  transition: transform var(--transition);
  z-index: -1;
}

.dy-btn:hover::before { transform: translateX(0); }
.dy-btn:hover { color: var(--espresso); box-shadow: 0 6px 24px rgba(217,182,136,0.35); }

/* ================================================
   FADE ANIMATION
   ================================================ */
.fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1), transform 0.85s cubic-bezier(0.4,0,0.2,1);
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   HEADER
   ================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(20px, 6vw, 80px);
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
  z-index: 1000;
  background: transparent;
}

header.sticky {
  background: var(--espresso);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  height: 74px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo:hover h1 {
  color: var(--white);
}

.logo img {
  width: 60px;
  height: 60px;
  transition: transform 0.5s ease;
  border-radius: 50%;
}

header.sticky .logo img { width: 46px; height: 46px; }

.logo img:hover { transform: rotate(360deg) scale(1.08); }

.logo h1 {
  font-family: var(--font-script);
  font-size: 2.3rem;
  color: var(--amber);
  transition: color var(--transition);
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 10px;
}

.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--amber);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 7px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }

/* Nav */
nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

nav ul {
  list-style: none;
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
}

nav ul li { position: relative; }

nav ul li a {
  color: rgba(217,182,136,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 100%;
  position: relative;
  transition: color var(--transition), background-color var(--transition);
}

nav ul li a:hover {
  color: rgba(245,239,230,0.96);
  text-shadow: 0 0 18px rgba(217,182,136,0.28);
}

nav ul li a.active-link { color: var(--amber); }

nav ul li a.active-link:hover {
  color: var(--cream);
  text-shadow: 0 0 18px rgba(217,182,136,0.35);
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width var(--transition), left var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

nav ul li a.active-link::after { width: 60%; }

header.sticky nav ul li a::after { display: none; }
header.sticky nav ul li a:hover { background: rgba(217,182,136,0.1); }
.nav-btn {
  display: flex;
  align-items: center;
  padding-left: 16px;
}

/* ================================================
   MOBILE NAV
   ================================================ */
@media (max-width: 1100px) {
  header { height: 76px; padding: 0 clamp(20px, 4vw, 40px); }
  header.sticky { height: 68px; }

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

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(380px, 100%);
    height: 100dvh;
    background: linear-gradient(160deg, var(--espresso) 0%, #2a1506 100%);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 90px;
    gap: 0;
    transition: right 0.45s cubic-bezier(0.68,-0.55,0.265,1.55);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    overflow-y: auto;
    z-index: 1000;
  }

  nav.active { right: 0; }

  nav ul {
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(217,182,136,0.1);
    opacity: 0;
  }

  nav.active ul li { animation: slideInRight 0.4s ease forwards; }
  nav.active ul li:nth-child(1) { animation-delay: 0.07s; }
  nav.active ul li:nth-child(2) { animation-delay: 0.14s; }
  nav.active ul li:nth-child(3) { animation-delay: 0.21s; }
  nav.active ul li:nth-child(4) { animation-delay: 0.28s; }
  nav.active ul li:nth-child(5) { animation-delay: 0.35s; }
  nav.active ul li:nth-child(6) { animation-delay: 0.42s; }

  @keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  nav ul li a {
    padding: 18px 28px;
    font-size: 1.1rem;
    justify-content: flex-start;
    width: 100%;
    height: auto;
  }

  nav ul li a::after { display: none; }
  nav ul li a:hover { background: rgba(217,182,136,0.08); padding-left: 38px; color: rgba(217,182,136,0.85); }

  .nav-btn { width: 100%; padding: 24px 28px; margin-top: 8px; }
  .nav-btn .dy-btn { width: 100%; text-align: center; justify-content: center; display: flex; }
}

@media (max-width: 480px) {
  .logo h1 { font-size: 1.8rem; }
  .logo img { width: 44px; height: 44px; }
}

/* ================================================
   HERO / BANNER
   ================================================ */
.banner {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.banner .intro > * {
  opacity: 0;
  transform: translateY(22px);
}

.banner.hero-ready .intro > * {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.banner.hero-ready .intro > *:nth-child(1) { animation-delay: 0.08s; }
.banner.hero-ready .intro > *:nth-child(2) { animation-delay: 0.18s; }
.banner.hero-ready .intro > *:nth-child(3) { animation-delay: 0.3s; }
.banner.hero-ready .intro > *:nth-child(4) { animation-delay: 0.42s; }
.banner.hero-ready .intro > *:nth-child(5) { animation-delay: 0.54s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform-origin: center;
  transition: transform 0.1s linear;
  will-change: transform;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,8,2,0.72) 0%,
    rgba(20,8,2,0.4) 55%,
    rgba(20,8,2,0.15) 100%
  );
  z-index: 1;
}

.banner-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
}

.banner main {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(60px, 10vh, 120px) clamp(24px, 8vw, 100px);
  gap: 60px;
}

.intro {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 680px;
  flex: 1;
}

.intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  width: auto;
}

.intro h2 em {
  font-style: italic;
  color: var(--amber);
}

.intro h2::after { display: none; }

.intro .description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  max-width: 520px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.ghost-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.ghost-link:hover { color: var(--amber); }

/* Socials */
.socials ul {
  list-style: none;
  display: flex;
  gap: 16px;
}

.socials ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(217,182,136,0.35);
  border-radius: 50%;
  color: var(--amber);
  transition: all var(--transition);
}

.socials ul li a svg {
  width: 16px;
  height: 16px;
}

.socials ul li a:hover {
  background: var(--amber);
  color: var(--espresso);
  border-color: var(--amber);
  transform: translateY(-3px);
}

/* Hero float card */
.hero-float-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  overflow: hidden;
  width: 240px;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}

.banner .hero-float-card,
.banner .scroll-hint {
  opacity: 0;
}

.banner.hero-ready .hero-float-card {
  animation:
    heroCardIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.48s forwards,
    floatCard 4s ease-in-out 1.5s infinite;
}

.banner.hero-ready .scroll-hint {
  animation: heroFadeUp 0.75s ease 0.9s forwards;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-float-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hero-float-info {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-float-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.8;
}

.hero-float-info strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
}

.hero-float-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
  .banner main { flex-direction: column; align-items: center; text-align: center; padding-bottom: 80px; }
  .intro { align-items: center; }
  .intro .description { text-align: center; }
  .hero-float-card { width: 200px; animation: none; }
  .hero-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .banner-img { background-attachment: scroll; }
  .hero-float-card { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .banner .intro > *,
  .banner .hero-float-card,
  .banner .scroll-hint {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-hint span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(217,182,136,0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-hint span::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--amber);
  animation: scrollBounce 1.7s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 5px; opacity: 1; }
  60%       { top: 17px; opacity: 0.2; }
}

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--espresso);
  padding: 30px clamp(20px,5vw,60px);
  flex-wrap: wrap;
  gap: 0;
  position: relative;
}

.stats-bar::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 clamp(20px,4vw,48px);
}

.stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--amber);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(217,182,136,0.2);
}

@media (max-width: 640px) {
  .stat-divider { display: none; }
  .stat { padding: 10px 20px; min-width: 45%; }
}

/* ================================================
   FEATURED MENU
   ================================================ */
.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(60px,8vw,100px) clamp(20px,5vw,60px) 70px;
  gap: 40px;
  background: var(--cream);
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 9px 22px;
  border: 1.5px solid rgba(64,34,11,0.2);
  background: transparent;
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50px;
  transition: all var(--transition);
}

.tab-btn:hover { border-color: var(--amber-dark); color: var(--amber-dark); }

.tab-btn.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--amber);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 1200px;
}

.card {
  border-radius: var(--radius);
  background: var(--amber);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover img { transform: scale(1.06); }

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--espresso);
  color: var(--amber);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 50px;
}

.new-badge {
  background: #2d7a3a;
  color: #fff;
}

.card-content {
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--espresso);
  opacity: 0.55;
}

.card-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--espresso);
  font-weight: 700;
}

.card-content p {
  font-size: 0.88rem;
  color: rgba(64,34,11,0.7);
  line-height: 1.6;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--espresso);
}

.card .dy-btn {
  border-color: var(--espresso);
  color: var(--espresso);
  padding: 9px 20px;
  font-size: 0.78rem;
}

.card .dy-btn::before { background: var(--espresso); }
.card .dy-btn:hover { color: var(--amber); }

.card.hidden { display: none; }

.view-all-link {
  color: var(--amber-dark);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.view-all-link:hover { color: var(--espresso); border-color: var(--espresso); }

/* ================================================
   ABOUT (BG SECTION)
   ================================================ */
.bg-img {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=1600&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.bg-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

.about {
  padding: clamp(80px,12vw,130px) clamp(24px,6vw,60px);
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
}

.about h2 { margin: 0 auto; }

.about p {
  font-size: clamp(0.95rem,1.5vw,1.1rem);
  line-height: 1.9;
  color: rgba(255,255,255,0.84);
  font-weight: 300;
}

@media (max-width: 768px) {
  .bg-img { background-attachment: scroll; }
}

/* ================================================
   GALLERY STRIP (infinite scroll)
   ================================================ */
.gallery-strip {
  overflow: hidden;
  background: var(--espresso);
  padding: 20px 0;
  position: relative;
}

.gallery-strip::before,
.gallery-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.gallery-strip::before { left: 0;  background: linear-gradient(to right, var(--espresso), transparent); }
.gallery-strip::after  { right: 0; background: linear-gradient(to left,  var(--espresso), transparent); }

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryScroll 28s linear infinite;
}

.gallery-track:hover { animation-play-state: paused; }

.gallery-track img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.gallery-track img:hover { transform: scale(1.04); }

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================
   PROCESS SECTION
   ================================================ */
.process {
  padding: clamp(70px,10vw,110px) clamp(24px,6vw,80px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1000px;
  width: 100%;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.process-step:nth-child(even) {
  grid-template-columns: 80px 1fr 1fr;
  direction: rtl;
}

.process-step:nth-child(even) > * { direction: ltr; }

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--amber);
  opacity: 0.25;
  line-height: 1;
  text-align: center;
}

.step-img {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.step-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.process-step:hover .step-img img { transform: scale(1.04); }

.step-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--espresso);
  font-weight: 700;
}

.step-text p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

@media (max-width: 900px) {
  .process-step,
  .process-step:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: center;
  }

  .step-number { font-size: 2.5rem; }
  .step-img img { height: 220px; }

  .step-text { align-items: center; }
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(70px,10vw,100px) clamp(20px,5vw,60px);
  gap: 50px;
  background: var(--cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  width: 100%;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--espresso);
}

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

.featured-testimonial {
  background: var(--espresso);
  color: var(--cream);
}

.featured-testimonial p { color: rgba(245,239,230,0.85); }
.featured-testimonial .reviewer strong { color: var(--amber); }
.featured-testimonial .reviewer span { color: rgba(217,182,136,0.55); }
.featured-testimonial .reviewer-avatar { background: var(--amber); color: var(--espresso); }

.stars { color: var(--amber); font-size: 0.9rem; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  font-weight: 300;
}

.reviewer { display: flex; align-items: center; gap: 12px; margin-top: 4px; }

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.88rem;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.reviewer strong { display: block; font-size: 0.88rem; color: inherit; }
.reviewer span   { font-size: 0.75rem; color: rgba(64,34,11,0.45); }

@media (max-width: 1000px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; } }

/* ================================================
   SERVICES
   ================================================ */
.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(70px,10vw,100px) clamp(20px,5vw,60px);
  background: linear-gradient(180deg, var(--cream) 0%, #ede5d8 100%);
  gap: 0;
}

.services .section-header { margin-bottom: 50px; }

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  width: 100%;
}

.s-card-content {
  background: linear-gradient(135deg, var(--espresso), #2a1506);
  padding: 30px 26px;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(217,182,136,0.12);
}

.s-card-content:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--shadow-lg);
}

.s-card-content svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.s-card-content:hover svg { transform: scale(1.2) rotate(6deg); }

.s-card-content h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--amber);
  font-weight: 700;
}

.s-card-content p {
  color: rgba(245,239,230,0.65);
  line-height: 1.7;
  font-size: 0.88rem;
  font-weight: 300;
}

@media (max-width: 900px) { .services-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-cards { grid-template-columns: 1fr; } }

/* ================================================
   NEWSLETTER
   ================================================ */
.newsletter {
  background: var(--espresso);
  padding: clamp(60px,8vw,90px) clamp(24px,6vw,80px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter-inner {
  max-width: 900px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.newsletter-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 260px;
}

.newsletter-text h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  width: auto;
}

.newsletter-text h2::after { background: linear-gradient(90deg, var(--amber), transparent); }

.newsletter-text p {
  color: rgba(245,239,230,0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  min-width: 260px;
  max-width: 440px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(217,182,136,0.3);
  border-right: none;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: rgba(217,182,136,0.7); }

.newsletter-submit {
  border-left: none;
  flex-shrink: 0;
  border-radius: 0;
}

@media (max-width: 700px) {
  .newsletter-inner { flex-direction: column; align-items: flex-start; gap: 30px; }
  .newsletter-form  { max-width: 100%; width: 100%; flex-direction: column; }
  .newsletter-input { border-right: 2px solid rgba(217,182,136,0.3); border-bottom: none; }
  .newsletter-submit { width: 100%; border-left: 2px solid var(--amber); border-top: none; text-align: center; display: flex; justify-content: center; }
}

/* ================================================
   CTA / CONTACT
   ================================================ */
.cta {
  background: var(--amber);
  padding: clamp(70px,10vw,100px) clamp(24px,6vw,60px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  max-width: 640px;
}

.cta h2 { color: var(--espresso); margin: 0 auto; }
.cta h2::after { background: linear-gradient(90deg, var(--espresso), transparent); }

.cta p {
  color: rgba(64,34,11,0.75);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.cta .dy-btn { border-color: var(--espresso); color: var(--espresso); }
.cta .dy-btn::before { background: var(--espresso); }
.cta .dy-btn:hover { color: var(--amber); }

.cta-email {
  color: var(--espresso);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid rgba(64,34,11,0.3);
  padding-bottom: 2px;
  transition: border-color var(--transition), opacity var(--transition);
  opacity: 0.8;
}

.cta-email:hover { border-color: var(--espresso); opacity: 1; }

.cta-hours {
  margin-top: 12px;
  border-top: 1px solid rgba(64,34,11,0.18);
  padding-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: rgba(64,34,11,0.7);
  font-weight: 500;
}

@media (max-width: 480px) {
  .cta { padding: 60px 24px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta .dy-btn { width: 100%; justify-content: center; display: flex; }
}

/* ================================================
   FOOTER
   ================================================ */
footer { background: var(--espresso); }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(50px,8vw,80px) clamp(24px,6vw,80px) clamp(40px,6vw,60px);
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 280px;
}

.footer-brand .logo h1 { font-size: 2rem; }
.footer-tagline { font-size: 0.86rem; color: rgba(217,182,136,0.55); line-height: 1.5; }

.footer-brand .socials ul { gap: 10px; }
.footer-brand .socials ul li a { width: 34px; height: 34px; }
.footer-brand .socials ul li a svg { width: 14px; height: 14px; }

.footer-links-group { display: flex; gap: 60px; flex-wrap: wrap; }

.footer-col { display: flex; flex-direction: column; gap: 14px; }

.footer-col h4 {
  color: var(--amber);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-weight: 400;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(217,182,136,0.1);
  padding: 20px clamp(24px,6vw,80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); font-weight: 400; }
.footer-note { font-style: italic; }

@media (max-width: 900px) {
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand { align-items: center; max-width: 100%; }
  .footer-links-group { justify-content: center; gap: 40px; }
  .footer-col { align-items: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--espresso);
  border: 1.5px solid rgba(217,182,136,0.4);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition), border-color var(--transition);
  pointer-events: none;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--amber); border-color: var(--amber); }

.back-to-top svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
  transition: color var(--transition);
}

.back-to-top:hover svg { color: var(--espresso); }

/* ================================================
   ACTIVE NAV LINK
   ================================================ */
nav ul li a.active-link { color: var(--amber); }

/* ================================================
   RESPONSIVE TYPOGRAPHY POLISH
   ================================================ */
@media (max-width: 900px) {
  h2 { text-align: center; }
}


@keyframes cardReveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes overlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(110%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(110%); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

@keyframes successPop {
  0% { opacity: 0; transform: scale(0.7); }
  60% { transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

.lc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 3, 0.72);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: overlayIn 0.3s ease;
}

.lc-overlay.closing {
  animation: overlayIn 0.25s ease reverse forwards;
  pointer-events: none;
}

.lc-toast-container {
  position: fixed;
  bottom: 148px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.lc-toast {
  background: #40220b;
  color: #f5efe6;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  font-family: var(--font-body);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  max-width: 360px;
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  pointer-events: auto;
}

.lc-toast.out {
  animation: toastOut 0.3s ease forwards;
}

.lc-toast-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.lc-toast span {
  flex: 1;
  line-height: 1.4;
}

.cart-btn-fixed {
  position: fixed;
  bottom: 84px;
  right: 28px;
  background: #40220b;
  color: #f5efe6;
  border: none;
  border-radius: 14px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    background 0.2s,
    transform 0.28s ease,
    opacity 0.28s ease,
    visibility 0.28s ease;
  z-index: 1000;
}

.cart-btn-fixed.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.cart-btn-fixed:hover {
  background: #5c3415;
  transform: translateY(-2px);
}

.cart-btn-fixed .cart-count {
  background: #d9b688;
  color: #40220b;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.cart-btn-fixed.bump .cart-count {
  animation: heartbeat 0.3s ease;
}

@media (max-width: 768px) {
  .lc-toast-container {
    right: 18px;
    left: 18px;
    bottom: 136px;
  }

  .lc-toast {
    min-width: 0;
    max-width: none;
  }

  .cart-btn-fixed {
    right: 18px;
    bottom: 74px;
  }
}

.cart-modal {
  background: #fff8f0;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-body);
}

.cart-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(64, 34, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #40220b;
}

.cart-header span {
  font-size: 13px;
  color: rgba(64, 34, 11, 0.5);
}

.cart-items {
  padding: 16px 28px;
}

.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(64, 34, 11, 0.07);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

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

.cart-item-name {
  font-weight: 600;
  font-size: 14px;
  color: #40220b;
  margin-bottom: 3px;
}

.cart-item-price {
  font-size: 13px;
  color: #b89060;
}

.cart-item-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(64, 34, 11, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.cart-item-qty-ctrl button {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 15px;
  color: #40220b;
  transition: background 0.2s;
}

.cart-item-qty-ctrl button:hover {
  background: #f5efe6;
}

.cart-item-qty-val {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #40220b;
  border-left: 1.5px solid rgba(64, 34, 11, 0.15);
  border-right: 1.5px solid rgba(64, 34, 11, 0.15);
  padding: 4px 0;
  background: #fff8f0;
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(64, 34, 11, 0.35);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.cart-item-remove:hover {
  color: #e05050;
  background: rgba(224, 80, 80, 0.08);
}

.cart-footer {
  padding: 20px 28px;
  border-top: 1px solid rgba(64, 34, 11, 0.1);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: #40220b;
  margin-bottom: 16px;
}

.btn-cart-checkout {
  width: 100%;
  height: 50px;
  background: #40220b;
  color: #f5efe6;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 8px;
}

.btn-cart-checkout:hover {
  background: #5c3415;
}

.btn-cart-close {
  width: 100%;
  height: 40px;
  background: none;
  border: 1.5px solid rgba(64, 34, 11, 0.2);
  border-radius: 10px;
  font-size: 13px;
  color: rgba(64, 34, 11, 0.6);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.btn-cart-close:hover {
  border-color: #40220b;
  color: #40220b;
}

.cart-empty {
  padding: 40px 28px;
  text-align: center;
  color: rgba(64, 34, 11, 0.4);
  font-size: 14px;
  line-height: 1.7;
}

.cart-empty-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.order-modal {
  background: #fff8f0;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-body);
  position: relative;
}

.order-modal-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.order-modal-body {
  padding: 24px 28px 28px;
}

.order-modal-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b89060;
  margin-bottom: 6px;
}

.order-modal-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #40220b;
  margin-bottom: 4px;
}

.order-modal-price {
  font-size: 20px;
  font-weight: 600;
  color: #d9b688;
  margin-bottom: 12px;
}

.order-modal-desc {
  font-size: 14px;
  color: rgba(64, 34, 11, 0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}

.order-modal-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.order-modal-qty label {
  font-size: 13px;
  font-weight: 500;
  color: #40220b;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid #d9b688;
  border-radius: 10px;
  overflow: hidden;
}

.qty-ctrl button {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  color: #40220b;
  transition: background 0.2s;
}

.qty-ctrl button:hover {
  background: #f5efe6;
}

.qty-val {
  width: 40px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #40220b;
  border-left: 1.5px solid #d9b688;
  border-right: 1.5px solid #d9b688;
  padding: 6px 0;
  background: #fff8f0;
  pointer-events: none;
}

.order-modal-total {
  font-size: 13px;
  color: #40220b;
  opacity: 0.7;
  margin-left: auto;
}

.order-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-paypal {
  background: #ffc439;
  color: #003087;
  border: none;
  border-radius: 12px;
  height: 48px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-paypal:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-card {
  background: #40220b;
  color: #f5efe6;
  border: none;
  border-radius: 12px;
  height: 48px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-card:hover {
  background: #5c3415;
  transform: translateY(-1px);
}

.btn-modal-close {
  background: none;
  border: 1.5px solid rgba(64, 34, 11, 0.2);
  border-radius: 12px;
  height: 40px;
  font-size: 14px;
  color: rgba(64, 34, 11, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-modal-close:hover {
  border-color: #40220b;
  color: #40220b;
}

.modal-close-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #40220b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
  z-index: 10;
}

.modal-close-x:hover {
  background: #fff;
}

.card-form {
  padding: 28px;
  font-family: var(--font-body);
  max-width: 500px;
  width: 100%;
  background: #fff8f0;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.card-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #40220b;
  margin-bottom: 6px;
}

.cf-sub {
  font-size: 13px;
  color: rgba(64, 34, 11, 0.6);
  margin-bottom: 22px;
}

.cf-demo-warning {
  background: rgba(217, 182, 136, 0.18);
  border: 1px solid rgba(184, 144, 96, 0.4);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #5c3415;
  margin-bottom: 18px;
}

.cf-demo-warning strong {
  color: #40220b;
}

.cf-order-summary {
  background: #f5efe6;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: #40220b;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cf-order-summary strong {
  font-weight: 600;
}

.cf-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(64, 34, 11, 0.55);
  display: block;
  margin-bottom: 6px;
  margin-top: 14px;
}

.cf-input {
  width: 100%;
  height: 46px;
  border: 1.5px solid rgba(64, 34, 11, 0.2);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: #40220b;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
  box-sizing: border-box;
}

.cf-input:focus {
  border-color: #d9b688;
}

.cf-input.error {
  border-color: #e05050;
  animation: shake 0.3s ease;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cf-card-icons {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 18px;
}

.cf-card-icon {
  width: 42px;
  height: 28px;
  border-radius: 5px;
  background: #e8cfa8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #40220b;
  letter-spacing: 0.05em;
}

.cf-submit {
  width: 100%;
  height: 50px;
  background: #40220b;
  color: #f5efe6;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.cf-submit:hover {
  background: #5c3415;
  transform: translateY(-1px);
}

.cf-back {
  width: 100%;
  height: 40px;
  background: none;
  border: 1.5px solid rgba(64, 34, 11, 0.2);
  border-radius: 10px;
  font-size: 13px;
  color: rgba(64, 34, 11, 0.6);
  cursor: pointer;
  margin-top: 8px;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.cf-back:hover {
  border-color: #40220b;
  color: #40220b;
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(64, 34, 11, 0.45);
  margin-top: 12px;
}

.order-success {
  background: #fff8f0;
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-body);
}

.order-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d7a3a, #3a9e4e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 20px;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.order-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #40220b;
  margin-bottom: 10px;
}

.order-success p {
  font-size: 14px;
  color: rgba(64, 34, 11, 0.65);
  line-height: 1.6;
  margin-bottom: 6px;
}

.order-success-ref {
  font-size: 12px;
  color: rgba(64, 34, 11, 0.35);
  font-family: monospace;
  letter-spacing: 0.08em;
  margin: 10px 0 24px;
}

.btn-success-close {
  background: #40220b;
  color: #f5efe6;
  border: none;
  border-radius: 12px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-success-close:hover {
  background: #5c3415;
}

.generic-modal {
  background: #fff8f0;
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-body);
}

.generic-modal .gm-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.generic-modal h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #40220b;
  margin-bottom: 10px;
}

.generic-modal p {
  font-size: 15px;
  color: rgba(64, 34, 11, 0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}

.generic-modal .gm-close {
  background: #40220b;
  color: #f5efe6;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
}

.generic-modal .gm-close:hover {
  background: #5c3415;
}

.map-modal {
  background: #fff8f0;
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-body);
}

.map-embed {
  width: 100%;
  height: 200px;
  background: #e8cfa8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-pin {
  width: 48px;
  height: 48px;
  background: #40220b;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(64, 34, 11, 0.4);
}

.map-pin::after {
  content: "☕";
  transform: rotate(45deg);
  font-size: 20px;
}

.map-body {
  padding: 24px 28px;
}

.map-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #40220b;
  margin-bottom: 16px;
}

.map-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(64, 34, 11, 0.75);
}

.map-info-row strong {
  color: #40220b;
  display: block;
  margin-bottom: 2px;
}

.map-info-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.map-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn-directions {
  flex: 1;
  height: 46px;
  background: #40220b;
  color: #f5efe6;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-directions:hover {
  background: #5c3415;
}

.btn-map-close {
  height: 46px;
  padding: 0 20px;
  background: none;
  border: 1.5px solid rgba(64, 34, 11, 0.2);
  border-radius: 12px;
  font-size: 14px;
  color: rgba(64, 34, 11, 0.6);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.btn-map-close:hover {
  border-color: #40220b;
  color: #40220b;
}

.loyalty-modal {
  background: #40220b;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: modalIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-body);
  color: #f5efe6;
}

.loyalty-header {
  background: linear-gradient(135deg, #5c3415, #40220b);
  padding: 28px;
  text-align: center;
  position: relative;
}

.loyalty-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5efe6' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.loyalty-cups {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 16px;
  position: relative;
  z-index: 1;
}

.loyalty-cup {
  font-size: 28px;
  opacity: 0.3;
  transition: all 0.3s;
}

.loyalty-cup.filled {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(217, 182, 136, 0.6));
}

.loyalty-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.loyalty-header p {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.loyalty-body {
  padding: 24px 28px;
}

.loyalty-progress-bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  height: 8px;
  margin: 14px 0 6px;
  overflow: hidden;
}

.loyalty-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #d9b688, #e8cfa8);
  border-radius: 100px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.loyalty-status {
  font-size: 12px;
  opacity: 0.6;
  text-align: right;
  margin-bottom: 20px;
}

.loyalty-perk-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.loyalty-perk-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  opacity: 0.85;
}

.loyalty-perk-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  background: rgba(217, 182, 136, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #d9b688;
  flex-shrink: 0;
}

.btn-loyalty-join {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #d9b688, #b89060);
  color: #40220b;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-loyalty-join:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-loyalty-close {
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 10px;
  font-size: 13px;
  color: rgba(245, 239, 230, 0.6);
  cursor: pointer;
  margin-top: 8px;
  font-family: var(--font-body);
  transition: background 0.2s;
}

.btn-loyalty-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.team-modal {
  background: #fff8f0;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-body);
}

.team-header {
  padding: 28px 28px 0;
  text-align: center;
}

.team-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: #40220b;
  margin-bottom: 6px;
}

.team-header p {
  font-size: 14px;
  color: rgba(64, 34, 11, 0.6);
  margin-bottom: 24px;
}

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

.team-member {
  text-align: center;
}

.team-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 10px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff8f0;
}

.team-member h4 {
  font-size: 14px;
  font-weight: 600;
  color: #40220b;
  margin-bottom: 2px;
}

.team-member span {
  font-size: 11px;
  color: rgba(64, 34, 11, 0.5);
}

.team-close-btn {
  margin: 0 28px 28px;
  width: calc(100% - 56px);
  height: 44px;
  background: #40220b;
  color: #f5efe6;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
}

.team-close-btn:hover {
  background: #5c3415;
}

.lightbox-modal {
  max-width: 800px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
}

.lightbox-img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-top: 12px;
  font-family: var(--font-body);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.special-modal {
  background: #fff8f0;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-body);
  position: relative;
}

.special-modal img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.special-modal-body {
  padding: 24px 28px 28px;
}

.special-ribbon {
  display: inline-block;
  background: linear-gradient(135deg, #d9b688, #b89060);
  color: #40220b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.card-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
  z-index: 5;
}

.card-wishlist:hover {
  transform: scale(1.1);
}

.card-wishlist.wishlisted {
  animation: heartbeat 0.3s ease;
}

.lc-toast-close {
  background: none;
  border: none;
  color: rgba(245, 239, 230, 0.55);
  font-size: 14px;
  cursor: pointer;
  padding: 0 0 0 6px;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.15s;
}

.lc-toast-close:hover {
  color: #f5efe6;
}

.menu-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  animation: cardReveal 0.4s ease forwards;
}

.menu-empty-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.menu-empty-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: #40220b;
  margin-bottom: 6px;
}

.menu-empty-sub {
  font-size: 14px;
  color: rgba(64, 34, 11, 0.5);
}
