/* ============================================================
   BAKERY PREMIUM — styles.css
   Color: Deep Red #C1121F | White #FFFFFF | Cream #FFF5E1
   Fonts: Playfair Display (serif) | Poppins (sans)
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --red:        #C1121F;
  --red-dark:   #8B0000;
  --red-light:  #E63946;
  --white:      #FFFFFF;
  --cream:      #FFF5E1;
  --cream-dark: #F5E6C8;
  --text:       #1A1A1A;
  --text-light: #6B6B6B;
  --border:     #E8D5C4;
  --shadow-sm:  0 2px 12px rgba(193,18,31,0.08);
  --shadow-md:  0 8px 32px rgba(193,18,31,0.15);
  --shadow-lg:  0 20px 60px rgba(193,18,31,0.2);
  --radius:     16px;
  --radius-sm:  8px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; width: 100%; object-fit: cover; }
/* Override: preloader logo must not stretch to 100% */
#preloader .preloader-logo img { width: 140px; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
}
.preloader-logo {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  opacity: 0; transform: translateY(16px);
}
.preloader-logo img {
  width: 140px; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(193,18,31,0.2));
  animation: logoBreathe 2s ease-in-out infinite;
}
@keyframes logoBreathe {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.preloader-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--text-light);
  letter-spacing: 4px; text-transform: uppercase;
}
.preloader-bar {
  width: 200px; height: 3px;
  background: var(--cream-dark);
  border-radius: 99px; overflow: hidden;
}
.preloader-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--red-dark), var(--red-light));
  border-radius: 99px;
  transition: width 0.1s linear;
}
.preloader-pct {
  font-size: 0.75rem; font-weight: 600;
  color: var(--red); letter-spacing: 2px;
}

/* Page-curtain wipe transition */
#page-curtain {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--red);
  transform: scaleY(0); transform-origin: bottom;
  pointer-events: none;
}

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo { color: var(--red); }
.nav-logo svg { width: 36px; height: 36px; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  margin-left: auto; margin-right: 32px;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.9);
  position: relative; padding-bottom: 4px;
  transition: color var(--transition);
}
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--red) !important; }

.btn-nav {
  background: var(--red); color: var(--white) !important;
  padding: 8px 22px; border-radius: 99px;
  font-weight: 600; font-size: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition) !important;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--red-dark) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(193,18,31,0.4); }

.cart-btn {
  position: relative; display: flex; align-items: center;
  gap: 6px; color: var(--white); font-size: 0.9rem;
  font-weight: 500; padding: 8px 16px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 99px;
  transition: all var(--transition);
}
#navbar.scrolled .cart-btn { color: var(--text); border-color: var(--border); }
.cart-btn:hover { background: var(--red); border-color: var(--red); color: var(--white) !important; transform: translateY(-2px); }
.cart-badge {
  background: var(--red); color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  position: absolute; top: -6px; right: -6px;
  transition: transform 0.3s cubic-bezier(0.68,-0.55,0.27,1.55);
}
.cart-badge.pop { transform: scale(1.4); }
#navbar.scrolled .cart-badge { background: var(--red); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
  background: var(--white); padding: 20px 5%;
  box-shadow: var(--shadow-md); flex-direction: column; gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-weight: 500; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border: none; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 14px 32px; border-radius: 99px;
  font-weight: 600; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(193,18,31,0.35);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 30px rgba(193,18,31,0.5); background: var(--red-dark); }
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--red);
  padding: 13px 31px; border-radius: 99px;
  border: 2px solid var(--red); font-weight: 600;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--red);
  padding: 14px 32px; border-radius: 99px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all var(--transition);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }

/* ── Section Layout ── */
.section { padding: 90px 5%; }
.section-sm { padding: 60px 5%; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--red);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--text); margin-bottom: 16px;
}
.section-title span { color: var(--red); font-style: italic; }
.section-desc {
  font-size: 1rem; color: var(--text-light); max-width: 520px; line-height: 1.8;
}

/* ── Hero ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 100px;
}
/* ── Hero Slider ── */
.hero-slider { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #1a1a1a; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; }
.slide.active { opacity: 1; z-index: 1; }
.slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08); transition: transform 6s ease-out;
}
.slide.active img { transform: scale(1); }

/* Hero Controls */
.hero-controls {
  position: absolute; inset: 0; z-index: 5;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 40px; pointer-events: none;
}
.slider-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: white; border: 1px solid rgba(255,255,255,0.3);
  font-size: 1.2rem; cursor: pointer; pointer-events: auto;
  opacity: 0; transition: all 0.4s ease;
}
.prev-btn { transform: translateX(-20px); }
.next-btn { transform: translateX(20px); }
#hero:hover .slider-btn { opacity: 1; transform: translateX(0); }
.slider-btn:hover { background: var(--red); border-color: var(--red); transform: scale(1.1); }

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(139,0,0,0.85) 0%, rgba(193,18,31,0.6) 50%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 5%; max-width: 700px;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); font-size: 0.8rem; font-weight: 500;
  padding: 8px 18px; border-radius: 99px;
  margin-bottom: 24px; letter-spacing: 1px;
}
.hero-badge::before { content: '★'; color: #FFD700; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: #FFD89B; }
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  margin-bottom: 36px; max-width: 480px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
}
.hero-stat span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--white);
}
.hero-stat span:last-child {
  font-size: 0.8rem; color: rgba(255,255,255,0.7); letter-spacing: 1px;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.75rem; letter-spacing: 2px;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── Products ── */
#products { background: var(--cream); }
.products-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 20px; flex-wrap: wrap;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-img-wrap {
  position: relative; height: 240px; overflow: hidden;
}
.product-img-wrap img {
  height: 100%; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 99px;
}
.product-badge.eggless { background: #22863a; }
.product-badge.offer { background: #FF6B35; }
.product-quick-actions {
  position: absolute; bottom: -50px; left: 0; right: 0;
  display: flex; gap: 8px; padding: 12px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  transition: bottom var(--transition);
}
.product-card:hover .product-quick-actions { bottom: 0; }
.quick-btn {
  background: rgba(255,255,255,0.95); color: var(--red);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.quick-btn:hover { background: var(--red); color: var(--white); transform: scale(1.1); }
.product-info { padding: 18px; }
.product-category {
  font-size: 0.72rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--text);
  margin-bottom: 8px; line-height: 1.3;
}
.product-rating {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.8rem; color: var(--text-light); margin-bottom: 14px;
}
.stars { color: #FFB800; letter-spacing: 1px; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-size: 1.3rem; font-weight: 700; color: var(--red);
}
.product-price small {
  font-size: 0.85rem; color: var(--text-light);
  text-decoration: line-through; margin-left: 6px; font-weight: 400;
}
.add-cart-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--red); color: var(--white);
  padding: 8px 18px; border-radius: 99px;
  font-size: 0.82rem; font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(193,18,31,0.3);
}
.add-cart-btn:hover { background: var(--red-dark); transform: scale(1.05); box-shadow: 0 6px 20px rgba(193,18,31,0.45); }
.add-cart-btn.added {
  background: #22863a;
  animation: cartPop 0.4s ease;
}
@keyframes cartPop { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }

/* Flying item animation */
.fly-item {
  position: fixed; z-index: 9999;
  width: 50px; height: 50px; border-radius: 50%;
  overflow: hidden; pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: none;
}

/* ── About ── */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 520px; box-shadow: var(--shadow-lg);
}
.about-img-wrap::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 3px solid var(--red); border-radius: var(--radius); z-index: -1;
}
.about-badge-card {
  position: absolute; bottom: 24px; right: -20px;
  background: var(--red); color: var(--white);
  padding: 16px 24px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge-card strong { display: block; font-size: 1.8rem; font-family: 'Playfair Display', serif; }
.about-badge-card span { font-size: 0.75rem; opacity: 0.85; }
.about-features { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--cream); padding: 14px; border-radius: var(--radius-sm);
}
.about-feature-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--red); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.about-feature h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.about-feature p { font-size: 0.75rem; color: var(--text-light); }

/* ── Offers Banner ── */
#offers {
  background: var(--red);
  padding: 0; overflow: hidden; position: relative;
}
.offers-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
.offers-content {
  padding: 60px 8%; display: flex; flex-direction: column;
  justify-content: center; gap: 20px;
}
.offer-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.2); color: var(--white);
  padding: 6px 16px; border-radius: 99px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
  width: fit-content;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.7} }
.offers-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); font-weight: 700; line-height: 1.2;
}

/* ── Specialties Section ── */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.specialty-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}
.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--red);
}
.specialty-icon {
  font-size: 3rem; margin-bottom: 16px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.68,-0.55,0.27,1.55);
}
.specialty-card:hover .specialty-icon { transform: scale(1.2) rotate(-5deg); }
.specialty-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}
.specialty-card p {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.75; margin-bottom: 20px;
}
.specialty-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.82rem; font-weight: 700;
  color: var(--red); letter-spacing: 0.5px;
  transition: gap var(--transition);
}
.specialty-link:hover { gap: 8px; }

/* ── Footer logo image ── */
.footer-logo img.footer-logo-img {
  width: auto; height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ── Media Section ── */
.ig-link {
  font-size: 0.85rem; font-family: 'Poppins', sans-serif;
  color: var(--text-light); text-decoration: none;
  margin-left: auto; transition: color var(--transition);
}
.ig-link:hover { color: var(--red); }

.yt-card {
  display: block; position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  background: #000; transition: transform var(--transition), box-shadow var(--transition);
}
.yt-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(255,0,0,0.25); }
.yt-thumb {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); opacity: 0.9;
}
.yt-card:hover .yt-thumb { transform: scale(1.03); opacity: 0.75; }
.yt-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.8) 100%);
}
.yt-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,0,0,0.9); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 4px 15px rgba(255,0,0,0.4);
  transition: transform var(--transition), background var(--transition);
}
.yt-card:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.15); background: #ff0000; }
.yt-play-btn svg { width: 32px; height: 32px; fill: currentColor; }
.yt-meta { position: absolute; bottom: 20px; left: 24px; right: 20px; }
.yt-title { color: white; font-weight: 600; font-size: 1.1rem; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }

/* ── Custom Reel Cards ── */
.custom-reels-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.custom-reel-card {
  position: relative; display: block;
  aspect-ratio: 9/16; border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  background: #000;
}
.custom-reel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(193,18,31,0.25);
}
.reel-thumb {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0.85; filter: contrast(1.1);
}
.custom-reel-card:hover .reel-thumb {
  transform: scale(1.05); opacity: 0.6;
}
.reel-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}
.reel-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.25); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: white; border: 1px solid rgba(255,255,255,0.6);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.custom-reel-card:hover .reel-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--red); border-color: var(--red);
}
.reel-play-btn svg { width: 28px; height: 28px; fill: currentColor; margin-left: 4px; }

.reel-meta {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  display: flex; flex-direction: column; gap: 12px;
  color: white;
}
.reel-author { display: flex; align-items: center; gap: 10px; }
.reel-author img {
  width: 34px; height: 34px; border-radius: 50%; object-fit: contain;
  background: white; padding: 4px; border: 2px solid white;
}
.reel-author span { font-weight: 600; font-size: 0.95rem; text-shadow: 0 2px 4px rgba(0,0,0,0.6); }

.reel-stats {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.9rem; font-weight: 500; text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.reel-stats span { display: flex; align-items: center; gap: 6px; }
.reel-stats svg { width: 18px; height: 18px; fill: white; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6)); }

.offers-content p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.offers-img-wrap {
  position: relative; overflow: hidden;
  display: flex; align-items: stretch;
}
.offers-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ribbon {
  position: absolute; top: 24px; right: -28px;
  background: #FFD700; color: var(--text);
  padding: 8px 48px; font-weight: 700; font-size: 0.9rem;
  transform: rotate(45deg); box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: ribbonPop 0.5s ease;
}
@keyframes ribbonPop { 0%{transform:rotate(45deg) scale(0.8)} 100%{transform:rotate(45deg) scale(1)} }

/* ── Testimonials ── */
#testimonials { background: var(--cream); overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-track-wrap { overflow: hidden; margin-top: 16px; display: flex; gap: 24px; }
.testimonials-track {
  display: flex; gap: 24px;
  width: max-content;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; min-width: 340px; max-width: 340px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"'; font-size: 5rem; line-height: 1;
  font-family: 'Playfair Display', serif;
  color: var(--cream-dark); position: absolute;
  top: 8px; left: 20px;
}
.testimonial-rating { color: #FFB800; margin-bottom: 12px; }
.testimonial-text {
  font-size: 0.9rem; color: var(--text-light);
  line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-light); }

/* ── CTA ── */
#cta {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  text-align: center; padding: 100px 5%;
  position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 20 L50 20 L38 30 L43 45 L30 35 L17 45 L22 30 L10 20 L25 20Z' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
#cta > * { position: relative; z-index: 1; }
.cta-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.cta-label {
  background: rgba(255,255,255,0.2); padding: 8px 18px; border-radius: 99px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; color: white;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
#cta h2 {
  font-family: 'Playfair Display', serif; line-height: 1.2;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white); font-weight: 700; margin-bottom: 0;
}
#cta p { color: rgba(255,255,255,0.9); font-size: 1.1rem; line-height: 1.6; margin-bottom: 0; }

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.btn-white-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 99px; font-weight: 600; font-size: 1.05rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
  transform: translateY(-4px);
}

.cta-stats {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 32px; width: 100%;
}
.cta-stat { display: flex; flex-direction: column; gap: 4px; color: white; }
.cta-stat span {
  font-size: 2.2rem; font-family: 'Playfair Display', serif;
  font-weight: 700; color: #FFD89B; line-height: 1;
}
.cta-stat small { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

/* ── Footer ── */
footer {
  background: #0f0d0d; color: rgba(255,255,255,0.7);
  padding: 60px 5% 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--white);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: all var(--transition);
}
.social-link:hover { background: var(--red); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--red); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 10px; font-size: 0.85rem; }
.footer-contact-item svg { width: 16px; height: 16px; min-width: 16px; color: var(--red); margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px; display: flex;
  align-items: center; justify-content: space-between;
  font-size: 0.8rem; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--red); }

/* ── Floating Order Button ── */
#float-order {
  position: fixed; right: 20px; bottom: 90px; z-index: 500;
  background: var(--red); color: var(--white);
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(193,18,31,0.5);
  font-size: 1.4rem;
  animation: floatPulse 3s ease-in-out infinite;
  transition: transform var(--transition);
}
#float-order:hover { transform: scale(1.15); animation-play-state: paused; }
@keyframes floatPulse { 0%,100%{box-shadow:0 4px 20px rgba(193,18,31,0.5)} 50%{box-shadow:0 4px 40px rgba(193,18,31,0.8),0 0 0 12px rgba(193,18,31,0.1)} }

/* Mobile cart button */
#mobile-cart {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--red); color: var(--white);
  padding: 14px; text-align: center;
  font-weight: 600; align-items: center; justify-content: center; gap: 8px;
}

/* ── Cart Drawer ── */
#cart-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0;
  width: 400px; max-width: 100vw;
  background: var(--white); z-index: 2000;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
  display: flex; flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#cart-drawer.open { right: 0; }
.cart-overlay {
  position: fixed; inset: 0; z-index: 1999;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}
.cart-overlay.show { opacity: 1; pointer-events: all; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
}
.cart-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all var(--transition);
}
.cart-close:hover { background: var(--red); color: var(--white); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; gap: 16px;
  color: var(--text-light); text-align: center;
}
.cart-empty svg { width: 64px; height: 64px; opacity: 0.3; }
.cart-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }
.cart-item-img {
  width: 70px; height: 70px; border-radius: var(--radius-sm);
  overflow: hidden; flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.cart-item-price { color: var(--red); font-weight: 700; font-size: 1rem; }
.cart-item-controls {
  display: flex; align-items: center; gap: 10px; margin-top: 8px;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 600;
  transition: all var(--transition);
}
.qty-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.qty-val { font-weight: 600; font-size: 0.9rem; min-width: 20px; text-align: center; }
.cart-item-remove {
  color: #ccc; font-size: 1rem; transition: color var(--transition); align-self: flex-start;
}
.cart-item-remove:hover { color: var(--red); }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-totals { margin-bottom: 16px; }
.cart-row {
  display: flex; justify-content: space-between;
  font-size: 0.9rem; margin-bottom: 8px; color: var(--text-light);
}
.cart-row.total {
  font-weight: 700; font-size: 1.1rem; color: var(--text);
  border-top: 1px solid var(--border); padding-top: 10px; margin-top: 10px;
}
.cart-row.total span:last-child { color: var(--red); }

/* ── Shop Page ── */
#shop-page { padding-top: 90px; min-height: 100vh; }
.shop-hero {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 60px 5%; text-align: center; color: var(--white);
}
.shop-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 12px;
}
.shop-hero p { opacity: 0.85; font-size: 1rem; }
.shop-container {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 32px; padding: 40px 5%; max-width: 1400px; margin: 0 auto;
}

/* Filters */
.shop-filters {
  position: sticky; top: 90px; height: fit-content;
  background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.filter-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.filter-header h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.filter-clear {
  font-size: 0.8rem; color: var(--red); font-weight: 600;
  cursor: pointer;
}
.filter-group { margin-bottom: 24px; }
.filter-group h4 {
  font-size: 0.82rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-light);
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.filter-option {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; cursor: pointer; font-size: 0.9rem;
}
.filter-option input { accent-color: var(--red); width: 16px; height: 16px; }
.price-range { width: 100%; accent-color: var(--red); }
.price-display { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-light); margin-top: 8px; }
.filter-toggle-btn {
  display: none; width: 100%;
  background: var(--red); color: var(--white);
  padding: 12px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem; margin-bottom: 16px;
  align-items: center; justify-content: center; gap: 8px;
}
.shop-main { min-width: 0; }
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.shop-count { font-size: 0.9rem; color: var(--text-light); }
.shop-sort select {
  padding: 8px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit;
  font-size: 0.85rem; outline: none;
  cursor: pointer;
}
.shop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.no-results {
  grid-column: 1/-1; text-align: center;
  padding: 60px; color: var(--text-light);
  font-size: 1.1rem;
}

/* Checkout */
#checkout-page { padding-top: 90px; min-height: 100vh; background: var(--cream); }
.checkout-container {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 32px; padding: 40px 5%; max-width: 1200px; margin: 0 auto;
}
.checkout-form-section {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.checkout-form-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; margin-bottom: 24px; color: var(--text);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 8px; color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.9rem; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 4px rgba(193,18,31,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.payment-options { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.payment-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all var(--transition);
}
.payment-option:hover, .payment-option.selected {
  border-color: var(--red); background: rgba(193,18,31,0.04);
}
.payment-option input { accent-color: var(--red); }
.payment-option-info strong { display: block; font-size: 0.9rem; }
.payment-option-info span { font-size: 0.8rem; color: var(--text-light); }
.payment-icon { font-size: 1.4rem; }

/* Order Summary Panel */
.order-summary-panel {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  height: fit-content; position: sticky; top: 90px;
}
.order-summary-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; margin-bottom: 20px;
}
.order-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.order-item-img {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  overflow: hidden; flex-shrink: 0;
}
.order-item-details { flex: 1; }
.order-item-details strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.order-item-details span { font-size: 0.8rem; color: var(--text-light); }
.order-item-price { font-weight: 700; color: var(--red); font-size: 0.95rem; }
.summary-totals { margin-top: 16px; }

/* Order Confirmation */
#confirmation-page {
  padding-top: 90px; min-height: 100vh;
  background: var(--cream); display: none;
  flex-direction: column; align-items: center;
  justify-content: center; padding: 120px 5%;
}
#confirmation-page.show { display: flex; }
.confirmation-card {
  background: var(--white); border-radius: 24px;
  padding: 48px; text-align: center;
  max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg);
}
.check-circle {
  width: 100px; height: 100px; background: #22863a;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(34,134,58,0.4);
  transform: scale(0);
}
.check-circle svg { width: 50px; height: 50px; color: white; }
.confirmation-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--text); margin-bottom: 12px;
}
.confirmation-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }
.order-id {
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 12px 20px; display: inline-block;
  font-weight: 700; color: var(--red); font-size: 1.1rem;
  letter-spacing: 2px; margin-bottom: 24px;
}
.conf-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Animation Helpers ── */
.fade-up { opacity: 0; transform: translateY(40px); }
.fade-in { opacity: 0; }
.slide-left { opacity: 0; transform: translateX(-40px); }
.slide-right { opacity: 0; transform: translateX(40px); }
.stagger-item { opacity: 0; transform: translateY(30px); }

/* ── Scroll To Top ── */
#scroll-top {
  position: fixed; right: 20px; bottom: 160px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); opacity: 0; pointer-events: none;
  transition: all var(--transition);
  border: 2px solid var(--border);
}
#scroll-top.show { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { height: 360px; }
  .about-img-wrap::before { display: none; }
  .about-badge-card { right: 16px; }
  .shop-container { grid-template-columns: 1fr; }
  .shop-filters { position: static; }
  .filter-toggle-btn { display: flex; }
  .filters-body { display: none; }
  .filters-body.open { display: block; }
  .checkout-container { grid-template-columns: 1fr; }
  .order-summary-panel { position: static; }
  .offers-inner { grid-template-columns: 1fr; }
  .offers-img { height: 280px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 20px; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #mobile-cart { display: flex; }
  .hero-ctas { justify-content: center; }
  .hero-content { text-align: center; }
  .hero-stats { justify-content: center; }
  .section-desc { max-width: 100%; }
}
@media (max-width: 480px) {
  .section { padding: 60px 4%; }
  .products-grid, .shop-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkout-container { padding: 20px 4%; }
}
