/* Custom Properties for consistency */
:root {
    --primary: #000000;
    --accent: #666666;
    --bg-blur: rgba(255, 255, 255, 0.75);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --nav-height: 82px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background: #fff;
    font-family: 'Inter', sans-serif;
}

/* --- Advanced Navbar Container --- */
.navbar {
    width: 100%;
    height: var(--nav-height);
    background: var(--bg-blur);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 0 5%;
    /* Navbar එක මුලින්ම load වෙද්දී පහළට ලිස්සලා එන animation එක */
    animation: slideDown 1s var(--ease-out-expo) forwards;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nav-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* මැදට හරියටම පේළිගත වීමට */
    align-items: center;
}

/* --- Magnetic Logo Effect --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--ease-out-expo) 0.5s;
}

.logo-v {
    transform: rotate(180deg);
    transition: transform 0.8s var(--ease-out-expo);
}

.logo:hover .logo-v {
    transform: rotate(0deg) scale(1.2);
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.1));
}

/* --- Staggered Nav Links --- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 45px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    position: relative;
    padding: 10px 0;
    transition: color 0.4s var(--ease-out-expo);
}

/* Modern Underline "Expand" Effect */
.nav-links li a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s var(--ease-out-expo);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-links li a:hover, 
.nav-links li a.active {
    color: var(--primary);
}

/* --- High-End Icon Interaction --- */
.nav-icons {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 8px;
    transition: transform 0.3s var(--ease-out-expo);
}

.icon-btn i {
    width: 21px;
    height: 21px;
    stroke-width: 1.2px; /* ඉතා සිනිඳු පෙනුමක් සඳහා */
    transition: stroke-width 0.3s ease;
}

/* Hover එකේදී Icon එක මහත වීම සහ මදක් ඉහළට යාම */
.icon-btn:hover {
    transform: translateY(-4px);
}

.icon-btn:hover i {
    stroke-width: 2px;
}

/* ලස්සන Glow එකක් සහිත Notification Dot */
.nav-icons .icon-btn:last-child::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 5px;
    height: 5px;
    background: #000;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* --- Mobile Menu සඳහා --- */
@media (max-width: 1100px) {
    .nav-links { display: none; }
    .nav-container { grid-template-columns: 1fr 1fr; }
}

/* === ORIGINAL HERO SECTION === */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Inter:wght@400;500&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#ffffff;
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
}

.page{
  max-width:1920px;
  margin:0 auto;
  padding:0 40px;
  padding-top:72px;
}

.hero{
  position:relative;
  display:grid;
  grid-template-columns:minmax(720px,980px) minmax(700px,920px);
  column-gap:30px;
  align-items:center;
  isolation:isolate;
  max-width:1500px;
  min-height:calc(100vh - 82px);
  margin:0 auto;
  padding:8px 40px 40px;
  transform:scale(1.08);
  transform-origin:center center;
}

.hero-text{
  position:relative;
  z-index:5;
  max-width:980px;
  padding-top:0;
  transform:none;
  margin-top:-10px;
}

.main-heading{
  display:block;
  max-width:980px;
  font-family:'Syne',sans-serif;
  font-size:clamp(40px,4.9vw,88px);
  font-weight:800;
  line-height:0.92;
  letter-spacing:-0.05em;
  text-transform:uppercase;
  color:#000;
}

.top-line{
  display:block;
  white-space:nowrap;
  font-size:calc(0.96em + 5px);
}

.bottom-line{
  display:inline-block;
  white-space:nowrap;
  font-size:0.82em;
  letter-spacing:-0.03em;
}

.hero-description{
  max-width:560px;
}

.hero-description p{
  margin-top:22px;
  max-width:560px;
  font-family:'Inter',sans-serif;
  font-size:17px;
  color:#707070;
  line-height:1.6;
}

.social-bar{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
  max-width:560px;
  margin-top:26px;
}

.social-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 16px;
  border:1px solid rgba(0,0,0,0.12);
  border-radius:999px;
  background:rgba(255,255,255,0.72);
  color:#111;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  white-space:nowrap;
  backdrop-filter:blur(6px);
  transition:transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.social-link i{
  font-size:13px;
}

.social-link:hover{
  transform:translateY(-3px);
  background:#111;
  color:#fff;
  border-color:#111;
  box-shadow:0 14px 30px rgba(0,0,0,0.12);
}

.hero-images{
  position:relative;
  z-index:1;
  width:860px;
  height:840px;
  justify-self:center;
  align-self:center;
  margin-left:20px;
  margin-top:125px;
  pointer-events:none;
  transform:translateX(60px);
}

.img-container{
  position:absolute;
  width:320px;
  height:455px;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(0,0,0,0.05);
  box-shadow:0 22px 55px rgba(0,0,0,0.13);
  transition:opacity 0.6s ease-in-out, transform 0.6s ease-in-out, box-shadow 0.35s ease;
}

.img-container img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.img-container::before{
  content:'';
  position:absolute;
  inset:10px;
  border:1px solid rgba(255,255,255,0.45);
  border-radius:16px;
  pointer-events:none;
  mix-blend-mode:screen;
}

.img-container::after{
  content:'';
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  height:64px;
  background:linear-gradient(to top, rgba(0,0,0,0.16), transparent);
  border-radius:0 0 14px 14px;
  pointer-events:none;
}

.img-left{
  left:78px;
  top:36px;
  clip-path: polygon(20% 0%, 100% 8%, 80% 100%, 0% 85%, 5% 25%);
  transform: rotate(-8deg) scale(1.72) perspective(800px) rotateY(-6deg);
}

.img-right{
  left:365px;
  top:74px;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 25% 95%, 0% 15%);
  transform: rotate(7deg) scale(1.26) perspective(800px) rotateY(6deg);
}

@media (max-width: 1400px){
  .hero{
    transform:scale(1.02);
    grid-template-columns:minmax(620px,1fr) minmax(560px,1fr);
    max-width:1500px;
  }

  .main-heading{
    font-size:clamp(38px,4.5vw,78px);
  }

  .hero-images{
    width:720px;
    height:720px;
    margin-left:-10px;
  }
}

@media (max-width: 1024px){
  .page{
    padding:0 18px 18px;
  }

  .hero{
    grid-template-columns:1fr 1fr;
    max-width:100%;
    min-height:auto;
    row-gap:10px;
    padding-top:8px;
    transform:none;
    column-gap: 0;
  }

  .hero-text{
    max-width:100%;
    text-align:left;
  }

  .main-heading{
    font-size:clamp(34px,8vw,64px);
  }

  .hero-description p{
    font-size:14px;
  }

  .social-bar{
    gap:8px;
    overflow-x:auto;
    padding-bottom:4px;
  }

  .social-bar::-webkit-scrollbar{
    height:4px;
  }

  .social-link{
    padding:9px 12px;
    font-size:11px;
  }

  .hero-images{
    width:100%;
    height:420px;
    justify-self:end;
    margin-right:-100px;
    margin-top:120px;
    transform:none;
    pointer-events: none;
    transform: translateX(60px);
  }

  .img-container{
    width:250px;
    height:355px;
  }

  .img-left{
  left:88px;
  top:48px;
  clip-path: polygon(20% 0%, 100% 8%, 80% 100%, 0% 85%, 5% 25%);
  transform: rotate(-8deg) scale(1.58) perspective(800px) rotateY(-6deg);
}

  .img-right{
  left:320px;
  top:86px;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 25% 95%, 0% 15%);
  transform: rotate(7deg) scale(1.12) perspective(800px) rotateY(6deg);
}
}

@media (max-width: 680px){
  .navbar{
    height:auto;
    padding:14px 12px;
    gap:18px;
    flex-wrap:wrap;
  }

  
  
  
  
  .main-heading{
    font-size:clamp(28px,10vw,48px);
  }

  .hero-description p{
    max-width:320px;
    font-size:13px;
    line-height:1.6;
  }

  .social-bar{
    margin-top:18px;
  }

  .social-link{
    padding:8px 11px;
    gap:6px;
    font-size:10px;
  }

  .hero-images{
    height:305px;
    margin-top:-90px;
  }

  .img-container{
    width:175px;
    height:255px;
  }

  .img-left{
  left:88px;
  top:48px;
  clip-path: polygon(20% 0%, 100% 8%, 80% 100%, 0% 85%, 5% 25%);
  transform: rotate(-8deg) scale(1.58) perspective(800px) rotateY(-6deg);
}

  .img-right{
  left:320px;
  top:86px;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 25% 95%, 0% 15%);
  transform: rotate(7deg) scale(1.12) perspective(800px) rotateY(6deg);
}
}

/* === FONT WIDTH FIX === */
.main-heading{
  font-family:'Syne',sans-serif;
  font-weight:700;
  line-height:0.95;
  letter-spacing:-0.025em;
}

.top-line{
  font-size:calc(1em + 6px);
  letter-spacing:-0.02em;
}

.bottom-line{
  font-size:0.78em;
  letter-spacing:-0.01em;
}


/* === CRAZY ABSTRACT SHAPES === */
.img-left{
  left:88px;
  top:48px;
  clip-path: polygon(20% 0%, 100% 8%, 80% 100%, 0% 85%, 5% 25%);
  transform: rotate(-8deg) scale(1.58) perspective(800px) rotateY(-6deg);
}

.img-right{
  left:320px;
  top:86px;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 25% 95%, 0% 15%);
  transform: rotate(7deg) scale(1.12) perspective(800px) rotateY(6deg);
}

/* === 3D HOVER EFFECT === */
.img-container{
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.img-container:hover{
  transform: translateY(-12px) scale(1.03) rotate(0deg) !important;
  box-shadow: 0 40px 90px rgba(0,0,0,0.25);
  z-index: 5;
}

/* glow */
.img-container:hover::after{
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
}

/* === SMOOTH SLIDE ANIMATION === */
.img-container{
  animation: floatCard 6s ease-in-out infinite;
}

.img-right{
  left:320px;
  top:86px;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 25% 95%, 0% 15%);
  transform: rotate(7deg) scale(1.12) perspective(800px) rotateY(6deg);
}

@keyframes floatCard{
  0%{ transform: translateY(0px) }
  50%{ transform: translateY(-12px) }
  100%{ transform: translateY(0px) }
}


/* === FINAL REFINEMENTS: spacing fix + stronger distorted 3D cards without changing layout === */
.page{
  padding-top: var(--nav-height);
}

.hero{
  padding-top: 0;
}

.hero-images{
  margin-top: 108px;
  transform: translateX(52px);
}

.img-container{
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, box-shadow, filter;
  overflow: visible;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow:
    0 26px 65px rgba(0,0,0,0.14),
    0 8px 22px rgba(0,0,0,0.08);
  filter: saturate(1.02) contrast(1.02);
}

.img-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  border-radius: inherit;
}

.img-container::before{
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.42);
}

.img-container::after{
  left: 14px;
  right: 14px;
  bottom: -10px;
  height: 110px;
  border-radius: 0 0 28px 28px;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.24), transparent 42%),
    linear-gradient(to top, rgba(0,0,0,0.22), rgba(0,0,0,0.04) 52%, transparent);
  filter: blur(1px);
  opacity: 0.95;
}

.img-left{
  clip-path: polygon(14% 0%, 100% 6%, 88% 100%, 0% 88%, 4% 18%);
  --shape-transform: rotate(-10deg) scale(1.62) perspective(1200px) rotateY(-10deg) rotateX(2deg) skewY(-1deg);
  transform: var(--shape-transform);
  animation: floatLeft 6.5s ease-in-out infinite;
}

.img-right{
  clip-path: polygon(3% 2%, 100% 0%, 98% 88%, 81% 100%, 11% 95%, 0% 14%);
  --shape-transform: rotate(9deg) scale(1.16) perspective(1200px) rotateY(10deg) rotateX(-1deg) skewY(1deg);
  transform: var(--shape-transform);
  animation: floatRight 7s ease-in-out infinite;
}

.img-left img{
  transform: scale(1.06);
  filter: contrast(1.03) saturate(1.04);
}

.img-right img{
  transform: scale(1.05);
  filter: contrast(1.02) saturate(1.03);
}

.img-container:hover{
  transform: var(--shape-transform) translateY(-14px) scale(1.025);
  box-shadow:
    0 42px 95px rgba(0,0,0,0.22),
    0 14px 36px rgba(0,0,0,0.10);
  z-index: 6;
}

.img-container:hover img{
  transform: scale(1.09);
  filter: contrast(1.05) saturate(1.06);
}

@keyframes floatLeft{
  0%{ transform: var(--shape-transform) translateY(0px); }
  50%{ transform: var(--shape-transform) translateY(-12px); }
  100%{ transform: var(--shape-transform) translateY(0px); }
}

@keyframes floatRight{
  0%{ transform: var(--shape-transform) translateY(0px); }
  50%{ transform: var(--shape-transform) translateY(-16px); }
  100%{ transform: var(--shape-transform) translateY(0px); }
}

@media (max-width: 1400px){
  .hero-images{
    margin-top: 102px;
    transform: translateX(34px);
  }
}

@media (max-width: 1024px){
  .page{
    padding-top: var(--nav-height);
  }

  .hero-images{
    margin-right: 0;
    margin-top: 112px;
    transform: translateX(36px);
  }

  .img-left{
    --shape-transform: rotate(-10deg) scale(1.56) perspective(1100px) rotateY(-9deg) rotateX(2deg);
  }

  .img-right{
    --shape-transform: rotate(9deg) scale(1.10) perspective(1100px) rotateY(9deg) rotateX(-1deg);
  }
}

@media (max-width: 680px){
  .page{
    padding-top: 92px;
  }

  .hero-images{
    margin-top: -76px;
    transform: translateX(18px);
  }

  .img-left{
    --shape-transform: rotate(-9deg) scale(1.54) perspective(900px) rotateY(-8deg);
  }

  .img-right{
    --shape-transform: rotate(8deg) scale(1.10) perspective(900px) rotateY(8deg);
  }
}


/* === LUXURY POLISH: preserve same layout, refine only card finish === */
.img-shell{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  clip-path: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.img-shell::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.06) 22%, transparent 46%),
    linear-gradient(180deg, transparent 58%, rgba(0,0,0,0.12) 100%);
  pointer-events: none;
  z-index: 2;
}

.img-shell::after{
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -18px 28px rgba(255,255,255,0.03);
  pointer-events: none;
  z-index: 2;
}

.img-container{
  box-shadow:
    0 30px 80px rgba(0,0,0,0.16),
    0 10px 30px rgba(0,0,0,0.06);
  transition:
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.8s ease;
}

.img-container img{
  filter: saturate(0.96) contrast(1.08) brightness(1.01);
  transition:
    opacity 0.75s ease,
    transform 1.1s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.9s ease;
  backface-visibility: hidden;
}

.img-container::before{
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -16px 24px rgba(255,255,255,0.025);
}

.img-container::after{
  left: 12px;
  right: 12px;
  bottom: -14px;
  height: 90px;
  border-radius: 0 0 26px 26px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.18), transparent 40%),
    linear-gradient(to top, rgba(0,0,0,0.18), transparent 65%);
  filter: blur(8px);
  opacity: 0.9;
}

.img-left{
  clip-path: polygon(16% 0%, 100% 7%, 89% 100%, 0% 88%, 4% 19%);
}

.img-right{
  clip-path: polygon(4% 2%, 100% 0%, 98% 89%, 83% 100%, 12% 95%, 0% 15%);
}

.img-left img,
.img-right img{
  transform: scale(1.05);
}

.img-container:hover{
  box-shadow:
    0 40px 100px rgba(0,0,0,0.20),
    0 14px 34px rgba(0,0,0,0.08);
}

.img-container:hover img{
  transform: scale(1.08);
  filter: saturate(0.98) contrast(1.1) brightness(1.02);
}

@keyframes floatLeft{
  0%{ transform: var(--shape-transform) translateY(0px); }
  50%{ transform: var(--shape-transform) translateY(-8px); }
  100%{ transform: var(--shape-transform) translateY(0px); }
}

@keyframes floatRight{
  0%{ transform: var(--shape-transform) translateY(0px); }
  50%{ transform: var(--shape-transform) translateY(-10px); }
  100%{ transform: var(--shape-transform) translateY(0px); }
}


/* === PRODUCT SECTION === */
.product-section{
  margin-top: -18px;
  padding: 26px 0 40px;
}

.product-section-inner{
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-title{
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 3.35vw, 52px);
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  width: auto;
  max-width: none;
  white-space: nowrap;
}

.product-tabs{
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-tab{
  min-width: 108px;
  height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(0,0,0,0.16);
  background: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-tab:hover,
.product-tab.active{
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 14px 26px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

@media (max-width: 1024px){
  .product-section{
    margin-top: -8px;
    padding: 24px 0 30px;
  }

  .product-section-inner{
    padding: 0 18px;
  }

  .product-tabs{
    gap: 10px;
  }

  .product-tab{
    min-width: 96px;
    height: 40px;
    padding: 0 16px;
    font-size: 10px;
  }
}

@media (max-width: 680px){
  .product-section{
    margin-top: 0;
    padding: 18px 0 20px;
  }

  .product-title{
    font-size: clamp(22px, 6.2vw, 34px);
    line-height: 1;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  .product-tabs{
    margin-top: 20px;
    gap: 8px;
  }

  .product-tab{
    min-width: calc(50% - 6px);
    height: 38px;
    letter-spacing: 0.12em;
  }
}


/* === PRODUCT CARDS ADDITION === */
.product-grid{
  width:100%;
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}

.product-card{
  position:relative;
  min-height:520px;
  border-radius:30px;
  overflow:hidden;
  background:linear-gradient(180deg,#f7f7f7 0%, #efefef 100%);
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 18px 45px rgba(0,0,0,0.08), 0 6px 16px rgba(0,0,0,0.04);
  transform:translateY(0);
  transition:transform 0.55s cubic-bezier(0.19,1,0.22,1), box-shadow 0.55s cubic-bezier(0.19,1,0.22,1), border-color 0.4s ease;
  isolation:isolate;
}

.product-card-media{
  position:relative;
  width:100%;
  height:100%;
  min-height:520px;
  overflow:hidden;
  border-radius:inherit;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.9), transparent 34%),
    linear-gradient(180deg, #fafafa 0%, #ebebeb 100%);
}

.product-card-media::before{
  content:'';
  position:absolute;
  inset:10px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.75);
  pointer-events:none;
  z-index:2;
}

.product-card-media::after{
  content:'';
  position:absolute;
  inset:auto 0 0 0;
  height:42%;
  background:linear-gradient(to top, rgba(0,0,0,0.38), rgba(0,0,0,0.08) 45%, transparent);
  z-index:1;
  pointer-events:none;
}

.product-card img{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
  display:block;
  transition:transform 0.85s cubic-bezier(0.19,1,0.22,1), filter 0.85s ease;
  filter:saturate(0.98) contrast(1.05) brightness(1.01);
}

.product-card-glow{
  position:absolute;
  inset:auto -18% -24% auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,0.36) 0%, rgba(255,255,255,0) 70%);
  opacity:0.7;
  z-index:2;
  pointer-events:none;
  transition:transform 0.7s ease, opacity 0.7s ease;
}

.product-image-tag{
  position:absolute;
  left:18px;
  bottom:18px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:82px;
  height:34px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
  color:#111;
  font-family:'Inter',sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  backdrop-filter:blur(10px);
}

.product-card:hover{
  transform:translateY(-12px);
  border-color:rgba(0,0,0,0.14);
  box-shadow:0 32px 70px rgba(0,0,0,0.14), 0 10px 26px rgba(0,0,0,0.07);
}

.product-card:hover img{
  transform:scale(1.08);
  filter:saturate(1.02) contrast(1.08) brightness(1.03);
}

.product-card:hover .product-card-glow{
  transform:translate(-16px,-16px) scale(1.14);
  opacity:1;
}

.product-card img{
  opacity:1;
}

.product-card.card-reveal{
  animation:productCardReveal 0.55s ease both;
}

@keyframes productCardReveal{
  0%{
    opacity:0;
    transform:translateY(24px) scale(0.985);
  }
  100%{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@media (max-width: 1280px){
  .product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 1024px){
  .product-grid{
    margin-top:24px;
    gap:18px;
  }

  .product-card,
  .product-card-media,
  .product-card img{
    min-height:460px;
  }
}

@media (max-width: 680px){
  .product-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .product-card,
  .product-card-media,
  .product-card img{
    min-height:420px;
  }

  .product-image-tag{
    left:14px;
    bottom:14px;
    height:32px;
    min-width:78px;
    font-size:10px;
  }
}


/* === CUSTOMIZE MODE SECTION === */
.customize-section{
  padding: 56px 0 90px;
}

.customize-shell{
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(420px, 700px) minmax(120px, 180px);
  gap: 28px;
  align-items: center;
}

.customize-copy{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.customize-eyebrow{
  display:inline-flex;
  width:max-content;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.08);
  background:rgba(255,255,255,0.84);
  font-size:11px;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
}

.customize-title{
  font-family:'Syne',sans-serif;
  font-size:clamp(34px,4vw,62px);
  line-height:0.95;
  letter-spacing:-0.04em;
  text-transform:uppercase;
  color:#111;
}

.customize-subtitle{
  font-family:'Syne',sans-serif;
  font-size:22px;
  line-height:1;
  letter-spacing:-0.02em;
  color:#111;
}

.customize-text{
  max-width:300px;
  font-size:15px;
  line-height:1.75;
  color:#6f6a66;
}

.customize-controls{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:8px;
}

.customize-action{
  height:48px;
  padding:0 18px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,0.10);
  background:linear-gradient(180deg,#ffffff 0%, #f3efec 100%);
  color:#111;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  text-align:left;
  cursor:pointer;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease, color .35s ease;
}

.customize-action:hover,
.customize-action.active{
  transform:translateX(8px);
  border-color:rgba(0,0,0,0.14);
  box-shadow:0 18px 38px rgba(0,0,0,0.10);
  background:#111;
  color:#fff;
}

.customize-meta-card{
  margin-top:12px;
  padding:20px 20px 18px;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,238,233,0.94));
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  transform:translateX(0);
  transition:transform .55s cubic-bezier(.19,1,.22,1), box-shadow .55s cubic-bezier(.19,1,.22,1);
}

.customize-meta-card.is-shifted{
  transform:translateX(12px);
  box-shadow:0 28px 60px rgba(0,0,0,0.12);
}

.meta-label{
  display:block;
  font-size:10px;
  font-weight:800;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:#8d837c;
  margin-bottom:8px;
}

.meta-value{
  display:block;
  font-family:'Syne',sans-serif;
  font-size:24px;
  line-height:1;
  letter-spacing:-0.02em;
  margin-bottom:10px;
}

.meta-copy{
  font-size:14px;
  line-height:1.7;
  color:#6a635d;
}

.customize-stage-wrap{
  display:flex;
  justify-content:center;
}

.customize-stage{
  position:relative;
  width:min(100%, 620px);
  min-height:960px;
  border-radius:40px;
  overflow:hidden;
  background:linear-gradient(180deg,#c6b9b0 0%, #b6a89e 100%);
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 35px 90px rgba(0,0,0,0.15);
  isolation:isolate;
}

.customize-stage::before{
  content:'';
  position:absolute;
  inset:16px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.35);
  pointer-events:none;
  z-index:3;
}

.customize-top-caption,
.customize-overlay-copy,
.customize-bottom-note{
  position:absolute;
  z-index:4;
  text-transform:uppercase;
}

.customize-top-caption{
  top:34px;
  left:30px;
  right:30px;
  font-family:'Syne',sans-serif;
  font-size:clamp(26px,3.3vw,48px);
  line-height:1;
  letter-spacing:-0.03em;
  color:rgba(255,255,255,0.95);
}

.customize-main-image{
  position:absolute;
  inset:120px 0 88px 0;
  width:100%;
  height:calc(100% - 208px);
  object-fit:cover;
  object-position:center top;
  transition:opacity .45s ease, transform .75s cubic-bezier(.19,1,.22,1), filter .75s ease;
  filter:saturate(0.98) contrast(1.03);
}

.customize-stage:hover .customize-main-image{
  transform:scale(1.025);
  filter:saturate(1) contrast(1.06);
}

.customize-overlay-copy{
  left:30px;
  bottom:140px;
  max-width:320px;
  color:#fff;
  font-size:18px;
  line-height:1.2;
  letter-spacing:-0.02em;
}

.customize-overlay-copy strong{
  font-weight:800;
}

.customize-bottom-note{
  left:30px;
  bottom:34px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.14em;
  color:rgba(255,255,255,0.86);
}

.customize-sidebar{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}

.thumb-arrow{
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:#111;
  color:#fff;
  cursor:pointer;
  box-shadow:0 18px 34px rgba(0,0,0,0.14);
  transition:transform .3s ease, box-shadow .3s ease;
}

.thumb-arrow:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 42px rgba(0,0,0,0.18);
}

.customize-thumbs{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.thumb-card{
  position:relative;
  width:138px;
  height:170px;
  border:none;
  border-radius:28px;
  overflow:hidden;
  background:#f4eeeb;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 18px 40px rgba(0,0,0,0.10);
  cursor:pointer;
  transition:transform .55s cubic-bezier(.19,1,.22,1), box-shadow .55s cubic-bezier(.19,1,.22,1), border-color .35s ease;
}

.thumb-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s cubic-bezier(.19,1,.22,1);
}

.thumb-card span{
  position:absolute;
  right:12px;
  bottom:12px;
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,0.92);
  color:#111;
  box-shadow:0 10px 18px rgba(0,0,0,0.12);
  transition:transform .35s ease, background .35s ease, color .35s ease;
}

.thumb-card:hover,
.thumb-card.active{
  transform:translateX(10px) scale(1.03);
  border-color:rgba(255,255,255,0.46);
  box-shadow:0 24px 50px rgba(0,0,0,0.16);
}

.thumb-card:hover img,
.thumb-card.active img{
  transform:scale(1.08);
}

.thumb-card:hover span,
.thumb-card.active span{
  transform:translateX(2px);
  background:#111;
  color:#fff;
}

@media (max-width: 1180px){
  .customize-shell{
    grid-template-columns:1fr;
  }

  .customize-copy{
    order:1;
    max-width:740px;
  }

  .customize-text{
    max-width:none;
  }

  .customize-controls{
    flex-direction:row;
    flex-wrap:wrap;
  }

  .customize-action{
    min-width:200px;
    text-align:center;
  }

  .customize-stage-wrap{
    order:2;
  }

  .customize-sidebar{
    order:3;
    flex-direction:row;
    justify-content:center;
  }

  .customize-thumbs{
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
  }

  .thumb-arrow-up,
  .thumb-arrow-down{
    transform:rotate(-90deg);
  }
}

@media (max-width: 680px){
  .customize-section{
    padding:40px 0 70px;
  }

  .customize-shell{
    padding:0 18px;
    gap:20px;
  }

  .customize-title{
    font-size:clamp(28px,8vw,40px);
  }

  .customize-controls{
    flex-direction:column;
  }

  .customize-action{
    min-width:100%;
  }

  .customize-stage{
    min-height:760px;
    border-radius:28px;
  }

  .customize-stage::before{
    inset:12px;
    border-radius:20px;
  }

  .customize-top-caption{
    top:24px;
    left:20px;
    right:20px;
    font-size:32px;
  }

  .customize-main-image{
    inset:96px 0 74px 0;
    height:calc(100% - 170px);
  }

  .customize-overlay-copy{
    left:20px;
    right:20px;
    bottom:108px;
    max-width:260px;
    font-size:15px;
  }

  .customize-bottom-note{
    left:20px;
    bottom:24px;
    font-size:10px;
  }

  .customize-sidebar{
    gap:10px;
  }

  .thumb-card{
    width:120px;
    height:150px;
    border-radius:24px;
  }
}


/* === CUSTOMIZE MODE REWORK === */
.customize-section{
  max-width:1500px;
  margin:26px auto 120px;
  padding:0 40px;
}

.customize-heading-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  margin-bottom:34px;
}

.customize-kicker{
  font-size:11px;
  letter-spacing:0.32em;
  text-transform:uppercase;
  color:#8c837d;
}

.customize-heading{
  font-family:'Syne',sans-serif;
  font-size:clamp(40px,4.4vw,76px);
  line-height:0.96;
  letter-spacing:-0.05em;
  color:#1c1714;
}

.customize-layout{
  display:grid;
  grid-template-columns:minmax(250px,300px) minmax(330px,520px) minmax(260px,320px);
  gap:34px;
  align-items:center;
}

.customize-details{
  align-self:center;
}

.customize-details h4{
  font-family:'Syne',sans-serif;
  font-size:clamp(24px,2vw,34px);
  letter-spacing:-0.04em;
  color:#1f1814;
  margin-bottom:16px;
}

.details-lead{
  font-size:15px;
  line-height:1.8;
  color:#6f655f;
  margin-bottom:26px;
  max-width:290px;
}

.details-points{
  display:grid;
  gap:14px;
}

.detail-item{
  display:flex;
  align-items:center;
  gap:12px;
  color:#433932;
  font-size:14px;
  line-height:1.5;
}

.detail-item span{
  width:40px;
  height:1px;
  background:linear-gradient(90deg, rgba(169,148,135,0.1), rgba(169,148,135,0.95));
  flex:0 0 40px;
}

.customize-stage-panel{
  display:flex;
  justify-content:center;
}

.customize-stage-frame{
  position:relative;
  width:min(100%,470px);
  min-height:700px;
  border-radius:34px;
  padding:18px;
  background:linear-gradient(180deg, #d0c5bd 0%, #beb0a7 100%);
  box-shadow:0 35px 80px rgba(47,30,18,0.16), inset 0 0 0 1px rgba(255,255,255,0.4);
  overflow:hidden;
}

.customize-stage-glow{
  position:absolute;
  inset:18px;
  border-radius:26px;
  background:radial-gradient(circle at top, rgba(255,255,255,0.5), rgba(255,255,255,0) 45%);
  pointer-events:none;
}

.customize-main-image{
  position:relative;
  z-index:2;
  width:100%;
  height:664px;
  object-fit:cover;
  object-position:center top;
  border-radius:24px;
  display:block;
  transition:transform 0.55s cubic-bezier(.2,.7,.2,1), opacity 0.35s ease, filter 0.35s ease;
  box-shadow:0 20px 45px rgba(39,25,17,0.12);
}

.customize-stage-frame:hover .customize-main-image{
  transform:scale(1.015);
}

.hotspot{
  position:absolute;
  right:-14px;
  width:14px;
  height:14px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,0.92);
  background:#7f6656;
  box-shadow:0 0 0 10px rgba(127,102,86,0.08);
  z-index:3;
}
.hotspot::after{
  content:'';
  position:absolute;
  top:50%;
  left:100%;
  width:26px;
  height:1px;
  background:rgba(110,88,75,0.45);
}
.hotspot-hair{ top:112px; }
.hotspot-shirt{ top:255px; }
.hotspot-trousers{ top:440px; }
.hotspot-shoes{ top:612px; }

.customize-actions{
  display:grid;
  gap:18px;
  align-self:center;
}

.customize-card{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
  min-height:92px;
  padding:18px 20px 18px 8px;
  border:none;
  border-radius:22px;
  background:rgba(255,255,255,0.84);
  box-shadow:0 15px 40px rgba(66,44,28,0.08);
  text-align:left;
  cursor:pointer;
  transition:transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  isolation:isolate;
}

.customize-card::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:22px;
  border:1px solid rgba(119,92,75,0.1);
  pointer-events:none;
}

.customize-card:hover,
.customize-card.active{
  transform:translateX(-10px);
  background:#fff;
  box-shadow:0 22px 48px rgba(54,34,21,0.15);
}

.card-line{
  position:absolute;
  left:-34px;
  top:50%;
  width:34px;
  height:1px;
  background:rgba(110,88,75,0.3);
}

.card-arrow{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, #f6f1ee, #e8ddd5);
  color:#665044;
  box-shadow:inset 0 0 0 1px rgba(122,91,70,0.08);
  flex:0 0 44px;
}

.card-text-wrap{
  display:grid;
  gap:4px;
}

.card-text-wrap strong{
  font-family:'Syne',sans-serif;
  font-size:18px;
  font-weight:700;
  letter-spacing:-0.03em;
  color:#1f1713;
}

.card-text-wrap small{
  font-size:13px;
  color:#776b64;
  letter-spacing:0.01em;
}

@media (max-width: 1180px){
  .customize-layout{
    grid-template-columns:1fr;
    gap:26px;
  }
  .customize-details,
  .customize-actions{
    max-width:620px;
    width:100%;
    margin:0 auto;
  }
  .details-lead{ max-width:none; }
  .customize-stage-frame{ min-height:620px; }
  .customize-main-image{ height:584px; }
  .hotspot{ display:none; }
  .card-line{ display:none; }
  .customize-card:hover,
  .customize-card.active{ transform:translateY(-4px); }
}

@media (max-width: 640px){
  .customize-section{ padding:0 18px; margin:10px auto 90px; }
  .customize-heading{ font-size:42px; text-align:center; }
  .customize-stage-frame{ min-height:520px; padding:12px; border-radius:24px; }
  .customize-main-image{ height:496px; border-radius:18px; }
  .customize-card{ min-height:84px; padding:16px 16px 16px 10px; }
  .card-text-wrap strong{ font-size:16px; }
}


/* === CUSTOMIZE MODE FINAL FIX === */
.customize-section{
  max-width:1500px;
  margin:26px auto 120px;
  padding:0 40px;
}

.customize-layout{
  display:grid;
  grid-template-columns:minmax(250px,300px) minmax(420px,620px);
  gap:34px;
  align-items:center;
  justify-content:center;
}

.customize-details h4{
  font-family:'Syne',sans-serif;
  font-size:clamp(24px,2vw,34px);
  letter-spacing:-0.04em;
  color:#1f1814;
  margin-bottom:16px;
}

.details-lead{
  font-size:15px;
  line-height:1.85;
  color:#6f655f;
  margin-bottom:26px;
  max-width:290px;
}

.customize-stage-frame{
  position:relative;
  width:min(100%,540px);
  min-height:760px;
  border-radius:34px;
  padding:18px;
  background:linear-gradient(180deg, #d0c5bd 0%, #beb0a7 100%);
  box-shadow:0 35px 80px rgba(47,30,18,0.16), inset 0 0 0 1px rgba(255,255,255,0.4);
  overflow:visible;
}

.customize-stage-glow{
  position:absolute;
  inset:18px;
  border-radius:26px;
  background:radial-gradient(circle at top, rgba(255,255,255,0.5), rgba(255,255,255,0) 45%);
  pointer-events:none;
}

.customize-main-image{
  position:relative;
  z-index:2;
  width:100%;
  height:724px;
  object-fit:cover;
  object-position:center top;
  border-radius:24px;
  display:block;
  transition:transform 0.55s cubic-bezier(.2,.7,.2,1), opacity 0.35s ease, filter 0.35s ease;
  box-shadow:0 20px 45px rgba(39,25,17,0.12);
}

.preview-card{
  position:absolute;
  right:-92px;
  width:126px;
  height:126px;
  z-index:5;
  border-radius:24px;
  overflow:hidden;
  background:rgba(255,255,255,0.95);
  box-shadow:0 18px 44px rgba(49,31,20,0.16);
  border:1px solid rgba(255,255,255,0.65);
  cursor:pointer;
  transition:transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.preview-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}

.preview-card span{
  position:absolute;
  left:10px;
  right:10px;
  bottom:10px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(8px);
  color:#1a1613;
  font-size:10px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  text-align:center;
}

.preview-card::before{
  content:'';
  position:absolute;
  top:50%;
  right:100%;
  width:66px;
  height:1px;
  background:rgba(110,88,75,0.42);
  transform:translateY(-50%);
}

.preview-card::after{
  content:'';
  position:absolute;
  top:50%;
  right:calc(100% + 66px);
  width:10px;
  height:10px;
  border-top:1.5px solid rgba(110,88,75,0.55);
  border-left:1.5px solid rgba(110,88,75,0.55);
  transform:translateY(-50%) rotate(-45deg);
}

.preview-card:hover,
.preview-card.is-active{
  transform:translateX(-10px) scale(1.03);
  box-shadow:0 26px 56px rgba(49,31,20,0.22);
}

.preview-card:hover img,
.preview-card.is-active img{
  transform:scale(1.06);
}

.preview-hair{ top:54px; }
.preview-shirt{ top:220px; }
.preview-trousers{ top:390px; }
.preview-shoes{ top:560px; }

.hotspot{
  position:absolute;
  right:44px;
  width:14px;
  height:14px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,0.92);
  background:#7f6656;
  box-shadow:0 0 0 10px rgba(127,102,86,0.08);
  z-index:4;
  animation:pulseDot 2.2s infinite;
}

.hotspot::after{
  content:'';
  position:absolute;
  top:50%;
  left:100%;
  width:26px;
  height:1px;
  background:rgba(110,88,75,0.42);
}

.hotspot-hair{ top:114px; }
.hotspot-shirt{ top:282px; }
.hotspot-trousers{ top:470px; }
.hotspot-shoes{ top:662px; }

@keyframes pulseDot{
  0%{ box-shadow:0 0 0 0 rgba(127,102,86,0.18), 0 0 0 10px rgba(127,102,86,0.08); }
  70%{ box-shadow:0 0 0 12px rgba(127,102,86,0), 0 0 0 16px rgba(127,102,86,0.02); }
  100%{ box-shadow:0 0 0 0 rgba(127,102,86,0), 0 0 0 10px rgba(127,102,86,0.08); }
}

@media (max-width: 1180px){
  .customize-layout{
    grid-template-columns:1fr;
    gap:30px;
  }
  .customize-details{
    max-width:620px;
    margin:0 auto;
  }
  .details-lead{ max-width:none; }
  .customize-stage-frame{
    width:min(100%,560px);
    margin:0 auto;
  }
}

@media (max-width: 760px){
  .customize-section{ padding:0 18px; margin:10px auto 90px; }
  .customize-heading{ font-size:42px; text-align:center; }
  .customize-layout{ gap:24px; }
  .customize-stage-frame{
    min-height:auto;
    padding:12px;
    border-radius:24px;
    overflow:hidden;
  }
  .customize-main-image{
    height:auto;
    aspect-ratio: 3 / 4.8;
    border-radius:18px;
  }
  .preview-card{
    width:84px;
    height:84px;
    right:10px;
    border-radius:16px;
  }
  .preview-card::before,
  .preview-card::after,
  .hotspot{ display:none; }
  .preview-card span{
    left:6px;
    right:6px;
    bottom:6px;
    padding:5px 6px;
    font-size:8px;
  }
  .preview-hair{ top:16px; }
  .preview-shirt{ top:112px; }
  .preview-trousers{ top:208px; }
  .preview-shoes{ top:304px; }
}

/* === CUSTOMIZE MODE BOX POSITION + IMAGE FILL FIX === */
.customize-stage-frame{
  width:min(100%, 520px);
  min-height:780px;
  padding:14px;
  border-radius:36px;
}

.customize-main-image{
  width:100%;
  height:752px;
  object-fit:cover;
  object-position:center top;
  border-radius:28px;
}

.preview-card{
  right:-132px;
  width:112px;
  height:112px;
  border-radius:22px;
}

.preview-card::before{
  width:88px;
}

.preview-card::after{
  right:calc(100% + 88px);
}

.preview-hair{ top:56px; }
.preview-shirt{ top:232px; }
.preview-trousers{ top:414px; }
.preview-shoes{ top:596px; }

.hotspot{
  right:36px;
}

.hotspot::after{
  width:34px;
}

.hotspot-hair{ top:110px; }
.hotspot-shirt{ top:287px; }
.hotspot-trousers{ top:493px; }
.hotspot-shoes{ top:694px; }

@media (max-width: 1180px){
  .preview-card{
    right:-104px;
    width:98px;
    height:98px;
  }
  .preview-card::before{ width:64px; }
  .preview-card::after{ right:calc(100% + 64px); }
}

@media (max-width: 760px){
  .customize-stage-frame{
    width:100%;
    min-height:auto;
    padding:12px;
    overflow:visible;
  }
  .customize-main-image{
    height:auto;
    aspect-ratio: 3 / 4.4;
  }
  .preview-card{
    right:-6px;
    width:82px;
    height:82px;
  }
}



/* === CUSTOMIZE MODE FINAL FIX === */
.customize-section{
  padding: 74px 0 104px;
}

.customize-heading-wrap{
  max-width: 1500px;
  margin: 0 auto 34px;
  padding: 0 40px;
  text-align: center;
}

.customize-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding: 0 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.08);
  background:rgba(255,255,255,0.88);
  color:#6f6660;
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.customize-heading{
  margin-top:16px;
  font-family:'Syne',sans-serif;
  font-size:clamp(34px,4.4vw,64px);
  font-weight:800;
  line-height:.95;
  letter-spacing:-0.04em;
  color:#111;
}

.customize-layout{
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display:grid;
  grid-template-columns: minmax(240px,320px) minmax(420px,760px);
  justify-content:center;
  gap:42px;
  align-items:center;
}

.customize-details h4{
  font-family:'Syne',sans-serif;
  font-size:26px;
  line-height:1;
  letter-spacing:-0.02em;
  color:#111;
  margin-bottom:18px;
}

.details-lead{
  max-width:280px;
  font-size:15px;
  line-height:1.85;
  color:#6d6661;
}

.details-points{
  margin-top:24px;
  display:grid;
  gap:12px;
}

.detail-item{
  display:flex;
  align-items:center;
  gap:10px;
  color:#4b4744;
  font-size:13px;
  letter-spacing:.02em;
}

.detail-item span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,#111,#7d746e);
  box-shadow:0 0 0 6px rgba(17,17,17,0.06);
}

.customize-stage-panel{
  display:flex;
  justify-content:center;
}

.customize-stage-frame{
  position:relative;
  width:min(100%, 590px);
  height:900px;
  border-radius:38px;
  overflow:hidden;
  background:linear-gradient(180deg,#c7bbb2 0%, #b5a79d 100%);
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 34px 90px rgba(0,0,0,0.16);
}

.customize-stage-frame::before{
  content:"";
  position:absolute;
  inset:16px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.35);
  pointer-events:none;
  z-index:2;
}

.customize-stage-glow{
  position:absolute;
  inset:auto -10% -8% -10%;
  height:36%;
  background:radial-gradient(circle at center, rgba(255,255,255,0.28), transparent 65%);
  filter:blur(20px);
  z-index:0;
  pointer-events:none;
}

.customize-main-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  transition:opacity .45s ease, transform .75s cubic-bezier(.19,1,.22,1);
  z-index:1;
}

.preview-card{
  position:absolute;
  right:18px;
  width:112px;
  height:112px;
  padding:0;
  border:none;
  border-radius:24px;
  overflow:hidden;
  background:rgba(255,255,255,0.9);
  box-shadow:0 20px 42px rgba(0,0,0,0.18);
  cursor:pointer;
  z-index:4;
  transition:transform .45s cubic-bezier(.19,1,.22,1), box-shadow .45s cubic-bezier(.19,1,.22,1), border-radius .45s ease;
}

.preview-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .55s cubic-bezier(.19,1,.22,1), filter .55s ease;
}

.preview-card:hover,
.preview-card.is-active{
  transform:translateX(-6px) scale(1.05);
  box-shadow:0 26px 52px rgba(0,0,0,0.22);
}

.preview-card:hover img,
.preview-card.is-active img{
  transform:scale(1.08);
  filter:saturate(1.05) contrast(1.04);
}

.preview-hair{ top:88px; }
.preview-shirt{ top:268px; }
.preview-trousers{ top:452px; }
.preview-shoes{ top:636px; }

.hotspot{
  position:absolute;
  z-index:3;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 6px rgba(255,255,255,0.18), 0 0 0 1px rgba(0,0,0,0.1);
}

.hotspot::before{
  content:"";
  position:absolute;
  top:50%;
  left:100%;
  width:84px;
  height:1.5px;
  background:rgba(255,255,255,0.92);
  transform:translateY(-50%);
}

.hotspot::after{
  content:"";
  position:absolute;
  top:50%;
  left:calc(100% + 78px);
  width:10px;
  height:10px;
  border-top:1.5px solid rgba(255,255,255,0.92);
  border-right:1.5px solid rgba(255,255,255,0.92);
  transform:translateY(-50%) rotate(45deg);
}

.hotspot-hair{ top:124px; right:142px; }
.hotspot-shirt{ top:330px; right:170px; }
.hotspot-trousers{ top:560px; right:184px; }
.hotspot-shoes{ top:777px; right:168px; }


@media (max-width: 1440px){
  .choose-models-section{
    max-width:1560px;
    padding:0 36px;
  }

  .choose-models-layout{
    grid-template-columns:minmax(280px, 380px) minmax(280px, 340px) minmax(360px, 440px);
    column-gap:32px;
  }

  .choose-model-card-top,
  .choose-model-card-bottom{
    min-height:340px;
  }

  .choose-model-card-side{
    min-height:440px;
  }

  .choose-model-card-extra{
    width:290px;
    min-height:390px;
  }
}

@media (max-width: 1100px){
  .customize-layout{
    grid-template-columns:1fr;
    gap:22px;
  }

  .customize-details{
    text-align:center;
    max-width:580px;
    margin:0 auto;
  }

  .details-lead{
    max-width:none;
  }

  .details-points{
    justify-items:center;
  }

  .customize-stage-frame{
    height:780px;
  }

  .preview-card{
    width:96px;
    height:96px;
    right:14px;
  }

  .preview-hair{ top:78px; }
  .preview-shirt{ top:232px; }
  .preview-trousers{ top:390px; }
  .preview-shoes{ top:548px; }

  .hotspot-hair{ top:110px; right:126px; }
  .hotspot-shirt{ top:284px; right:152px; }
  .hotspot-trousers{ top:480px; right:168px; }
  .hotspot-shoes{ top:672px; right:150px; }

  .hotspot::before{ width:68px; }
  .hotspot::after{ left:calc(100% + 62px); }
}

@media (max-width: 680px){
  .customize-section{
    padding:58px 0 82px;
  }

  .customize-heading-wrap,
  .customize-layout{
    padding:0 18px;
  }

  .customize-heading{
    font-size:34px;
  }

  .customize-stage-frame{
    height:620px;
    border-radius:28px;
  }

  .preview-card{
    width:72px;
    height:72px;
    right:10px;
    border-radius:18px;
  }

  .preview-hair{ top:74px; }
  .preview-shirt{ top:190px; }
  .preview-trousers{ top:308px; }
  .preview-shoes{ top:426px; }

  .hotspot{
    width:8px;
    height:8px;
    left:calc(100% + 86px);
  }

  .hotspot::before{ width:46px; }
  .hotspot::after{
    width:8px;
    height:8px;
    left:calc(100% + 41px);
  }

  .hotspot-hair{ top:96px; right:94px; }
  .hotspot-shirt{ top:222px; right:116px; }
  .hotspot-trousers{ top:368px; right:124px; }
  .hotspot-shoes{ top:532px; right:110px; }
}

/* === MATCH HERO TITLE FONT FOR SECTION HEADINGS === */
.title-outfit-revolution{
  font-family:'Inter',sans-serif;
  font-weight:800;
  text-transform:uppercase;
  color:#000;
  display:inline-block;
  white-space:nowrap;
  letter-spacing:-0.09em;
  line-height:0.78;
  transform:scaleX(1.06) scaleY(0.84);
  transform-origin:center center;
}

.product-title.title-outfit-revolution{
  font-size:clamp(34px,4.3vw,78px);
}

.customize-heading.title-outfit-revolution{
  font-size:clamp(34px,4.3vw,78px);
  color:#111;
}

.customize-details-minimal{
  display:none;
}

.customize-layout{
  grid-template-columns:minmax(420px,620px);
}

@media (max-width: 1180px){
  .customize-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width: 680px){
  .title-outfit-revolution{
    letter-spacing:-0.075em;
    line-height:0.82;
    transform:scaleX(1.03) scaleY(0.88);
  }

  .product-title.title-outfit-revolution,
  .customize-heading.title-outfit-revolution{
    font-size:clamp(26px,8.4vw,46px);
    text-align:center;
  }
}


/* === CUSTOMIZE MODE REFINED LAYOUT === */
.customize-section-refined{
  max-width:1520px;
  margin:32px auto 120px;
  padding:0 40px;
}

.customize-heading-wrap-refined{
  margin-bottom:42px;
  align-items:center;
}

.customize-mode-title{
  font-size:clamp(48px,5.2vw,92px);
  line-height:0.9;
  letter-spacing:-0.04em;
  transform:none;
}

.customize-layout-refined{
  display:grid;
  grid-template-columns:minmax(240px,280px) minmax(760px,1fr);
  gap:54px;
  align-items:center;
  justify-content:center;
}

.customize-details-panel{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:28px;
}

.customize-side-title{
  font-family:'Syne',sans-serif;
  font-size:clamp(34px,3vw,58px);
  line-height:0.95;
  letter-spacing:-0.04em;
  color:#111;
}

.customize-details-card{
  width:100%;
  min-height:510px;
  padding:32px 26px;
  border:1.5px solid rgba(0,0,0,0.14);
  background:linear-gradient(180deg,#ffffff 0%,#f7f7f7 100%);
  box-shadow:0 18px 48px rgba(0,0,0,0.05);
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
}

.details-card-title{
  display:block;
  font-family:'Syne',sans-serif;
  font-size:clamp(42px,3.1vw,62px);
  line-height:0.95;
  letter-spacing:-0.04em;
  color:#111;
  margin-bottom:16px;
}

.customize-details-card p{
  font-size:15px;
  line-height:1.8;
  color:#5b5b5b;
}

.customize-stage-panel-refined{
  justify-content:center;
}

.customize-stage-frame-refined{
  position:relative;
  width:min(100%,980px);
  min-height:860px;
  padding:26px;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  overflow:visible;
}

.customize-stage-glow,
.hotspot,
.customize-kicker,
.customize-details-minimal,
.customize-details-sketch,
.annotation-label,
.card-line,
.card-arrow,
.thumb-arrow,
.customize-thumbs,
.customize-sidebar,
.customize-actions{
  display:none !important;
}

.customize-stage-blackout{
  position:absolute;
  inset:0 210px 0 0;
  background:#030303;
  box-shadow:0 28px 80px rgba(0,0,0,0.16);
}

.customize-main-image-refined{
  position:absolute;
  left:44px;
  top:44px;
  bottom:44px;
  width:calc(100% - 340px);
  height:calc(100% - 88px);
  object-fit:cover;
  object-position:center top;
  border-radius:0;
  box-shadow:none;
  filter:grayscale(0.02) contrast(1.03);
}

.customize-option-rail{
  position:absolute;
  top:72px;
  right:252px;
  width:126px;
  display:grid;
  gap:42px;
  z-index:3;
}

.preview-card-refined{
  position:relative;
  inset:auto !important;
  right:auto !important;
  top:auto !important;
  width:126px;
  height:126px;
  border-radius:0;
  border:2px solid rgba(255,255,255,0.72);
  background:#fff;
  overflow:hidden;
  box-shadow:none;
  transform:none !important;
}

.preview-card-refined img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease, filter .35s ease;
}

.preview-card-refined::before,
.preview-card-refined::after{
  content:none !important;
}

.preview-card-refined:hover,
.preview-card-refined.is-active{
  border-color:#ffffff;
  box-shadow:0 0 0 4px rgba(255,255,255,0.12);
}

.preview-card-refined:hover img,
.preview-card-refined.is-active img{
  transform:scale(1.04);
}

.customize-labels{
  position:absolute;
  top:72px;
  right:0;
  width:250px;
  display:grid;
  gap:42px;
  z-index:4;
}

.option-label{
  position:relative;
  min-height:126px;
  display:flex;
  align-items:center;
}

.option-label::before{
  content:'';
  position:absolute;
  right:100%;
  top:50%;
  width:54px;
  height:6px;
  background:#161616;
  transform:translateY(-50%);
}

.option-label::after{
  content:'';
  position:absolute;
  right:calc(100% - 2px);
  top:50%;
  width:34px;
  height:34px;
  border-top:6px solid #161616;
  border-right:6px solid #161616;
  transform:translateY(-50%) rotate(45deg);
}

.option-label span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:234px;
  min-height:58px;
  padding:0 26px;
  border:2px solid #191919;
  border-radius:999px;
  background:#fff;
  font-family:'Inter',sans-serif;
  font-size:16px;
  font-weight:800;
  letter-spacing:0.08em;
  color:#111;
  white-space:nowrap;
}

@media (max-width: 1280px){
  .customize-layout-refined{
    grid-template-columns:1fr;
    gap:34px;
  }
  .customize-details-panel{
    max-width:320px;
    margin:0 auto;
    align-items:center;
  }
  .customize-side-title{
    text-align:center;
  }
  .customize-stage-frame-refined{
    min-height:820px;
  }
}

@media (max-width: 980px){
  .customize-section-refined{
    padding:0 18px;
    margin:24px auto 90px;
  }
  .customize-mode-title{
    font-size:clamp(38px,10vw,64px);
  }
  .customize-stage-frame-refined{
    width:100%;
    min-height:auto;
    padding:18px;
  }
  .customize-stage-blackout{
    position:relative;
    inset:auto;
    height:760px;
  }
  .customize-main-image-refined{
    left:36px;
    top:36px;
    width:calc(100% - 230px);
    height:688px;
  }
  .customize-option-rail{
    top:52px;
    right:74px;
    gap:26px;
    width:100px;
  }
  .preview-card-refined{
    width:100px;
    height:100px;
  }
  .customize-labels{
    position:relative;
    top:auto;
    right:auto;
    width:100%;
    margin-top:28px;
    gap:14px;
  }
  .option-label{
    min-height:auto;
    justify-content:flex-end;
  }
  .option-label::before{
    width:38px;
  }
  .option-label::after{
    width:24px;
    height:24px;
    border-top-width:5px;
    border-right-width:5px;
  }
}

@media (max-width: 680px){
  .customize-stage-blackout{
    height:560px;
  }
  .customize-main-image-refined{
    left:22px;
    top:22px;
    width:calc(100% - 156px);
    height:516px;
  }
  .customize-option-rail{
    top:36px;
    right:34px;
    width:78px;
    gap:18px;
  }
  .preview-card-refined{
    width:78px;
    height:78px;
  }
  .option-label span{
    min-width:196px;
    min-height:50px;
    padding:0 18px;
    font-size:13px;
  }
  .customize-details-card{
    min-height:360px;
  }
  .details-card-title{
    font-size:42px;
  }
}


/* === CUSTOMIZE MODE PREMIUM COMPLETE UPDATE === */
.customize-section-premium{
  max-width:1500px;
  margin:38px auto 120px;
  padding:0 40px;
}

.customize-heading-wrap-premium{
  align-items:center;
  gap:14px;
  margin-bottom:40px;
}

.customize-section-subtitle{
  max-width:760px;
  text-align:center;
  font-size:15px;
  line-height:1.75;
  color:#6c6c6c;
}

.customize-layout-premium{
  display:grid;
  grid-template-columns:minmax(280px,340px) minmax(640px,860px);
  justify-content:center;
  gap:52px;
  align-items:center;
}

.customize-details-panel-premium{
  display:flex;
  flex-direction:column;
  gap:22px;
  align-self:center;
}

.customize-side-title{
  font-family:'Syne',sans-serif;
  font-size:clamp(30px,3vw,48px);
  line-height:0.95;
  letter-spacing:-0.05em;
  color:#111;
}

.customize-details-card-premium{
  position:relative;
  padding:28px 24px;
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,243,243,0.92));
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 24px 60px rgba(0,0,0,0.10);
  overflow:hidden;
}
.customize-details-card-premium::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(0,0,0,0.06), transparent 34%);
  pointer-events:none;
}
.details-card-kicker{
  display:inline-flex;
  margin-bottom:14px;
  padding:7px 12px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:10px;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
}
.details-card-title{
  display:block;
  font-family:'Syne',sans-serif;
  font-size:34px;
  line-height:0.96;
  letter-spacing:-0.04em;
  color:#111;
  margin:0 0 14px;
}
.details-card-copy{
  font-size:14px;
  line-height:1.8;
  color:#666;
  margin:0 0 22px;
}
.details-stat-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-bottom:22px;
}
.details-stat-item{
  padding:14px 14px 12px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 10px 24px rgba(0,0,0,0.05);
}
.details-stat-item small{
  display:block;
  margin-bottom:6px;
  font-size:10px;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:#8a8a8a;
}
.details-stat-item strong{
  font-family:'Syne',sans-serif;
  font-size:18px;
  font-weight:700;
  letter-spacing:-0.02em;
  color:#111;
}
.details-feature-list{
  list-style:none;
  display:grid;
  gap:10px;
}
.details-feature-list li{
  position:relative;
  padding-left:18px;
  font-size:13px;
  font-weight:600;
  color:#222;
  letter-spacing:0.02em;
}
.details-feature-list li::before{
  content:'';
  position:absolute;
  left:0;
  top:8px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#111;
}

.customize-stage-frame-premium{
  position:relative;
  min-height:840px;
  width:min(100%,860px);
  padding:34px 34px 34px 34px;
  border-radius:42px;
  background:linear-gradient(135deg,#050505 0%, #141414 55%, #0a0a0a 100%);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 35px 90px rgba(0,0,0,0.26);
  overflow:hidden;
}
.customize-stage-backdrop{
  position:absolute;
  inset:20px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.08);
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}
.customize-stage-glow-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(2px);
  pointer-events:none;
}
.customize-stage-glow-orb-one{
  width:260px;
  height:260px;
  background:radial-gradient(circle, rgba(255,255,255,0.12), transparent 66%);
  top:-30px;
  left:-20px;
}
.customize-stage-glow-orb-two{
  width:300px;
  height:300px;
  background:radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  bottom:-80px;
  left:120px;
}
.customize-main-image-premium{
  position:absolute;
  left:74px;
  bottom:0;
  width:58%;
  height:92%;
  object-fit:cover;
  object-position:center top;
  z-index:2;
  border-radius:26px;
  box-shadow:0 16px 40px rgba(0,0,0,0.24);
}

.customize-option-rail-premium{
  position:absolute;
  top:72px;
  right:42px;
  z-index:3;
  display:flex;
  flex-direction:column;
  gap:28px;
}
.preview-card-premium{
  position:relative;
  right:auto;
  width:128px;
  height:150px;
  border-radius:24px;
  overflow:hidden;
  background:#f5f5f5;
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:0 18px 34px rgba(0,0,0,0.24);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.preview-card-premium img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease, filter .45s ease;
}
.preview-card-premium::before,
.preview-card-premium::after{
  display:none;
}
.preview-card-premium:hover,
.preview-card-premium.is-active{
  transform:translateX(-10px) scale(1.03);
  box-shadow:0 24px 44px rgba(0,0,0,0.30);
  border-color:rgba(255,255,255,0.36);
}
.preview-card-premium:hover img,
.preview-card-premium.is-active img{
  transform:scale(1.06);
  filter:saturate(1.04) contrast(1.05);
}
.preview-chip{
  position:absolute;
  left:10px;
  right:10px;
  bottom:10px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,0.92);
  color:#111;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  backdrop-filter:blur(10px);
}

.customize-labels-premium{
  position:absolute;
  top:82px;
  right:-318px;
  display:flex;
  flex-direction:column;
  gap:34px;
  z-index:4;
}
.option-label{
  position:relative;
  min-width:250px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.option-label::before{
  content:'';
  position:absolute;
  right:100%;
  top:50%;
  width:78px;
  height:6px;
  background:#1a1a1a;
  transform:translateY(-50%);
  border-radius:999px;
}
.option-label::after{
  content:'';
  position:absolute;
  right:calc(100% + 2px);
  top:50%;
  width:38px;
  height:38px;
  border-top:7px solid #1a1a1a;
  border-right:7px solid #1a1a1a;
  transform:translateY(-50%) rotate(45deg);
  border-radius:4px;
}
.option-label span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:100%;
  height:100%;
  padding:0 28px;
  border-radius:999px;
  border:3px solid #111;
  background:rgba(255,255,255,0.98);
  color:#111;
  font-family:'Inter',sans-serif;
  font-size:20px;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  box-shadow:0 12px 30px rgba(0,0,0,0.10);
}

.option-label-hair{ margin-top:22px; }
.option-label-shirt{ margin-top:8px; }
.option-label-trousers{ margin-top:10px; }
.option-label-shoes{ margin-top:10px; }

@media (max-width: 1360px){
  .customize-layout-premium{
    grid-template-columns:minmax(260px,320px) minmax(560px,760px);
    gap:34px;
  }
  .customize-labels-premium{
    right:-270px;
  }
  .option-label{
    min-width:220px;
  }
  .option-label span{
    font-size:18px;
  }
}

@media (max-width: 1180px){
  .customize-layout-premium{
    grid-template-columns:1fr;
  }
  .customize-details-panel-premium{
    max-width:680px;
    margin:0 auto;
  }
  .customize-stage-frame-premium{
    margin:0 auto;
  }
  .customize-labels-premium{
    right:20px;
    top:auto;
    bottom:26px;
    gap:14px;
  }
  .option-label::before,
  .option-label::after{
    display:none;
  }
  .option-label{
    min-width:220px;
    height:50px;
  }
  .option-label span{
    font-size:15px;
  }
}

@media (max-width: 760px){
  .customize-section-premium{
    padding:0 18px;
    margin:30px auto 90px;
  }
  .customize-section-subtitle{
    font-size:13px;
  }
  .customize-details-card-premium{
    padding:22px 18px;
  }
  .details-card-title{
    font-size:28px;
  }
  .details-stat-grid{
    grid-template-columns:1fr;
  }
  .customize-stage-frame-premium{
    min-height:760px;
    padding:18px;
  }
  .customize-main-image-premium{
    left:20px;
    width:64%;
    height:86%;
  }
  .customize-option-rail-premium{
    top:56px;
    right:18px;
    gap:18px;
  }
  .preview-card-premium{
    width:102px;
    height:118px;
    border-radius:18px;
  }
  .preview-chip{
    font-size:9px;
    letter-spacing:0.1em;
    height:24px;
  }
  .customize-labels-premium{
    right:10px;
    left:10px;
    bottom:14px;
    align-items:flex-end;
  }
  .option-label{
    min-width:180px;
    height:42px;
  }
  .option-label span{
    font-size:12px;
    padding:0 18px;
    border-width:2px;
  }
}


/* === PRODUCT SECTION MONOCHROME POLISH UPDATE === */
.product-subtitle{
  max-width: 760px;
  margin-top: 12px;
  text-align: center;
  font-size: 15px;
  line-height: 1.75;
  color: #6c6c6c;
}

.product-tabs{
  margin-top: 24px;
  gap: 14px;
}

.product-tab{
  min-width: 118px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.95), rgba(255,255,255,0) 42%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.12), rgba(0,0,0,0) 52%),
    linear-gradient(135deg, #ffffff 0%, #f2f2f2 52%, #dbdbdb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 10px 24px rgba(0,0,0,0.07);
}

.product-tab:hover,
.product-tab.active{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.22), rgba(255,255,255,0) 40%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.1), rgba(255,255,255,0) 48%),
    linear-gradient(135deg, #111111 0%, #2e2e2e 52%, #000000 100%);
  color: #fff;
  border-color: rgba(0,0,0,0.9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 16px 32px rgba(0,0,0,0.18);
  transform: translateY(-3px);
}

.product-card{
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.98), rgba(255,255,255,0.18) 30%, rgba(255,255,255,0) 48%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.18), rgba(0,0,0,0.04) 34%, rgba(0,0,0,0) 58%),
    linear-gradient(145deg, #ffffff 0%, #f3f3f3 46%, #d9d9d9 100%);
  border: 1px solid rgba(0,0,0,0.09);
  box-shadow:
    0 24px 50px rgba(0,0,0,0.10),
    0 8px 22px rgba(0,0,0,0.05);
}

.product-card::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.65), rgba(255,255,255,0) 30%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.12), rgba(0,0,0,0) 34%);
  opacity:0.95;
  pointer-events:none;
  z-index:0;
}

.product-card-media{
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.95), transparent 36%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.16), transparent 36%),
    linear-gradient(160deg, #fbfbfb 0%, #efefef 52%, #dddddd 100%);
}

.product-card-media::before{
  inset: 12px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.58);
}

.product-card-media::after{
  height: 48%;
  background: linear-gradient(to top, rgba(0,0,0,0.46), rgba(0,0,0,0.12) 42%, transparent);
}

.product-card-glow{
  inset: auto -12% -18% auto;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(255,255,255,0.40) 0%, rgba(255,255,255,0.08) 28%, rgba(255,255,255,0) 68%);
}

.product-image-tag{
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.product-card:hover{
  transform: translateY(-12px);
  border-color: rgba(0,0,0,0.16);
  box-shadow:
    0 34px 76px rgba(0,0,0,0.16),
    0 12px 30px rgba(0,0,0,0.08);
}

@media (max-width: 1024px){
  .product-subtitle{
    font-size: 14px;
    max-width: 640px;
  }

  .product-tab{
    min-width: 104px;
    height: 42px;
    padding: 0 18px;
  }
}

@media (max-width: 680px){
  .product-subtitle{
    max-width: 340px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.7;
  }

  .product-tabs{
    margin-top: 18px;
    gap: 10px;
  }

  .product-tab{
    min-width: calc(50% - 5px);
    height: 40px;
    border-radius: 18px;
  }

  .product-card{
    border-radius: 28px;
  }

  .product-card-media::before{
    inset: 10px;
    border-radius: 20px;
  }
}


/* === CHOOSE MODELS SECTION === */
.choose-models-section{
  max-width:1720px;
  margin:90px auto 120px;
  padding:0 56px;
}

.choose-models-head{
  text-align:center;
  margin-bottom:52px;
}

.choose-models-title{
  font-family:'Syne',sans-serif;
  font-size:clamp(42px,5.4vw,84px);
  line-height:0.95;
  letter-spacing:-0.05em;
  color:#090909;
}

.choose-models-subtitle{
  margin-top:14px;
  font-family:'Inter',sans-serif;
  font-size:18px;
  line-height:1.6;
  color:#6e6e6e;
}

.choose-models-layout{
  display:grid;
  grid-template-columns:minmax(320px, 440px) minmax(320px, 380px) minmax(420px, 520px);
  justify-content:center;
  align-items:center;
  column-gap:42px;
}

.choose-details-card{
  min-height:620px;
  padding:40px 36px;
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,0.92), rgba(245,245,245,0.96));
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 28px 60px rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
  justify-content:center;
  transition:transform .45s ease, box-shadow .45s ease;
}

.choose-details-card:hover{
  transform:translateY(-8px);
  box-shadow:0 34px 70px rgba(0,0,0,0.12);
}

.choose-details-kicker{
  display:inline-flex;
  width:max-content;
  margin-bottom:16px;
  padding:8px 14px;
  border-radius:999px;
  background:#0d0d0d;
  color:#fff;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
}

.choose-details-title{
  font-family:'Syne',sans-serif;
  font-size:clamp(28px,2.6vw,42px);
  line-height:1.02;
  letter-spacing:-0.04em;
  color:#101010;
}

.choose-details-copy{
  margin-top:18px;
  font-size:15px;
  line-height:1.85;
  color:#616161;
}

.choose-details-list{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.choose-detail-pill{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.08);
  background:rgba(255,255,255,0.86);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  transition:transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}

.choose-detail-pill:hover{
  transform:translateY(-3px);
  background:#111;
  color:#fff;
  box-shadow:0 14px 28px rgba(0,0,0,0.12);
}

.choose-models-stack{
  display:flex;
  flex-direction:column;
  gap:34px;
}

.choose-models-stack-side{
  justify-self:start;
}


.choose-models-side-wrap{
  display:flex;
  align-items:center;
  gap:28px;
  justify-self:start;
}

.choose-side-divider{
  width:1px;
  height:460px;
  background:linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.14), rgba(0,0,0,0.04));
  box-shadow:0 0 0 1px rgba(255,255,255,0.35);
  border-radius:999px;
  flex:0 0 1px;
}

.choose-model-card{
  position:relative;
  width:100%;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.08);
  background:linear-gradient(180deg,#fafafa,#efefef);
  box-shadow:0 24px 50px rgba(0,0,0,0.08);
  transition:transform .5s cubic-bezier(.19,1,.22,1), box-shadow .5s cubic-bezier(.19,1,.22,1);
}

.choose-model-card:hover{
  transform:translateY(-10px);
  box-shadow:0 34px 70px rgba(0,0,0,0.14);
}

.choose-model-card-top,
.choose-model-card-bottom{
  min-height:360px;
}

.choose-model-card-side{
  min-height:470px;
}

.choose-model-card-extra{
  width:320px;
  min-height:410px;
}

.choose-model-media{
  position:absolute;
  inset:0;
}

.choose-model-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .7s cubic-bezier(.19,1,.22,1), filter .7s ease;
  filter:saturate(0.98) contrast(1.03) brightness(1.01);
}

.choose-model-card:hover .choose-model-media img{
  transform:scale(1.06);
  filter:saturate(1.02) contrast(1.05) brightness(1.03);
}

.choose-model-card::before{
  content:'';
  position:absolute;
  inset:12px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.5);
  z-index:2;
  pointer-events:none;
}

.choose-model-card::after{
  content:'';
  position:absolute;
  inset:auto 0 0 0;
  height:42%;
  background:linear-gradient(to top, rgba(0,0,0,0.58), rgba(0,0,0,0.12) 45%, transparent);
  z-index:1;
}

.choose-model-info{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:3;
  display:flex;
  flex-direction:column;
  gap:8px;
  color:#fff;
}

.choose-model-tag{
  display:inline-flex;
  width:max-content;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.14);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.24);
  font-size:10px;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
}

.choose-model-info strong{
  font-family:'Syne',sans-serif;
  font-size:clamp(30px,2.8vw,44px);
  line-height:0.98;
  letter-spacing:-0.04em;
}


@media (max-width: 1440px){
  .choose-models-section{
    max-width:1560px;
    padding:0 36px;
  }

  .choose-models-layout{
    grid-template-columns:minmax(280px, 380px) minmax(280px, 340px) minmax(360px, 440px);
    column-gap:32px;
  }

  .choose-model-card-top,
  .choose-model-card-bottom{
    min-height:340px;
  }

  .choose-model-card-side{
    min-height:440px;
  }

  .choose-model-card-extra{
    width:290px;
    min-height:390px;
  }
}

@media (max-width: 1100px){
  .choose-models-layout{
    grid-template-columns:1fr 1fr;
    row-gap:26px;
  }
  .choose-details-card{
    grid-column:1 / -1;
    min-height:auto;
  }
  .choose-models-side-wrap{
    grid-column:1 / -1;
    justify-content:center;
    flex-wrap:wrap;
  }
  .choose-models-stack-side,
  .choose-models-stack-extra{
    justify-self:stretch;
  }
  .choose-side-divider{
    height:260px;
  }
}


@media (max-width: 680px){
  .choose-models-section{
    margin:70px auto 90px;
    padding:0 18px;
  }
  .choose-models-head{
    margin-bottom:30px;
  }
  .choose-models-subtitle{
    font-size:15px;
  }
  .choose-models-layout{
    grid-template-columns:1fr;
    gap:20px;
  }
  .choose-models-stack{
    gap:20px;
  }
  .choose-models-side-wrap{
    flex-direction:column;
    gap:18px;
  }
  .choose-side-divider{
    width:120px;
    height:1px;
  }
  .choose-model-card-top,
  .choose-model-card-bottom,
  .choose-model-card-side,
  .choose-model-card-extra{
    min-height:320px;
  }
  .choose-details-card{
    padding:24px 20px;
    border-radius:24px;
  }
}

/* === MOBILE RESPONSIVE FINAL FIX === */

/* desktop spacing / alignment */
.choose-models-section{
  margin: 84px auto 110px;
  padding: 0 40px;
}

.choose-models-layout{
  transform: translateX(40px);
}

.product-section{
  margin-bottom: 34px;
}

.customize-section{
  margin-top: 0;
  margin-bottom: 110px;
}

/* tablet */
@media (max-width: 1180px){
  .page{
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-container{
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .nav-links{
    display: none;
  }

  .nav-icons{
    gap: 14px;
  }

  .hero{
    grid-template-columns: 1fr;
    row-gap: 34px;
    min-height: auto;
    padding: 26px 0 24px;
    transform: none;
  }

  .hero-text{
    max-width: 100%;
    margin-top: 0;
  }

  .hero-description,
  .hero-description p{
    max-width: 100%;
  }

  .hero-images{
    width: 100%;
    max-width: 720px;
    height: 520px;
    margin: 0 auto;
    justify-self: center;
    transform: none;
  }

  .img-left{
    left: 90px;
    top: 30px;
  }

  .img-right{
    left: 330px;
    top: 76px;
  }

  .product-section-inner,
  .customize-section,
  .choose-models-section{
    padding-left: 0;
    padding-right: 0;
  }

  .product-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choose-models-layout{
    transform: none;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .choose-details-card{
    grid-column: 1 / -1;
    min-height: auto;
  }

  .choose-models-side-wrap{
    grid-column: 1 / -1;
    justify-content: center;
  }
}

/* mobile */
@media (max-width: 768px){
  .page{
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 88px;
  }

  .navbar{
    padding: 12px 16px;
  }

  .nav-container{
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .logo{
    font-size: 20px;
    gap: 8px;
  }

  .nav-icons{
    gap: 10px;
  }

  .icon-btn{
    padding: 6px;
  }

  .hero{
    padding: 18px 0 10px;
    row-gap: 26px;
  }

  .main-heading{
    font-size: clamp(34px, 12vw, 54px);
    line-height: 0.94;
  }

  .top-line,
  .bottom-line{
    white-space: normal;
  }

  .hero-description p{
    font-size: 14px;
    line-height: 1.75;
    margin-top: 18px;
  }

  .social-bar{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 100%;
  }

  .social-link{
    justify-content: center;
    width: 100%;
  }

  .hero-images{
    max-width: 100%;
    height: 350px;
    margin-top: 6px;
    overflow: hidden;
  }

  .img-container{
    width: 170px;
    height: 240px;
  }

  .img-left{
    left: 18px;
    top: 24px;
    --shape-transform: rotate(-8deg) scale(1.22) perspective(800px) rotateY(-7deg);
    transform: var(--shape-transform);
  }

  .img-right{
    left: 155px;
    top: 74px;
    --shape-transform: rotate(8deg) scale(1.02) perspective(800px) rotateY(7deg);
    transform: var(--shape-transform);
  }

  .product-section{
    padding: 12px 0 18px;
    margin-bottom: 22px;
  }

  .product-title,
  .customize-heading,
  .choose-models-title{
    font-size: clamp(30px, 10vw, 44px);
    line-height: 0.98;
    text-align: center;
  }

  .product-subtitle,
  .customize-section-subtitle,
  .choose-models-subtitle{
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    max-width: 100%;
  }

  .product-tabs{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .product-tab{
    min-width: 0;
    width: 100%;
  }

  .product-grid{
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 22px;
  }

  .product-card,
  .product-card-media,
  .product-card img{
    min-height: 360px;
  }

  .customize-section{
    margin: 0 auto 70px;
    padding: 0;
  }

  .customize-heading-wrap-premium{
    margin-bottom: 24px;
  }

  .customize-layout-premium{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .customize-details-panel-premium,
  .customize-stage-panel-premium{
    width: 100%;
  }

  .customize-details-card-premium{
    padding: 22px 18px;
  }

  .customize-stage-frame-premium{
    width: 100%;
    min-height: auto;
    padding: 12px;
    border-radius: 24px;
    overflow: hidden;
  }

  .customize-main-image-premium{
    height: auto;
    min-height: 420px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 18px;
  }

  .customize-option-rail-premium{
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
  }

  .preview-card-premium{
    position: relative;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    height: 116px;
  }

  .customize-labels-premium{
    display: none;
  }

  .choose-models-section{
    margin: 56px auto 72px;
    padding: 0;
  }

  .choose-models-head{
    margin-bottom: 24px;
  }

  .choose-models-layout{
    transform: none;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .choose-details-card{
    min-height: auto;
    padding: 24px 18px;
    border-radius: 26px;
  }

  .choose-details-title{
    font-size: clamp(24px, 8vw, 38px);
  }

  .choose-details-copy{
    font-size: 14px;
    line-height: 1.8;
  }

  .choose-details-list{
    gap: 10px;
  }

  .choose-detail-pill{
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .choose-models-stack{
    gap: 18px;
  }

  .choose-models-side-wrap{
    flex-direction: column;
    gap: 18px;
    justify-self: stretch;
  }

  .choose-side-divider{
    width: 100px;
    height: 1px;
  }

  .choose-model-card-top,
  .choose-model-card-bottom,
  .choose-model-card-side,
  .choose-model-card-extra{
    min-height: 300px;
    width: 100%;
  }

  .choose-model-info{
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .choose-model-info strong{
    font-size: clamp(26px, 9vw, 38px);
  }
}

/* small mobile */
@media (max-width: 480px){
  .page{
    padding-left: 12px;
    padding-right: 12px;
  }

  .main-heading{
    font-size: 32px;
  }

  .hero-images{
    height: 300px;
  }

  .img-container{
    width: 148px;
    height: 214px;
  }

  .img-left{
    left: 8px;
    top: 20px;
    --shape-transform: rotate(-8deg) scale(1.10) perspective(800px) rotateY(-6deg);
    transform: var(--shape-transform);
  }

  .img-right{
    left: 118px;
    top: 70px;
    --shape-transform: rotate(8deg) scale(0.92) perspective(800px) rotateY(6deg);
    transform: var(--shape-transform);
  }

  .social-bar{
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card-media,
  .product-card img{
    min-height: 320px;
  }

  .customize-main-image-premium{
    min-height: 360px;
  }

  .preview-card-premium{
    height: 104px;
  }

  .choose-details-card{
    padding: 22px 16px;
  }

  .choose-model-card-top,
  .choose-model-card-bottom,
  .choose-model-card-side,
  .choose-model-card-extra{
    min-height: 270px;
  }
}


/* === FAQ SECTION: clean rows, no cards === */
.faq-section{
  padding: 34px 0 110px;
  background: #fff;
}

.faq-container{
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-heading-wrap{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.faq-kicker{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8b8b8b;
}

.faq-title{
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #111;
  margin-bottom: 14px;
}

.faq-subtitle{
  font-size: 15px;
  line-height: 1.8;
  color: #676767;
}

.faq-list{
  max-width: 1040px;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.faq-item{
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.35s ease;
}

.faq-item[open]{
  background: linear-gradient(180deg, rgba(0,0,0,0.022), rgba(0,0,0,0.012));
}

.faq-item summary{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #111;
  transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary i{
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  color: #111;
  font-size: 13px;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.faq-item:hover summary i,
.faq-item[open] summary i{
  background: #111;
  color: #fff;
  transform: rotate(45deg);
  box-shadow: 0 16px 32px rgba(0,0,0,0.14);
}

.faq-answer{
  padding: 0 0 24px;
  max-width: 900px;
}

.faq-answer p{
  font-size: 15px;
  line-height: 1.85;
  color: #666;
}

/* === FOOTER === */
.site-footer{
  margin-top: 10px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.09), transparent 30%),
    linear-gradient(180deg, #101010 0%, #151515 100%);
  color: #fff;
}

.site-footer-inner{
  max-width: 1500px;
  margin: 0 auto;
  padding: 64px 40px 40px;
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(400px, 1fr);
  gap: 48px;
  align-items: start;
}

.footer-kicker{
  display: inline-block;
  margin-bottom: 14px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.footer-brand h3{
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.footer-brand p{
  max-width: 560px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
}

.footer-links-wrap{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 26px;
}

.footer-links-col{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title{
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.footer-links-col a,
.footer-note{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links-col a:hover{
  color: #fff;
  transform: translateX(4px);
}

.site-footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px 28px;
  max-width: 1500px;
  margin: 0 auto;
}

.site-footer-bottom p{
  font-size: 13px;
  color: rgba(255,255,255,0.56);
}

@media (max-width: 1024px){
  .faq-container,
  .site-footer-inner,
  .site-footer-bottom{
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-footer-inner{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links-wrap{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 680px){
  .faq-section{
    padding: 20px 0 74px;
  }

  .faq-item summary{
    padding: 20px 0;
    font-size: 18px;
  }

  .faq-item summary i{
    width: 36px;
    height: 36px;
  }

  .faq-answer p{
    font-size: 14px;
  }

  .site-footer-inner{
    padding-top: 48px;
  }

  .footer-links-wrap{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand h3{
    font-size: 30px;
  }
}
