/** Shopify CDN: Minification failed

Line 312:8 Expected identifier but found whitespace
Line 313:6 Unexpected "{"
Line 314:13 Expected ":"
Line 318:2 Expected identifier but found "!"
Line 326:8 Expected identifier but found whitespace
Line 327:6 Unexpected "{"
Line 328:13 Expected ":"
Line 332:2 Expected identifier but found "!"

**/
/* =============================================
   BYE BLING - COMPLETE STYLES
   Optimized & DRY (Don't Repeat Yourself)
   ============================================= */

/* =============================================
   FONTS & ROOT VARIABLES
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

:root {
  /* Colors */
  --color-background: #FAF1DF;
  --color-main-text: #387366;
  --color-secondary-text: #999;
  --color-text-light: #faf1df;
  --color-text-dark: #606060;
  --color-button-bg: rgb(255, 251, 242);
  --color-button-border: rgb(96, 96, 96);
  --color-overlay-green: #6c8780;
  --color-bg-green: #417e71;
  --color-phone-bg: #4A9B8E;

  /* Fonts */
  --font-primary: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes */
  --fs-heading-xl: 40px;
  --fs-heading-lg: 36px;
  --fs-heading-md: 32px;
  --fs-heading-sm: 28px;
  --fs-body-lg: 20px;
  --fs-body-md: 18px;
  --fs-body-sm: 17px;
  --fs-body-xs: 16px;
  --fs-body-tiny: 15px;
  --fs-body-mini: 14px;

  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-2xl: 40px;
  --spacing-3xl: 50px;
  --spacing-4xl: 60px;
  --spacing-5xl: 80px;
  --spacing-6xl: 0px;

  /* Gaps */
  --gap-sm: 16px;
  --gap-md: 30px;
  --gap-lg: 60px;
  --gap-xl: 70px;
  --gap-2xl: 80px;

  /* Padding Content */
  --padding-content-x: 250px;
  --padding-content-y: 80px;

  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 40px;

  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease-in-out;
  --transition-fast: 0.5s ease;

  /* Shadows */
  --shadow-button: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-phone: 0 20px 60px rgba(0, 0, 0, 0.3);

  /* Line Heights */
  --lh-tight: 1em;
  --lh-normal: 1.4em;
  --lh-relaxed: 1.5em;
  --lh-loose: 1.6em;

  /* Letter Spacing */
  --ls-tight: -0.01em;
  --ls-normal: 0.01em;
  --ls-medium: -0.5px;

  /* Animations */
  --animation-duration: 2.5s;

  /* Max Widths */
  --max-width-content: 900px;
  --max-width-grid: 1200px;
  --max-width-container: 1200px;
  --max-width-logo: 1000px;

  /* Misc */
  --video-aspect-ratio: 1.80025;

  /* Imported Variables */
  --font-selector: SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlESTBMQ0FpZDJkb2RDSWdOVEF3;
  --extracted-attributes: "opsz" 24, "wght" 500;

  /* New Consolidated Colors */
  --color-uni-bg: #006a5c;
  --color-uni-text: rgb(250, 241, 223);
  --color-star: #606060;
}

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */

@keyframes moveUpDown {
  0% {    transform: translateY(0px);  }
  50% {    transform: translateY(10px);  }
  100% {    transform: translateY(0px);  }
}

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

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

.bb-about-wrapper {
  position: relative;
  width: 100%;
  background: #ffffff;
}

.bb-video-container {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  flex: none;
  aspect-ratio: var(--video-aspect-ratio);
  padding: 0 0.2%;
  box-sizing: border-box;
}

.bb-video {
  cursor: auto;
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: block;
  object-fit: cover;
  background-color: #c3dad475;
  object-position: 50% 50%;
}

.bb-fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-overlay-green);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
  z-index: 2;
}

.bb-content-flow {
  position: relative;
  z-index: 3;
  width: 100%;
}

.bb-hero-spacer {
  height: 100vh;
  width: 100%;
}

.bb-text-content {
  position: relative;
  z-index: 4;
  flex-flow: column;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: var(--gap-2xl);
  width: 100%;
  min-height: 1940px;
  padding: var(--padding-content-y) var(--padding-content-x) var(--spacing-6xl) var(--padding-content-x);
  margin: 0 auto;
  overflow: visible;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #38736500 10%, #264d44ad 25%, #21443ccf 50%, #19332d 80%);
}

/* Content blocks */
.bb-content-block {
  width: 100%;
  max-width: var(--max-width-content);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-md);
  margin: 20px 0 0 0;
  padding: 0;
}

.bb-content-block--grid {
  max-width: var(--max-width-grid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2xl);
  align-items: start;
  margin: 20px;
  padding: 10px;
}

.bb-grid-col {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  margin: 0;
  padding: 0;
}

/* Typography */
.bb-main-title {
  font-family: var(--font-heading);
  font-size: var(--fs-heading-xl);
  font-weight: 700;
  line-height: var(--lh-relaxed);
  text-align: left;
  color: var(--color-text-light);
  text-transform: capitalize;
  letter-spacing: normal;
  margin: 0;
  padding: 0;
  width: 100%;
}

.bb-text-body {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  font-weight: 400;
  line-height: var(--lh-loose);
  text-align: justify;
  color: var(--color-text-light);
  letter-spacing: var(--ls-normal);
  width: 100%;
  margin: 0;
  padding: 0;
}

.bb-text-body p {
  margin: 0 0 var(--spacing-lg) 0;
  padding: 0;
  color: inherit;
}

.bb-text-body p:last-child {
  margin-bottom: 0;
}

/* Text block color overrides 
.bb-text-body[data-text-block="intro"] {
  color: {
      {
      section.settings.intro_text_color
    }
  }

  !important;
}*/

.bb-text-body[data-text-block="intro"] * {
  color: inherit !important;
}

/* .bb-text-body[data-text-block="story"] {
  color: {
      {
      section.settings.story_text_color
    }
  }

  !important;
} */

.bb-text-body[data-text-block="story"] * {
  color: inherit !important;
}

.bb-text-body[data-text-block="values"] {
  color: {
      {
      section.settings.brand_text_color
    }
  }

  !important;
}

.bb-text-body[data-text-block="values"] * {
  color: inherit !important;
}

.bb-text-body[data-text-block="archetype"] {
  color: {
      {
      section.settings.archetype_text_color
    }
  }

  !important;
}

.bb-text-body[data-text-block="archetype"] * {
  color: inherit !important;
}

/* Values list */
.bb-value-item {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  font-weight: 400;
  line-height: var(--lh-loose);
  text-align: justify;
  color: var(--color-text-light);
  letter-spacing: var(--ls-normal);
  display: block;
  margin: 0;
}

.bb-value-name {
  font-weight: 700;
  margin-right: var(--spacing-2xl);
}

.bb-value-desc {
  font-weight: 400;
}

/* CTA buttons */
.about-us-buttons {
  display: flex;
  gap: var(--gap-sm);
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin: 0;
  padding: 0;
}

.about-us-buttons button {
  height: auto;
  width: auto;
  opacity: 1;
  will-change: transform;
  cursor: pointer;
  outline: none;
}

.btn-notify {
  margin-bottom: 40%;
}

.btn-home,
.btn-notify {
  background-color: var(--color-button-bg);
  border: 1px solid var(--color-button-border);
  border-radius: var(--radius-sm);
  box-shadow: none;
  padding: 12px 28px;
  opacity: 1;
  transform: perspective(1200px);
  transition: all var(--transition-base);
}

.btn-notify p,
.btn-notify,
.btn-home p,
.btn-home {
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: var(--fs-body-md);
  font-weight: 600;
  font-style: solid;
  margin: 0;
}

.btn-notify:hover,
.btn-home:hover {
  background-color: var(--color-button-border);
  box-shadow: var(--shadow-button);
  border-color: var(--color-button-border);
}

.btn-home:hover p {
  color: var(--color-text-light);
}

.btn-notify:hover p {
  color: var(--color-text-light);
}

.btn-mix-mood {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid var(--color-text-light);
  border-radius: var(--radius-sm);
  box-shadow: none;
  padding: 12px 28px;
  opacity: 1;
  will-change: auto;
  transform: perspective(1200px);
  transition: all var(--transition-base);
}

.btn-mix-mood h6,
.btn-mix-mood {
  color: var(--color-text-light);
  font-family: var(--font-primary);
  letter-spacing: var(--ls-medium);
  line-height: var(--lh-normal);
  text-align: center;
  font-size: var(--fs-body-md);
  font-weight: 400;
  margin: 0;
}

.btn-mix-mood:hover {
  background-color: var(--color-text-light);
  border-color: var(--color-text-light);
}

.btn-mix-mood:hover h6 {
  color: rgb(0, 0, 0);
}
/* Base class for all scroll-animated elements */
.js-scroll-anim {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

/* 1. Slide Up Animation (for titles) */
.js-scroll-anim--slide-up {
  transform: translateY(20px);
}

.js-scroll-anim--slide-up.scroll-anim-active {
  opacity: 1;
  transform: translateY(0);
}

/* 2. Simple Fade Animation (for text bodies) */
.js-scroll-anim--fade {
  transition-delay: 0.2s; /* Slight delay after title */
}

.js-scroll-anim--fade.scroll-anim-active {
  opacity: 1;
}

/* 3. Fade Up for Buttons (A bit more subtle) */
.js-scroll-anim--fade-up-buttons {
  transform: translateY(10px);
}

.js-scroll-anim--fade-up-buttons.scroll-anim-active {
  opacity: 1;
  transform: translateY(0);
}

/* Wrapper for Titles (to apply animation to the container) */
.bb-main-title-wrapper {
  display: flex; /* Ensures it takes up the necessary space */
  width: 100%;
}
/* =============================================
   AI EXPERIENCE SECTION
   ============================================= */

.ai-experience-section {
  background: var(--color-bg-green);
  padding: var(--padding-content-y) var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

.ai-experience-container {
  max-width: var(--max-width-container);
  margin: 0 auto;
  width: 100%;
}

.ai-experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.ai-experience-text {
  padding-right: var(--spacing-lg);
}

.ai-experience-heading {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: var(--fs-heading-xl);
  font-weight: 700;
  line-height: var(--lh-relaxed);
  text-align: left;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
  will-change: transform;
  opacity: 1;
  transform: none;
}

.ai-experience-description {
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: var(--fs-body-md);
  font-weight: 400;
  line-height: var(--lh-normal);
  text-align: left;
  margin: 0 0 var(--gap-md) 0;
  padding: 0;
  will-change: transform;
  opacity: 1;
  transform: none;
}

.ai-experience-buttons {
  display: flex;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}

/* Phone mockup */
.ai-experience-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  opacity: 1;
  will-change: transform;
  transition: transform var(--transition-fast);
  animation: phoneFloat var(--animation-duration) ease-in-out infinite;
}

.phone-mockup:hover {
  animation-play-state: paused;
  transform: scale(1.02);
}

.phone-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2c2c2e, #1c1c1e);
  border-radius: var(--radius-xl);
  box-shadow:
    var(--shadow-phone),
    inset 0 0 0 8px #1c1c1e,
    inset 0 0 0 12px #3a3a3c;
  z-index: 1;
  pointer-events: none;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 25px;
  background: #1c1c1e;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 3;
}

.phone-screen {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--color-phone-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 2;
}

.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--color-phone-bg);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(250, 241, 223, 0.7);
  font-family: var(--font-body);
  font-size: var(--fs-body-mini);
  text-align: center;
  padding: var(--spacing-lg);
}

/* =============================================
   CUSTOM FOOTER
   ============================================= */

.bb-footer {
  background-color: var(--color-background);
  padding: var(--spacing-4xl) var(--spacing-lg) var(--gap-md);
  text-align: center;
}

.bb-footer-top {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: flex-start;
  margin-bottom: var(--spacing-2xl);
  margin-left: 25%;
}

.bb-footer-video-container {
    width: 60px;
    height: 60px; 
    position: relative; 
    transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.bb-footer-video {
  /* width: 100%; */
  height: 100%;
  display: block;
  margin-left: 25%;
  animation: moveUpDown var(--animation-duration) ease-in-out infinite;
  will-change: transform, opacity;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.bb-footer-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block; 
    transition: transform var(--transition-slow), opacity var(--transition-slow);
} 
.bb-footer-video video:hover { 
    transform: scale(0.8) translateY(-30px) translateX(7px); 
    opacity: 0.85;  
}
.bb-footer-menus {
  display: flex;
  justify-content: center;
  gap: var(--gap-xl);
  margin-top: -10px;
}

.bb-menu-col h4 {
  display: none;
}

.bb-menu-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.bb-menu-col li {
  margin-bottom: var(--spacing-xs);
}

.bb-menu-col a {
  font-family: var(--font-body);
  font-size: var(--fs-body-tiny);
  font-weight: 500;
  color: var(--color-secondary-text);
  text-decoration: none;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  transition: color var(--transition-base);
}

.bb-menu-col a:hover {
  color: var(--color-main-text);
}

.bb-footer-bottom {
  font-family: var(--font-body);
  font-size: var(--fs-body-tiny);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-secondary-text);
}

.bb-footer-logo {
  width: 70vw;
  max-width: var(--max-width-logo);
  height: auto;
  margin-bottom: var(--spacing-md);
}

.bb-footer-bottom .bb-designed {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body-tiny);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  font-weight: 400;
  color: var(--color-main-text);
}

.bb-footer-bottom .bb-designed:hover {
  color: var(--color-secondary-text);
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

html,
body {
  max-width: 100%;
  scroll-behavior: smooth;
}

.btn-home:focus,
.btn-mix-mood:focus {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

/* =============================================
   RESPONSIVE DESIGN - ALL BREAKPOINTS
   ============================================= */

/* ========== TABLET (max-width: 1024px) ========== */
@media screen and (max-width: 1024px) {
  :root {
    --fs-heading-xl: 38px;
    --fs-body-lg: 18px;
    --fs-body-md: 17px;
    --padding-content-x: 40px;
    --padding-content-y: 60px;
    --gap-2xl: 60px;
  }

  .bb-video-container {
    max-width: 100%;
    padding: 0;
  }

  .bb-text-content {
    background: linear-gradient(#38736500 0%, #264d44ad 24%, #21443ccf 50.2041%, #19332d 87.9241%);
  }

  .ai-experience-content {
    gap: var(--gap-3xl);
  }

  .phone-mockup {
    width: 280px;
    height: 560px;
  }
}

/* ========== TABLET/MOBILE (max-width: 900px) ========== */
@media (max-width: 900px) {
  .bb-footer-video video {
    margin-left: -7%;
    width: 40%;
    height: 40%;
  }

  .bb-footer-top {
    grid-template-columns: 1fr;
    align-items: left;
    text-align: left;
    margin-bottom: var(--gap-md);
    margin-left: 0;
  }

  .bb-footer-video-container {
    margin: 0 auto var(--gap-md);
  }

  @keyframes moveUpDownup {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(8px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  .bb-footer-video {
    animation: moveUpDown var(--animation-duration) ease-in-out infinite;
  }

  .bb-footer-menus {
    flex-direction: column;
    gap: var(--spacing-xl);
    align-items: flex-start;
    height: min-content;
    display: flex;
    width: 100%;
    margin-top: 0;
  }

  .bb-menu-col ul { 
    flex-flow: column;
    flex: none;
    align-items: flex-start;
    gap:0px;
    width: 100%;
    /* width: min-content; */
    line-height: 1em;
    letter-spacing: -0.01em;
    font-size: var( --fs-body-xs);
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible;
    font-weight: 500;
  }

  .bb-footer-logo {
    width: 90vw;
  }
}

/* ========== MOBILE (max-width: 768px) ========== */
@media screen and (max-width: 768px) {
  :root {
    --fs-heading-xl: 32px;
    --fs-body-lg: 17px;
    --fs-body-md: 16px;
    --padding-content-x: 25px;
    --padding-content-y: 50px;
    --gap-2xl: 50px;
    --gap-md: 25px;
    --gap-sm: 15px;
  }

  .bb-video-container {
    padding: 0;
  }

  .bb-text-content {
    background: linear-gradient(#38736500 0%, #264d44ad 24%, #21443ccf 50.2041%, #19332d 87.9241%);
  }

  .bb-content-block--grid {
    grid-template-columns: 1fr;
  }

  .bb-main-title {
    text-align: left;
  }

  .bb-text-body,
  .bb-value-item {
    text-align: left;
  }

  .about-us-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-home,
  .btn-mix-mood {
    width: 100%;
    min-width: auto;
  }

  .bb-value-name {
    display: block;
    margin-right: 0;
    margin-bottom: var(--spacing-xs);
  }

  .bb-value-desc {
    display: block;
  }

  /* AI Experience Section */
  .ai-experience-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .ai-experience-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    text-align: center;
  }

  .ai-experience-text {
    padding-right: 0;
    order: 2;
  }

  .ai-experience-heading,
  .ai-experience-description {
    text-align: center;
  }

  .ai-experience-buttons {
    justify-content: center;
  }

  .phone-mockup {
    transform: rotateY(0deg) rotateX(0deg);
    width: 300px;
    height: 600px;
  }
}

/* ========== SMALL MOBILE (max-width: 480px) ========== */
@media screen and (max-width: 480px) {
  :root {
    --fs-heading-xl: 28px;
    --fs-body-lg: 16px;
    --fs-body-md: 15px;
    --padding-content-y: 40px;
    --padding-content-x: 15px;
  }

  .bb-video-container {
    padding: 0;
  }

  .bb-text-content {
    background: linear-gradient(#38736500 0%, #264d44ad 24%, #21443ccf 50.2041%, #19332d 87.9241%);
  }

  /* AI Experience Section */
  .phone-mockup {
    width: 260px;
    height: 520px;
  }

  .ai-experience-buttons button {
    padding: 10px 22px;
    font-size: var(--fs-body-mini);
    width: 100%;
    max-width: 200px;
  }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .phone-mockup:hover,
  .ai-experience-buttons button:hover {
    transform: none;
  }
}

/* ========== PRINT STYLES ========== */
@media print {

  .bb-video-container,
  .bb-fade-overlay,
  .bb-hero-spacer {
    display: none;
  }

  .bb-text-content {
    background: linear-gradient(#38736500 0%, #264d44ad 24%, #21443ccf 50.2041%, #19332d 87.9241%);
  }
}

/* =============================================
   PERFORMANCE OPTIMIZATION
   ============================================= */

.phone-mockup,
.phone-video {
  will-change: transform;
  transform: translateZ(0);
}

/* ============================================= ZEIN STYLES ============================================= */

/* ===== GENERAL RESET ===== */
/* =============================================
   GLOBAL RESET (Keep existing)
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-heading);
}

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

.unisex-hero {
  background-size: cover;
  background-position: 75% center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 80vh; /* Set as requested for large screen */
  min-height: 650px;
}

.unisex-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 220px 80px; /* Desktop padding */
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center; /* Vertically center content on desktop */
}

.unisex-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 45%;
}


/* --- Typography Styles --- */

/* Title (UNISEX SET) - Acts like your old .uni-title, but uppercase and smaller */
.unisex-hero__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5em;
  text-align: left; 
  margin-bottom: 5px;
  /* Color is set via inline style in Liquid */
}

/* Subtitle (Quote Text) - Acts like your old .uni-text, but visually larger */
.unisex-hero__subtitle {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5em;
  paragraph-spacing: 0px;
  text-align: left; 
  margin-bottom: 30px; /* Space before buttons */
  /* Color is set via inline style in Liquid */
}

/* --- Button Styles --- */
.unisex-hero__buttons {

  color: #faF1df;
  display: flex;
  gap: 15px; /* Space between buttons */
  flex-wrap: wrap;
}

.unisex-hero__btn { 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-color: #606060;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-body); /* Using a body font for button text is common */
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent; /* Ensure equal spacing/sizing for both buttons */
}

/* Hover effects for visual feedback */
.unisex-hero__btn:hover {
  background-color: #606060 !important;
  color: #faF1df !important;
}

/* Secondary Button Icon (the '✧' or '✦') */
.unisex-hero__icon {
  margin-left: 8px;
  font-weight: bold;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

/* Tablet Version (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .unisex-hero__container {
    padding: 120px 40px; /* Reduced vertical padding */
  }
  
  .unisex-hero__content {
    max-width: 50%; /* Content can take more space on smaller screens */
  }

  .unisex-hero__title {
    font-size: 18px;
  }
  
  .unisex-hero__subtitle {
    font-size: 28px;
  }
}


/* Mobile Version (Max 767px) */
/* =============================================
   MOBILE VERSION (Max 767px) - REVISED COMPACT LOOK
   ============================================= */
@media (max-width: 767px) {
  /* --- SECTION/BACKGROUND --- */
  .unisex-hero {
    height: 65vh; 
    min-height: 550px;
    background-position: 70% bottom; /* Adjust to ensure couple is visible */
  }
  
  /* --- CONTAINER (Controls Content Position) --- */
  .unisex-hero__container {
    padding: 40px 20px; /* Use equal, standard padding for clean edges */
    height: 100%;
    align-items: flex-start; /* CRITICAL: Aligns content to the TOP */
  }
  
  /* --- CONTENT BLOCK (Text/Buttons) --- */
  .unisex-hero__content {
    /* Override full-width setting for compact look */
    max-width: 50%; /* Constrain width to keep it small and left-aligned */
    width: auto; 
    
    /* Remove padding/background added previously, as the screenshot is clean */
    background: none; 
    padding: 0; 
  }

  /* --- TEXT SIZING (Smaller for compact look) --- */
  .unisex-hero__title {
    font-size: 18px; /* UNISEX SET */
    font-weight: 700;
    
  line-height: 1.6em;
  paragraph-spacing: 20px;
    margin-bottom: 5px;
  }
  
  .unisex-hero__subtitle {
    /* Smallest font size for the quote */
      font-size: 10px;
  font-weight: 700;
  line-height: 1.2em;
  paragraph-spacing: 0px;
    margin-bottom: 20px;
  }

  /* --- BUTTONS (Small, Stacked, Compact) --- */
  .unisex-hero__buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 5px; /* Tighter gap */
    width: 100%; 
  }

  .unisex-hero__btn {
    width: auto; /* Allow buttons to shrink based on content/padding */
    align-self: flex-start; /* Align stacked buttons to the left */
    border-color: #606060;
    /* Very small padding and font size to match the compact screenshot */
    font-size: 10px; 
    padding: 8px 15px; 
  }
}/* ============================================= NIZAR STYLES ============================================= */

.hp-ai-experience-section {
  background-color: var(--color-background);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 136px 0;
}

.floating-star {
  font-family: var(--font-heading);
  font-size: 141px;
  line-height: 1.5em;
  color: var(--color-star);
  font-weight: 700;
  animation: float 3s ease-in-out infinite;
  display: block;
  text-transform: uppercase;
  position: absolute;
  left: 170px;
  top: 240px;
  z-index: 2;
  opacity: 0.53;
  pointer-events: none;
}


@keyframes float {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-20px);
  }
}


.hp-ai-experience-video {
  width: 213px;
  height: auto;
  border-radius: 12px;
  animation: float 2.5s ease-in-out infinite;
  box-shadow: none;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  background-color: transparent;
  padding-bottom: 20px;
}

.video-wrap {
  display: inline-block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.video-wrap:hover {
  transform: scale(0.9) translateY(-30px);
  opacity: 0.85;
}



.hp-ai-experience-texts {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  max-width: 250px;
}

.hp-ai-text-line {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-star);
  margin: 5px 0;
  padding: 0 5px;
  white-space: nowrap;
}

.hp-ai-text-line:nth-child(1) {
  font-size: 28px;
  letter-spacing: 0.06em;

}

.hp-ai-text-line:nth-child(3) {
  font-style: italic;
}

.hp-ai-experience-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: rgb(35, 31, 32);
  background: var(--color-button-bg);
  border: 1px solid var(--color-star);
  padding: 12px 24px;
  border-radius: 10px;
  letter-spacing: 0em;
  display: block;
  margin: 0 auto;
  max-width: 220px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transform: perspective(1200px)
}

.hp-ai-experience-btn:hover {
  background: rgb(35, 31, 32);
  color: var(--color-button-bg);

}

@media (max-width: 1400px) {
  .floating-star {
    left: 128px !important;
    font-size: 99px !important;

  }
}

@media (max-width: 810px) {
  .floating-star {
    left: 60px !important;
    top: 340px !important;
    font-size: 50px !important;

  }

  .hp-ai-experience-video {
    width: 90px;

  }

  .hp-ai-text-line,
  .hp-ai-experience-btn {
    font-size: 12px !important;
  }
}

/* ============================================= HAIDAR STYLES ============================================= */



.hero-video-section {
  position: relative;
  width: 100%;
  height: 939px;
  overflow: hidden;
}

/* background video */
.hero-bg-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  object-position: 50% 50%;
}

/* airplane wrapper  */
.plane-wrapper {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: floatUpDown 1.5s ease-in-out infinite;
}

/* airplane video  */
.floating-center-video {
  width: 268px;
  height: 152px;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* hover */
.plane-wrapper:hover .floating-center-video {
  transform: translateY(-50px) scale(0.8);
  opacity: 0.7 !important;
}

/* banner svg */
.banner-svg {
  position: absolute;
  height: 480px;
  width: 2529px;
  top: 150px;
  left: 100%;
  overflow: visible;
  z-index: 3;
  animation: slideClouds 5s linear forwards;
}

/* buttons */
.hero-action-buttons {
  position: absolute;
  top: 700px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}

/* button */
.bb-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 20px;
  background-color: var(--color-button-bg);
  border-radius: 10px;
  border: 1px solid var(--color-star);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6em;
  opacity: 0;
  transition: opacity 0.4s, transform 1s;
  animation: fadeInUp 0.4s ease 1.5s forwards;
}

.bb-btn:hover {
  background-color: var(--color-star);
  color: var(--color-button-bg);
}

/* mobile */
@media (max-width: 810px) {
  .plane-wrapper {
    top: 20%;
  }

  .floating-center-video {
    width: 190px;
  }

  .hero-bg-video {
    height: 755px;
  }

  .hero-action-buttons {
    top: 580px;
  }

  .bb-btn {
    text-align: center;
    font-size: 13px;
    padding: 4px 10px;
  }

  .banner-svg {
    opacity: 0;
  }
}

/* animations */
@keyframes floatUpDown {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideClouds {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 100vw + 500px));
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
  }
}

/*
  Snippet: section-video-story.css
  Optimized for 100% visual match.
*/

.video-story-section-wrapper {
  position: relative;
  width: 100%;
  height: 80vh; 
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-story-section-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* 1. Video Background Styling */
.video-story-background {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  opacity: 1;
  overflow: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-story-image-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* 2. Content Overlay Styling */
.video-story-content-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FAF1DF ; 
  padding: 20px;
  max-width: 90%;
}

.video-story-content-container {
  /* Dynamic opacity (0.50) */
  /* background-color: #666666;/ */
  /* Precise padding for the perfect box size match */
  padding: 20px 30px; 
  display: inline-flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0; 
  gab: 20px;
  box-sizing: border-box; 
  /* Critical for line wrapping: Forces the text to break exactly as in the video */
  max-width: 350px; 
}

.video-story-heading {
  font-family: inherit;
    text-align: center;
  color: #FAF1DF ;  
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700; /* Medium weight */
  margin: 0 0 5px 0; 
  line-height: 1.5em;
}

.video-story-subtext {
  font-family: inherit;
  /* Looks like the same size as the heading, maybe 1em */
  font-size: 22px; 
  font-weight: 700; /* Regular weight */ 
  margin: 0 0 20px 0;
  line-height: 1.5em;
  /* Forces the text to fit the narrow container, matching the line break in the video */
  white-space: normal; 
}

/* 3. Button Styling */
.video-story-button {
  display: inline-block; 
  background-color: #fffbf2;
  border-color: #606060;
  color: #666666; 
  text-decoration: none; 
  padding: 10px 20px; 
  font-size: 18px;
  font-weight: 700; 
  border-radius: 10px;
  letter-spacing: 0.05em; 
  transition: opacity 0.3s ease; 
  cursor: pointer;
  will-change: auto;
}

.video-story-button:hover {
  color: #FAF1DF;
  background-color: #666666; 
}

.bb-colc-title {
  color: #606060;
  text-align: center;
}

/* 4. Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .hero-video-section {
    height: auto;
  }

  .video-story-section-wrapper {
    height: 400px;
  }

  .video-story-content-container {
      padding: 15px 20px;
      max-width: 90%;
  }
  
  .video-story-heading {
    font-size: 1em;
  }

  .video-story-subtext {
    font-size: 0.9em;
  }
}