/* 
  SMILE BOOTH | Page Specific Styles
  Part of Martmut Picture Editorial System
*/

/* Hero Spacing & Layout Fixes */
.hero {
  position: relative;
  background-color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 80px 80px 80px;
  overflow: hidden;
}

/* Hero Marquee Styles */
.hero-marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: hero-scroll 80s linear infinite; /* Slow & cinematic */
}

.marquee-track img {
  height: 100%;
  width: auto;
  min-width: 60vw; /* Editorial scale */
  object-fit: cover;
  flex-shrink: 0;
}

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

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2; /* Marquee is 1 */
}

.hero-middle, .hero-bottom-editorial {
  position: relative;
  z-index: 5; /* Above everything */
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.intro-text-editorial {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.4;
  max-width: 500px;
  color: #ffffff;
  margin-bottom: 40px; /* Space added here */
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-bottom-editorial {
  margin-top: auto;
  text-align: left; /* Aligned left here */
}

.massive-branding {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(45px, 15vw, 220px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: #ffffff !important;
  text-transform: uppercase;
  margin: 0;
}

.section-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: #555;
  text-align: center;
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Scatter Gallery System */
.scatter-gallery-wrapper {
  position: relative;
  height: clamp(450px, 45vw, 650px); /* Balanced height for medium photos */
  margin: 100px auto 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  overflow: hidden; /* Added to prevent horizontal overflow from photos */
}

.scatter-gallery {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scatter-photo {
  position: absolute;
  width: clamp(220px, 25vw, 320px); /* Balanced medium size */
  height: auto;
  background: white;
  padding: 10px 10px 30px 10px; /* Polaroid look */
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
  border-radius: 2px;
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg) scale(0.9);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.scatter-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px; /* Bottom polaroid space */
}

/* Fan out positions when active */
/* Visual Centering Arc Positions when active - Shifted Further Left */
.reveal.active .scatter-photo {
  opacity: 1;
  pointer-events: auto;
}

/* Row 1 (Top Arc) - Pushed higher to reveal photos */
.reveal.active .p1 { transform: translate(-205%, -40%) rotate(-6deg); transition-delay: 0.05s; }
.reveal.active .p2 { transform: translate(-130%, -50%) rotate(-3deg); transition-delay: 0.1s; }
.reveal.active .p3 { transform: translate(-50%, -58%) rotate(0deg); transition-delay: 0.15s; z-index: 5; }
.reveal.active .p4 { transform: translate(30%, -50%) rotate(3deg); transition-delay: 0.2s; }
.reveal.active .p5 { transform: translate(105%, -40%) rotate(6deg); transition-delay: 0.25s; }

/* Row 2 (Bottom Arc) - Pushed significantly lower to reveal top row */
.reveal.active .p6 { transform: translate(-165%, 45%) rotate(-4deg); transition-delay: 0.3s; }
.reveal.active .p7 { transform: translate(-90%, 38%) rotate(-2deg); transition-delay: 0.35s; z-index: 6; }
.reveal.active .p8 { transform: translate(-10%, 38%) rotate(2deg); transition-delay: 0.4s; z-index: 6; }
.reveal.active .p9 { transform: translate(65%, 45%) rotate(4deg); transition-delay: 0.45s; }

/* Decorative Shapes */
.deco-shape {
  position: absolute;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.feature-box {
  text-align: center;
  padding: 40px 30px;
  background: var(--card-bg, #f8f8f8);
  border-radius: 8px; /* Reduced from 20px */
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: inline-block;
}

.color-sapphire { color: #007aff; }
.color-amethyst { color: #af52de; }
.color-gold { color: #c08a42; }
.color-amber { color: #ff9500; }

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-box p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Updated Mobile Scatter Arc to be flatter BUT spaced out vertically */
@media (max-width: 768px) {
  .scatter-gallery-wrapper {
    height: 440px; /* Increased from 380px to prevent clipping */
    margin: 40px auto 20px;
  }

  .scatter-photo {
    width: 170px; /* Slightly narrower to fit 4-5 photos better */
  }

  /* Wide vertical gap for FLAT mobile layout to reveal top row */
  .reveal.active .p1 { transform: translate(-120%, -35%) rotate(-5deg); }
  .reveal.active .p2 { transform: translate(-85%, -42%) rotate(-2deg); }
  .reveal.active .p3 { transform: translate(-50%, -48%) rotate(0deg); }
  .reveal.active .p4 { transform: translate(-15%, -42%) rotate(2deg); }
  .reveal.active .p5 { transform: translate(20%, -35%) rotate(5deg); }

  .reveal.active .p6 { transform: translate(-110%, 40%) rotate(-3deg); }
  .reveal.active .p7 { transform: translate(-75%, 32%) rotate(-1deg); }
  .reveal.active .p8 { transform: translate(-25%, 32%) rotate(1deg); }
  .reveal.active .p9 { transform: translate(10%, 40%) rotate(3deg); }
}

/* Pricing Card Sharpness */
.pricing-row {
  background: white;
  padding: 50px 40px;
  border-radius: 8px; /* Reduced from 30px */
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.info-card {
  background: #fbfbfb;
  padding: 50px;
  border-radius: 8px; /* Reduced from 30px */
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

  transition: all 1.5s ease-out;
  animation: floatSubtle 6s ease-in-out infinite alternate;
}

@keyframes floatSubtle {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(5deg); }
}

.dot-1 { top: 10%; left: 15%; width: 12px; height: 12px; background: #e8c5e5; border-radius: 50%; }
.dot-2 { bottom: 15%; right: 10%; width: 15px; height: 15px; background: #c5d8e8; border-radius: 50%; }
.dot-3 { top: 40%; right: 25%; width: 8px; height: 8px; background: #fce7cf; border-radius: 50%; animation-delay: 1s; }

.circle-1 { top: 20%; right: 15%; width: 40px; height: 40px; border: 2px solid #e8e8e8; border-radius: 50%; }
.circle-2 { bottom: 20%; left: 10%; width: 60px; height: 60px; border: 1px solid #f0f0f0; border-radius: 50%; animation-delay: 2s; }

.zigzag-1 { bottom: 30%; left: 20%; opacity: 0.2; transform: rotate(-15deg); font-size: 24px; color: #333; }
.zigzag-1::before { content: "~~~"; letter-spacing: -2px; }

.wave-1 { top: 15%; left: 25%; font-size: 30px; color: #ddd; opacity: 0.3; }
.wave-1::before { content: "~~~~~"; }

.sparkle-1 { top: 5%; right: 30%; color: #ffd700; font-size: 20px; animation-delay: 0.5s; }
.sparkle-2 { bottom: 40%; left: 5%; color: #ff69b4; font-size: 16px; opacity: 0.3; animation-delay: 1.5s; }

.floating-icon {
  font-size: 40px;
  color: #000;
  opacity: 0.04; /* Very subtle "ghost" icons */
  filter: grayscale(1);
}

.camera-bg { top: 15%; right: 5%; transform: rotate(15deg); }
.smile-bg { bottom: 10%; left: 5%; transform: rotate(-10deg); }
.photo-bg { top: 45%; left: 15%; transform: rotate(5deg); font-size: 30px; }

@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 40px 20px;
  }

  .intro-text-editorial {
    margin-bottom: 20px;
    font-size: 1.1rem;
  }

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

  .scatter-gallery-wrapper {
    height: 420px; /* Increased from 300px to prevent photo clipping on mobiles */
    margin-top: 20px;
  }
  .scatter-photo {
    width: 150px;
    padding: 6px 6px 15px 6px;
  }
  
  .pricing-list {
    grid-template-columns: 1fr; /* Force single column on mobile for better fit */
  }

  .section {
    overflow: hidden; /* Additional safety for all sections */
  }
  /* Mobile Arc Layout */
  .reveal.active .p1 { transform: translate(-180%, -20%) rotate(-15deg); }
  .reveal.active .p2 { transform: translate(-100%, -70%) rotate(-8deg); }
  .reveal.active .p3 { transform: translate(-50%, -85%) rotate(0deg); }
  .reveal.active .p4 { transform: translate(0%, -70%) rotate(8deg); }
  .reveal.active .p5 { transform: translate(80%, -20%) rotate(15deg); }
  .reveal.active .p6 { transform: translate(-150%, 40%) rotate(-10deg); }
  .reveal.active .p7 { transform: translate(-80%, 65%) rotate(-5deg); }
  .reveal.active .p8 { transform: translate(-10%, 65%) rotate(5deg); }
  .reveal.active .p9 { transform: translate(60%, 40%) rotate(10deg); }

  /* Centering Step 3 Visuals for Mobile */
  .photo-item-1 {
    left: 50% !important;
    margin-left: -130px;
    z-index: 1;
  }
  .photo-item-2 {
    left: 50% !important;
    margin-left: -110px;
    margin-top: 20px;
    z-index: 2;
  }
  .photo-strip-visual {
    left: 50% !important;
    margin-left: 20px;
    top: 50px;
    z-index: 3;
  }
}

/* Features Grid (Why Us) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.feature-box {
  text-align: center;
  padding: 40px 30px;
  background: var(--card-bg, #f8f8f8);
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: inline-block;
}

.color-sapphire { color: #007aff; }
.color-amethyst { color: #af52de; }
.color-gold { color: #c08a42; }
.color-amber { color: #ff9500; }

.feature-box h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1d1d1f;
}

/* Pricing Section System */
.pricing-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
}

.pricing-row {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 8px; /* Sharper from 32px for consistency */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.pricing-row:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.pricing-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #1d1d1f;
  letter-spacing: -0.01em;
}

.pricing-price {
  font-family: 'Montserrat', sans-serif;
  color: #000;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.pricing-price .currency {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 15px;
}

.pricing-price .amount {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.pricing-subtitle {
  color: #86868b;
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  flex-grow: 1;
  display: inline-block;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 22px;
  font-size: 15px;
  color: #1d1d1f;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}

.pricing-features li i {
  color: #007aff;
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.featured-card {
  border: 3px solid #007aff !important;
}

.best-value-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: #007aff;
  color: white;
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 8px; /* Match sharpened card radius */
  letter-spacing: 0.05em;
  box-shadow: 0 5px 15px rgba(0, 122, 255, 0.2);
  z-index: 10;
}

/* Premium Buttons */
.btn-price {
  display: inline-block;
  text-align: center;
  padding: 14px 40px;
  border-radius: 8px; /* Sharper from 50px for consistency */
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.btn-price.outline {
  border: 2px solid #007aff;
  color: #007aff;
}

.btn-price.outline:hover {
  background: #007aff;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
}

.btn-price.solid {
  background: #007aff;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(0, 122, 255, 0.2);
}

.btn-price.solid:hover {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 122, 255, 0.3);
}

/* Bento Gallery Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-item {
  position: relative;
  border-radius: 8px; /* Sharper corners for premium linear look */
  overflow: hidden;
  background: #f5f5f7;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.bento-item img, .bento-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-item.wide { grid-column: span 2; }

/* How to Order - Zig Zag Modern Layout */
.how-to-order-wrapper {
  display: flex;
  flex-direction: column;
  gap: 260px; /* Even larger gap for maximum premium editorial feel */
  margin-top: 150px; /* More space from section title */
}

.how-to-order-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.how-to-order-step.reverse {
  flex-direction: row-reverse;
}

.step-text {
  flex: 1;
  padding-top: 40px; /* Safety clearance for title */
}

.step-icon-box {
  width: 65px;
  height: 65px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  color: #1a1a1a;
}

.step-text h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 25px;
  color: #1a1a1a;
  line-height: 1.15;
}

.step-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #444;
}

.step-features li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #6366f1;
  font-size: 1rem;
}

.step-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blob-bg {
  position: absolute;
  z-index: 1;
  width: 130%;
  height: 130%;
  opacity: 0.12;
  filter: blur(20px);
}

.bg-purple { background: #a855f7; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
.bg-blue { background: #3b82f6; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
.bg-orange { background: #f97316; border-radius: 30% 70% 70% 30% / 50% 30% 70% 50%; }

/* Device & Chat Mockups CSS */
.phone-frame {
  width: 280px;
  height: 560px;
  background: #111;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.2);
  position: relative;
  border: 4px solid #333;
  margin: 0 auto;
  z-index: 2;
  transform: rotate(-3deg);
  transition: transform 0.6s ease;
}

.how-to-order-step.reverse .phone-frame {
  transform: rotate(3deg);
}

.how-to-order-step:hover .phone-frame {
  transform: rotate(0deg) scale(1.02);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* WhatsApp UI Mockup */
.wa-header {
  background: #075e54;
  color: white;
  padding: 25px 15px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-avatar {
  width: 32px;
  height: 32px;
  background: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-name { font-weight: 600; font-size: 13px; }
.wa-status { font-size: 9px; opacity: 0.8; }

.wa-chat-area {
  flex: 1;
  background: #e5ddd5;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  max-width: 85%;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.4;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.chat-left {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.chat-right {
  background: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.wa-input-mockup {
  height: 50px;
  background: #f0f0f0;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-size: 12px;
  color: #999;
}

/* Laptop Mockup */
.laptop-container {
  width: 100%;
  max-width: 550px;
  position: relative;
  z-index: 2;
  transform: rotate(-2deg);
  transition: transform 0.6s ease;
}

.how-to-order-step:hover .laptop-container {
  transform: rotate(0deg) scale(1.02);
}

.laptop-frame {
  background: #333;
  padding: 12px;
  border-radius: 15px 15px 0 0;
  border: 1px solid #444;
}

.laptop-screen {
  background: #fff;
  aspect-ratio: 16 / 10;
  border-radius: 5px;
  overflow: hidden;
  border: 3px solid #111;
}

.laptop-base {
  height: 15px;
  background: #222;
  width: 110%;
  margin-left: -5%;
  border-radius: 0 0 15px 15px;
}

/* Calendar & Success Toggle Animation */
.phone-screen-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  padding: 25px;
  z-index: 10;
  opacity: 0;
  animation: showSuccess 10s infinite;
}

.calendar-ui {
  animation: hideCalendar 10s infinite;
}

@keyframes showSuccess {
  0%, 45% { opacity: 0; transform: scale(0.95); }
  50%, 95% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; }
}

@keyframes hideCalendar {
  0%, 45% { opacity: 1; pointer-events: auto; }
  50%, 95% { opacity: 0; pointer-events: none; }
  100% { opacity: 1; }
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #4CAF50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 40px auto 20px;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.success-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 30px;
}

.receipt-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  border: 1px solid #eee;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 12px;
  color: #666;
}

.receipt-val {
  font-weight: 600;
  color: #1a1a1a;
}
/* Refined Calendar Mockup UI */
.calendar-ui {
  padding: 25px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
}
.cal-month {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 25px;
  color: #000;
  letter-spacing: -0.5px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px 8px;
}
.cal-day-label {
  font-size: 11px;
  color: #ccc;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
.cal-date {
  font-size: 13px;
  font-weight: 500;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #333;
  position: relative;
  transition: all 0.3s ease;
}
.cal-date.booked {
  color: #d1d1d1;
}
.cal-date.booked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #ff4d4d;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cal-date.selected {
  background: #000;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.cal-footer {
  margin-top: auto;
  padding-top: 20px;
}
.cal-btn {
  width: 100%;
  padding: 16px;
  background: #000;
  color: white;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2px;
}

/* Editorial Photo Stack (Step 3 Replacement) */
.editorial-photo-stack {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.photo-stack-item {
  position: absolute;
  width: 240px;
  background: white;
  padding: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border: none;
  border-radius: 8px;
  overflow: hidden;
  /* Smooth continuous floating animation */
  animation: slowFloat 6s ease-in-out infinite alternate;
}

@keyframes slowFloat {
  0% { transform: translateY(10px) rotate(var(--rot)); }
  100% { transform: translateY(-15px) rotate(var(--rot)); }
}

.photo-item-1 {
  --rot: -6deg;
  left: 10%; /* Moved further left */
  z-index: 1;
  animation-delay: 0s;
}

.photo-item-2 {
  --rot: 5deg;
  left: 45%; /* Moved further right */
  z-index: 2;
  animation-delay: -3s;
}

.photo-stack-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* Realistic Blue Checkered Photo Strip */
.photo-strip-visual {
  width: 90px;
  height: 260px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 
    10px 20px 40px rgba(0,0,0,0.15),
    -2px 0 10px rgba(255,255,255,0.5) inset;
  transform: rotate(6deg);
  animation: stripFloat 5s ease-in-out infinite alternate;
  z-index: 6;
  position: absolute;
  left: 175px;
  top: -20px;
  border-radius: 2px;
}

/* The Blue Checkered Border Effect */
.photo-strip-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid #3b82f6; /* Blue border */
  z-index: -1;
  pointer-events: none;
}

.strip-photo {
  width: 74px;
  height: 60px;
  background: #eee;
  border: 3px solid #3b82f6; /* Blue checkered frame simulation */
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

/* Checkered pattern simulation on photo borders */
.strip-photo::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background-image: 
    linear-gradient(45deg, #2563eb 25%, transparent 25%), 
    linear-gradient(-45deg, #2563eb 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #2563eb 75%), 
    linear-gradient(-45deg, transparent 75%, #2563eb 75%);
  background-size: 8px 8px;
  background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
  z-index: 2;
  pointer-events: none;
  border: 3px solid #fff;
}

.strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Stickers (Hearts) */
.heart-sticker {
  position: absolute;
  font-size: 14px;
  color: #ff6b6b;
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  animation: heartbeat 2s infinite;
}

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

.heart-1 { top: -5px; right: -5px; }
.heart-2 { bottom: -5px; left: -5px; }

.pricing-footer-note {
  margin-top: 100px; /* Wide separation between cards and terms */
  width: 100%;
}

.info-card {
  background: #fbfbfb;
  padding: 60px 50px; /* More internal padding */
  border-radius: 8px; /* Sharper corners to match new aesthetic */
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  transition: all 0.4s ease;
}

.info-card:hover {
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.info-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.info-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px; /* Much more space between items */
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}

.info-list li i {
  color: #007aff;
  font-size: 18px;
  margin-top: 3px;
}

/* Scroll context colors for buttons */
.header-minimal.scrolled .btn-pill-white {
  background: #1d1d1f;
  color: #ffffff !important;
}

.header-minimal.scrolled .btn-pill-white:hover {
  background: #000000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

@media (max-width: 991px) {
  .how-to-order-step {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
    padding: 20px 0;
  }

  .how-to-order-step.reverse {
    flex-direction: column !important; /* Stack normally on mobile */
  }

  .step-text {
    flex: none;
    width: 100%;
    order: 1;
    padding-top: 0;
  }

  .step-visual {
    flex: none;
    width: 100%;
    order: 2;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .step-icon-box {
    margin-left: auto;
    margin-right: auto;
  }

  .step-features {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
  }

  /* Centering titles in vertical stack */
  .step-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .phone-frame, .laptop-container {
    max-width: 320px; /* Force better sizing on small screens */
    margin: 0 auto;
    transform: none !important; /* Avoid clipping from rotations */
  }
}

@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }
}
