/* ═══════════════════════════════════════════════════════════
   PREMIUM BANAU SMART DIGITAL BUSINESS CARD & LINK-IN-BIO
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --sc-font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --sc-primary: #9f5afd;
  --sc-primary-dark: #823cfc;
  --sc-primary-glow: rgba(159, 90, 253, 0.22);
  --sc-bg: #f8fafc;
  --sc-bg-gradient: radial-gradient(circle at 50% 0%, #ede9fe 0%, #f8fafc 55%, #f1f5f9 100%);
  --sc-card-bg: #ffffff;
  --sc-card-border: #e2e8f0;
  --sc-card-inner: #f8fafc;
  --sc-text: #0f172a;
  --sc-text-muted: #64748b;
  --sc-text-light: #94a3b8;
  --sc-star: #fbbf24;
  --sc-radius-xl: 28px;
  --sc-radius-lg: 20px;
  --sc-radius-md: 14px;
  --sc-radius-sm: 10px;
  --sc-shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --sc-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --sc-shadow-md: 0 10px 25px -4px rgba(0, 0, 0, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
  --sc-shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  --sc-glow: 0 0 40px rgba(159, 90, 253, 0.15);
  --sc-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sc-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

:root.dark-mode,
html.dark-mode,
body.dark-mode {
  --sc-bg: #090d16;
  --sc-bg-gradient: radial-gradient(circle at 50% 0%, #1e1b4b 0%, #0f172a 60%, #090d16 100%);
  --sc-card-bg: #111827;
  --sc-card-border: #1e293b;
  --sc-card-inner: #1e293b;
  --sc-text: #f8fafc;
  --sc-text-muted: #94a3b8;
  --sc-text-light: #64748b;
  --sc-shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.3);
  --sc-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
  --sc-shadow-md: 0 12px 30px -4px rgba(0, 0, 0, 0.5);
  --sc-shadow-lg: 0 24px 50px -10px rgba(0, 0, 0, 0.65);
  --sc-glow: 0 0 50px rgba(159, 90, 253, 0.28);
}

/* ═══════════════════════════════════════════════════════════
   SMOOTH ENTRANCE ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

@keyframes scFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scSlideDown {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scPopIn {
  0% { opacity: 0; transform: scale(0.92); }
  70% { transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes scPulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(159, 90, 253, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(159, 90, 253, 0); }
}

.sc-anim-slide-down { animation: scSlideDown 0.6s var(--sc-ease) both; }
.sc-anim-slide-up { animation: scSlideUp 0.6s var(--sc-ease) both; }
.sc-anim-fade-in { animation: scFadeIn 0.7s var(--sc-ease) both; }
.sc-anim-pop { animation: scPopIn 0.5s var(--sc-ease-bounce) both; }

/* ═══════════════════════════════════════════════════════════
   BASE PAGE LAYOUT
   ═══════════════════════════════════════════════════════════ */

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sc-body {
  background: var(--sc-bg-gradient);
  color: var(--sc-text);
  font-family: var(--sc-font);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: background 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

.sc-container {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding: 24px 18px 60px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   TOP FLOATING NAV
   ═══════════════════════════════════════════════════════════ */

.sc-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  width: 100%;
}

.sc-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sc-card-bg);
  border: 1px solid var(--sc-card-border);
  color: var(--sc-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--sc-shadow-xs);
  transition: all 0.25s var(--sc-ease);
  font-size: 15px;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.sc-top-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: var(--sc-shadow-sm);
  border-color: var(--sc-primary);
  color: var(--sc-primary);
}

.sc-top-btn:active {
  transform: scale(0.94);
}

.sc-top-actions-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════════
   PROFILE IDENTITY & AVATAR SECTION
   ═══════════════════════════════════════════════════════════ */

.sc-profile-section {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.sc-logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 100% !important;
  margin: 0 auto 16px;
  padding: 12px;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--sc-card-bg);
  border: 2px solid var(--sc-card-border);
  box-shadow: var(--sc-shadow-md);
  transition: transform 0.3s var(--sc-ease-bounce), box-shadow 0.3s ease;
}

.sc-logo-wrapper:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: var(--sc-shadow-lg), var(--sc-glow);
}

.sc-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
}

.sc-logo-monogram {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: linear-gradient(135deg, #9f5afd 0%, #6366f1 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sc-font);
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.sc-logo-monogram--standee {
  font-size: 26px;
  background: #0f172a;
}

.sc-standee-bn-logo {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  font-family: var(--sc-font, 'Outfit', sans-serif) !important;
  line-height: 1 !important;
  user-select: none !important;
  width: 100% !important;
  height: 100% !important;
}

.sc-standee-bn-logo .logo-v {
  font-size: 36px !important;
  font-weight: 300 !important;
  color: #0f172a !important;
  line-height: 1 !important;
  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
}

.sc-standee-bn-logo .logo-a {
  font-size: 36px !important;
  font-weight: 900 !important;
  color: #6366f1 !important;
  margin-left: -3px !important;
  line-height: 1 !important;
  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
}

.sc-logo-wrapper .sc-standee-bn-logo .logo-v {
  font-size: 44px !important;
}

.sc-logo-wrapper .sc-standee-bn-logo .logo-a {
  font-size: 44px !important;
}

.sc-company-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 6px;
  color: var(--sc-text);
  line-height: 1.2;
}

.sc-tagline {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--sc-text-muted);
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   QUICK CONTACT ROW (Official Vibrant Action Buttons)
   ═══════════════════════════════════════════════════════════ */

.sc-quick-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.sc-quick-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--sc-card-bg);
  border: 1px solid var(--sc-card-border);
  color: var(--sc-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  text-decoration: none;
  box-shadow: var(--sc-shadow-sm);
  transition: all 0.25s var(--sc-ease);
  position: relative;
}

.sc-quick-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: var(--sc-shadow-md);
}

.sc-quick-btn:active {
  transform: scale(0.92);
}

.sc-quick-btn.sc-btn-call { color: #10b981; }
.sc-quick-btn.sc-btn-call:hover { border-color: #10b981; background: rgba(16, 185, 129, 0.08); }

.sc-quick-btn.sc-btn-wa { color: #25d366; }
.sc-quick-btn.sc-btn-wa:hover { border-color: #25d366; background: rgba(37, 211, 102, 0.08); }

.sc-quick-btn.sc-btn-mail { color: #3b82f6; }
.sc-quick-btn.sc-btn-mail:hover { border-color: #3b82f6; background: rgba(59, 130, 246, 0.08); }

/* ═══════════════════════════════════════════════════════════
   PRIMARY ACTION CTA (Shop the Collection)
   ═══════════════════════════════════════════════════════════ */

.sc-primary-action-wrap {
  margin-bottom: 20px;
  width: 100%;
}

.sc-primary-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: #0f172a;
  color: #ffffff !important;
  border-radius: 50px;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  transition: all 0.25s var(--sc-ease);
  box-sizing: border-box;
}

body.dark-mode .sc-primary-action-btn {
  background: linear-gradient(135deg, var(--sc-primary), var(--sc-primary-dark));
  box-shadow: 0 10px 25px rgba(159, 90, 253, 0.35);
}

.sc-primary-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.3);
  opacity: 0.96;
}

.sc-primary-action-btn i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.sc-primary-action-btn:hover i {
  transform: translateX(5px);
}

.sc-primary-action-btn:active {
  transform: scale(0.98);
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL LINKS & OFFICIAL BRAND ICONS
   ═══════════════════════════════════════════════════════════ */

.sc-custom-social-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
}

.sc-custom-social-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--sc-card-bg);
  border: 1px solid var(--sc-card-border);
  border-radius: var(--sc-radius-md);
  color: var(--sc-text) !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: var(--sc-shadow-xs);
  transition: all 0.25s var(--sc-ease);
  box-sizing: border-box;
}

.sc-custom-social-pill:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: var(--sc-shadow-md);
}

.sc-custom-social-pill:active {
  transform: scale(0.98);
}

.sc-custom-social-pill i:first-child {
  font-size: 24px;
  line-height: 1;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.sc-custom-social-pill:hover i:first-child {
  transform: scale(1.12);
}

/* Official Brand Colors for Social Icons */
.sc-custom-social-pill .fa-instagram { color: #E1306C; }
.sc-custom-social-pill .fa-tiktok { color: #000000; }
body.dark-mode .sc-custom-social-pill .fa-tiktok { color: #ffffff; }
.sc-custom-social-pill .fa-whatsapp { color: #25D366; }
.sc-custom-social-pill .fa-facebook, .sc-custom-social-pill .fa-facebook-f { color: #1877F2; }
.sc-custom-social-pill .fa-youtube { color: #FF0000; }
.sc-custom-social-pill .fa-x-twitter, .sc-custom-social-pill .fa-twitter { color: #0f1419; }
body.dark-mode .sc-custom-social-pill .fa-x-twitter { color: #ffffff; }
.sc-custom-social-pill .fa-linkedin, .sc-custom-social-pill .fa-linkedin-in { color: #0A66C2; }
.sc-custom-social-pill .fa-telegram { color: #229ED9; }
.sc-custom-social-pill .fa-pinterest, .sc-custom-social-pill .fa-pinterest-p { color: #BD081C; }
.sc-custom-social-pill .fa-threads { color: #000000; }
body.dark-mode .sc-custom-social-pill .fa-threads { color: #ffffff; }
.sc-custom-social-pill .fa-discord { color: #5865F2; }
.sc-custom-social-pill .fa-viber { color: #7360F2; }
.sc-custom-social-pill .fa-snapchat { color: #FFFC00; text-shadow: 0 0 2px rgba(0,0,0,0.5); }
.sc-custom-social-pill .fa-globe { color: var(--sc-primary); }

.sc-custom-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 12px;
  text-align: left;
}

.sc-custom-platform {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--sc-text);
  line-height: 1.3;
}

.sc-custom-username {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--sc-text-muted);
}

.sc-custom-arrow {
  font-size: 13px;
  color: var(--sc-text-light);
  transition: transform 0.2s ease, color 0.2s ease;
}

.sc-custom-social-pill:hover .sc-custom-arrow {
  transform: translate(2px, -2px);
  color: var(--sc-primary);
}

/* Icon-Only Social Grid */
.sc-social-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.sc-social-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--sc-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff !important;
  text-decoration: none;
  box-shadow: var(--sc-shadow-sm);
  transition: all 0.25s var(--sc-ease);
}

.sc-social-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: var(--sc-shadow-md);
}

.sc-social-btn:active {
  transform: scale(0.94);
}

.sc-social-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.sc-social-facebook { background: linear-gradient(135deg, #1877f2, #0d65d9); }
.sc-social-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.sc-social-tiktok { background: #000000; border: 1px solid rgba(255,255,255,0.18); }
.sc-social-website { background: linear-gradient(135deg, #9f5afd, #823cfc); }
.sc-social-youtube { background: linear-gradient(135deg, #ff0000, #cc0000); }
.sc-social-linkedin { background: linear-gradient(135deg, #0a66c2, #004182); }
.sc-social-x { background: #0f1419; border: 1px solid rgba(255,255,255,0.1); }
.sc-social-telegram { background: linear-gradient(135deg, #229ed9, #1976d2); }

/* ═══════════════════════════════════════════════════════════
   PREMIUM 9:16 VIDEO CAROUSEL SECTION
   ═══════════════════════════════════════════════════════════ */

:root {
  --carousel-item-width-mobile: 74vw;
  --carousel-item-width-desktop: 280px;
  --carousel-gap: 16px;
  --carousel-border-radius: 28px;
  --transition-duration: 0.4s;
  --transition-easing: cubic-bezier(0.25, 1, 0.5, 1);
  --sc-btn-bg: rgba(15, 23, 42, 0.55);
  --sc-btn-bg-hover: rgba(15, 23, 42, 0.85);
  --sc-btn-icon-color: #ffffff;
}

body.dark-mode {
  --sc-btn-bg: rgba(255, 255, 255, 0.22);
  --sc-btn-bg-hover: rgba(255, 255, 255, 0.4);
  --sc-btn-icon-color: #ffffff;
}

.sc-video-section {
  width: 100%;
  margin-bottom: 28px;
  position: relative;
}

.sc-section-label {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sc-text-muted);
  margin: 0 0 12px 4px;
}

.sc-carousel-container,
.carousel-container {
  width: calc(100% + 36px);
  margin-left: -18px;
  margin-right: -18px;
  overflow: hidden;
  position: relative;
  padding: 6px 0 16px;
}

.sc-carousel-track,
.carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 10px calc(50vw - (var(--carousel-item-width-mobile) / 2));
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

@media (min-width: 580px) {
  .sc-carousel-track,
  .carousel-track {
    padding: 10px calc(50% - (var(--carousel-item-width-desktop) / 2));
  }
}

.sc-carousel-track::-webkit-scrollbar,
.carousel-track::-webkit-scrollbar {
  display: none;
}

/* Carousel Item */
.sc-carousel-item,
.carousel-item {
  flex: 0 0 var(--carousel-item-width-mobile);
  width: var(--carousel-item-width-mobile);
  max-width: 320px;
  aspect-ratio: 9 / 16;
  scroll-snap-align: center;
  border-radius: 24px !important;
  -webkit-border-radius: 24px !important;
  overflow: hidden !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: -webkit-radial-gradient(white, black);
  position: relative;
  background-color: #0b0f19;
  border: none !important;
  outline: none !important;
  box-sizing: border-box;
  
  /* Inactive state */
  transform: scale(0.88);
  opacity: 0.55;
  transition: transform var(--transition-duration) var(--transition-easing), 
              opacity var(--transition-duration) var(--transition-easing),
              box-shadow var(--transition-duration) var(--transition-easing);
  
  will-change: transform, opacity;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (min-width: 580px) {
  .sc-carousel-item,
  .carousel-item {
    flex: 0 0 var(--carousel-item-width-desktop);
    width: var(--carousel-item-width-desktop);
  }
}

/* Active Item State */
.sc-carousel-item.is-active,
.carousel-item.is-active {
  transform: scale(1);
  opacity: 1;
  border: none !important;
  outline: none !important;
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.28);
}

body.dark-mode .sc-carousel-item.is-active,
body.dark-mode .carousel-item.is-active {
  border: none !important;
  outline: none !important;
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.6);
}

/* Video & Iframe Styling */
.sc-carousel-video,
.carousel-video,
.sc-carousel-iframe,
.carousel-iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000000;
  border: none;
  border-radius: 24px !important;
  -webkit-border-radius: 24px !important;
  overflow: hidden !important;
}

.sc-carousel-video,
.carousel-video {
  pointer-events: none;
}

.sc-carousel-iframe,
.carousel-iframe {
  pointer-events: none;
}

.sc-carousel-item.is-active .sc-carousel-iframe,
.carousel-item.is-active .carousel-iframe {
  pointer-events: auto;
  z-index: 4;
}

/* Poster Image (Shows real TikTok / YouTube / Instagram / MP4 thumbnail on unplayed cards) */
.sc-carousel-poster,
.carousel-poster,
.home-video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: 24px !important;
  -webkit-border-radius: 24px !important;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
  background: #0b0f19;
  display: block;
  opacity: 1;
}



/* Luxury Play Icon & Action Button on Each Video Card */
.home-video-play-overlay,
.sc-carousel-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  pointer-events: auto;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.15);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease;
}

.home-video-card:hover .home-video-play-overlay,
.sc-carousel-item:hover .sc-carousel-play-overlay {
  background: rgba(0, 0, 0, 0.28);
}

.home-video-play-pill,
.sc-carousel-play-pill {
  width: 64px;
  height: 64px;
  border-radius: 50% !important;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.15);
  padding-left: 4px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.home-video-play-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  pointer-events: none;
}

.home-video-card:hover .home-video-play-pill,
.sc-carousel-item:hover .sc-carousel-play-pill {
  transform: scale(1.15);
  background: #ffffff;
  color: #0b0f19;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 255, 255, 0.5);
  border-color: #ffffff;
}

.home-video-card:hover .home-video-play-label,
.sc-carousel-item:hover .home-video-play-label {
  background: rgba(255, 255, 255, 0.95);
  color: #0b0f19;
  transform: translateY(-2px);
}



/* Mute / Unmute Button */
.sc-carousel-mute-btn,
.mute-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sc-btn-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--sc-btn-icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s ease, transform 0.2s ease, opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 0;
}

.sc-carousel-item.is-active .sc-carousel-mute-btn,
.carousel-item.is-active .mute-btn {
  opacity: 1;
  pointer-events: auto;
}

.sc-carousel-mute-btn:hover,
.mute-btn:hover {
  background: var(--sc-btn-bg-hover);
  transform: scale(1.08);
}

.sc-carousel-mute-btn:active,
.mute-btn:active {
  transform: scale(0.92);
}

.sc-carousel-mute-btn svg,
.mute-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Caption Overlay Pill at Top Left (Keeps bottom player controls 100% accessible) */
.sc-carousel-caption {
  position: absolute;
  top: 14px;
  left: 14px;
  bottom: auto;
  right: auto;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  z-index: 6;
  pointer-events: none;
  max-width: calc(100% - 28px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sc-carousel-caption span {
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Embed Trigger Badge */
.sc-carousel-embed-badge {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.sc-carousel-embed-badge:hover {
  background: rgba(0, 0, 0, 0.15);
}

.sc-carousel-embed-badge .sc-play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  padding-left: 3px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s var(--sc-ease-bounce), background 0.25s ease;
}

.sc-carousel-embed-badge:hover .sc-play-icon {
  transform: scale(1.12);
  background: var(--sc-primary);
}

.sc-carousel-embed-badge .sc-play-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

/* Accessibility: Focus and Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .sc-carousel-item,
  .carousel-item {
    transition: none;
    transform: scale(1);
    opacity: 0.85;
  }
  .sc-carousel-item.is-active,
  .carousel-item.is-active {
    opacity: 1;
  }
  .sc-carousel-track,
  .carousel-track {
    scroll-behavior: auto;
  }
}

.sc-carousel-item:focus-visible,
.carousel-item:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.sc-carousel-mute-btn:focus-visible,
.mute-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════
   INTERACTIVE GOOGLE MAP SECTION (Embedded on page)
   ═══════════════════════════════════════════════════════════ */

.sc-map-section {
  margin-bottom: 24px;
  width: 100%;
}

.sc-map-card {
  background: var(--sc-card-bg);
  border: 1px solid var(--sc-card-border);
  border-radius: var(--sc-radius-lg);
  overflow: hidden;
  box-shadow: var(--sc-shadow-md);
  transition: box-shadow 0.3s ease;
}

.sc-map-card:hover {
  box-shadow: var(--sc-shadow-lg);
}

.sc-map-frame-wrapper {
  width: 100%;
  height: 240px;
  position: relative;
  background: #e2e8f0;
}

.sc-map-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.sc-map-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 14px;
}

.sc-map-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  overflow: hidden;
}

.sc-map-pin {
  color: #ef4444;
  font-size: 18px;
  flex-shrink: 0;
}

.sc-map-addr {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sc-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-map-dir-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: #0f172a;
  color: #ffffff !important;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

body.dark-mode .sc-map-dir-btn {
  background: var(--sc-primary);
  color: #ffffff !important;
}

.sc-map-dir-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* ═══════════════════════════════════════════════════════════
   GOOGLE REVIEWS & RATING CARD
   ═══════════════════════════════════════════════════════════ */

.sc-rating-card {
  background: var(--sc-card-bg);
  border: 1px solid var(--sc-card-border);
  border-radius: var(--sc-radius-lg);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--sc-shadow-md);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sc-rating-card:hover {
  box-shadow: var(--sc-shadow-lg);
}

.sc-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 22px;
  color: var(--sc-star);
  margin-bottom: 8px;
}

.sc-stars i {
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.35));
  transition: transform 0.2s ease;
}

.sc-stars:hover i {
  transform: scale(1.15);
}

.sc-rating-label {
  font-size: 13.5px;
  color: var(--sc-text-muted);
  font-weight: 500;
  margin: 0 0 18px;
}

.sc-google-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 28px;
  background: #ffffff;
  color: #1f2937;
  border: 1.5px solid #e5e7eb;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s var(--sc-ease);
}

body.dark-mode .sc-google-review-btn {
  background: #1e293b;
  color: #f8fafc;
  border-color: #334155;
}

.sc-google-review-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.22);
  border-color: #4285f4;
}

.sc-google-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   ADD TO CONTACT & VISITOR ANALYTICS
   ═══════════════════════════════════════════════════════════ */

.sc-add-contact-wrapper {
  margin-bottom: 18px;
  width: 100%;
}

.sc-add-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 22px;
  background: var(--sc-card-bg);
  border: 1.5px solid var(--sc-card-border);
  color: var(--sc-text);
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--sc-shadow-xs);
  transition: all 0.25s var(--sc-ease);
  box-sizing: border-box;
}

.sc-add-contact-btn:hover {
  transform: translateY(-2px);
  border-color: #10b981;
  color: #10b981;
  box-shadow: var(--sc-shadow-sm);
}

.sc-visitor-box {
  background: var(--sc-card-bg);
  border: 1px solid var(--sc-card-border);
  border-radius: var(--sc-radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  box-shadow: var(--sc-shadow-xs);
}

.sc-visitor-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sc-text);
}

.sc-visitor-badge {
  background: var(--sc-card-inner);
  border: 1px solid var(--sc-card-border);
  color: var(--sc-text);
  font-size: 13px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 30px;
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM BRAND FOOTER
   ═══════════════════════════════════════════════════════════ */

.sc-footer {
  text-align: center;
  padding: 28px 0 12px;
  border-top: 1px solid var(--sc-card-border);
  margin-top: 24px;
  width: 100%;
}

.sc-footer-brand {
  margin-bottom: 8px;
}

.sc-footer-home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--sc-text);
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: all 0.2s ease;
}

.sc-footer-home-link i {
  font-size: 11px;
  color: var(--sc-primary);
  transition: transform 0.2s ease;
}

.sc-footer-home-link:hover {
  color: var(--sc-primary);
}

.sc-footer-home-link:hover i {
  transform: translate(2px, -2px);
}

.sc-footer-tagline {
  font-size: 12.5px;
  color: var(--sc-text-muted);
  font-weight: 500;
  margin: 0 0 10px;
}

.sc-footer-copyright {
  font-size: 12px;
  color: var(--sc-text-light);
}

/* ═══════════════════════════════════════════════════════════
   MODAL WINDOWS & LIGHTBOXES
   ═══════════════════════════════════════════════════════════ */

.sc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--sc-ease);
  padding: 18px;
  box-sizing: border-box;
}

.sc-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sc-modal-card {
  background: var(--sc-card-bg);
  border: 1px solid var(--sc-card-border);
  border-radius: var(--sc-radius-xl);
  width: 100%;
  max-width: 440px;
  padding: 34px 26px;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.45);
  transform: scale(0.92);
  transition: transform 0.3s var(--sc-ease-bounce);
  box-sizing: border-box;
}

.sc-modal-overlay.active .sc-modal-card {
  transform: scale(1);
}

.sc-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sc-card-inner);
  border: 1px solid var(--sc-card-border);
  color: var(--sc-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
}

.sc-modal-close:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fecaca;
  transform: rotate(90deg);
}

.sc-qr-box {
  background: #ffffff;
  padding: 18px;
  border-radius: var(--sc-radius-lg);
  border: 1px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.sc-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.sc-btn-modal {
  flex: 1;
  padding: 13px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s var(--sc-ease);
  border: 1px solid var(--sc-card-border);
  background: var(--sc-card-inner);
  color: var(--sc-text);
  font-family: inherit;
}

.sc-btn-modal.primary {
  background: var(--sc-primary);
  color: #ffffff !important;
  border-color: var(--sc-primary);
  box-shadow: 0 4px 14px var(--sc-primary-glow);
}

.sc-btn-modal:hover {
  transform: translateY(-2px);
}

/* Video Lightbox Modal */
.sc-video-modal-card {
  max-width: 620px;
  padding: 26px 20px 20px;
}

.sc-video-modal-card--vertical {
  max-width: 380px;
}

.sc-modal-video-frame {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000000;
}

.sc-modal-video-frame--horizontal {
  aspect-ratio: 16 / 9;
}

.sc-modal-video-frame--vertical {
  aspect-ratio: 9 / 16;
  max-width: 330px;
  margin: 0 auto;
}

.sc-modal-video-frame--tiktok {
  height: 560px;
  max-width: 325px;
  margin: 0 auto;
}

.sc-modal-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Toast */
.sc-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0f172a;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 9999999;
  opacity: 0;
  transition: all 0.3s var(--sc-ease-bounce);
  pointer-events: none;
}

.sc-toast.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.sc-toast i {
  color: #10b981;
}

/* ═══════════════════════════════════════════════════════════
   ACRYLIC TABLE STANDEE CARD & PRINT STYLING
   ═══════════════════════════════════════════════════════════ */

.sc-standee-container {
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 620px;
  opacity: 0;
  pointer-events: none;
  z-index: -999;
}

.sc-standee-modal-card {
  max-width: 480px;
  padding: 24px 20px;
}

.sc-standee-preview-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f1f5f9;
  padding: 20px;
  border-radius: var(--sc-radius-lg);
  border: 1px solid #e2e8f0;
  margin: 10px 0;
}

body.dark-mode .sc-standee-preview-wrap {
  background: #0b0f19;
  border-color: #1e293b;
}

.sc-standee-card {
  background: #ffffff !important;
  color: #0f172a !important;
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 28px 22px 22px;
  box-sizing: border-box;
  text-align: center;
  font-family: var(--sc-font);
  border: 1px solid #e2e8f0;
  position: relative;
}

.sc-standee-header {
  margin-bottom: 16px;
}

.sc-standee-logo-box {
  width: 68px;
  height: 68px;
  border-radius: 100% !important;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  padding: 8px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.sc-standee-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
}

.sc-standee-brand {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a !important;
  margin: 0 0 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase !important;
}

.sc-standee-sub {
  font-size: 13.5px;
  font-weight: 600;
  text-transform: capitalize !important;
  letter-spacing: 0.02em;
  color: #64748b !important;
  margin: 0;
}

/* Corner Bracket Frame */
.sc-standee-qr-frame {
  position: relative;
  display: inline-block;
  padding: 16px;
  margin: 10px auto 14px;
  background: #ffffff;
}

.sc-st-bracket {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #0f172a;
  border-style: solid;
}

.sc-st-bracket-tl { top: 0; left: 0; border-width: 3.5px 0 0 3.5px; border-top-left-radius: 4px; }
.sc-st-bracket-tr { top: 0; right: 0; border-width: 3.5px 3.5px 0 0; border-top-right-radius: 4px; }
.sc-st-bracket-bl { bottom: 0; left: 0; border-width: 0 0 3.5px 3.5px; border-bottom-left-radius: 4px; }
.sc-st-bracket-br { bottom: 0; right: 0; border-width: 0 3.5px 3.5px 0; border-bottom-right-radius: 4px; }

.sc-standee-qr-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-standee-qr-box img,
.sc-standee-qr-box canvas {
  display: block !important;
  max-width: 170px !important;
  max-height: 170px !important;
}

/* Action Box */
.sc-standee-action-box {
  margin-bottom: 14px;
}

.sc-standee-action-title {
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #0f172a !important;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.sc-standee-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.sc-st-icon-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  line-height: 1;
}

.sc-st-icon-item svg {
  display: block;
  margin: auto;
}

/* Social Badges Row */
.sc-standee-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.sc-st-badge {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  line-height: 1 !important;
  color: #ffffff !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  text-align: center !important;
  overflow: hidden !important;
}

.sc-st-badge i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  line-height: 1 !important;
  font-size: 15px !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

.sc-st-badge svg {
  display: block;
  margin: auto;
}

.sc-st-fb { background: #1877f2; }
.sc-st-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.sc-st-tt { background: #000000; }
.sc-st-web { background: #0284c7; }
.sc-st-wa { background: #25d366; }
.sc-st-google {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ═══════════════════════════════════════════════════════════
   PRINT RULES - FULL PAGE STANDEE PRINT
   ═══════════════════════════════════════════════════════════ */
@media print {
  @page {
    margin: 8mm;
    size: portrait;
  }

  html, body {
    background: #ffffff !important;
    color: #000000 !important;
    height: 100% !important;
    min-height: 100% !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .sc-top-bar,
  .sc-profile-section,
  .sc-primary-action-wrap,
  .sc-custom-social-list,
  .sc-social-grid,
  .sc-rating-card,
  .sc-map-section,
  .sc-media-section,
  .sc-visitor-box,
  .sc-footer,
  .sc-modal-overlay,
  .sc-toast {
    display: none !important;
  }

  .sc-container {
    display: none !important;
  }

  .sc-standee-container {
    display: flex !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    min-height: 100vh !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: auto !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
    page-break-inside: avoid !important;
    page-break-after: avoid !important;
  }

  .sc-standee-card {
    width: 100% !important;
    max-width: 620px !important;
    min-height: 88vh !important;
    border: 3px solid #0f172a !important;
    border-radius: 28px !important;
    box-shadow: none !important;
    padding: 44px 36px 32px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    margin: auto !important;
  }

  .sc-standee-header {
    margin-bottom: 20px !important;
  }

  .sc-standee-logo-box {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    border: 3px solid #e2e8f0 !important;
    padding: 10px !important;
    margin: 0 auto 16px !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .sc-standee-logo {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .sc-standee-bn-logo .logo-v {
    font-size: 56px !important;
    color: #0f172a !important;
  }

  .sc-standee-bn-logo .logo-a {
    font-size: 56px !important;
    color: #6366f1 !important;
  }

  .sc-standee-brand {
    font-size: 36px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    margin: 0 0 8px !important;
  }

  .sc-standee-sub {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    letter-spacing: 0.02em !important;
    text-transform: capitalize !important;
  }

  .sc-standee-qr-frame {
    padding: 28px !important;
    margin: 12px auto 20px !important;
  }

  .sc-st-bracket {
    width: 36px !important;
    height: 36px !important;
    border-color: #0f172a !important;
  }

  .sc-st-bracket-tl { border-width: 6px 0 0 6px !important; border-top-left-radius: 8px !important; }
  .sc-st-bracket-tr { border-width: 6px 6px 0 0 !important; border-top-right-radius: 8px !important; }
  .sc-st-bracket-bl { border-width: 0 0 6px 6px !important; border-bottom-left-radius: 8px !important; }
  .sc-st-bracket-br { border-width: 0 6px 6px 0 !important; border-bottom-right-radius: 8px !important; }

  .sc-standee-qr-box img,
  .sc-standee-qr-box canvas {
    max-width: 290px !important;
    max-height: 290px !important;
    width: 290px !important;
    height: 290px !important;
  }

  .sc-standee-action-box {
    margin-bottom: 20px !important;
  }

  .sc-standee-action-title {
    font-size: 22px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 16px !important;
  }

  .sc-standee-icons-row {
    gap: 36px !important;
  }

  .sc-st-icon-item svg {
    width: 46px !important;
    height: 46px !important;
    stroke-width: 2.4 !important;
  }

  .sc-standee-badges-row {
    gap: 18px !important;
    padding-top: 22px !important;
    border-top: 2px solid #e2e8f0 !important;
  }

  .sc-st-badge {
    width: 48px !important;
    height: 48px !important;
    font-size: 20px !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .sc-st-badge i {
    font-size: 20px !important;
  }

  .sc-st-badge svg {
    width: 22px !important;
    height: 22px !important;
  }
}

/* ═════════════════════════════════════════════════════════════
   HOMEPAGE LOOKBOOK & FASHION REELS (SHARP CORNERS & 5-COL)
   ═════════════════════════════════════════════════════════════ */
.home-lookbook-section {
  padding: 80px 0 40px;
  position: relative;
  background: var(--bg);
}

.home-lookbook-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-lookbook-track::-webkit-scrollbar {
  display: none;
}

.home-video-card {
  flex: 0 0 calc((100% - (4 * 20px)) / 5);
  width: calc((100% - (4 * 20px)) / 5);
  min-width: 220px;
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden !important;
  background: #000000;
  border: none !important;
  outline: none !important;
  border-radius: 20px !important;
  -webkit-border-radius: 20px !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: -webkit-radial-gradient(white, black);
  cursor: pointer;
  scroll-snap-align: start;
  user-select: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.home-video-card:hover {
  border: none !important;
  outline: none !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.home-video-card.is-active {
  border: none !important;
  outline: none !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.home-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border: none !important;
  border-radius: 20px !important;
  -webkit-border-radius: 20px !important;
  transition: opacity 0.35s ease;
}



.home-video-caption {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 20px !important;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.home-video-frame-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 20px !important;
  -webkit-border-radius: 20px !important;
  overflow: hidden !important;
}

.home-video-frame-container iframe,
.home-video-frame-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
  border-radius: 20px !important;
  -webkit-border-radius: 20px !important;
}

/* When Playing */
.home-video-card.is-playing .home-video-poster {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.home-video-card.is-playing .home-video-play-overlay {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.home-video-card.is-playing .home-video-frame-container {
  z-index: 5;
}

@media (max-width: 1200px) {
  .home-video-card {
    flex: 0 0 calc((100% - (3 * 16px)) / 4);
    width: calc((100% - (3 * 16px)) / 4);
  }
}

@media (max-width: 900px) {
  .home-video-card {
    flex: 0 0 calc((100% - (2 * 14px)) / 3);
    width: calc((100% - (2 * 14px)) / 3);
  }
}

/* ═════════════════════════════════════════════════════════════
   VISIBLE-EDGE CARD CAROUSEL (Mobile for Smart Card & Homepage)
   Matches reference: Centered active card with visible side margins
   ═════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Standalone Smart Card Track */
  .sc-container .sc-carousel-track,
  .sc-video-section .sc-carousel-track {
    display: flex !important;
    gap: 14px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 16px calc(50vw - 100px) 24px !important;
    align-items: center !important;
    scrollbar-width: none !important;
  }

  .sc-container .sc-carousel-item,
  .sc-video-section .sc-carousel-item {
    flex: 0 0 200px !important;
    width: 200px !important;
    max-width: 210px !important;
    aspect-ratio: 9 / 16 !important;
    scroll-snap-align: center !important;
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important;
    transform: scale(0.88) !important;
    opacity: 0.55 !important;
    z-index: 1 !important;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
  }

  .sc-container .sc-carousel-item.is-active,
  .sc-video-section .sc-carousel-item.is-active {
    transform: scale(1.0) !important;
    opacity: 1 !important;
    z-index: 5 !important;
    border: none !important;
    outline: none !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45) !important;
  }

  /* Homepage Lookbook Track */
  .home-lookbook-section .prod-scroll-wrap {
    overflow: hidden;
    padding: 0 0 10px;
  }

  .home-lookbook-track {
    display: flex !important;
    gap: 14px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 16px calc(50vw - 100px) 24px !important;
    align-items: center !important;
    scrollbar-width: none !important;
  }

  .home-video-card {
    flex: 0 0 200px !important;
    width: 200px !important;
    max-width: 210px !important;
    aspect-ratio: 9 / 16 !important;
    scroll-snap-align: center !important;
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important;
    border: none !important;
    outline: none !important;
    transform: scale(0.88) !important;
    opacity: 0.55 !important;
    z-index: 1 !important;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
  }

  /* Center Active Video Card */
  .home-video-card.is-center,
  .home-video-card.is-active,
  .home-video-card.is-playing {
    transform: scale(1.0) !important;
    opacity: 1 !important;
    z-index: 5 !important;
    border: none !important;
    outline: none !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45) !important;
  }
}

@media (max-width: 480px) {
  .sc-container .sc-carousel-track,
  .sc-video-section .sc-carousel-track,
  .home-lookbook-track {
    gap: 12px !important;
    padding: 14px calc(50vw - 90px) 20px !important;
  }

  .sc-container .sc-carousel-item,
  .sc-video-section .sc-carousel-item,
  .home-video-card {
    flex: 0 0 180px !important;
    width: 180px !important;
    max-width: 185px !important;
    border-radius: 18px !important;
    -webkit-border-radius: 18px !important;
  }
}

/* Active & Playing States for Lookbook & Smart Card Videos */
.home-video-poster,
.sc-carousel-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: 20px !important;
  -webkit-border-radius: 20px !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
  background: #0b0f19;
}







.home-video-card video.sc-carousel-video,
.home-video-card iframe.sc-carousel-iframe,
.sc-carousel-item video.sc-carousel-video,
.sc-carousel-item iframe.sc-carousel-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
  border-radius: 20px !important;
  -webkit-border-radius: 20px !important;
}

.home-video-frame-container {
  pointer-events: none !important;
  z-index: 1;
}

.home-video-card.is-active iframe.sc-carousel-iframe,
.sc-carousel-item.is-active iframe.sc-carousel-iframe,
.carousel-item.is-active iframe.sc-carousel-iframe {
  pointer-events: auto !important;
  z-index: 4 !important;
}


}

/* ═══════════════════════════════════════════════════════════
   INSTAGRAM SOURCE BADGE (Subtle "View on Instagram" link)
   Shown at bottom-right of cards that have an instagram_url
   ═══════════════════════════════════════════════════════════ */
.sc-carousel-ig-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 7;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
}

.sc-carousel-ig-badge:hover {
  opacity: 1;
  transform: scale(1.15);
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════
   VIDEO CAROUSEL & EMBEDS (Clean Native & Embed Rendering)
   ═══════════════════════════════════════════════════════════ */
.home-video-card,
.sc-carousel-item,
.carousel-item {
  overflow: hidden !important;
  position: relative !important;
  background: #000000 !important;
}

/* Hide poster & play overlay once video/iframe is playing */




/* Native HTML5 Video */
.home-video-card video,
.sc-carousel-item video,
.carousel-item video,
video.sc-carousel-video,
video.banau-reel-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border: none !important;
  border-radius: inherit !important;
  z-index: 4 !important;
  background: #000000 !important;
}

/* Embed Iframes (Instagram, TikTok, YouTube, etc.) */
.sc-carousel-iframe,
.home-video-card iframe,
.sc-carousel-item iframe,
.carousel-item iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  border-radius: inherit !important;
  z-index: 4 !important;
  background: #000000 !important;
  pointer-events: auto !important;
}


/* --- BULLETPROOF VISIBILITY OVERRIDES --- */
.home-video-card .home-video-play-overlay,
.sc-carousel-item .sc-carousel-play-overlay,
.carousel-item .sc-carousel-play-overlay {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  pointer-events: auto !important;
}

.home-video-card.is-playing .home-video-play-overlay,
.sc-carousel-item.is-playing .sc-carousel-play-overlay,
.carousel-item.is-playing .sc-carousel-play-overlay {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.home-video-card .home-video-poster,
.sc-carousel-item .sc-carousel-poster,
.carousel-item .carousel-poster {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  pointer-events: auto !important;
}

.home-video-card.is-playing .home-video-poster,
.sc-carousel-item.is-playing .sc-carousel-poster,
.carousel-item.is-playing .carousel-poster {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}


/* --- FORCE ALL CARDS OPAQUE --- */
.home-video-card,
.sc-carousel-item,
.carousel-item {
  opacity: 1 !important;
}


/* --- PLATFORM BADGE --- */
.sc-carousel-platform-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 10;
  pointer-events: none;
  font-size: 16px;
  backdrop-filter: blur(4px);
}
.home-video-card.is-playing .sc-carousel-platform-badge {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}


/* --- BIG PLATFORM ICON IN CENTER --- */
.sc-platform-big-icon {
  font-size: 64px;
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  margin-bottom: 8px; /* space between icon and play pill */
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}


/* --- BIG CENTER ICON & CORNER BADGE REFINEMENTS --- */
.sc-carousel-platform-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  z-index: 10;
  pointer-events: none;
  font-size: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.home-video-card.is-playing .sc-carousel-platform-badge,
.sc-carousel-item.is-playing .sc-carousel-platform-badge {
  opacity: 0 !important;
  visibility: hidden !important;
}

.sc-platform-big-icon {
  font-size: 58px !important;
  color: #ffffff !important;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.65)) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  pointer-events: none !important;
  margin-bottom: 12px !important;
  line-height: 1 !important;
}

.sc-platform-big-icon i {
  display: inline-block;
}

.home-video-card.is-playing .sc-platform-big-icon,
.sc-carousel-item.is-playing .sc-platform-big-icon {
  opacity: 0 !important;
  visibility: hidden !important;
}



/* --- LUXURY BIG CENTER PLATFORM BUTTON --- */
.sc-carousel-center-btn {
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(255, 255, 255, 0.45);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 255, 255, 0.2);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.sc-center-brand-icon {
  font-size: 40px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.sc-center-brand-icon .fa-tiktok {
  color: #ffffff;
  filter: drop-shadow(-1.5px -1.5px 0px #00f2fe) drop-shadow(2px 2px 0px #fe0979);
}

.sc-center-brand-icon .fa-instagram {
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(220, 39, 67, 0.4));
}

.sc-center-brand-icon .fa-youtube {
  color: #ff0000;
  filter: drop-shadow(0 2px 8px rgba(255, 0, 0, 0.5));
}

.sc-center-brand-icon .fa-play {
  font-size: 26px;
  color: #ffffff;
  padding-left: 4px;
}

.sc-center-play-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  padding-left: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(15, 23, 42, 0.9);
  transition: transform 0.3s ease;
}

.home-video-card:hover .sc-carousel-center-btn,
.sc-carousel-item:hover .sc-carousel-center-btn {
  transform: scale(1.18);
  border-color: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.75), 0 0 35px rgba(255, 255, 255, 0.4);
}

.home-video-card:hover .sc-center-play-badge,
.sc-carousel-item:hover .sc-center-play-badge {
  transform: scale(1.1);
  background: #0f172a;
  color: #ffffff;
  border-color: #ffffff;
}

.home-video-card.is-playing .sc-carousel-center-btn,
.sc-carousel-item.is-playing .sc-carousel-center-btn {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

