/* ==========================================================================
   IDIYAPPOO - ULTRA PREMIUM MINIMAL LUXURY RED & WHITE STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & DESIGN SYSTEM
   -------------------------------------------------------------------------- */
:root {
  --primary-red: #C8102E;
  --primary-red-dark: #8B0000;
  --primary-red-crimson: #6B000C;
  --primary-red-hover: #A60C23;
  --primary-red-light: #FFF0F2;
  --accent-gold: #D4AF37;

  --neutral-1000: #0A0A0A;
  --neutral-900: #141414;
  --neutral-800: #222222;
  --neutral-700: #3A3A3A;
  --neutral-600: #555555;
  --neutral-500: #737373;
  --neutral-400: #A3A3A3;
  --neutral-300: #E5E5E5;
  --neutral-200: #F3F4F6;
  --neutral-100: #F9FAFB;
  --neutral-50:  #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.1);
  --shadow-red-glow: 0 16px 40px rgba(200, 16, 46, 0.28);

  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);

  --header-height: 84px;
  --border-radius-sm: 14px;
  --border-radius-md: 24px;
  --border-radius-lg: 36px;
}

/* --------------------------------------------------------------------------
   2. RESET & FULL WIDTH LAYOUT
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--neutral-50);
  color: var(--neutral-800);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* FULL EDGE-TO-EDGE SCREEN CONTAINER */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 6%;
}

/* --------------------------------------------------------------------------
   3. SPLASH SCREEN LOADER
   -------------------------------------------------------------------------- */
.splash-screen {
  position: fixed;
  inset: 0;
  background-color: #FFFFFF;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-content {
  text-align: center;
  animation: pulseScale 1.8s infinite ease-in-out;
}

.splash-logo {
  width: 240px;
  height: auto;
  margin-bottom: 24px;
}

.splash-spinner {
  width: 40px;
  height: 40px;
  border: 3.5px solid var(--neutral-200);
  border-top-color: var(--primary-red);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.8s linear infinite;
}

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

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

/* --------------------------------------------------------------------------
   4. CLEAN SINGLE-LINE HEADER NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

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

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--neutral-900);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-red);
}

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

/* Minimal Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: normal;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, #8B0000 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-red-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8B0000 0%, #6B000C 100%);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  color: #141414;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--neutral-1000);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-btn span {
  width: 26px;
  height: 2px;
  background-color: var(--neutral-1000);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION (MINIMAL COPY + FULL WIDTH)
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  background: radial-gradient(circle at 85% 15%, #FFF5F5 0%, #FFFFFF 65%);
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas: 
    "header visual"
    "body visual";
  gap: 20px 60px;
  align-items: center;
}

.hero-header-box {
  grid-area: header;
}

.hero-visual-wrapper {
  grid-area: visual;
}

.hero-body-box {
  grid-area: body;
  align-self: start;
}

.badge-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: #FFF0F2;
  color: var(--primary-red);
  border: 1px solid #FECDD3;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--neutral-1000);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  text-transform: capitalize;
}

.hero-title span.text-highlight {
  background: linear-gradient(135deg, var(--primary-red) 0%, #FF4B4B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--neutral-600);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--neutral-200);
  color: var(--neutral-700);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-visual-wrapper {
  position: relative;
}

.hero-img-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border: 4px solid #FFFFFF;
}

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

.hero-img-card:hover .hero-img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: #FFFFFF;
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--neutral-200);
}

.badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--neutral-1000);
}

.badge-text span {
  font-size: 0.8rem;
  color: var(--neutral-500);
}

/* --------------------------------------------------------------------------
   6. SECTION HEADINGS
   -------------------------------------------------------------------------- */
.section {
  padding: 90px 0;
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--neutral-1000);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. ABC SIGNATURE FEATURE SECTION (DEEP CRIMSON THEME)
   -------------------------------------------------------------------------- */
.abc-section {
  background: linear-gradient(135deg, #7A0010 0%, #A8071A 50%, #450009 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  width: 100%;
}

.abc-section .section-label {
  color: var(--accent-gold);
}

.abc-section .section-title {
  color: #FFFFFF;
}

.abc-banner-luxury {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas: 
    "header media"
    "body media";
  gap: 20px 50px;
  align-items: center;
  background: #FFFFFF;
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
}

.abc-banner-header {
  grid-area: header;
}

.abc-banner-media {
  grid-area: media;
}

.abc-banner-body {
  grid-area: body;
  align-self: start;
}

.abc-banner-header h3 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--neutral-1000);
  margin-bottom: 0;
}

.abc-banner-body p {
  color: var(--neutral-700);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.75;
}

.abc-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.abc-pill {
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--neutral-100);
  border: 1px solid var(--neutral-200);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-red);
}

.abc-banner-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   8. PRODUCT CARDS & MENU SHOWCASE
   -------------------------------------------------------------------------- */
.products-section {
  background-color: #FAFAFA;
  width: 100%;
}

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

.product-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1.5px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-red-glow);
  border-color: #FCA5A5;
}

.product-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: var(--neutral-100);
}

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

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

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neutral-1000);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--neutral-600);
  margin-bottom: 20px;
  line-height: 1.55;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1.5px solid var(--neutral-200);
}

.price-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--neutral-1000);
}

.price-unit {
  font-size: 0.75rem;
  color: var(--neutral-500);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   9. INGREDIENTS INTERACTIVE CAROUSEL SLIDER
   -------------------------------------------------------------------------- */
.ingredients-section {
  background-color: #FFFFFF;
  width: 100%;
}

.carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0 30px 0;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-track {
  background: var(--neutral-100);
  border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: var(--neutral-300);
  border-radius: 10px;
}

.carousel-slide {
  scroll-snap-align: start;
  flex: 0 0 300px;
  background-color: #FFFFFF;
  border-radius: var(--border-radius-md);
  border: 1.5px solid var(--neutral-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.carousel-slide:hover {
  transform: translateY(-6px);
  border-color: var(--primary-red);
}

.slide-img-wrapper {
  height: 200px;
  overflow: hidden;
}

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

.slide-content {
  padding: 18px;
  text-align: center;
}

.slide-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-1000);
  margin-bottom: 4px;
}

.slide-tag {
  font-size: 0.8rem;
  color: var(--primary-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1.5px solid var(--neutral-300);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--neutral-900);
  z-index: 10;
}

.carousel-btn-prev { left: 0; }
.carousel-btn-next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--neutral-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-red);
  width: 24px;
  border-radius: 10px;
}

/* --------------------------------------------------------------------------
   10. HERITAGE SECTION (DEEP CRIMSON RED CARD WITH SPLASH LOGO)
   -------------------------------------------------------------------------- */
.heritage-section {
  background-color: #FAFAFA;
  width: 100%;
}

.about-card-white {
  background: #FFFFFF;
  color: var(--neutral-1000);
  border-radius: var(--border-radius-lg);
  padding: 64px 48px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.about-brand-logo-container {
  flex: 0 0 300px;
}

.about-brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-text-container {
  flex: 1;
}

.about-card-white .section-label {
  color: var(--primary-red);
}

.about-card-white h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--neutral-1000);
  margin-bottom: 18px;
}

.about-card-white p {
  font-size: 1.1rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   11. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: #FFFFFF;
  width: 100%;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto 36px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-sm);
  border: 1.5px solid var(--neutral-200);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: var(--neutral-400);
  box-shadow: var(--shadow-sm);
}

.faq-item-highlight {
  border-left: 4px solid var(--primary-red);
  background-color: #FFF9FA;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-1000);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--primary-red);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 24px;
  color: var(--neutral-600);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px 24px;
}

.faq-bottom-cta {
  text-align: center;
}

/* --------------------------------------------------------------------------
   12. INTERACTIVE WHATSAPP ORDER MODAL
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-card {
  background-color: #FFFFFF;
  width: 100%;
  max-width: 520px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, #141414 0%, #222222 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close-btn {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.order-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-sm);
  border: 1.5px solid var(--neutral-200);
}

.item-info {
  display: flex;
  flex-direction: column;
}

.item-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--neutral-1000);
}

.item-price-tag {
  font-size: 0.8rem;
  color: var(--neutral-600);
}

.quantity-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #FFFFFF;
  padding: 4px 8px;
  border-radius: 50px;
  border: 1.5px solid var(--neutral-300);
}

.step-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--neutral-900);
}

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

.step-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  min-width: 20px;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--neutral-300);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--neutral-1000);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-red);
}

.order-summary-box {
  background-color: #FFF0F2;
  border: 1.5px solid #FCA5A5;
  padding: 16px;
  border-radius: var(--border-radius-sm);
  margin-top: 16px;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-1000);
}

.modal-footer {
  padding: 18px 24px;
  background-color: #FAFAFA;
  border-top: 1.5px solid var(--neutral-200);
}

.btn-whatsapp-send {
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  padding: 16px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* --------------------------------------------------------------------------
   13. CONTACT SECTION (CRIMSON LUXURY BANNER)
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: #FAFAFA;
  width: 100%;
}

.contact-card-crimson {
  background: linear-gradient(135deg, #8B0000 0%, #C8102E 60%, #6B000C 100%);
  color: #FFFFFF;
  border-radius: var(--border-radius-lg);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-red-glow);
  max-width: 700px;
  margin: 0 auto;
}

.contact-card-crimson h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-card-crimson p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
  border-top: 1.5px solid rgba(255, 255, 255, 0.2);
  padding-top: 36px;
}

.contact-detail-item strong {
  display: block;
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-detail-item span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--neutral-1000);
  color: var(--neutral-400);
  padding: 60px 0 30px 0;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--primary-red);
  font-weight: 800;
}

.footer-links-heading {
  font-family: var(--font-serif);
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1.5px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* Removed mobile-sticky-bar styles */

/* --------------------------------------------------------------------------
   16. RESPONSIVE & MOBILE LAYOUT OVERRIDES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .abc-banner-luxury { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 5%; }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }
  .hero-header-box { order: 1; }
  .hero-visual-wrapper { order: 2; margin: 24px 0; width: 100%; }
  .hero-body-box { order: 3; }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }
  .nav-menu.active { transform: translateY(0); }
  .hamburger-btn { display: flex; }
  .header-cta-btn { display: none; }
  .hero-title { font-size: 3.8rem; line-height: 1.05; letter-spacing: -2px; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-details-grid, .footer-grid { grid-template-columns: 1fr; }
  
  .carousel-slide { flex: 0 0 80vw; }
  .carousel-nav-btn { display: none; }
  .carousel-dots { display: none; }

  .abc-banner-luxury {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  .abc-banner-header { order: 1; }
  .abc-banner-media { order: 2; margin: 10px 0; width: 100%; display: flex; justify-content: center; }
  .abc-banner-body { order: 3; display: flex; flex-direction: column; align-items: center; }
  .abc-pills { justify-content: center; }

  .hide-mobile-inline { display: none; }
  .contact-details-grid { display: none; }
  .contact-card-crimson { padding: 40px 24px; }
  .contact-card-crimson h2 { font-size: 2.2rem; }

  .about-card-white {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
  }
  .about-brand-logo-container {
    flex: 0 0 auto;
    width: 200px;
  }
}

/* --------------------------------------------------------------------------
   17. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active, .reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

