:root{
    --bg:#f4f1ec;
    --surface:#ffffff;
    --surface-2:#ffffff;
    --text:#1a1a1a;
    --muted:#666666;
    --line:#ddd6cd;
    --brand:#000000;
    --brand-2:#F26424;
    --accent:#F26424;
    --accent-soft:#fff;
    --success:#2f6b4f;
    --radius:18px;
    --radius-sm:12px;
    --shadow:0 10px 28px rgba(25,20,14,.08);
    --container:1180px;
    --header-h:76px;
  }

  *{box-sizing:border-box}
  html{scroll-behavior:smooth}
  body{
    margin:0;
    font-family: "Inter", "Be Vietnam Pro", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color:var(--text);
    background:var(--bg);
    line-height:1.55;
  }

  img{max-width:100%;display:block}
  a{text-decoration:none;color:inherit}
  button,input,select{font:inherit}

  .container{
    width:min(var(--container), calc(100% - 32px));
    margin:0 auto;
  }

  .section{padding:80px 0}
  .section-head{
    text-align:center;
    max-width:760px;
    margin:0 auto 34px;
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:12px;
    font-size:.78rem;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--accent);
  }
  .eyebrow::before,.eyebrow::after{
    content:"";
    width:24px;
    height:1px;
    background:var(--brand-2);
    opacity:.45;
  }
  h1,h2,h3,h4,p{margin:0}
  h1,h2,h3,h4,.eyebrow,.package-badge,.logo,.footer-brand{
    font-family: "Inter", "Be Vietnam Pro", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  }
  h1{
    font-size:clamp(2.4rem, 4vw, 4.5rem);
    line-height:1.02;
    letter-spacing:-.04em;
    font-weight:900;
  }
  h2{
    font-size:clamp(1.9rem, 3vw, 2.8rem);
    line-height:1.08;
    letter-spacing:-.03em;
    font-weight:850;
    margin-bottom:10px;
  }
  .section-head p{
    color:var(--muted);
    font-size:1.03rem;
  }

  .btn:hover{transform:translateY(-1px)}

  .btn-orange{
    background:#F26424;
    font-weight: 800 !important;
    color:#fff;
    box-shadow:var(--shadow);
  }
  .btn-white{
    background:#fff;
    color:var(--text);
    border-color:var(--line);
  }
  .btn-ghost{
    background:transparent;
    color:var(--text);
    border-color:var(--line);
  }
  .btn-gold{
    background:var(--accent);
    color:#fff;
  }

  /* Header */
  .site-header{
    position:sticky;
    top:0;
    z-index:200;
    background:rgba(246,243,238,.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(229,221,210,.8);
  }
  .header-inner{
    min-height:var(--header-h);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-size:.95rem;
  }
  .logo-mark{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#000000;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:.75rem;
    font-weight:900;
    box-shadow:var(--shadow);
  }
  .nav-desktop{
    display:flex;
    align-items:center;
    gap:26px;
  }
  .nav-desktop a{
    font-size:.9rem;
    font-weight:700;
    color:#3c342c;
  }
  .header-actions{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .menu-toggle{
    display:none;
    width:46px;
    height:46px;
    border-radius:12px;
    border:1px solid var(--line);
    background:#fff;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
  }
  .menu-toggle span{
    width:18px;
    height:2px;
    background:var(--text);
    border-radius:999px;
    transition:.2s ease;
  }

  .mobile-panel{
    position:fixed;
    inset:var(--header-h) 0 auto 0;
    background:rgba(246,243,238,.98);
    border-bottom:1px solid var(--line);
    box-shadow:var(--shadow);
    display:none;
  }
  .mobile-panel.open{display:block}
  .mobile-nav{
    display:grid;
    gap:10px;
    padding:18px 16px 22px;
  }
  .mobile-nav a{
    padding:12px 14px;
    border-radius:12px;
    background:#fff;
    border:1px solid var(--line);
    font-weight:700;
  }

  /* Hero */
  .hero{
    padding:42px 0 68px;
    background:
      radial-gradient(circle at 10% 10%, rgba(183,134,70,.08), transparent 24%),
      radial-gradient(circle at 90% 20%, rgba(138,106,61,.08), transparent 20%),
      var(--bg);
  }

  .meta-card{
    background:rgba(255,255,255,.7);
    border:1px solid var(--line);
    border-radius:16px;
    padding:16px;
    box-shadow:var(--shadow);
  }
  .meta-label{
    font-size:.74rem;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:var(--muted);
    font-weight:800;
    margin-bottom:6px;
  }
  .meta-value{
    font-size:1.18rem;
    font-weight:900;
  }
  .hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:18px;
  }
  .hero-note{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    color:var(--muted);
    font-size:.93rem;
  }

  /* Feature strip */
 
  .feature-box{
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    padding:18px;
  }
  .feature-box h3{
    font-size:1rem;
    margin-bottom:6px;
    font-weight:850;
  }
  .feature-box p{
    color:var(--muted);
    font-size:.94rem;
  }

  /* Packages */
  .packages{
    display:grid;
    gap:18px;
  }
  .package{
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow);
    overflow:hidden;
    display:grid;
    grid-template-columns:1.2fr .8fr;
  }
  .package.highlight{
    border:1.5px solid var(--brand);
  }
  .package-main,.package-side{
    padding:26px;
  }
  .package-side{
    border-left:1px solid var(--line);
    background:linear-gradient(180deg, #fff, #faf8f4);
  }
  .package-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:16px;
    margin-bottom:10px;
  }
  .package h3{
    font-size:1.45rem;
    font-weight:900;
    margin-bottom:4px;
  }
  .package-sub{
    color:var(--muted);
    font-size:.94rem;
  }
  .package-badge{
    padding:8px 12px;
    border-radius:999px;
    background:var(--brand);
    color:#fff;
    font-size:.74rem;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
  }
  .price{
    display:flex;
    align-items:flex-end;
    gap:8px;
    margin:14px 0 18px;
  }
  .price strong{
    font-size:2.2rem;
    line-height:1;
    font-weight:950;
  }
  .price span{
    color:var(--muted);
    font-weight:700;
    transform:translateY(-2px);
  }
  .stats-row{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:16px;
  }
  .stat-chip{
    background:var(--surface-2);
    border:1px solid var(--line);
    padding:10px 12px;
    border-radius:12px;
    font-size:.86rem;
    font-weight:800;
    color:#333333;
  }
  .feature-list{
    list-style:none;
    display:grid;
    gap:10px;
    padding:0;
    margin:0;
  }
  .feature-list li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    color:#433a31;
  }
  .feature-list li::before{
    content:"✓";
    color:var(--success);
    font-weight:900;
    flex:0 0 auto;
  }
  .field{
    display:grid;
    gap:6px;
    margin-bottom:14px;
  }
  .field label{
    font-size:.78rem;
    text-transform:uppercase;
    letter-spacing:.1em;
    color:var(--muted);
    font-weight:800;
  }
  .field input,.field select{
    width:100%;
    min-height:46px;
    border:1px solid var(--line);
    border-radius:12px;
    background:#fff;
    padding:0 14px;
  }
  .side-note{
    margin-top:10px;
    color:var(--muted);
    font-size:.85rem;
  }

  /* Itinerary */
  .itinerary-list{
    display:grid;
    gap:14px;
  }
  .itinerary-item{
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    overflow:hidden;
    box-shadow:var(--shadow);
  }
  .itinerary-trigger{
    width:100%;
    background:transparent;
    border:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    text-align:left;
    padding:20px 22px;
    font-size:1.05rem;
    font-weight:900;
    cursor:pointer;
  }
  .itinerary-trigger small{
    display:block;
    color:var(--muted);
    font-size:.82rem;
    font-weight:700;
    margin-top:3px;
  }
  .plus{
    width:34px;
    height:34px;
    border-radius:50%;
    background:var(--surface-2);
    display:grid;
    place-items:center;
    font-size:1.3rem;
    flex:0 0 auto;
  }
  .itinerary-content{
    display:none;
    padding:0 22px 22px;
    border-top:1px solid var(--line);
  }
  .itinerary-item.active .itinerary-content{display:block}
  .itinerary-grid{
    display:grid;
    grid-template-columns:330px 1fr;
    gap:22px;
    padding-top:20px;
    align-items:center;
  }
  .itinerary-photo{
    aspect-ratio: 4 / 3;
    border-radius:16px;
    overflow:hidden;
    background:#ddd center/cover no-repeat;
    box-shadow:var(--shadow);
  }

  .itinerary-copy p{color:var(--muted)}
  .tag-row{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:14px;
  }
  .tag{
    padding:8px 12px;
    border-radius:999px;
    background:var(--accent-soft);
    color:#F26424;
    font-size:.82rem;
    font-weight:800;
  }

  /* Gallery */
  .filter-row{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:26px;
  }
  .filter-btn{
    min-height:42px;
    padding:10px 14px;
    border-radius:999px;
    border:1px solid var(--line);
    background:#fff;
    font-weight:800;
    cursor:pointer;
  }
  .filter-btn.active{
    background:var(--brand);
    color:#fff;
    border-color:var(--brand);
  }
  .gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
  }
  .gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 same as background-size: cover */
    display: block;
}

.gallery-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    z-index: 2;
}

  /* CTA */
  .cta{
    background:linear-gradient(135deg, #111111, #2a2118);
    color:#fff;
    border-radius:28px;
    padding:42px 28px;
    box-shadow:var(--shadow);
    text-align:center;
    overflow:hidden;
    position:relative;
  }
  .cta::before{
    content:"";
    position:absolute;
    inset:auto -40px -40px auto;
    width:220px;
    height:220px;
    background:radial-gradient(circle, rgba(183,134,70,.35), transparent 65%);
    pointer-events:none;
  }
  .cta p{
    color:rgba(255,255,255,.78);
    max-width:700px;
    margin:10px auto 24px;
  }
  .cta-actions{
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
    margin-bottom:14px;
  }
  .cta-note{
    color:rgba(255,255,255,.68);
    font-size:.92rem;
  }

  /* FAQ */
  .faq{
    max-width:860px;
    margin:0 auto;
    display:grid;
    gap:12px;
  }
  .faq-item{
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    overflow:hidden;
    box-shadow:var(--shadow);
  }
  .faq-q{
    width:100%;
    background:transparent;
    border:0;
    padding:18px 20px;
    text-align:left;
    display:flex;
    justify-content:space-between;
    gap:12px;
    font-weight:850;
    cursor:pointer;
  }
  .faq-a{
    display:none;
    padding:0 20px 18px;
    color:var(--muted);
    border-top:1px solid var(--line);
  }
  .faq-item.active .faq-a{display:block}

  /* Footer */
  .footer{
    background:#111111;
    color:#fff;
    padding:64px 0 30px;
    margin-top:22px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.1fr .8fr 1fr 1fr;
    gap:24px;
    margin-bottom:30px;
  }
  .footer-brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:12px;
  }
  .footer p,.footer a,.footer li{
    color:rgba(255,255,255,.72);
    font-size:.95rem;
  }
  .footer h4{
    margin-bottom:14px;
    font-size:1rem;
    font-weight:900;
  }
  .footer ul{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:10px;
  }
  .socials{
    display:flex;
    gap:10px;
    margin-top:14px;
  }
  .social{
    width:38px;
    height:38px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.16);
    display:grid;
    place-items:center;
    font-weight:900;
  }
  .footer-bottom{
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.1);
    display:flex;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
    color:rgba(255,255,255,.56);
    font-size:.88rem;
  }

  /* Responsive */
  @media (max-width: 1080px){
    .hero-grid,.package,.footer-grid,.itinerary-grid{
      grid-template-columns:1fr;
    }
    .package-side{
      border-left:0;
      border-top:1px solid var(--line);
    }
    .gallery{grid-template-columns:repeat(2,1fr)}
    .feature-strip{grid-template-columns:repeat(2,1fr)}
  }

  @media (max-width: 820px){
    .nav-desktop,.header-actions .btn{display:none}
    .menu-toggle{display:flex}
    .hero{padding-top:26px}
    .hero-meta{grid-template-columns:1fr}
    .section{padding:64px 0}
  }

  @media (max-width: 600px){
    .container{width:min(100% - 20px, var(--container))}
    .hero-card{left:12px;right:12px;bottom:12px}
    .gallery{grid-template-columns:1fr}
    .feature-strip{grid-template-columns:1fr}
    .cta{padding:34px 18px}
    .footer-grid{grid-template-columns:1fr}
    .section-head{margin-bottom:24px}
  }

  .text-orange {
    color: #f26625ff !important;
  }



/* ==========================================================
   Booking Flow Extension
   These classes are shared by:
   - cart.html
   - customer-info.html
   - payment-confirmation.html
   - thank-you.html
   - email-confirmation-templates.html

   They intentionally reuse the same variables and visual language
   from the Hue Photo page stylesheet.
   ========================================================== */

.booking-layout {
  padding: 56px 0 80px;
}

.booking-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.booking-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.booking-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin-bottom: 12px;
}

.booking-subtitle {
  color: var(--muted);
  font-size: 1.03rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.booking-grid.equal {
  grid-template-columns: 1fr 1fr;
}

.booking-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.center {
  text-align: center;  
}

.booking-card.flat {
  box-shadow: none;
}

.booking-card.center {
  text-align: center;
}

.booking-card.narrow {
  max-width: 900px;
  margin: 0 auto;
}

.booking-card-title {
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 900;
}

.booking-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.booking-table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.booking-table td:first-child {
  width: 32%;
  color: var(--muted);
}

.booking-summary-list {
  display: grid;
  gap: 14px;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.booking-divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

.booking-price {
  font-size: 1.55rem;
  font-weight: 900;
}

.booking-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-field {
  display: grid;
  gap: 7px;
  margin-bottom: 1rem !important;
}

.booking-field.full {
  grid-column: 1 / -1;
}

.booking-field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 800;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  color: var(--text);
}

.booking-field textarea {
  min-height: 110px;
  resize: vertical;
}

.booking-checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.booking-checkbox-label input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.booking-badge {
  display: inline-block;
  padding: 8px 12px;
  color: var(--accent);
  background: #fff3ec;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-notice {
  padding: 14px 16px;
  color: #5a4a3a;
  background: #fff7f2;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
}

.booking-code {
  padding: 4px 8px;
  color: #fff;
  background: #111;
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.95rem;
}

.booking-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.booking-qr-box {
  padding: 20px;
  text-align: center;
  background: #fffaf7;
  border: 2px dashed var(--accent);
  border-radius: 18px;
}

.booking-qr-placeholder {
  width: min(260px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto 14px;
  background:
    linear-gradient(90deg, #000 10px, transparent 10px) 0 0 / 22px 22px,
    linear-gradient(#000 10px, transparent 10px) 0 0 / 22px 22px,
    linear-gradient(90deg, #000 10px, transparent 10px) 11px 11px / 22px 22px,
    linear-gradient(#000 10px, transparent 10px) 11px 11px / 22px 22px,
    #fff;
  border: 10px solid #fff;
  border-radius: 12px;
  box-shadow: 0 0 0 1px var(--line) inset;
}

.booking-success-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
}

.booking-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.booking-text-block p {
  margin-bottom: 14px;
}

.booking-text-block ul {
  margin: 0 0 18px;
}

@media (max-width: 1080px) {
  .booking-grid,
  .booking-grid.equal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .booking-layout {
    padding: 42px 0 64px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .booking-card {
    padding: 20px;
  }

  .booking-table td {
    display: block;
    width: 100%;
  }

  .booking-table td:first-child {
    width: 100%;
    padding-bottom: 0;
  }
}

/* Vietnamese Hue Photo content update */
.hero-quote {
  padding-left: 16px;
  border-left: 4px solid var(--accent);
  font-style: italic;
}

.hero-quote span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
}

.feature-strip--three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-box h3 {
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .feature-strip--three {
    grid-template-columns: 1fr;
  }
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.text-alert {
    color: red;
    font-style: italic;
    font-size: smaller;
    margin-top: 0.3rem !important;
    margin-bottom: 1rem !important;
}

.booking-actions-left{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    align-items:center;
}

@media (max-width:600px){
    .booking-actions-left{
        flex-direction:column;
        align-items:stretch;
    }
}

.hero-video-btn{
  margin-top:16px;
  display:flex;
  justify-content:center; /* center button */
}


/* Move to Boostrap */
.accordion-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px !important;
    margin-bottom: 14px;
    box-shadow: var(--shadow);
}

.accordion-button {
    border-radius: 18px !important;
}

.accordion-button:not(.collapsed) {
    background: #fff7f2;
    color: #F26424;
}

.hero-left-card{
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow);
    display:flex;
    padding: 10px;
    flex-direction:column;
}

.hero-right-card{
    display:flex;
    flex-direction:column;
}

.hero-media{
    aspect-ratio:4/3;
    border-radius: 18px;
    overflow:hidden;
}

.hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.hero-media-wrap{
    position:relative;
}

.hero-card{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;

    width:calc(100% - 40px);
}

.pill{
    background:#F26424;
    color:white;
    backdrop-filter:blur(8px);
    border-radius:999px;
    padding:5px 5px;
    font-weight:500;
}

/* ==========================================================
   Customer Experience Video Slider - Bootstrap 5.0 Carousel
   Thumbnail lấy từ video social link, fallback bằng ảnh local
   ========================================================== */
.customer-experience-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(242,100,36,.08), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(183,134,70,.08), transparent 22%),
    var(--bg);
}

.customer-experience-carousel {
  position: relative;
  padding: 0 44px 58px;
}

.customer-experience-carousel .carousel-inner {
  overflow: hidden;
  border-radius: 18px;
}

.experience-video-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  background: #ddd6cd;
  box-shadow: var(--shadow);
  color: #fff;
}

.experience-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease;
}

.experience-video-card:hover img {
  transform: scale(1.05);
}

.experience-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 22%, rgba(0,0,0,.76) 100%);
  pointer-events: none;
}

.experience-platform {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.48);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(5px);
  font-size: .72rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.experience-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.22);
  border: 2px solid rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  transform: translate(-50%, -50%);
  transition: .25s ease;
}

.experience-video-card:hover .experience-play {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.05);
}

.experience-play i {
  margin-left: 4px;
  font-size: 1.1rem;
}

.experience-duration {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(0,0,0,.68);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
}

.experience-copy {
  position: absolute;
  left: 16px;
  right: 68px;
  bottom: 14px;
  display: grid;
  gap: 3px;
}

.experience-copy strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 900;
}

.experience-copy small {
  color: rgba(255,255,255,.82);
  font-size: .84rem;
  font-weight: 700;
}

.experience-carousel-control {
  top: 42%;
  bottom: auto;
  width: 42px;
  height: 42px;
  opacity: 1;
}

.experience-carousel-control.carousel-control-prev {
  left: -4px;
}

.experience-carousel-control.carousel-control-next {
  right: -4px;
}

.experience-control-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.experience-indicators {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  margin: 0;
  gap: 8px;
}

.experience-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0;
  border: 0;
  background-color: #cfc6bb;
  opacity: 1;
}

.experience-indicators .active {
  width: 22px;
  border-radius: 999px;
  background-color: var(--accent);
}

@media (max-width: 820px) {
  .customer-experience-carousel {
    padding: 0 34px 54px;
  }

  .experience-video-card {
    aspect-ratio: 4 / 5;
  }

  .experience-copy strong {
    font-size: .96rem;
  }

  .experience-carousel-control.carousel-control-prev {
    left: -2px;
  }

  .experience-carousel-control.carousel-control-next {
    right: -2px;
  }
}

@media (max-width: 600px) {
  .customer-experience-carousel {
    padding: 0 26px 52px;
  }

  .experience-video-card {
    border-radius: 16px;
  }

  .experience-platform {
    top: 12px;
    left: 12px;
    font-size: .68rem;
  }

  .experience-play {
    width: 56px;
    height: 56px;
  }

  .experience-copy {
    left: 14px;
    right: 58px;
    bottom: 12px;
  }

  .experience-duration {
    right: 12px;
    bottom: 12px;
  }

  .experience-control-icon {
    width: 38px;
    height: 38px;
  }
}
