/* ==========================================================================
   20. HOME SEQUENCE: FIRST OPENING IMAGE & LARGE LUXURY RIBBON BOW
   ========================================================================== */

/* FIRST PROVIDED IMAGE (Opening visual before navigation area) */
.home-opening-visual-section {
  padding: 2.8rem 1.5rem 1.8rem 1.5rem;
  background: linear-gradient(180deg, #F8F3EA 0%, #FAF7F2 100%);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  text-align: center;
  position: relative;
}

.home-opening-container {
  max-width: 960px;
  margin: 0 auto;
}

.home-opening-frame {
  max-width: 580px;
  height: 380px;
  margin: 1.2rem auto 0 auto;
  border-radius: var(--radius-lg);
  background: #FFFDF9;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 16px 40px rgba(74, 14, 23, 0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.home-opening-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.home-opening-frame:hover img {
  transform: scale(1.02);
}

.home-opening-caption {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-burgundy-700);
  margin-top: 0.9rem;
  letter-spacing: 0.02em;
}

/* LARGE ELEGANT RIBBON BOW ELEMENT (Noticeably Bigger, Soft Silk Gift Bow) */
.luxury-ribbon-divider-section {
  padding: 3.8rem 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  position: relative;
  text-align: center;
}

.luxury-ribbon-line {
  height: 1.5px;
  flex: 1;
  max-width: 180px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.5), rgba(232, 166, 184, 0.7));
}

.luxury-ribbon-line.right {
  background: linear-gradient(90deg, rgba(232, 166, 184, 0.7), rgba(197, 160, 89, 0.5), transparent);
}

.luxury-ribbon-bow-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: ribbonBreathe 6.5s ease-in-out infinite;
}

.luxury-ribbon-bow-img {
  width: clamp(170px, 20vw, 220px);
  height: auto;
  max-height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(232, 166, 184, 0.35));
  transition: transform 0.4s ease;
}

@keyframes ribbonBreathe {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 8px 18px rgba(232, 166, 184, 0.3));
  }
  50% {
    transform: translateY(-6px) scale(1.025);
    filter: drop-shadow(0 14px 28px rgba(232, 166, 184, 0.45));
  }
}

/* ==========================================================================
   TOP HOME PAGE BRAND TITLE & SLOGAN
   ========================================================================== */
.home-top-brand-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 0.5rem;
}

.home-top-brand-title {
  font-family: var(--font-heading), 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-burgundy-900);
  margin: 0 0 0.35rem 0;
  line-height: 1.15;
}

.home-top-brand-slogan {
  font-family: var(--font-body), sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-gold-700);
  margin: 0;
  line-height: 1.4;
  text-transform: none;
}

@media (max-width: 768px) {
  .home-top-brand-header {
    margin-bottom: 1.3rem;
    padding-top: 0.2rem;
  }
  .home-top-brand-title {
    font-size: 1.75rem;
    letter-spacing: 0.1em;
  }
  .home-top-brand-slogan {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }
}

/* ==========================================================================
   21. TRUE 9:16 INSTAGRAM REELS (Continuous Non-Stop Horizontal Ticker)
   ========================================================================== */
.reels-continuous-carousel-wrap {
  width: 100%;
  overflow: hidden !important;
  position: relative;
  padding: 1.8rem 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}

.reels-continuous-ticker-track {
  display: flex !important;
  width: max-content;
  animation: slowReelsTicker 45s linear infinite !important;
  will-change: transform;
}

/* Continuously showing, never pause on hover or touch */
.reels-continuous-carousel-wrap:hover .reels-continuous-ticker-track,
.reels-continuous-ticker-track:hover {
  animation-play-state: running !important;
}

.reels-ticker-group {
  display: flex;
  gap: 1.6rem;
  padding-right: 1.6rem;
  flex-shrink: 0;
}

@keyframes slowReelsTicker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* True 9:16 Vertical Instagram Reel Card */
.insta-reel-card-916 {
  aspect-ratio: 9 / 16;
  width: 195px;
  height: 346px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #24070B;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 12px 28px rgba(74, 14, 23, 0.12);
  text-decoration: none;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.insta-reel-card-916:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 20px 42px rgba(74, 14, 23, 0.22);
  border-color: var(--color-gold-400);
}

.insta-reel-thumb-box-916 {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.insta-reel-thumb-box-916 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insta-reel-card-916:hover .insta-reel-thumb-box-916 img {
  transform: scale(1.06);
}

.insta-reel-badge-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(36, 7, 11, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: #FAF4E6;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 2;
}

.insta-reel-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.2rem 1rem 1rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 2, 5, 0.72) 40%, rgba(20, 2, 5, 0.95) 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 2;
}

.insta-reel-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--color-gold-300);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.insta-reel-title-text {
  font-family: var(--font-serif);
  font-size: 0.96rem;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insta-reel-open-link {
  font-size: 0.72rem;
  color: #F8DFE5;
  font-weight: 600;
  margin-top: 4px;
}

/* ==========================================================================
   22. CUSTOMIZED GIFTS: UNIFORM EDITORIAL BALANCE (ALL 9 ITEMS)
   ========================================================================== */
.gift-editorial-item-card {
  background: #FFFDF9;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.2rem;
  align-items: center;
  margin-bottom: 3.5rem;
  position: relative;
  transition: all var(--transition-normal);
}

.gift-editorial-item-card:hover {
  box-shadow: 0 16px 36px rgba(74, 14, 23, 0.08);
  border-color: rgba(197, 160, 89, 0.6);
}

.gift-editorial-item-card.layout-reversed {
  grid-template-columns: 1fr 1.05fr;
}

.gift-editorial-item-card.layout-reversed .gift-editorial-visual-col {
  order: 2;
}

.gift-editorial-item-card.layout-reversed .gift-editorial-text-col {
  order: 1;
}

.gift-editorial-frame {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
  background: #F4EFE6;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.gift-editorial-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.gift-editorial-frame img.fit-cover {
  object-fit: cover;
  padding: 0;
}

.gift-editorial-frame:hover img {
  transform: scale(1.025);
}

.gift-cat-num-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(36, 7, 11, 0.82);
  color: var(--color-gold-300);
  border: 1px solid rgba(197, 160, 89, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 0.1em;
}

.gift-editorial-text-col {
  display: flex;
  flex-direction: column;
}

.gift-editorial-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--color-burgundy-700);
  margin-bottom: 0.7rem;
  line-height: 1.25;
}

.gift-editorial-desc {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
}

.gift-editorial-action-row {
  margin-top: 0.4rem;
}

/* ==========================================================================
   23. CONTACT PAGE: BEAUTIFUL NIKKAH NAMA EDITORIAL SHOWCASE
   ========================================================================== */
.contact-nikkah-showcase {
  background: #FFFDF9;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(74, 14, 23, 0.07);
  margin-top: 1.6rem;
  text-align: center;
}

.contact-nikkah-frame {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #FAF7F2;
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.contact-nikkah-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.contact-nikkah-frame:hover img {
  transform: scale(1.025);
}

.contact-nikkah-caption-box {
  margin-top: 0.8rem;
}

.contact-nikkah-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-burgundy-700);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-nikkah-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   24. REDESIGNED LUXURY POPUP: "PLAN YOUR GIFT" CONSULTATION
   ========================================================================== */
.luxury-consultation-modal {
  background: radial-gradient(ellipse at top, #FFFDF9 0%, #FAF5ED 100%) !important;
  border: 1.5px solid rgba(197, 160, 89, 0.5) !important;
  border-radius: 22px !important;
  max-width: 640px !important;
  box-shadow: 0 25px 70px rgba(74, 14, 23, 0.22) !important;
  padding: 2.8rem 2.4rem !important;
}

.luxury-popup-ribbon-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.luxury-popup-ribbon-badge img {
  width: 68px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(232, 166, 184, 0.4));
}

.luxury-popup-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--color-burgundy-700);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.luxury-popup-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--color-burgundy-600);
  text-align: center;
  max-width: 480px;
  margin: 0 auto 1.6rem auto;
  line-height: 1.5;
}

.luxury-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.luxury-form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-burgundy-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.luxury-form-input,
.luxury-form-select,
.luxury-form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #FFFDF9;
  border: 1.5px solid rgba(197, 160, 89, 0.35);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.luxury-form-input:focus,
.luxury-form-select:focus,
.luxury-form-textarea:focus {
  outline: none;
  border-color: var(--color-burgundy-600);
  box-shadow: 0 0 0 3px rgba(232, 166, 184, 0.35);
  background: #FFFFFF;
}

.luxury-btn-submit {
  background: linear-gradient(135deg, var(--color-burgundy-700) 0%, var(--color-burgundy-800) 100%);
  color: var(--color-gold-300);
  border: 1px solid var(--border-gold);
  border-radius: 9999px;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(74, 14, 23, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.luxury-btn-submit:hover {
  background: linear-gradient(135deg, var(--color-burgundy-600) 0%, var(--color-burgundy-700) 100%);
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(74, 14, 23, 0.35);
  transform: translateY(-2px);
}

/* ==========================================================================
   25. AUTO-RUNNING TESTIMONIALS CAROUSEL (WITH AUTHENTIC CLIENT CHAT REVIEWS)
   User: "Also run the testimonials with the above testimonial images i sent."
   ========================================================================== */
.testimonials-running-carousel-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1.2rem 0 2rem 0;
  cursor: grab;
}

.testimonials-running-carousel-wrap:active {
  cursor: grabbing;
}

.testimonials-running-track {
  display: flex;
  gap: 1.8rem;
  width: max-content;
  animation: runTestimonialsTrack 30s linear infinite;
  will-change: transform;
}

.testimonials-running-carousel-wrap:hover .testimonials-running-track,
.testimonials-running-carousel-wrap.is-paused .testimonials-running-track {
  animation-play-state: paused;
}

@keyframes runTestimonialsTrack {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonials-running-track .chat-feedback-card {
  width: 370px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #FFFDF9;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(74, 14, 23, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonials-running-track .chat-feedback-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-400);
  box-shadow: 0 16px 36px rgba(74, 14, 23, 0.16);
}

.testimonials-running-track .chat-thumb-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #FAF7F2;
  padding: 0 !important;
}

.testimonials-running-track .chat-thumb-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.5s ease;
}

.testimonials-running-track .chat-feedback-card:hover .chat-thumb-container img {
  transform: scale(1.04);
}

.testimonials-running-track .chat-thumb-container::after {
  content: '🔍 Tap to view screenshot';
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(36, 7, 11, 0.88);
  color: var(--color-gold-300);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

.testimonials-running-track .chat-content-box {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.testimonials-running-track .chat-content-box blockquote {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.testimonials-running-track .chat-footer-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-burgundy-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   26. REVERTED HORIZONTAL HEADER WITH BIGGER CIRCULAR LOGO ON THE LEFT
   User: "back to old menu but before home left side bigger the logo only"
   ========================================================================== */
.site-header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  min-height: 86px !important;
  height: auto !important;
  padding: 0.5rem 0 !important;
  background: rgba(250, 247, 242, 0.98) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1.5px solid var(--border-gold) !important;
  z-index: 1000 !important;
  display: flex !important;
  align-items: center !important;
  box-shadow: 0 4px 20px rgba(74, 14, 23, 0.04) !important;
}

.header-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.6rem !important;
  width: 100% !important;
  max-width: var(--max-width) !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
}

/* Left-side prominent circular emblem logo before Home */
.brand-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  padding: 2px 0 !important;
  flex-shrink: 0 !important;
}

.brand-logo-img-bigger {
  width: 78px !important;
  height: 78px !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  background: #FFFDF9 !important;
  border: 1.5px solid var(--color-gold-400) !important;
  box-shadow: 0 4px 16px rgba(74, 14, 23, 0.12) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
  display: block !important;
}

.brand-logo-link:hover .brand-logo-img-bigger {
  transform: scale(1.08) !important;
  box-shadow: 0 8px 24px rgba(74, 14, 23, 0.22) !important;
  border-color: var(--color-gold-700) !important;
}

/* Main Navigation Menu */
.main-nav {
  display: flex !important;
  align-items: center !important;
  flex: 1 !important;
  justify-content: center !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: clamp(1rem, 2vw, 2rem) !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.nav-link {
  font-family: var(--font-body) !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--color-burgundy-900) !important;
  text-decoration: none !important;
  padding: 0.4rem 0 !important;
  position: relative !important;
  display: inline-block !important;
  transition: color var(--transition-fast) !important;
}

.nav-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 2px !important;
  background: var(--color-gold-500) !important;
  transform: scaleX(0) !important;
  transform-origin: center !important;
  transition: transform 0.25s ease !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-burgundy-700) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1) !important;
  width: 100% !important;
}

.header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-shrink: 0 !important;
}

/* ==========================================================================
   27. GLOBAL GAP REDUCTION — SMALLER, COMPACT, NEAT GAPS ACROSS ALL PAGES
   User: "also sections have most gaps... little bit lower that gap and maintain the gap smaller applies that all that pages."
   ========================================================================== */
:root {
  --section-spacing-desktop: 28px !important;
  --section-spacing-mobile: 18px !important;
}

.site-page {
  padding-top: 0.8rem !important;
  padding-bottom: 1.6rem !important;
}

.hero-balanced-section {
  padding: 1rem 0 1.2rem 0 !important;
}

.hero-image-first-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.2rem;
  align-items: center;
}

.hero-big-visual-side {
  width: 100%;
}

.hero-big-visual-frame {
  width: 100%;
  max-width: 560px;
  height: 380px; /* Controlled big frame */
  border-radius: var(--radius-lg);
  background: #FFFDF9;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 12px 32px rgba(74, 14, 23, 0.09);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 auto;
}

.hero-big-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.hero-big-visual-frame:hover img {
  transform: scale(1.025);
}

.section-header {
  margin-bottom: 0.9rem !important;
}

.section-tag {
  margin-bottom: 0.4rem !important;
}

.editorial-divider {
  height: 16px !important;
  margin: 0.8rem 0 !important;
}

.featured-gifts-section {
  padding: 1.2rem 0 !important;
}

.luxury-ribbon-divider-section {
  padding: 0.8rem 0 !important;
}

.home-reels-section {
  padding: 0.8rem 0 1.2rem 0 !important;
}

.testimonials-editorial-section {
  padding: 1rem 0 1.2rem 0 !important;
}

.gift-editorial-item-card {
  margin-bottom: 1.4rem !important;
  padding: 1.4rem 1.8rem !important;
  gap: 1.8rem !important;
}

.about-framed-layout {
  margin-top: 0.8rem !important;
  margin-bottom: 1.2rem !important;
  gap: 1.8rem !important;
}

.about-continuation-section {
  padding-top: 1rem !important;
}

.surprise-story-layout {
  gap: 1.8rem !important;
  margin-top: 1rem !important;
}

.contact-balanced-grid {
  margin-top: 1rem !important;
  gap: 1.8rem !important;
}

.site-footer-minimal {
  padding-top: 2.2rem !important;
  padding-bottom: 1.5rem !important;
}

/* ==========================================================================
   28. FOOTER CIRCULAR LOGO
   User: "footer also have logo."
   ========================================================================== */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}

.footer-circular-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: #FFFDF9;
  border: 1.5px solid var(--color-gold-400);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: block;
}

.footer-circular-logo:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.3);
}

/* ==========================================================================
/* ==========================================================================
   29. EXPANSIVE FULL-BLEED EDITORIAL GALLERY (NOT ALONE — FULLY FILLED)
   ========================================================================== */
#page-gallery .container {
  max-width: 1650px !important;
  width: 100% !important;
  padding-left: clamp(1rem, 3.5vw, 3rem) !important;
  padding-right: clamp(1rem, 3.5vw, 3rem) !important;
}

#page-gallery .section-header {
  max-width: 780px;
  margin: 0 auto 2.2rem auto;
  text-align: center;
}

.gallery-proportional-masonry {
  column-count: 4 !important;
  column-gap: 20px !important;
  width: 100% !important;
  margin-top: 1.4rem;
}

@media (max-width: 1280px) {
  .gallery-proportional-masonry {
    column-count: 3 !important;
    column-gap: 18px !important;
  }
}

@media (max-width: 860px) {
  .gallery-proportional-masonry {
    column-count: 2 !important;
    column-gap: 12px !important;
  }
}

@media (max-width: 480px) {
  .gallery-proportional-masonry {
    column-count: 2 !important;
    column-gap: 8px !important;
  }
}

.gallery-proportional-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border-gold);
  background: #FFFDF9;
  box-shadow: 0 6px 20px rgba(74, 14, 23, 0.08);
  position: relative;
  cursor: pointer;
  display: block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.gallery-proportional-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(74, 14, 23, 0.18);
  border-color: var(--color-gold-400);
}

.gallery-proportional-item img {
  width: 100% !important;
  height: auto !important; /* Full proportional natural image, no cropping! */
  display: block !important;
  transition: transform 0.6s ease;
}

.gallery-proportional-item:hover img {
  transform: scale(1.03);
}

.gallery-proportional-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 7, 11, 0.02) 40%, rgba(36, 7, 11, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-proportional-item:hover .gallery-proportional-overlay {
  opacity: 1;
}

.gallery-proportional-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--color-gold-300);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.gallery-proportional-title {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 4px 0 0 0;
}

/* ==========================================================================
   30. ULTRA-PERFECT MOBILE & LAPTOP RESPONSIVE MASTER CONTROLLER
   User:
   - "MAKE IT MOBILE FRIENDLY FROM CURTAIN TO EVERYTHING."
   - "MOBILE FRIENDLY CONVERT EVERYTHING TO LAPTOP AND MOBILE FRIENDLY AND RESPONSIVE."
   - "SCREEN SHOULD NOT BE AFTER TEXT IN MOBILE."
   - "MAKE THE MOBILE SCREEN FULLY FILLED CORRECT THE WAY SAME IN LAPTOP."
   ========================================================================== */

/* Universal mobile viewport boundaries: zero horizontal scroll */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

/* Base container responsiveness */
@media (max-width: 860px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

/* 1. CURTAIN INTRO ON MOBILE & LAPTOP */
@media (max-width: 768px) {
  .curtain-center-seal {
    width: 92% !important;
    max-width: 360px !important;
    padding: 2rem 1.4rem !important;
    border-radius: 20px !important;
  }

  .curtain-emblem-badge {
    width: 76px !important;
    height: 76px !important;
    margin-bottom: 1rem !important;
  }

  .curtain-title {
    font-size: 1.7rem !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 0.35rem !important;
  }

  .curtain-slogan {
    font-size: 0.76rem !important;
    letter-spacing: 0.22em !important;
    margin-bottom: 0.6rem !important;
  }

  .curtain-tagline {
    font-size: 1.05rem !important;
    margin-bottom: 1.6rem !important;
  }

  .curtain-open-btn {
    padding: 0.9rem 2rem !important;
    font-size: 0.84rem !important;
    letter-spacing: 0.14em !important;
    width: 100% !important;
    max-width: 250px !important;
    justify-content: center !important;
  }
}

/* 2. HEADER & MOBILE MENU */
@media (max-width: 860px) {
  .site-header {
    min-height: 68px !important;
    height: 68px !important;
    padding: 0 1rem !important;
  }

  .site-header-inner {
    padding: 0 0.5rem !important;
  }

  .brand-logo-img-bigger {
    width: 52px !important;
    height: 52px !important;
  }

  .main-nav {
    top: 68px !important;
    padding: 1.8rem 1.4rem !important;
    background: rgba(250, 247, 242, 0.99) !important;
    border-bottom: 2px solid var(--color-gold-400) !important;
  }

  .nav-links {
    gap: 1rem !important;
  }

  .nav-link {
    font-size: 1.05rem !important;
    padding: 0.65rem 0 !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* 3. HERO SECTION: SCREEN BEFORE TEXT ON MOBILE & FULL SCREEN FILLED */
@media (max-width: 900px) {
  .hero-balanced-section {
    padding: 1.5rem 0 2.8rem 0 !important;
  }

  .hero-image-first-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    text-align: center !important;
  }

  /* Screen MUST BE FIRST */
  .hero-big-visual-side {
    order: 1 !important;
    width: 100% !important;
  }

  .hero-big-visual-frame {
    width: 100% !important;
    max-width: 440px !important;
    height: 380px !important;
    max-height: 52vh !important;
    aspect-ratio: 4 / 5 !important;
    border-radius: 20px !important;
    padding: 0 !important;
    margin: 0 auto 1.2rem auto !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(36, 7, 11, 0.14) !important;
  }

  .hero-big-visual-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 20% !important;
  }

  /* Text placed AFTER screen */
  .hero-text-side {
    order: 2 !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .hero-title-main {
    font-size: 2.2rem !important;
    line-height: 1.18 !important;
  }

  .hero-slogan-lead {
    font-size: 0.78rem !important;
    letter-spacing: 0.16em !important;
  }

  .hero-desc-text {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .hero-btn-row {
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  .hero-btn-row .btn {
    width: 100% !important;
    min-height: 46px !important;
    justify-content: center !important;
  }
}

/* 4. SURPRISE PLANNING: SCREEN BEFORE TEXT ON MOBILE */
@media (max-width: 860px) {
  .surprise-rhythm-flow {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
  }

  .surprise-step-row,
  .surprise-step-row.reverse {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
    direction: ltr !important;
  }

  /* Visual Screen MUST BE FIRST (order: 1) */
  .surprise-step-photo-frame {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 240px !important;
    border-radius: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .surprise-step-photo-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  /* Text column comes AFTER screen (order: 2) */
  .surprise-step-text-col {
    order: 2 !important;
    width: 100% !important;
    text-align: center !important;
  }

  .surprise-step-counter {
    margin: 0 auto 0.6rem auto !important;
  }
}

/* 5. CUSTOMIZED GIFTS: SCREEN BEFORE TEXT ON MOBILE & FULL SCREEN FILLED */
@media (max-width: 860px) {
  .gift-editorial-item-card,
  .gift-editorial-item-card.layout-reversed {
    display: flex !important;
    flex-direction: column !important;
    padding: 1.2rem !important;
    gap: 1.2rem !important;
    border-radius: 18px !important;
    margin-bottom: 2rem !important;
  }

  /* Visual column MUST BE FIRST */
  .gift-editorial-visual-col {
    order: 1 !important;
    width: 100% !important;
  }

  .gift-editorial-frame {
    width: 100% !important;
    max-width: 100% !important;
    height: 260px !important;
    border-radius: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .gift-editorial-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .editorial-insets-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-top: 1rem !important;
  }

  .editorial-inset-thumb {
    height: 80px !important;
    padding: 0 !important;
    border-radius: 10px !important;
  }

  .editorial-inset-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  /* Text column AFTER screen */
  .gift-editorial-text-col {
    order: 2 !important;
    width: 100% !important;
    padding: 0.4rem 0 0 0 !important;
  }

  .gift-editorial-title {
    font-size: 1.4rem !important;
    line-height: 1.25 !important;
  }

  .gift-editorial-action-row .btn {
    width: 100% !important;
    min-height: 46px !important;
    justify-content: center !important;
  }
}

/* 6. ABOUT US: SCREEN BEFORE TEXT ON MOBILE */
@media (max-width: 860px) {
  .about-framed-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.8rem !important;
    text-align: center !important;
  }

  /* Portrait screen on top */
  .about-portrait-box {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 330px !important;
    border-radius: 20px !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .about-portrait-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .about-story-col {
    order: 2 !important;
    width: 100% !important;
  }
}

/* 7. CONTACT: SCREEN FULLY FILLED ON MOBILE */
@media (max-width: 860px) {
  .contact-balanced-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .contact-nikkah-frame {
    width: 100% !important;
    height: 230px !important;
    border-radius: 16px !important;
    padding: 0 !important;
  }

  .contact-nikkah-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .contact-form-container {
    padding: 1.6rem 1.2rem !important;
    border-radius: 18px !important;
    width: 100% !important;
  }

  .form-input-field,
  .form-select-field,
  .form-textarea-field {
    font-size: 16px !important; /* Prevents auto-zoom on iOS */
    min-height: 46px !important;
  }
}

/* 8. GALLERY: BALANCED CONTINUOUS MASONRY ON MOBILE */
@media (max-width: 860px) {
  .gallery-proportional-masonry {
    column-count: 2 !important;
    column-gap: 12px !important;
  }

  .gallery-proportional-item {
    margin-bottom: 12px !important;
    border-radius: 12px !important;
    padding: 0 !important;
  }

  .gallery-proportional-item img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    padding: 0 !important;
  }
}

@media (max-width: 480px) {
  .gallery-proportional-masonry {
    column-count: 2 !important;
    column-gap: 8px !important;
  }
  .gallery-proportional-item {
    margin-bottom: 8px !important;
    border-radius: 8px !important;
  }
}

/* ==========================================================================
   31. FULL SCREEN (EDGE-TO-EDGE) IMAGE FIT WITH ZERO GAPS ACROSS ALL 6 PAGES
   User Request: "All the images in the full 6 pages has been full screened like the first image. no gaps in that if we replace the image it should fit it center"
   ========================================================================== */

/* Zero gaps / zero padding across all image containers in all 6 pages */
.product-card-thumb-box,
.featured-gift-frame,
.hero-big-visual-frame,
.home-opening-frame,
.gift-editorial-frame,
.editorial-inset-thumb,
.surprise-step-photo-frame,
.contact-nikkah-frame,
.gallery-proportional-item,
.about-portrait-box,
.chat-thumb-container,
.insta-reel-thumb-box-916,
.reel-video-box {
  padding: 0 !important;
  overflow: hidden !important;
  background-color: #FAF4E6 !important;
}

/* Edge-to-edge coverage, centered placement, zero gaps on every content image */
.product-card-thumb-box img,
.featured-gift-frame img,
.hero-big-visual-frame img,
.home-opening-frame img,
.gift-editorial-frame img,
.editorial-inset-thumb img,
.surprise-step-photo-frame img,
.contact-nikkah-frame img,
.about-portrait-box img,
.chat-thumb-container img,
.insta-reel-thumb-box-916 img,
.reel-video-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  background-color: transparent !important;
}

/* Proportional gallery item: fills width 100% with zero gaps, centered */
.gallery-proportional-item {
  padding: 0 !important;
  overflow: hidden !important;
}

.gallery-proportional-item img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Global override for any fit-contain or fit-cover image class */
img.fit-contain,
img.fit-cover,
.fit-contain,
.fit-cover {
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
  background: transparent !important;
}

/* Exception: Header & Footer circular logos remain uncropped and centered */
.brand-logo-img-bigger,
.footer-circular-logo {
  object-fit: contain !important;
  object-position: center !important;
  padding: 4px !important;
  background-color: #FFFDF9 !important;
}

/* Exception: Decorative Ribbon Bow retains natural proportions */
.luxury-ribbon-bow-img,
#luxury-ribbon-bow-img {
  width: clamp(170px, 20vw, 220px) !important;
  height: auto !important;
  max-height: 140px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
}

/* ==============================================================================
   SECTION 32: HERO MINI BADGE VISIBILITY & MOBILE BOTTOM APPOINTMENT BAR
   ============================================================================== */

/* 1. Hero First Image "Signature Keepsake" Badge - Vivid White Letters & Luxury Glassmorphism */
.hero-mini-badge,
#hero-mini-badge {
  position: absolute !important;
  bottom: 20px !important;
  left: 20px !important;
  right: auto !important;
  top: auto !important;
  margin: 0 !important;
  background: rgba(36, 7, 11, 0.92) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.75) !important;
  border-radius: 999px !important;
  padding: 0.55rem 1.3rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.55) !important;
  z-index: 15 !important;
  pointer-events: none !important;
}

.hero-mini-badge .hero-badge-title {
  color: #FFFFFF !important;
  font-family: var(--font-body), sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
  line-height: 1 !important;
}

.hero-mini-badge .hero-badge-sub {
  color: #E8D399 !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  line-height: 1 !important;
}

/* 2. Mobile View: First Image Fit, Smaller Badge, Top Navbar (Only Logo & Menu), Bottom Appointment Button */
.mobile-fixed-bottom-bar {
  display: none;
}
.mobile-drawer-bottom-cta {
  display: none;
}

@media (max-width: 768px) {
  /* Home Page First Image: Fit correctly in 4/5 proportions without squishing */
  .hero-big-visual-frame {
    width: 100% !important;
    max-width: 440px !important;
    height: 380px !important;
    max-height: 52vh !important;
    aspect-ratio: 4 / 5 !important;
    border-radius: 20px !important;
    padding: 0 !important;
    margin: 0 auto 1.2rem auto !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(36, 7, 11, 0.14) !important;
  }

  .hero-big-visual-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 20% !important;
  }

  /* Smaller signature keepsake word is enough */
  .hero-mini-badge,
  #hero-mini-badge {
    bottom: 14px !important;
    left: 14px !important;
    padding: 0.38rem 0.85rem !important;
    border-radius: 999px !important;
    background: rgba(36, 7, 11, 0.94) !important;
    border: 1px solid rgba(212, 175, 55, 0.75) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5) !important;
  }

  .hero-mini-badge .hero-badge-title {
    font-size: 0.72rem !important;
    letter-spacing: 0.06em !important;
    color: #FFFFFF !important;
  }

  .hero-mini-badge .hero-badge-sub {
    display: none !important; /* "smaller signature keepsake word is enough" */
  }

  /* In mobile view top ONLY logo and menu navbar */
  .site-header .header-actions .plan-gift-trigger {
    display: none !important;
  }

  .site-header .header-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0.5rem 1rem !important;
  }

  .site-header .brand-logo-link {
    margin: 0 !important;
  }

  .site-header .header-actions {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
  }

  /* Mobile menu drawer bottom button */
  .mobile-drawer-bottom-cta {
    display: block !important;
    margin: 1.5rem 1rem 1rem 1rem !important;
  }

  /* Mobile persistent bottom bar: "Book an Appointment / Plan Gift" */
  .mobile-fixed-bottom-bar {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(255, 253, 249, 0.96) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.45) !important;
    padding: 0.6rem 1rem !important;
    box-shadow: 0 -4px 20px rgba(36, 7, 11, 0.12) !important;
    z-index: 998 !important;
  }

  .mobile-bottom-appointment-btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    background: linear-gradient(135deg, var(--color-burgundy-900) 0%, var(--color-burgundy-700) 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: 999px !important;
    padding: 0.75rem 1.4rem !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    box-shadow: 0 4px 14px rgba(36, 7, 11, 0.25) !important;
    cursor: pointer !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }

  .mobile-bottom-appointment-btn:active {
    transform: scale(0.98) !important;
  }

  /* Safe clearance so content is never hidden behind the fixed bottom bar */
  body {
    padding-bottom: 72px !important;
  }
}

@media (max-width: 480px) {
  .hero-big-visual-frame {
    height: 340px !important;
    max-height: 48vh !important;
  }

  .hero-mini-badge,
  #hero-mini-badge {
    bottom: 12px !important;
    left: 12px !important;
    padding: 0.32rem 0.72rem !important;
  }

  .hero-mini-badge .hero-badge-title {
    font-size: 0.68rem !important;
  }
}


