/* ==========================================================================
   BOLINO ITALIAN DESSERT - OFFICIAL STYLESHEET
   Brand Colors:
   - Primary Pistachio Olive: #7D923C / #6E8232 / #566824
   - Secondary Strawberry Pink: #DF5879 / #CB4667 / #EB6D8C
   - Background Pastry Cream: #FDFAF6 / #F8F3EA
   - Text Roasted Espresso: #2B1F1A / #695A52
   Font: Tajawal
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary: #7D923C;
  --primary-hover: #6D8132;
  --primary-dark: #546623;
  --primary-light: #F0F5E1;
  --primary-gradient: linear-gradient(135deg, #8EA445 0%, #708433 100%);

  --secondary: #DF5879;
  --secondary-hover: #CB4566;
  --secondary-light: #FDEEF2;
  --secondary-gradient: linear-gradient(135deg, #EB6B8B 0%, #D44E6F 100%);

  --accent-gold: #E5A93B;
  --accent-gold-light: #FEF7E9;

  --wa-green: #25D366;
  --wa-green-hover: #1EBE5D;

  /* Neutrals & Surfaces */
  --bg-body: #FDFAF6;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #F8F3EA;
  --bg-card-hover: #FFFDF9;

  --text-main: #281D17;
  --text-muted: #6B5D55;
  --text-light: #96867E;

  --border-subtle: #EFE8DE;
  --border-focus: #7D923C;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(40, 29, 23, 0.04);
  --shadow-md: 0 8px 24px rgba(40, 29, 23, 0.08);
  --shadow-lg: 0 16px 36px rgba(40, 29, 23, 0.12);
  --shadow-colored-green: 0 8px 20px rgba(125, 146, 60, 0.28);
  --shadow-colored-pink: 0 8px 20px rgba(223, 88, 121, 0.28);

  /* Radii & Transitions */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE TYPOGRAPHY
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset for sticky header */
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

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

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

ul {
  list-style: none;
}

/* Highlights */
.highlight-green {
  color: var(--primary);
}

.highlight-pink {
  color: var(--secondary);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

/* Ripple Effect Base */
.btn,
.btn-add-cart,
.btn-whatsapp-header,
.btn-whatsapp-checkout,
.cart-btn,
.qty-btn,
.tab-btn,
.footer-icon-btn {
  position: relative;
  overflow: hidden;
}

.btn::after,
.btn-add-cart::after,
.btn-whatsapp-header::after,
.btn-whatsapp-checkout::after,
.cart-btn::after,
.tab-btn::after,
.footer-icon-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s ease, transform 0.35s ease;
  pointer-events: none;
}

.btn:active::after,
.btn-add-cart:active::after,
.btn-whatsapp-header:active::after,
.btn-whatsapp-checkout:active::after,
.cart-btn:active::after,
.tab-btn:active::after,
.footer-icon-btn:active::after {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.05s, transform 0.1s;
}

/* Press scale feedback */
.btn:active,
.btn-add-cart:active,
.btn-whatsapp-checkout:active,
.cart-btn:active,
.footer-icon-btn:active {
  transform: scale(0.96) translateY(0) !important;
  transition: transform 0.08s ease !important;
}

@keyframes ripple-anim {
  to {
    transform: scale(1);
    opacity: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #FFFFFF;
  box-shadow: var(--shadow-colored-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(125, 146, 60, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-secondary:hover {
  background-color: #F8D9E2;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.15rem;
}

.btn-block {
  width: 100%;
}

.btn-whatsapp-header {
  background-color: #E8F8EE;
  color: #1A9E4C;
  border: 1.5px solid #A2E9BB;
  padding: 8px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp-header:hover {
  background-color: var(--wa-green);
  color: #FFFFFF;
  border-color: var(--wa-green);
  transform: translateY(-2px);
}

.btn-whatsapp-checkout {
  background: linear-gradient(135deg, #28E16D 0%, #1DA853 100%);
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.btn-whatsapp-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.btn-promo {
  background-color: #FFFFFF;
  color: var(--secondary);
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.btn-promo:hover {
  transform: translateY(-2px) scale(1.02);
  background-color: #FFF3F6;
}

/* ==========================================================================
   SITE HEADER & NAV
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background-color: rgba(253, 250, 246, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.brand-logo:hover .logo-img {
  transform: rotate(6deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.brand-sub {
  font-family: 'Plus Jakarta Sans', 'Tajawal', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.5px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background-color: var(--secondary);
  border-radius: var(--radius-full);
  transition: width var(--transition-fast);
}

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

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

.header-online-badge {
  background-color: var(--secondary-light);
  color: var(--secondary);
  border: 1px solid rgba(223, 88, 121, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

/* Cart Button in Header */
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.cart-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.cart-badge {
  background-color: var(--secondary);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.cart-badge.bump {
  animation: badge-bump 0.3s ease-out;
}

@keyframes badge-bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Mobile Toggle Hamburger (Positioned on the RIGHT in RTL) */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.mobile-toggle .bar {
  width: 20px;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

/* Mobile Side Navigation Drawer (Opens from RIGHT in RTL) */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background-color: var(--bg-surface);
  z-index: 1050;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.16);
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
  direction: rtl;
}

.mobile-nav.open {
  display: flex;
  animation: slide-drawer-right 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slide-drawer-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  object-fit: cover;
}

.mobile-nav-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-dark);
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  line-height: 1;
}

.mobile-nav-close:hover {
  background-color: #F8D9E2;
  color: var(--secondary);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  border-bottom: none;
}

.mobile-link:hover, .mobile-link:active {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.mobile-nav-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.mobile-nav-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding: 55px 0 45px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(125, 146, 60, 0.12) 0%, rgba(125, 146, 60, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(223, 88, 121, 0.12) 0%, rgba(223, 88, 121, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 45px;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--secondary-light);
  color: var(--secondary);
  border: 1px solid rgba(223, 88, 121, 0.25);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* User requirement: "عش تجربة البمبوليني بطعم يفوق الخيال!" in ONE single line */
.hero-title {
  font-size: clamp(1.25rem, 2.1vw, 2.05rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 20px;
  color: var(--text-main);
  white-space: nowrap;
  letter-spacing: -0.3px;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.icon-arrow {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .icon-arrow {
  transform: translateX(-4px);
}

/* Modern Vector Feature Cards (Replacing old emojis) */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 25px;
  border-top: 1px solid var(--border-subtle);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feat-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.feat-icon-box.pink {
  background: var(--secondary-light);
  color: var(--secondary);
}

.feat-icon-box.green {
  background: #EAF4D3;
  color: var(--primary-dark);
}

.feat-icon-box svg {
  width: 24px;
  height: 24px;
}

.feature-item:hover .feat-icon-box {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-sm);
}

.feature-item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.2;
}

.feature-item small {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Hero Visual Showcase */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-img-wrapper {
  position: relative;
  background: #FFF;
  padding: 16px;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--primary-light);
  overflow: hidden;
  transition: transform var(--transition-smooth);
}

.hero-img-wrapper:hover {
  transform: scale(1.02);
}

.hero-main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 26px;
}

.hero-brand-stamp {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 72px;
  height: 72px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  padding: 6px;
  border: 2px dashed var(--secondary);
  animation: rotate-slow 24s linear infinite;
}

.stamp-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Floating Badges with SVGs */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.badge-top {
  top: -15px;
  right: -15px;
}

.badge-bottom {
  bottom: -15px;
  left: -15px;
  animation-delay: 2s;
}

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

.badge-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon-box.gold {
  background: var(--accent-gold-light);
  color: var(--accent-gold);
}

.badge-icon-box.green {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.badge-icon-box svg {
  width: 20px;
  height: 20px;
}

.floating-badge strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-main);
}

.floating-badge small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-highlight {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
}

/* ==========================================================================
   PROMO STRIP
   ========================================================================== */

.promo-strip {
  padding: 20px 0;
}

.promo-box {
  background: linear-gradient(135deg, #E56384 0%, #D84F72 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 26px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: var(--shadow-colored-pink);
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.inline-svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.promo-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.35;
}

/* ==========================================================================
   SECTION COMMON HEADERS
   ========================================================================== */

.section-header {
  margin-bottom: 40px;
}

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

.section-subtitle {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   MENU SECTION & TABS
   ========================================================================== */

.menu-section {
  padding: 65px 0;
}

.category-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.tab-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.tab-btn:hover .tab-icon {
  transform: scale(1.1);
}

.tab-btn.active {
  background: var(--primary-gradient);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: var(--shadow-colored-green);
}

.tab-count {
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 800;
}

.tab-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}

/* Product Card */
.product-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(125, 146, 60, 0.35);
}

/* Card Image Area */
.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  background-color: #FFF2F5;
  overflow: hidden;
  cursor: pointer;
}

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

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

/* Badges on Card */
.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.badge-hot {
  background-color: var(--secondary);
  color: #FFFFFF;
}

.badge-special {
  background-color: var(--accent-gold);
  color: #FFFFFF;
}

.badge-soon {
  background-color: #4A4A4A;
  color: #FFFFFF;
}

.badge-offer {
  background-color: var(--primary);
  color: #FFFFFF;
}

/* Quick View Overlay Button */
.quick-view-btn {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-main);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.card-img-wrapper:hover .quick-view-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Card Content Area */
.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-category {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Pricing & Action Bar */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.card-price-box {
  display: flex;
  flex-direction: column;
}

.price-currency {
  font-size: 0.82rem;
  color: var(--text-light);
}

.price-num {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
}

.price-soon {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
}

.old-price {
  font-size: 0.88rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 6px;
}

/* Add to Cart Actions */
.card-action-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-add-cart {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1.5px solid transparent;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.btn-add-cart:hover {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-colored-green);
  transform: translateY(-2px);
}

.btn-soon {
  background: #F1F1F1;
  color: #7E7E7E;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: not-allowed;
}

/* Counter button for item quantity in menu card */
.qty-stepper {
  display: flex;
  align-items: center;
  background: var(--bg-surface-alt);
  border-radius: var(--radius-full);
  padding: 3px;
  border: 1px solid var(--border-subtle);
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--text-main);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all var(--transition-fast);
}

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

.qty-display {
  width: 28px;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
}

/* ==========================================================================
   WHY CHOOSE BOLINO SECTION
   ========================================================================== */

.why-section {
  padding: 65px 0;
  background-color: var(--bg-surface-alt);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.why-card {
  background-color: var(--bg-surface);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  text-align: right;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.why-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon-box svg {
  width: 30px;
  height: 30px;
}

.why-icon-box.pink {
  background-color: var(--secondary-light);
  color: var(--secondary);
}

.why-icon-box.green {
  background-color: var(--primary-light);
  color: var(--primary);
}

.why-icon-box.gold {
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
}

.why-icon-box.cream {
  background-color: #F1EFEA;
  color: var(--text-main);
}

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-main);
}

.why-card p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
  padding: 75px 0;
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 55px;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-frame {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FDEEF2 0%, #F0F5E1 100%);
  border: 10px solid #FFFFFF;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  position: relative;
}

.about-logo-hero {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth);
}

.about-img-frame:hover .about-logo-hero {
  transform: scale(1.05);
}

.about-tag-badge {
  position: absolute;
  bottom: 8px;
  background: #FFFFFF;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary-light);
  box-shadow: var(--shadow-md);
}

.about-text {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0;
  padding: 18px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stat-box {
  text-align: right;
}

.stat-num {
  display: block;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */

.reviews-section {
  padding: 70px 0;
  background-color: var(--bg-surface-alt);
}

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

.review-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

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

.highlight-card {
  border: 2px solid var(--secondary-light);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDFE 100%);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.star-svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
  fill: var(--accent-gold);
}

.review-text {
  font-size: 1.02rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: normal;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-meta strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-main);
}

.reviewer-meta small {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ==========================================================================
   ORDER STEPS SECTION
   ========================================================================== */

.steps-section {
  padding: 65px 0;
}

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

.step-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px dashed var(--border-subtle);
  position: relative;
  transition: all var(--transition-fast);
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.step-number {
  font-family: 'Plus Jakarta Sans', 'Tajawal', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-light);
  position: absolute;
  top: 15px;
  left: 20px;
  line-height: 1;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   GLOBAL ENGLISH FONT RULE (Smooth sans-serif similar to Tajawal, non-italic)
   ========================================================================== */

.brand-sub,
.footer-en-name,
.step-number,
[lang="en"],
[dir="ltr"] {
  font-family: 'Plus Jakarta Sans', 'Tajawal', sans-serif;
  font-style: normal !important;
}

/* ==========================================================================
   COMPACT CLEAN STACKED FOOTER (NO BOXES, ELEMENTS STACKED UNDER EACH OTHER)
   ========================================================================== */

.site-footer {
  background: #140D0A;
  color: #B5A8A0;
  padding: 24px 0 16px 0;
  margin-top: 35px;
  border-top: 2px solid var(--primary);
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-stack-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-mini-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  object-fit: cover;
}

.footer-brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-en-name {
  font-family: 'Plus Jakarta Sans', 'Tajawal', sans-serif;
  font-style: normal !important;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  margin-right: 4px;
}

.footer-stack-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.86rem;
  color: #D6CCC4;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #48FF7F;
  border-radius: 50%;
  box-shadow: 0 0 6px #48FF7F;
  display: inline-block;
}

.footer-hours {
  color: #A39389;
  font-size: 0.82rem;
}

/* Social SVG Icons Only (أيقونة الفيسبوك والواتس SVG فقط) */
.footer-social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 4px 0;
}

.footer-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.footer-icon-btn svg {
  width: 20px;
  height: 20px;
}

.footer-icon-btn.wa-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.footer-icon-btn.wa-icon:hover {
  background: #25D366;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.footer-icon-btn.fb-icon {
  background: rgba(24, 119, 242, 0.12);
  color: #4A9FFF;
  border: 1px solid rgba(24, 119, 242, 0.3);
}

.footer-icon-btn.fb-icon:hover {
  background: #1877F2;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.4);
}

.footer-stack-copyright {
  font-size: 0.78rem;
  color: #7D7068;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.footer-stack-copyright strong {
  color: #B8AAA1;
  font-weight: 600;
}

.trigger-link {
  color: #A9CA4E;
  font-weight: 700;
  direction: ltr;
  display: inline-block;
  text-decoration: none;
  margin-right: 4px;
}

.trigger-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* ==========================================================================
   CART SLIDE-OUT DRAWER & ONLINE ONLY BANNER
   ========================================================================== */

.cart-backdrop, .modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cart-backdrop.active, .modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  width: 100%;
  max-width: 440px;
  background-color: var(--bg-surface);
  z-index: 1001;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.16);
  flex-direction: column;
  will-change: transform;
  direction: rtl;
}

.cart-drawer.active {
  display: flex;
  animation: slide-drawer-right 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cart-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  background-color: var(--bg-surface);
}

.cart-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-title-wrapper h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
}

.cart-items-counter {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cart-close-btn, .modal-close-btn {
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color var(--transition-fast);
}

.cart-close-btn:hover, .modal-close-btn:hover {
  background-color: var(--bg-surface-alt);
  color: var(--text-main);
}

/* Cart Body List */
.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Empty State */
.cart-empty-state {
  text-align: center;
  padding: 50px 18px;
}

.empty-cart-svg {
  width: 58px;
  height: 58px;
  stroke: var(--primary);
  margin-bottom: 14px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.cart-empty-state h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.cart-empty-state p {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* Cart Item Row */
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
  background-color: var(--bg-surface-alt);
  border: 1px solid var(--border-subtle);
  position: relative;
}

.cart-item-img {
  width: 66px;
  height: 66px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

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

.cart-item-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

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

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-delete-btn {
  color: #B54545;
  padding: 4px;
  font-size: 0.82rem;
  margin-right: auto;
  transition: color var(--transition-fast);
}

.cart-delete-btn:hover {
  text-decoration: underline;
}

/* Online Only Banner in Cart */
.online-only-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-light);
  border: 1px solid rgba(125, 146, 60, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.online-banner-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(125, 146, 60, 0.2);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.online-banner-icon-box svg {
  width: 20px;
  height: 20px;
}

.online-banner-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--primary-dark);
}

.online-banner-text small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Cart Footer & Checkout */
.cart-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border-subtle);
  background-color: var(--bg-surface);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.04);
}

.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle);
  font-family: inherit;
  font-size: 0.94rem;
  background-color: var(--bg-surface-alt);
  color: var(--text-main);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #FFFFFF;
}

.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 14px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.summary-row.total-row {
  font-size: 1.2rem;
  color: var(--text-main);
  padding-top: 4px;
}

.total-amount {
  color: var(--primary-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.delivery-note {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 700;
}

/* Icons */
.icon {
  width: 22px;
  height: 22px;
}

.icon-wa {
  width: 22px;
  height: 22px;
}

.icon-sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ==========================================================================
   PRODUCT QUICK-VIEW MODAL
   ========================================================================== */

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 90%;
  max-width: 680px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.85);
}

.modal-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-img-wrapper {
  height: 100%;
  min-height: 340px;
  background: var(--bg-surface-alt);
}

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

.modal-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.modal-category {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.modal-title {
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.modal-price {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.modal-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
  flex-grow: 1;
}

.modal-meta-list {
  background: var(--bg-surface-alt);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM BAR
   ========================================================================== */

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 18px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  z-index: 850;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bar-cart-info {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.bar-badge-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bar-badge-icon svg {
  width: 22px;
  height: 22px;
}

.bar-counter {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--secondary);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bar-price-wrapper small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.bar-price-wrapper strong {
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.bar-checkout-btn {
  padding: 10px 20px;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 890;
  transition: all var(--transition-fast);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background-color: #FFFFFF;
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */

.toast-container {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: #FFFFFF;
  color: var(--text-main);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-right: 5px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  animation: toast-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.3s ease;
  pointer-events: auto;
  max-width: 340px;
}

.toast.toast-error {
  border-right-color: #D32F2F;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET BREAKPOINTS)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    white-space: normal;
    word-break: keep-all;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .stat-box {
    text-align: center;
  }

  .about-cta {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Site Header Mobile Layout - Clean, balanced, no overlap */
  .desktop-nav {
    display: none;
  }

  .header-online-badge {
    display: none !important;
  }

  .btn-whatsapp-header {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .site-header {
    padding: 0;
  }

  .header-content {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .header-brand-wrap {
    gap: 8px;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-sub {
    font-size: 0.7rem;
  }

  .cart-btn {
    padding: 7px 12px;
    gap: 6px;
  }

  .cart-label {
    display: none;
  }

  .cart-badge {
    width: 20px;
    height: 20px;
    font-size: 0.72rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 24px 0 20px 0;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hero-content {
    display: contents;
  }

  .hero-title {
    order: 1;
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
    white-space: normal;
    word-break: keep-all;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .hero-desc {
    order: 2;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .hero-cta-group {
    order: 3;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
  }

  .hero-cta-group .btn {
    flex: 1 1 auto;
    padding: 11px 14px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  /* Hero Visual placed ABOVE feature boxes - Full mobile width */
  .hero-visual {
    order: 4;
    width: 100%;
    margin-bottom: 14px;
  }

  .hero-card-stack {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-img-wrapper {
    width: 100%;
    padding: 10px;
    border-radius: 26px;
    border-width: 2.5px;
  }

  .hero-main-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
  }

  .hero-brand-stamp {
    width: 52px;
    height: 52px;
    top: 16px;
    left: 16px;
    padding: 5px;
  }

  .floating-badge {
    padding: 7px 13px;
    gap: 8px;
    border-radius: 14px;
  }

  .badge-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .badge-icon-box svg {
    width: 15px;
    height: 15px;
  }

  .floating-badge strong {
    font-size: 0.82rem;
  }

  .floating-badge small {
    font-size: 0.72rem;
  }

  .price-highlight {
    font-size: 0.92rem;
  }

  .badge-top {
    top: 6px;
    right: 8px;
  }

  .badge-bottom {
    bottom: 6px;
    left: 8px;
  }

  /* 3-column clean modern hero features placed BELOW image */
  .hero-features {
    order: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding-top: 4px;
    border-top: none;
    text-align: center;
    width: 100%;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-surface);
    padding: 10px 4px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    gap: 5px;
  }

  .feat-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    margin: 0 auto;
  }

  .feat-icon-box svg {
    width: 17px;
    height: 17px;
  }

  .feature-item strong {
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .feature-item small {
    font-size: 0.67rem;
    line-height: 1.15;
    display: block;
  }

  /* Promo Banner */
  .promo-box {
    flex-direction: column;
    text-align: center;
    padding: 18px 14px;
    border-radius: var(--radius-md);
    gap: 12px;
  }

  .promo-box h3 {
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .btn-promo {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  /* Section Headings */
  .section-header {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-desc {
    font-size: 0.92rem;
  }

  /* Category Tabs - Sleek horizontal scroll bar on mobile */
  .category-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding: 2px 2px 8px 2px;
    margin-bottom: 20px;
    justify-content: flex-start;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 0.85rem;
    gap: 6px;
  }

  .tab-icon {
    width: 15px;
    height: 15px;
  }

  /* Products Grid */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card-img-wrapper {
    height: 190px;
  }

  .card-body {
    padding: 14px;
  }

  .card-title {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }

  .card-desc {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .card-footer {
    padding-top: 10px;
  }

  .price-num {
    font-size: 1.35rem;
  }

  .btn-add-cart {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  /* Why Bolino */
  .why-section {
    padding: 40px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-card {
    padding: 18px 16px;
    border-radius: var(--radius-md);
  }

  .why-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .why-icon-box svg {
    width: 24px;
    height: 24px;
  }

  .why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .why-card p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  /* About Section */
  .about-section {
    padding: 40px 0;
  }

  .about-container {
    gap: 24px;
  }

  .about-img-frame {
    width: 190px;
    height: 190px;
    border-width: 6px;
    margin: 0 auto;
  }

  .about-tag-badge {
    padding: 6px 14px;
    font-size: 0.8rem;
    bottom: 2px;
  }

  .about-text {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .about-stats {
    gap: 8px;
    margin: 18px 0;
    padding: 12px 0;
  }

  .stat-num {
    font-size: 1.35rem;
  }

  .stat-desc {
    font-size: 0.74rem;
  }

  .about-cta .btn {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
  }

  /* Reviews & Steps */
  .reviews-section, .steps-section {
    padding: 40px 0;
  }

  .reviews-grid, .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card, .step-card {
    padding: 18px 16px;
    border-radius: var(--radius-md);
  }

  .review-text {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .step-number {
    font-size: 2rem;
    top: 12px;
    left: 14px;
  }

  .step-card h3 {
    font-size: 1.1rem;
  }

  .step-card p {
    font-size: 0.88rem;
  }

  /* Product Modal */
  .modal-content-grid {
    grid-template-columns: 1fr;
    max-height: 80vh;
    overflow-y: auto;
  }

  .modal-img-wrapper {
    min-height: 190px;
    height: 190px;
  }

  .modal-info {
    padding: 18px;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-price {
    font-size: 1.35rem;
  }

  /* Cart Drawer */
  .cart-drawer {
    max-width: 100%;
  }

  .cart-header {
    padding: 14px 16px;
  }

  .cart-body {
    padding: 14px 16px;
  }

  .cart-footer {
    padding: 14px 16px;
  }

  .form-control {
    font-size: 0.9rem;
    padding: 9px 12px;
  }

  .btn-whatsapp-checkout {
    font-size: 1rem;
    padding: 13px 18px;
  }

  /* Footer */
  .site-footer {
    padding: 20px 0 14px 0;
    margin-top: 24px;
  }

  .footer-stack {
    gap: 7px;
  }

  .footer-brand-title {
    font-size: 1.05rem;
  }

  .footer-stack-item {
    font-size: 0.82rem;
  }

  .footer-hours {
    font-size: 0.78rem;
  }

  .footer-icon-btn {
    width: 38px;
    height: 38px;
  }

  .footer-icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .footer-stack-copyright {
    font-size: 0.74rem;
  }

  /* Mobile Bottom Bar - Sleek, Compact, perfectly proportioned */
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-subtle);
    padding: 8px 14px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    z-index: 850;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .bar-cart-info {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .bar-badge-icon {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bar-badge-icon svg {
    width: 18px;
    height: 18px;
  }

  .bar-counter {
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: var(--secondary);
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 800;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bar-price-wrapper small {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.1;
  }

  .bar-price-wrapper strong {
    font-size: 1.02rem;
    color: var(--primary-dark);
    line-height: 1.1;
  }

  /* Button is compact and elegant, no oversized look */
  .bar-checkout-btn {
    padding: 9px 16px;
    font-size: 0.88rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-grow: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(125, 146, 60, 0.35);
  }

  .bar-checkout-btn .icon-sm {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }

  /* Floating WhatsApp - Placed on the LEFT side above bottom bar, ZERO collision */
  .floating-whatsapp {
    bottom: 74px;
    left: 14px;
    right: auto;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.38);
  }

  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .wa-tooltip {
    display: none;
  }

  /* Body safe padding for bottom bar */
  body {
    padding-bottom: 68px;
  }
}

/* Very small screens (< 380px) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.25rem;
  }

  .hero-cta-group .btn {
    padding: 10px 10px;
    font-size: 0.82rem;
  }

  .bar-checkout-btn {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .bar-price-wrapper strong {
    font-size: 0.95rem;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
