/* ============================================
   NAZAKA BAKERY — Main Stylesheet
   Premium Bilingual Website (EN/AR)
   ============================================ */

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

/* ---- CSS Variables ---- */
:root {
  --cream:        #FAF6F1;
  --warm-white:   #FDF9F5;
  --beige:        #EFE7DC;
  --sand:         #D9C9B4;
  --caramel:      #C4956A;
  --toffee:       #A67C52;
  --cocoa:        #6B4226;
  --dark:         #2C1A0E;
  --soft-rose:    #E8B4A0;
  --blush:        #F5DDD6;
  --sage:         #B5C4A8;
  --gold:         #C9963D;
  --text-main:    #3D2314;
  --text-muted:   #7A5C45;
  --text-light:   #A88C78;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', 'Segoe UI', sans-serif;
  --font-arabic:  'Amiri', 'Traditional Arabic', serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --radius-pill:  100px;

  --shadow-sm:    0 2px 12px rgba(107, 66, 38, 0.08);
  --shadow-md:    0 8px 32px rgba(107, 66, 38, 0.14);
  --shadow-lg:    0 20px 60px rgba(107, 66, 38, 0.18);
  --shadow-card:  0 4px 24px rgba(107, 66, 38, 0.10);

  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --navbar-height: 80px;
  --section-pad:  100px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

body.rtl {
  font-family: var(--font-arabic);
  direction: rtl;
  text-align: right;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 600;
}

body.rtl h1, body.rtl h2, body.rtl h3,
body.rtl h4, body.rtl h5 {
  font-family: var(--font-arabic);
  font-weight: 700;
}

p { color: var(--text-muted); }

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

/* ---- Utility Classes ---- */
.section-pad { padding: var(--section-pad) 0; }
.section-pad-sm { padding: 60px 0; }
.bg-cream { background-color: var(--cream); }
.bg-warm { background-color: var(--warm-white); }
.bg-beige { background-color: var(--beige); }
.text-caramel { color: var(--caramel); }
.text-cocoa { color: var(--cocoa); }
.fw-light { font-weight: 300; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--caramel);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
}

.divider-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sand);
}
.divider-ornament span { color: var(--caramel); font-size: 1.2rem; }

/* ---- Buttons ---- */
.btn-nazaka {
  background: var(--caramel);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(196, 149, 106, 0.35);
}
.btn-nazaka:hover {
  background: var(--toffee);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 149, 106, 0.45);
  color: #fff;
}

.btn-outline-nazaka {
  background: transparent;
  color: var(--caramel);
  border: 2px solid var(--caramel);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-nazaka:hover {
  background: var(--caramel);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-reserve {
  background: var(--blush);
  color: var(--cocoa);
  border: none;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-reserve:hover {
  background: var(--soft-rose);
  transform: translateY(-2px);
  color: var(--dark);
}

/* ---- Navbar ---- */
.navbar-nazaka {
  height: var(--navbar-height);
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige);
  transition: var(--transition);
  z-index: 1030;
}
.navbar-nazaka.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(250, 246, 241, 0.98);
}

.navbar-brand-nazaka {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cocoa);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand-nazaka .brand-dot {
  width: 8px; height: 8px;
  background: var(--caramel);
  border-radius: 50%;
  display: inline-block;
}
.navbar-brand-nazaka:hover { color: var(--toffee); }

.nav-link-nazaka {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted) !important;
  padding: 6px 16px !important;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.nav-link-nazaka:hover, .nav-link-nazaka.active {
  color: var(--caramel) !important;
  background: var(--blush);
}

.lang-switch {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
}
.lang-switch:hover {
  background: var(--caramel);
  transform: scale(1.04);
}

.navbar-toggler-nazaka {
  border: none;
  background: transparent;
  padding: 4px 8px;
  cursor: pointer;
}
.navbar-toggler-nazaka span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cocoa);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ---- Hero Carousel ---- */
.hero-section {
  height: 92vh;
  min-height: 620px;
  position: relative;
  overflow: hidden;
  margin-top: var(--navbar-height); /* account for fixed navbar */
}

/* Bootstrap carousel wrapper must fill full height */
.hero-section .carousel,
.hero-section .carousel-inner {
  height: 100%;
  width: 100%;
}

/* Each slide: absolute fill so Bootstrap can manage display without flex conflict */
.hero-slide {
  position: relative;
  height: 92vh;
  min-height: 620px;
  overflow: hidden;
}

/* Dark gradient overlay */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20,10,4,0.78) 0%, rgba(20,10,4,0.35) 55%, rgba(20,10,4,0.10) 100%);
  z-index: 2;
}

/* Full-bleed background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 7s ease-out;
  z-index: 1;
}
.carousel-item.active .hero-bg {
  transform: scale(1.0);
}

/* Content positioned over overlay */
.hero-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-content {
  color: #fff;
  max-width: 620px;
  padding: 0 16px;
}

.hero-badge {
  display: inline-block;
  background: rgba(196, 149, 106, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

body.rtl .hero-title { font-family: var(--font-arabic); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 480px;
}

.hero-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 24px;
  font-family: var(--font-display);
}

.carousel-indicators-nazaka {
  bottom: 32px;
  gap: 8px;
}
.carousel-indicators-nazaka button {
  width: 32px !important;
  height: 3px !important;
  border-radius: 2px !important;
  background: rgba(255,255,255,0.5) !important;
  border: none !important;
  transition: var(--transition) !important;
  opacity: 1 !important;
}
.carousel-indicators-nazaka button.active {
  background: var(--caramel) !important;
  width: 56px !important;
}

.carousel-control-prev, .carousel-control-next {
  width: 54px !important;
  height: 54px !important;
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 50% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 20px;
  transition: var(--transition) !important;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
  background: rgba(196, 149, 106, 0.8) !important;
}

/* ---- Cards ---- */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--beige);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card-img img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--caramel);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
body.rtl .product-badge { left: auto; right: 14px; }

.product-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
body.rtl .product-name { font-family: var(--font-arabic); }

.product-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 18px;
  flex: 1;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--beige);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--caramel);
}
.product-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-body);
}

.product-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 14, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; }

/* ---- Category Cards ---- */
.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 26, 14, 0.75) 0%, transparent 60%);
  transition: var(--transition);
}
.category-card:hover::after { background: linear-gradient(to top, rgba(44, 26, 14, 0.85) 0%, rgba(44,26,14,0.1) 60%); }
.category-card-body {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  padding: 24px;
  color: #fff;
}
.category-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.category-card-count {
  font-size: 0.82rem;
  opacity: 0.8;
  letter-spacing: 0.08em;
}

/* ---- About Section ---- */
.about-img-stack {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  width: 75%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  top: 0;
  left: 0;
  box-shadow: var(--shadow-md);
}
.about-img-accent {
  position: absolute;
  width: 55%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  bottom: 0;
  right: 0;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}
.about-stat-badge {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 120px;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--caramel);
}
.about-stat-label { font-size: 0.78rem; color: var(--text-muted); }

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--blush);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--beige);
  height: 100%;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.7;
  margin: 16px 0 20px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--beige);
}
.testimonial-name { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--cocoa) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,149,106,0.15) 0%, transparent 70%);
}
.cta-section .section-title { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.75); }

/* ---- Footer ---- */
.footer-nazaka {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 20px;
}
.footer-link {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: var(--transition);
  padding: 0;
}
.footer-link:hover { color: var(--caramel); transform: translateX(4px); }
body.rtl .footer-link:hover { transform: translateX(-4px); }

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.social-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-icon:hover {
  background: var(--caramel);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 16px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ---- Filter Bar ---- */
.filter-bar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige);
}

.filter-btn {
  background: var(--cream);
  color: var(--text-muted);
  border: 1px solid var(--beige);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--caramel);
  color: #fff;
  border-color: var(--caramel);
}

/* ---- Store Page ---- */
.store-hero {
  background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
}
.store-hero::before {
  content: '🥐🎂🍪';
  position: absolute;
  font-size: 180px;
  opacity: 0.05;
  top: -20px;
  right: -20px;
  line-height: 1;
}

/* ---- Reserve Page ---- */
.reserve-hero {
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
  padding: 80px 0 50px;
}
.form-nazaka .form-control,
.form-nazaka .form-select {
  background: var(--warm-white);
  border: 2px solid var(--beige);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-nazaka .form-control:focus,
.form-nazaka .form-select:focus {
  border-color: var(--caramel);
  box-shadow: 0 0 0 4px rgba(196, 149, 106, 0.15);
  background: #fff;
  outline: none;
}
.form-nazaka .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 6px;
}
.form-nazaka .form-label .required { color: var(--soft-rose); }

.reserve-sidebar {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
  position: sticky;
  top: 100px;
}
.reserve-sidebar h5 {
  color: #fff;
  font-family: var(--font-display);
}
.reserve-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.reserve-info-icon {
  width: 40px; height: 40px;
  background: rgba(196,149,106,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reserve-info-text p { font-size: 0.85rem; margin: 0; color: rgba(255,255,255,0.7); }
.reserve-info-text strong { color: #fff; font-size: 0.9rem; }

/* ---- Product Detail ---- */
.product-detail-gallery .carousel-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.product-detail-gallery img {
  height: 480px;
  object-fit: cover;
  width: 100%;
}
.ingredient-tag {
  display: inline-block;
  background: var(--blush);
  color: var(--cocoa);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  margin: 4px;
}
.thumb-gallery {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.thumb-item {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.thumb-item.active, .thumb-item:hover {
  border-color: var(--caramel);
}
.thumb-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---- About Page ---- */
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--beige);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h5 { font-family: var(--font-display); color: var(--dark); }

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.team-card-body { padding: 24px; }
.team-name { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 4px; }
.team-role { color: var(--caramel); font-size: 0.85rem; }

/* ---- Contact Page ---- */
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--beige);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.hero-content > * {
  animation: fadeInUp 0.8s ease both;
}
.hero-content .hero-badge { animation-delay: 0.1s; }
.hero-content .hero-title { animation-delay: 0.2s; }
.hero-content .hero-subtitle { animation-delay: 0.3s; }
.hero-content .hero-price { animation-delay: 0.4s; }
.hero-content .hero-cta { animation-delay: 0.5s; }

/* ---- Product count indicator ---- */
.results-count {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ---- Breadcrumb ---- */
.breadcrumb-nazaka {
  background: transparent;
  padding: 0;
  font-size: 0.85rem;
}
.breadcrumb-item a { color: var(--caramel); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--sand); }

/* ---- Scroll to Top ---- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--caramel);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--toffee); transform: translateY(-3px); }
body.rtl .scroll-top { right: auto; left: 32px; }

/* ---- Loading skeleton ---- */
.skeleton {
  background: linear-gradient(90deg, var(--beige) 25%, var(--sand) 50%, var(--beige) 75%);
  background-size: 400% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  from { background-position: 100% 0; }
  to   { background-position: -100% 0; }
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  :root { --section-pad: 70px; }
  .about-img-stack { height: 360px; }
  .about-img-main { width: 80%; height: 300px; }
  .about-img-accent { width: 55%; height: 200px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 50px; --navbar-height: 68px; }
  .hero-section,
  .hero-slide {
    height: 80vh;
    min-height: 520px;
  }
  .hero-title { font-size: 2rem; }
  .product-detail-gallery img { height: 280px; }
  .reserve-sidebar { position: static; margin-top: 30px; }
  .scroll-top { bottom: 20px; right: 20px; }
  body.rtl .scroll-top { right: auto; left: 20px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 1.7rem; }
  .section-title { font-size: 1.7rem; }
  .product-actions { flex-direction: column; }
  .product-actions .btn-whatsapp,
  .product-actions .btn-reserve { width: 100%; justify-content: center; }
}

/* ---- RTL overrides ---- */
body.rtl .footer-link:hover { transform: translateX(-4px); }
body.rtl .carousel-control-prev { right: 0; left: auto; }
body.rtl .carousel-control-next { left: 0; right: auto; }
