/* Main theme section styles extracted from Blade templates. */

/* header-elite */
.section-header-elite.elite-header{
  width:min(1520px, 100%);
  border-radius:52px;
  background:rgba(247, 242, 234, 0.85);
  box-shadow:0 24px 60px rgba(0,0,0,0.18);
  overflow:hidden;
}
.section-header-elite .hero__top{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:56px 1fr auto 1fr auto;
  grid-template-areas:"menu left logo right actions";
  align-items:center;
  gap:18px;
  padding:18px 20px;
  background:rgba(247, 242, 234, 0.72);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.section-header-elite .nav{
  display:flex;
  gap:76px;
  justify-content:center;
  align-items:center;
  white-space:nowrap;
}
.section-header-elite .nav--left{grid-area:left; justify-content:flex-start; justify-self:start}
.section-header-elite .nav--right{grid-area:right; justify-content:flex-end; justify-self:end}
.section-header-elite .hero__top > .icon-btn{grid-area:menu}
.section-header-elite .logo-pill{grid-area:logo}
.section-header-elite .header-actions,
.section-header-elite .header-action{
  grid-area:actions;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
}
.section-header-elite .nav__link{
  font-weight:700;
  font-size:14px;
  letter-spacing:0.08em;
  opacity:0.95;
  color:#2a2323;
  text-decoration:none;
}
.section-header-elite .nav__link:hover{opacity:1}

.section-header-elite .logo-pill{
  height:74px;
  padding:0 44px;
  border-radius:999px;
  background:#ffffff;
  display:grid;
  place-items:center;
  box-shadow:0 18px 40px rgba(0,0,0,0.14);
  position:relative;
  margin:0 auto;
  z-index:1;
}
.section-header-elite .logo{
  width:64px;
  height:64px;
  display:block;
  object-fit:contain;
}
.section-header-elite .icon-btn{
  width:56px;
  height:56px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:transform 140ms ease, background 140ms ease;
}
.section-header-elite .header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
}
.section-header-elite .icon-btn--solid{
  background:rgba(255,255,255,0.92);
  color:#111;
}
.section-header-elite .icon-btn:hover{transform:translateY(-1px)}
.section-header-elite .icon{width:22px;height:22px;display:block}

@media (max-width: 1100px){
  .section-header-elite .hero__top{
    grid-template-columns:56px 1fr auto 56px;
    grid-template-columns:56px 1fr auto auto;
    grid-template-areas:"menu left logo actions";
  }
  .section-header-elite .nav--right{display:none}
}

@media (max-width: 900px){
  .section-header-elite.elite-header{border-radius:34px}
  .section-header-elite .hero__top{
    display:flex !important;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    padding:12px 14px;
  }
  .section-header-elite .icon-btn{display:none !important}
  .section-header-elite .nav{display:flex !important; gap:10px}
  .section-header-elite .nav__link{display:inline-flex !important; font-size:12px}
  .section-header-elite .nav--left{order:1}
  .section-header-elite .logo-pill{order:2; height:56px; padding:0 22px; margin:0 auto; max-width:60%}
  .section-header-elite .nav--right{order:3}
  .section-header-elite .logo{width:48px;height:48px}
  .section-header-elite .icon-btn{width:44px;height:44px}
  .section-header-elite .icon{width:18px;height:18px}
}

/* hero-elite */
.section-hero-elite {
    --bgTop: #d08d86;
    --bgMid: #d9a0a0;
    --bgBot: #c78994;
    --glass: rgba(255,255,255,0.30);
    --glass2: rgba(255,255,255,0.20);
    --text: #ffffff;
    --shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.section-hero-elite.hero {
    width: min(1520px, 100%);
    height: min(760px, 84vh);
    border-radius: 52px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, var(--bgTop), var(--bgMid) 40%, var(--bgBot));
    box-shadow: var(--shadow);
}

.section-hero-elite .hero__bg {
    position: absolute;
    inset: -40px;
    pointer-events: none;
    background:
        radial-gradient(900px 520px at 55% 20%, rgba(255,255,255,0.28), rgba(255,255,255,0) 60%),
        radial-gradient(1200px 800px at 50% 100%, rgba(0,0,0,0.14), rgba(0,0,0,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
}

.section-hero-elite .hero__bg::before,
.section-hero-elite .hero__bg::after {
    content: "";
    position: absolute;
    inset: 80px 80px 120px 80px;
    border-radius: 40px;
    background: rgba(255,255,255,0.13);
    clip-path: polygon(10% 85%, 36% 20%, 62% 85%, 100% 8%, 100% 100%, 0% 100%, 0% 50%);
    filter: blur(0.2px);
}

.section-hero-elite .hero__bg::after {
    inset: 120px 140px 160px 140px;
    background: rgba(255,255,255,0.10);
    clip-path: polygon(0% 100%, 18% 64%, 38% 100%, 62% 35%, 82% 100%, 100% 64%, 100% 100%);
}

.section-hero-elite .hero__top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 56px 1fr auto 1fr 56px;
    align-items: center;
    gap: 18px;
    padding: 18px 20px 0;
    background: rgba(247, 242, 234, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-hero-elite .nav {
    display: flex;
    gap: 76px;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.section-hero-elite .nav--left { justify-content: flex-start; }
.section-hero-elite .nav--right { justify-content: flex-end; }

.section-hero-elite .nav__link {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    opacity: 0.95;
    color: inherit;
    text-decoration: none;
}

.section-hero-elite .nav__link:hover { opacity: 1; }

.section-hero-elite .logo-pill {
    height: 74px;
    padding: 0 44px;
    border-radius: 999px;
    background: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.section-hero-elite .logo {
    width: 64px;
    height: 64px;
    display: block;
}

.section-hero-elite .icon-btn {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 140ms ease, background 140ms ease;
}

.section-hero-elite .icon-btn--solid {
    background: rgba(255,255,255,0.92);
    color: #111;
}

.section-hero-elite .icon-btn:hover { transform: translateY(-1px); }

.section-hero-elite .icon {
    width: 22px;
    height: 22px;
    display: block;
}

.section-hero-elite .hero__main {
    position: relative;
    z-index: 2;
    height: calc(100% - 120px);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 10px 36px 58px;
    gap: 22px;
    background: rgba(247, 242, 234, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-hero-elite .stage {
    position: relative;
    height: 100%;
    display: grid;
    place-items: center;
}

.section-hero-elite .bottle {
    width: min(520px, 42vw);
    height: auto;
    filter: drop-shadow(0 30px 65px rgba(0,0,0,0.22));
    transform: translateY(-6px);
}

.section-hero-elite .purchase {
    position: absolute;
    right: 20%;
    bottom: 18%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-hero-elite .qty {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.40);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.14);
}

.section-hero-elite .qty__btn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: rgba(255,255,255,0.75);
    display: grid;
    place-items: center;
    transition: transform 120ms ease, background 120ms ease;
}

.section-hero-elite .qty__btn:hover {
    transform: scale(1.03);
    background: #fff;
}

.section-hero-elite .qty__value {
    min-width: 18px;
    text-align: center;
    font-weight: 700;
    color: #ffffff;
}

.section-hero-elite .add {
    border: 0;
    cursor: pointer;
    height: 54px;
    padding: 0 20px 0 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.14);
    color: #ffffff;
    font-weight: 700;
}

.section-hero-elite .add.is-added {
    transform: translateY(-1px);
    box-shadow: 0 24px 45px rgba(0,0,0,0.18);
}

.section-hero-elite .add:hover { background: rgba(255,255,255,0.42); }

.section-hero-elite .add__icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    display: grid;
    place-items: center;
}

.section-hero-elite .add__icon .icon {
    width: 18px;
    height: 18px;
}

.section-hero-elite .float {
    width: min(420px, 30vw);
    height: 100%;
    position: relative;
    display: grid;
    align-content: center;
    justify-items: end;
    padding-right: 10px;
}

.section-hero-elite .float__card {
    width: min(320px, 28vw);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(0,0,0,0.22);
    background: rgba(0,0,0,0.14);
}

.section-hero-elite .float__img {
    display: block;
    width: 100%;
    height: auto;
}

.section-hero-elite .float__badge {
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translate(-15%, -10%);
    opacity: 0.92;
}

.section-hero-elite .badge {
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.18));
    animation: section-hero-elite-spin 14s linear infinite;
}

@keyframes section-hero-elite-spin {
    to { transform: rotate(360deg); }
}

.section-hero-elite .float__mini-cart {
    position: absolute;
    right: 18px;
    bottom: 88px;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
}

.section-hero-elite .dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #111;
    top: 16px;
    right: 16px;
}

.section-hero-elite .hero__bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    padding: 0 60px;
    z-index: 2;
}

.section-hero-elite .progress {
    position: relative;
    width: 520px;
    height: 22px;
    opacity: 0.85;
}

.section-hero-elite .progress__line {
    position: absolute;
    left: 0;
    right: 30px;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.65);
    border-radius: 999px;
}

.section-hero-elite .progress__arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-60%);
    font-size: 20px;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 1100px) {
    .section-hero-elite .hero { height: min(780px, 90vh); }
    .section-hero-elite .hero__top {
        grid-template-columns: 56px 1fr auto 56px;
        grid-template-areas: "menu left logo account";
    }
    .section-hero-elite .nav--right { display: none; }
    .section-hero-elite .purchase { right: 12%; bottom: 16%; }
    .section-hero-elite .float { display: none; }
    .section-hero-elite .hero__main {
        grid-template-columns: 1fr;
        padding: 8px 26px 64px;
    }
    .section-hero-elite .progress { width: 420px; }
}

@media (max-width: 680px) {
    .section-hero-elite .hero { border-radius: 34px; }
    .section-hero-elite .nav { gap: 18px; }
    .section-hero-elite .nav__link { font-size: 12px; }
    .section-hero-elite .logo-pill {
        height: 64px;
        padding: 0 30px;
    }
    .section-hero-elite .logo {
        width: 56px;
        height: 56px;
    }
    .section-hero-elite .bottle { width: min(360px, 78vw); }
    .section-hero-elite .purchase {
        position: static;
        margin-top: 10px;
        justify-content: center;
    }
    .section-hero-elite .stage { align-content: center; }
    .section-hero-elite .hero__bottom { padding: 0 28px; }
    .section-hero-elite .progress { width: 280px; }
}

/* about_us-elite */
.section-about-us-elite {
  --bg-hanging: radial-gradient(900px 420px at 65% 10%, rgba(167, 239, 198, 0.55), rgba(255,255,255,0) 60%),
    radial-gradient(900px 520px at 25% 90%, rgba(255, 213, 230, 0.60), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #f7f2ea, #f0efe7);
  --shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.section-about-us-elite .about{
  width:min(1520px, 100%);
  border-radius:52px;
  background:var(--bg-hanging);
  box-shadow:var(--shadow);
  overflow:hidden;
  color:#0b1b2a;
}
.section-about-us-elite .a-wrap{padding:76px 42px 72px}
.section-about-us-elite .a-pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#f3f5ff;
  color:#5f73ff;
  font-weight:800;
  font-size:13px;
}
.section-about-us-elite .a-pill__spark{
  width:10px;height:10px;border-radius:999px;
  background:#5f73ff;
  box-shadow:0 0 0 6px rgba(95,115,255,0.14);
}
.section-about-us-elite .a-title{
  margin:18px 0 10px;
  font-size:54px;
  line-height:1.05;
  letter-spacing:-0.03em;
  font-weight:900;
  color:#0b0b0d;
}
.section-about-us-elite .a-sub{
  margin:0;
  max-width:820px;
  font-size:15px;
  line-height:1.8;
  color:rgba(11, 27, 42, 0.58);
}

.section-about-us-elite .a-hero{
  margin-top:46px;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:34px;
  align-items:stretch;
}
.section-about-us-elite .a-story{
  background:rgba(255,255,255,0.7);
  border:1px solid rgba(11, 27, 42, 0.08);
  border-radius:28px;
  padding:30px 30px 28px;
  box-shadow:0 20px 44px rgba(10, 30, 45, 0.06);
}
.section-about-us-elite .a-h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
  letter-spacing:0.02em;
}
.section-about-us-elite .a-p{
  margin:0;
  font-size:14px;
  line-height:1.8;
  color:rgba(11, 27, 42, 0.62);
}
.section-about-us-elite .a-stats{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.section-about-us-elite .a-stat{
  padding:14px 14px 12px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(95,115,255,0.10), rgba(255,255,255,0.70));
  border:1px solid rgba(95,115,255,0.16);
}
.section-about-us-elite .a-stat__n{
  font-size:24px;
  font-weight:900;
  color:#5f73ff;
  letter-spacing:-0.02em;
}
.section-about-us-elite .a-stat__l{
  margin-top:2px;
  font-size:12px;
  color:rgba(11, 27, 42, 0.55);
  font-weight:700;
}
.section-about-us-elite .a-actions{
  margin-top:22px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.section-about-us-elite .a-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:0.01em;
}
.section-about-us-elite .a-btn--primary{
  background:linear-gradient(180deg, #6e8bff, #5f73ff);
  color:#fff;
  box-shadow:0 18px 40px rgba(95,115,255,0.25);
}
.section-about-us-elite .a-btn--ghost{
  background:rgba(11, 27, 42, 0.04);
  color:#0b0b0d;
  border:1px solid rgba(11, 27, 42, 0.10);
}
.section-about-us-elite .a-btn--ghost:hover{background:rgba(11, 27, 42, 0.06)}

.section-about-us-elite .a-art{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,90,160,0.22), rgba(95,115,255,0.18));
  border:1px solid rgba(11, 27, 42, 0.08);
  box-shadow:0 22px 60px rgba(0,0,0,0.12);
}
.section-about-us-elite .a-art__card{
  position:absolute;
  inset:auto;
  border-radius:24px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(255,255,255,0.65);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.section-about-us-elite .a-art__card--top{
  left:16px; right:16px; top:16px;
  height:68%;
  padding:18px 18px 16px;
}
.section-about-us-elite .a-art__badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:#ff5aa0;
  color:#fff;
  font-weight:900;
  font-size:12px;
  letter-spacing:0.1em;
}
.section-about-us-elite .a-art__lines{
  position:absolute;
  inset:0;
  background:
    radial-gradient(closest-side at 25% 25%, rgba(95,115,255,0.18), rgba(0,0,0,0) 55%),
    radial-gradient(closest-side at 80% 70%, rgba(255,90,160,0.18), rgba(0,0,0,0) 55%);
  opacity:0.9;
  pointer-events:none;
}
.section-about-us-elite .a-art__bottle{
  position:absolute;
  left:50%;
  top:50%;
  width:140px;
  height:240px;
  transform:translate(-50%, -52%);
  border-radius:36px;
  background:linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.35));
  box-shadow:0 30px 70px rgba(0,0,0,0.18);
}
.section-about-us-elite .a-art__bottle::before{
  content:"";
  position:absolute;
  left:50%;
  top:-26px;
  width:86px;
  height:60px;
  transform:translateX(-50%);
  border-radius:26px;
  background:linear-gradient(180deg, rgba(11,27,42,0.18), rgba(11,27,42,0.06));
}
.section-about-us-elite .a-art__caption{
  position:absolute;
  left:16px;
  right:16px;
  bottom:14px;
  padding:12px 12px 10px;
  border-radius:16px;
  background:rgba(255,255,255,0.75);
  border:1px solid rgba(11, 27, 42, 0.08);
}
.section-about-us-elite .a-art__capTitle{font-weight:900; font-size:14px}
.section-about-us-elite .a-art__capSub{margin-top:2px; font-size:12px; color:rgba(11,27,42,0.55); font-weight:700}
.section-about-us-elite .a-art__card--bot{
  left:16px; right:16px; bottom:16px;
  height:24%;
}
.section-about-us-elite .a-art__ring{
  position:absolute;
  width:160px;
  height:160px;
  border-radius:999px;
  border:10px solid rgba(95,115,255,0.22);
  right:-40px;
  bottom:-70px;
}
.section-about-us-elite .a-art__dot{
  position:absolute;
  width:14px;height:14px;border-radius:999px;
  background:#ff5aa0;
  left:24px;
  bottom:22px;
  box-shadow:0 0 0 10px rgba(255,90,160,0.14);
}

.section-about-us-elite .a-values{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3, minmax(220px, 1fr));
  gap:18px;
}
.section-about-us-elite .a-val{
  border-radius:24px;
  border:1px solid rgba(11, 27, 42, 0.08);
  background:#ffffff;
  padding:20px 18px 18px;
  box-shadow:0 18px 44px rgba(10, 30, 45, 0.05);
}
.section-about-us-elite .a-ico{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;
  background:rgba(95,115,255,0.10);
  color:#5f73ff;
  font-weight:900;
  margin-bottom:10px;
}
.section-about-us-elite .a-val__t{margin:0; font-size:16px; font-weight:900}
.section-about-us-elite .a-val__d{margin:6px 0 0; font-size:13px; line-height:1.7; color:rgba(11,27,42,0.58)}

.section-about-us-elite .a-timeline{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.section-about-us-elite .a-step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 14px 12px;
  border-radius:20px;
  background:rgba(11, 27, 42, 0.03);
  border:1px solid rgba(11, 27, 42, 0.06);
}
.section-about-us-elite .a-step__dot{
  width:12px;height:12px;border-radius:999px;
  background:#5f73ff;
  margin-top:4px;
  box-shadow:0 0 0 8px rgba(95,115,255,0.12);
}
.section-about-us-elite .a-step__t{font-weight:900; font-size:13px}
.section-about-us-elite .a-step__d{margin-top:2px; font-size:12px; line-height:1.6; color:rgba(11,27,42,0.58); font-weight:700}

@media (max-width: 1100px){
  .section-about-us-elite .about{border-radius:34px}
  .section-about-us-elite .a-wrap{padding:64px 24px 62px}
  .section-about-us-elite .a-title{font-size:46px}
  .section-about-us-elite .a-hero{grid-template-columns:1fr; }
  .section-about-us-elite .a-values{grid-template-columns:1fr}
  .section-about-us-elite .a-timeline{grid-template-columns:1fr}
}

@media (max-width: 680px){
  .section-about-us-elite .about{border-radius:28px}
  .section-about-us-elite .a-wrap{padding:54px 18px 54px}
  .section-about-us-elite .a-title{font-size:40px}
  .section-about-us-elite .a-stats{grid-template-columns:1fr}
}

/* contact_form-elite */
.section-contact-form-elite {
    --shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.section-contact-form-elite .contact {
    width: min(1520px, 100%);
    border-radius: 52px;
    background: linear-gradient(180deg, #dff4f2 0%, #e9f8f7 45%, #ffffff 46%, #ffffff 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
    color: #0b1b2a;
}

.section-contact-form-elite .ct-wrap {
    padding: 72px 42px 82px;
}

.section-contact-form-elite .ct-head {
    text-align: center;
}

.section-contact-form-elite .ct-title {
    margin: 0;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0b0b0d;
}

.section-contact-form-elite .ct-sub {
    margin: 12px auto 38px;
    max-width: 860px;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(11, 27, 42, 0.55);
}

.section-contact-form-elite .ct-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 26px 70px rgba(0,0,0,0.10);
    overflow: hidden;
    display: grid;
    grid-template-columns: 340px 1fr;
    min-height: 420px;
}

.section-contact-form-elite .ct-info {
    position: relative;
    padding: 28px 26px;
    background: #07b3ab;
    color: #ffffff;
}

.section-contact-form-elite .ct-info__t {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
}

.section-contact-form-elite .ct-info__d {
    margin: 10px 0 22px;
    font-size: 12px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 240px;
}

.section-contact-form-elite .ct-lines {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 6px;
}

.section-contact-form-elite .ct-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.section-contact-form-elite .ct-ico {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.14);
    flex: 0 0 auto;
}

.section-contact-form-elite .ct-main {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.95;
}

.section-contact-form-elite .ct-bubble {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    right: -70px;
    bottom: -70px;
    background: rgba(255,255,255,0.18);
}

.section-contact-form-elite .ct-form {
    padding: 28px 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-contact-form-elite .ct-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.section-contact-form-elite .ct-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-contact-form-elite .ct-label {
    font-size: 11px;
    color: rgba(11, 27, 42, 0.55);
    font-weight: 800;
}

.section-contact-form-elite .ct-label--accent {
    color: #07b3ab;
}

.section-contact-form-elite .ct-input {
    border: 0;
    border-bottom: 2px solid rgba(7, 179, 171, 0.35);
    padding: 10px 0 10px;
    outline: none;
    font-size: 13px;
    color: #0b0b0d;
    background: transparent;
}

.section-contact-form-elite .ct-input:focus {
    border-bottom-color: #07b3ab;
}

.section-contact-form-elite .ct-textarea {
    resize: vertical;
    min-height: 92px;
}

.section-contact-form-elite .ct-btn {
    margin-top: 8px;
    width: 160px;
    height: 40px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    background: #07b3ab;
    color: #ffffff;
    font-weight: 900;
    font-size: 12px;
    box-shadow: 0 18px 36px rgba(7, 179, 171, 0.25);
}

.section-contact-form-elite .ct-btn:hover {
    filter: brightness(1.02);
}

.section-contact-form-elite .ct-success {
    margin: 0;
    min-height: 18px;
    font-size: 12px;
    color: rgba(7, 179, 171, 0.95);
    font-weight: 800;
}

@media (max-width: 1100px) {
    .section-contact-form-elite .contact { border-radius: 34px; }
    .section-contact-form-elite .ct-wrap { padding: 62px 24px 70px; }
    .section-contact-form-elite .ct-card { grid-template-columns: 1fr; }
    .section-contact-form-elite .ct-info { padding: 26px 22px; }
}

@media (max-width: 680px) {
    .section-contact-form-elite .contact { border-radius: 28px; }
    .section-contact-form-elite .ct-wrap { padding: 54px 18px 62px; }
    .section-contact-form-elite .ct-title { font-size: 36px; }
    .section-contact-form-elite .ct-row { grid-template-columns: 1fr; }
    .section-contact-form-elite .ct-btn { width: 100%; }
}

/* newsletter-elite */
.section-newsletter-elite {
    --bg-hanging: radial-gradient(900px 420px at 65% 10%, rgba(167, 239, 198, 0.55), rgba(255,255,255,0) 60%),
        radial-gradient(900px 520px at 25% 90%, rgba(255, 213, 230, 0.60), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, #f7f2ea, #f0efe7);
    --shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.section-newsletter-elite .newsletter {
    width: min(1520px, 100%);
    border-radius: 52px;
    background: var(--bg-hanging);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.section-newsletter-elite .newsletter::before,
.section-newsletter-elite .newsletter::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 3px solid rgba(126, 167, 255, 0.35);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 60% 40% 60% 40%;
    filter: drop-shadow(0 18px 26px rgba(0,0,0,0.25));
    opacity: 0.7;
    pointer-events: none;
}

.section-newsletter-elite .newsletter::before {
    right: -220px;
    top: -160px;
    transform: rotate(18deg);
}

.section-newsletter-elite .newsletter::after {
    left: -260px;
    bottom: -220px;
    transform: rotate(-162deg);
}

.section-newsletter-elite .n-wrap {
    padding: 84px 26px 72px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-newsletter-elite .n-kicker {
    margin: 0 0 18px;
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}

.section-newsletter-elite .n-title {
    margin: 0 0 34px;
    font-size: 54px;
    line-height: 1.12;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.section-newsletter-elite .n-form {
    width: min(860px, 92%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.section-newsletter-elite .n-form label {
    color: #000000;
}

.section-newsletter-elite .n-input {
    width: 100%;
    height: 64px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.10);
    color: #000000;
    padding: 0 26px;
    font-size: 16px;
    outline: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18) inset;
}

.section-newsletter-elite .n-input::placeholder { color: rgba(0,0,0,0.45); }

.section-newsletter-elite .n-input:focus {
    border-color: rgba(120, 150, 255, 0.55);
    background: rgba(255,255,255,0.12);
}

.section-newsletter-elite .n-btn {
    width: 100%;
    height: 66px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: linear-gradient(180deg, #6e8bff, #5f73ff);
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 22px 50px rgba(60, 92, 255, 0.35);
    transition: transform 140ms ease, filter 140ms ease;
}

.section-newsletter-elite .n-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.section-newsletter-elite .n-btn:active {
    transform: translateY(0px);
}

.section-newsletter-elite .n-foot {
    margin: 22px 0 0;
    font-size: 14px;
    color: rgba(255,255,255,0.52);
}

.section-newsletter-elite .n-link {
    color: rgba(255,255,255,0.85);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.section-newsletter-elite .n-success {
    margin: 14px 0 0;
    min-height: 20px;
    font-size: 14px;
    color: rgba(157, 255, 220, 0.92);
}

@media (max-width: 1100px) {
    .section-newsletter-elite .newsletter { border-radius: 34px; }
    .section-newsletter-elite .n-title { font-size: 44px; }
    .section-newsletter-elite .n-wrap { padding: 72px 20px 62px; }
}

@media (max-width: 680px) {
    .section-newsletter-elite .newsletter { border-radius: 28px; }
    .section-newsletter-elite .n-title { font-size: 34px; }
    .section-newsletter-elite .n-input { height: 60px; }
    .section-newsletter-elite .n-btn { height: 62px; width: 100%; }
}

/* icon-tiles-elite */
.section-icon-tiles-elite {
    --bg-hanging: radial-gradient(900px 420px at 65% 10%, rgba(167, 239, 198, 0.55), rgba(255,255,255,0) 60%),
        radial-gradient(900px 520px at 25% 90%, rgba(255, 213, 230, 0.60), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, #f7f2ea, #f0efe7);
    --shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.section-icon-tiles-elite .icon-tiles {
    width: min(1520px, 100%);
    border-radius: 52px;
    background: var(--bg-hanging);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.section-icon-tiles-elite .i-wrap {
    padding: 44px 42px;
    display: flex;
    justify-content: center;
}

.section-icon-tiles-elite .i-row {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.section-icon-tiles-elite .i-tile {
    width: 132px;
    height: 132px;
    border-radius: 34px;
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 26px 45px rgba(0,0,0,0.18);
    transition: transform 140ms ease, filter 140ms ease;
}

.section-icon-tiles-elite .i-tile img {
    width: 44px;
    height: 44px;
    display: block;
    opacity: 0.95;
}

.section-icon-tiles-elite .i-tile:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

.section-icon-tiles-elite .i-tile--1 { background: linear-gradient(135deg, #6fe7ff, #8b66ff); }
.section-icon-tiles-elite .i-tile--2 { background: linear-gradient(135deg, #ffd7a6, #ff74c1); }
.section-icon-tiles-elite .i-tile--3 { background: linear-gradient(135deg, #6fe7ff, #8b66ff); }
.section-icon-tiles-elite .i-tile--4 { background: linear-gradient(135deg, #7ff0ff, #7a6aff); }
.section-icon-tiles-elite .i-tile--5 { background: linear-gradient(135deg, #6fe7ff, #6c7bff); }

@media (max-width: 1100px) {
    .section-icon-tiles-elite .icon-tiles { border-radius: 34px; }
    .section-icon-tiles-elite .i-wrap { padding: 38px 24px; }
    .section-icon-tiles-elite .i-tile { width: 120px; height: 120px; border-radius: 30px; }
}

@media (max-width: 680px) {
    .section-icon-tiles-elite .icon-tiles { border-radius: 28px; }
    .section-icon-tiles-elite .i-row { gap: 18px; }
    .section-icon-tiles-elite .i-tile { width: 104px; height: 104px; border-radius: 26px; }
    .section-icon-tiles-elite .i-tile img { width: 38px; height: 38px; }
}

/* faq-elite */
.section-faq-elite {
    --shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.section-faq-elite .faq {
    width: min(1520px, 100%);
    border-radius: 52px;
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow: hidden;
    color: #0b1b2a;
}

.section-faq-elite .f-wrap {
    padding: 74px 42px 82px;
    display: grid;
    grid-template-columns: 1.05fr 1.2fr;
    gap: 54px;
    align-items: start;
}

.section-faq-elite .f-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f3f5ff;
    color: #5f73ff;
    font-weight: 700;
    font-size: 13px;
}

.section-faq-elite .f-pill__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #5f73ff;
    box-shadow: 0 0 0 6px rgba(95,115,255,0.12);
}

.section-faq-elite .f-title {
    margin: 18px 0 12px;
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #0b0b0d;
}

.section-faq-elite .f-title span {
    color: #5f73ff;
}

.section-faq-elite .f-desc {
    margin: 0;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(11, 27, 42, 0.55);
}

.section-faq-elite .f-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section-faq-elite .f-item {
    border-radius: 22px;
    border: 1px solid rgba(11, 27, 42, 0.08);
    background: #f7f8fb;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(10, 30, 45, 0.06);
}

.section-faq-elite .f-item.is-open .f-a {
    display: block;
}

.section-faq-elite .f-item:not(.is-open) .f-a {
    display: none;
}

.section-faq-elite .f-q {
    width: 100%;
    padding: 18px 18px 18px 22px;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    font-weight: 800;
    font-size: 18px;
    color: #0b0b0d;
}

.section-faq-elite .f-toggle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #6a5cff;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 18px;
    flex: 0 0 auto;
    box-shadow: 0 16px 30px rgba(106, 92, 255, 0.25);
}

.section-faq-elite .f-a {
    padding: 0 22px 20px;
    color: rgba(11, 27, 42, 0.55);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .section-faq-elite .faq { border-radius: 34px; }
    .section-faq-elite .f-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 62px 24px 70px;
    }
    .section-faq-elite .f-title { font-size: 46px; }
}

@media (max-width: 680px) {
    .section-faq-elite .faq { border-radius: 28px; }
    .section-faq-elite .f-wrap { padding: 54px 18px 62px; }
    .section-faq-elite .f-title { font-size: 40px; }
    .section-faq-elite .f-q { font-size: 16px; }
}

/* social_media-elite */
.section-social-media-elite {
    --shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.section-social-media-elite .social {
    width: min(1520px, 100%);
    border-radius: 52px;
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.section-social-media-elite .s-wrap {
    padding: 72px 42px 86px;
    display: flex;
    justify-content: center;
}

.section-social-media-elite .s-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 56px;
    align-items: center;
    justify-items: center;
    width: min(900px, 100%);
}

.section-social-media-elite .s-icon {
    width: 140px;
    height: 140px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    text-decoration: none;
    background: #ffffff;
    box-shadow: 0 26px 42px rgba(0,0,0,0.12);
    transition: transform 140ms ease, filter 140ms ease;
}

.section-social-media-elite .s-icon img {
    width: 86px;
    height: 86px;
    display: block;
    filter: drop-shadow(0 10px 14px rgba(0,0,0,0.08));
}

.section-social-media-elite .s-icon:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

@media (max-width: 1100px) {
    .section-social-media-elite .social { border-radius: 34px; }
    .section-social-media-elite .s-wrap { padding: 62px 24px 72px; }
    .section-social-media-elite .s-grid {
        grid-template-columns: repeat(2, 160px);
        gap: 52px 80px;
    }
}

@media (max-width: 680px) {
    .section-social-media-elite .social { border-radius: 28px; }
    .section-social-media-elite .s-wrap { padding: 54px 18px 62px; }
    .section-social-media-elite .s-grid { grid-template-columns: repeat(2, 130px); gap: 36px 36px; }
    .section-social-media-elite .s-icon { width: 120px; height: 120px; }
    .section-social-media-elite .s-icon img { width: 74px; height: 74px; }
}

/* brands-elite */
.section-brands-elite.clients{
  width:min(1520px, 100%);
  border-radius:52px;
  background:var(--bg-hanging);
  box-shadow:var(--shadow);
  overflow:hidden;
  color:#0b1b2a;
}
.section-brands-elite .cl-wrap{
  padding:76px 42px 86px;
  text-align:center;
}
.section-brands-elite .cl-title{
  margin:0;
  font-size:28px;
  font-weight:900;
  color:#0b0b0d;
}
.section-brands-elite .cl-sub{
  margin:10px auto 42px;
  max-width:680px;
  font-size:12px;
  line-height:1.7;
  color:rgba(11, 27, 42, 0.55);
}
.section-brands-elite .cl-logos{
  display:grid;
  grid-template-columns:repeat(4, minmax(140px, 1fr));
  gap:28px 40px;
  align-items:center;
  justify-items:center;
  opacity:0.95;
}
.section-brands-elite .cl-logo{
  width:160px;
  height:44px;
  object-fit:contain;
  filter:grayscale(0.2);
  opacity:0.9;
}

@media (max-width: 1100px){
  .section-brands-elite.clients{border-radius:34px}
  .section-brands-elite .cl-wrap{padding:62px 24px 72px}
  .section-brands-elite .cl-logos{grid-template-columns:repeat(3, minmax(140px, 1fr));}
}

@media (max-width: 680px){
  .section-brands-elite.clients{border-radius:28px}
  .section-brands-elite .cl-wrap{padding:54px 18px 62px}
  .section-brands-elite .cl-logos{grid-template-columns:repeat(2, minmax(140px, 1fr)); gap:22px 24px}
  .section-brands-elite .cl-logo{width:150px}
}

/* team-elite */
.section-team-elite {
  --shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.section-team-elite .team{
  width:min(1520px, 100%);
  border-radius:52px;
  background:#ffffff;
  box-shadow:var(--shadow);
  overflow:hidden;
  color:#0b1b2a;
}
.section-team-elite .tm-wrap{padding:74px 42px 82px}
.section-team-elite .tm-kicker{
  font-size:12px;
  letter-spacing:0.16em;
  font-weight:900;
  color:rgba(11, 27, 42, 0.45);
}
.section-team-elite .tm-title{
  margin:8px 0 34px;
  font-size:44px;
  font-weight:900;
  color:#7a2cff;
  letter-spacing:-0.02em;
}
.section-team-elite .tm-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(200px, 1fr));
  gap:34px 28px;
  align-items:start;
}
.section-team-elite .tm-card{
  text-align:center;
  padding:6px 6px 0;
}
.section-team-elite .tm-photo{
  width:150px;
  height:150px;
  margin:0 auto 14px;
  position:relative;
  display:grid;
  place-items:center;
}
.section-team-elite .tm-photo::before{
  content:"";
  position:absolute;
  inset:10px 6px 6px 10px;
  border-radius:42px 60px 44px 62px;
  background:linear-gradient(135deg, #7a2cff, #5f73ff);
  opacity:0.95;
  filter:drop-shadow(0 18px 28px rgba(0,0,0,0.16));
}
.section-team-elite .tm-photo img{
  position:relative;
  width:140px;
  height:140px;
  border-radius:999px;
  object-fit:cover;
  display:block;
  background:#f4f4f6;
  box-shadow:0 18px 36px rgba(0,0,0,0.14);
}
.section-team-elite .tm-role{
  font-size:12px;
  color:rgba(11, 27, 42, 0.55);
  font-weight:700;
}
.section-team-elite .tm-name{
  margin-top:6px;
  font-size:18px;
  font-weight:900;
  color:#0b0b0d;
}
.section-team-elite .tm-mail{
  display:inline-block;
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  color:#7a2cff;
  text-decoration:none;
}
.section-team-elite .tm-mail:hover{text-decoration:underline}

@media (max-width: 1100px){
  .section-team-elite .team{border-radius:34px}
  .section-team-elite .tm-wrap{padding:62px 24px 70px}
  .section-team-elite .tm-grid{grid-template-columns:repeat(2, minmax(200px, 1fr));}
}

@media (max-width: 680px){
  .section-team-elite .team{border-radius:28px}
  .section-team-elite .tm-wrap{padding:54px 18px 62px}
  .section-team-elite .tm-grid{grid-template-columns:1fr; gap:28px}
}

/* why_us-elite */
.section-why-us-elite {
  --shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.section-why-us-elite .why{
  width:min(1520px, 100%);
  border-radius:52px;
  background:#ffffff;
  box-shadow:var(--shadow);
  overflow:hidden;
  color:#0b1b2a;
}
.section-why-us-elite .w-wrap{
  padding:78px 42px 92px;
  text-align:center;
}
.section-why-us-elite .w-title{
  margin:0;
  font-size:54px;
  letter-spacing:-0.02em;
  font-weight:700;
  color:#0b0b0d;
}
.section-why-us-elite .w-sub{
  margin:14px auto 56px;
  max-width:860px;
  font-size:14px;
  line-height:1.7;
  color:rgba(11, 27, 42, 0.55);
}
.section-why-us-elite .w-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(220px, 1fr));
  gap:40px;
  align-items:start;
}
.section-why-us-elite .w-item{
  padding:10px 10px 0;
}
.section-why-us-elite .w-icon{
  width:64px;
  height:64px;
  margin:0 auto 16px;
  display:grid;
  place-items:center;
}
.section-why-us-elite .w-icon img{width:64px;height:64px;display:block}
.section-why-us-elite .w-name{
  margin:0;
  font-size:24px;
  font-weight:700;
  color:#0b0b0d;
}
.section-why-us-elite .w-desc{
  margin:12px auto 0;
  max-width:320px;
  font-size:14px;
  line-height:1.7;
  color:rgba(11, 27, 42, 0.55);
}

@media (max-width: 1100px){
  .section-why-us-elite .why{border-radius:34px}
  .section-why-us-elite .w-wrap{padding:64px 24px 78px}
  .section-why-us-elite .w-title{font-size:46px}
  .section-why-us-elite .w-grid{grid-template-columns:1fr; gap:34px}
}

@media (max-width: 680px){
  .section-why-us-elite .why{border-radius:28px}
  .section-why-us-elite .w-wrap{padding:54px 18px 66px}
  .section-why-us-elite .w-title{font-size:40px}
}

/* footer-elite */
.section-footer-elite {
  --shadow: 0 24px 60px rgba(0,0,0,0.18);
  --bg-hanging: #f4f3ee;
}

.section-footer-elite.site-footer{
  width:min(1520px, 100%);
  border-radius:52px;
  background:var(--bg-hanging);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.section-footer-elite .sf-wrap{padding:40px 42px 70px}
.section-footer-elite .sf-card{
  border-radius:34px;
  background:linear-gradient(180deg, #0f4a34, #0a3a28);
  color:#ffffff;
  overflow:hidden;
  box-shadow:0 34px 90px rgba(0,0,0,0.18);
}
.section-footer-elite .sf-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:24px 29px;
  border-bottom:1px solid rgba(255,255,255,0.10);
  font-size:110%;
}
.section-footer-elite .sf-label{
  font-size:10px;
  letter-spacing:0.18em;
  font-weight:900;
  color:rgba(255,255,255,0.70);
}
.section-footer-elite .sf-value{
  margin-top:4px;
  font-weight:900;
  font-size:14px;
}
.section-footer-elite .sf-call{display:flex; align-items:center; gap:12px}
.section-footer-elite .sf-ico{
  width:34px;height:34px;border-radius:999px;
  display:grid;place-items:center;
  background:rgba(255,255,255,0.12);
}
.section-footer-elite .sf-follow{display:flex; flex-direction:column; gap:8px; align-items:center}
.section-footer-elite .sf-social{display:flex; gap:10px}
.section-footer-elite .sf-social a{
  width:26px;height:26px;border-radius:999px;
  display:grid;place-items:center;
  background:rgba(255,255,255,0.12);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:11px;
}
.section-footer-elite .sf-pay{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.section-footer-elite .sf-chip{
  padding:8px 10px;
  border-radius:10px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.10);
  font-weight:900;
  font-size:11px;
  letter-spacing:0.04em;
  color:rgba(255,255,255,0.85);
}

.section-footer-elite .sf-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
  gap:24px;
  padding:29px 29px 20px;
  font-size:110%;
}
.section-footer-elite .sf-h{
  font-size:11px;
  letter-spacing:0.18em;
  font-weight:1000;
  margin-bottom:14px;
  color:rgba(255,255,255,0.85);
}
.section-footer-elite .sf-text{
  font-size:12px;
  line-height:1.7;
  color:rgba(255,255,255,0.70);
  margin-top:6px;
}
.section-footer-elite .sf-link{
  display:block;
  margin-top:10px;
  font-size:12px;
  color:rgba(255,255,255,0.72);
  text-decoration:none;
}
.section-footer-elite .sf-link:hover{color:#ffffff}
.section-footer-elite .sf-form{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.10);
  padding:8px 10px;
}
.section-footer-elite .sf-input{
  flex:1 1 auto;
  border:0;
  outline:none;
  background:transparent;
  color:#fff;
  font-size:12px;
  padding:8px 6px;
}
.section-footer-elite .sf-input::placeholder{color:rgba(255,255,255,0.55)}
.section-footer-elite .sf-send{
  width:34px;height:34px;border-radius:999px;
  border:0;
  cursor:pointer;
  background:rgba(255,255,255,0.16);
  color:#fff;
  font-weight:1000;
}
.section-footer-elite .sf-bottom{
  padding:15px 29px 20px;
  border-top:1px solid rgba(255,255,255,0.10);
  text-align:center;
  font-size:110%;
}
.section-footer-elite .sf-copy{
  font-size:11px;
  color:rgba(255,255,255,0.65);
}

@media (max-width: 1100px){
  .section-footer-elite.site-footer{border-radius:34px}
  .section-footer-elite .sf-wrap{padding:34px 24px 60px}
  .section-footer-elite .sf-grid{grid-template-columns:repeat(2, 1fr); padding:22px 22px 16px}
  .section-footer-elite .sf-top{flex-wrap:wrap; justify-content:center}
}

@media (max-width: 680px){
  .section-footer-elite.site-footer{border-radius:28px}
  .section-footer-elite .sf-wrap{padding:28px 18px 52px}
  .section-footer-elite .sf-card{border-radius:28px}
  .section-footer-elite .sf-grid{grid-template-columns:1fr}
  .section-footer-elite .sf-pay{justify-content:center}
}

/* image_gallery-elite */
.section-image-gallery-elite {
    --bg-hanging: radial-gradient(900px 420px at 65% 10%, rgba(167, 239, 198, 0.55), rgba(255,255,255,0) 60%),
        radial-gradient(900px 520px at 25% 90%, rgba(255, 213, 230, 0.60), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, #f7f2ea, #f0efe7);
    --shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.section-image-gallery-elite .hanging{
    width:min(1520px, 100%);
    border-radius:52px;
    background:var(--bg-hanging);
    box-shadow:var(--shadow);
    overflow:hidden;
}
.section-image-gallery-elite .h-wrap{
    position:relative;
    padding:48px 34px 58px;
}
.section-image-gallery-elite .h-rope{
    position:absolute;
    left:-40px;
    right:-40px;
    top:58px;
    height:3px;
    background:rgba(11,27,42,0.18);
    border-radius:999px;
    transform:rotate(-2deg);
    box-shadow:0 1px 0 rgba(255,255,255,0.55) inset;
}
.section-image-gallery-elite .h-rope::after{
    content:"";
    position:absolute;
    left:0; right:0;
    top:-16px;
    height:22px;
    background:linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0));
    opacity:0.15;
}

.section-image-gallery-elite .h-cards{
    display:flex;
    gap:34px;
    align-items:flex-start;
    justify-content:flex-start;
    padding-top:48px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -ms-overflow-style:none;
}
.section-image-gallery-elite .h-cards::-webkit-scrollbar{display:none}
.section-image-gallery-elite .h-card{
    width:260px;
    position:relative;
    transform-origin:50% 0%;
    filter:drop-shadow(0 18px 26px rgba(0,0,0,0.18));
    scroll-snap-align:start;
}
.section-image-gallery-elite .h-link{
    display:block;
    background:#ffffff;
    border-radius:22px;
    padding:14px 14px 16px;
    text-decoration:none;
    color:#0b1b2a;
    box-shadow:0 10px 0 rgba(0,0,0,0.03) inset;
}
.section-image-gallery-elite .h-link::before{
    content:"";
    position:absolute;
    left:12px; right:12px;
    top:12px;
    height:12px;
    border-radius:18px;
    background:rgba(0,0,0,0.06);
    filter:blur(10px);
    opacity:0.5;
    pointer-events:none;
}
.section-image-gallery-elite .h-photo{
    border-radius:16px;
    overflow:hidden;
    background:#101015;
    aspect-ratio: 16 / 10;
}
.section-image-gallery-elite .h-photo img,
.section-image-gallery-elite .h-photo video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.section-image-gallery-elite .h-meta{padding:12px 6px 0}
.section-image-gallery-elite .h-title{
    font-size:18px;
    font-weight:800;
    margin:0;
    color:#000000;
}
.section-image-gallery-elite .h-sub{
    margin-top:4px;
    font-size:13px;
    color:rgba(11, 27, 42, 0.58);
}

.section-image-gallery-elite .h-peg{
    position:absolute;
    width:30px;
    height:36px;
    left:50%;
    top:-34px;
    transform:translateX(-50%);
    background:#2fc070;
    border-radius:7px;
    box-shadow:0 10px 18px rgba(0,0,0,0.18);
}
.section-image-gallery-elite .h-peg::before{
    content:"";
    position:absolute;
    width:10px;height:10px;
    border-radius:999px;
    left:50%;top:8px;
    transform:translateX(-50%);
    background:rgba(255,255,255,0.85);
}
.section-image-gallery-elite .h-peg::after{
    content:"";
    position:absolute;
    left:-8px; right:-8px;
    top:22px;
    height:14px;
    border-radius:10px;
    background:rgba(0,0,0,0.08);
    filter:blur(9px);
    opacity:0.35;
}

.section-image-gallery-elite .h-card--tilt-1{transform:rotate(-10deg) translateY(18px)}
.section-image-gallery-elite .h-card--tilt-2{transform:rotate(-4deg) translateY(10px)}
.section-image-gallery-elite .h-card--tilt-3{transform:rotate(0deg) translateY(22px)}
.section-image-gallery-elite .h-card--tilt-4{transform:rotate(5deg) translateY(12px)}
.section-image-gallery-elite .h-card--tilt-5{transform:rotate(10deg) translateY(18px)}
.section-image-gallery-elite .h-card:hover{transform:translateY(4px) rotate(var(--rot, 0deg))}
.section-image-gallery-elite .h-card--tilt-1:hover{--rot:-10deg}
.section-image-gallery-elite .h-card--tilt-2:hover{--rot:-4deg}
.section-image-gallery-elite .h-card--tilt-3:hover{--rot:0deg}
.section-image-gallery-elite .h-card--tilt-4:hover{--rot:5deg}
.section-image-gallery-elite .h-card--tilt-5:hover{--rot:10deg}

@media (max-width: 1100px){
    .section-image-gallery-elite .hanging{border-radius:34px}
    .section-image-gallery-elite .h-cards{padding-bottom:10px}
    .section-image-gallery-elite .h-card{flex:0 0 260px}
}

@media (max-width: 680px){
    .section-image-gallery-elite .hanging{border-radius:28px}
    .section-image-gallery-elite .h-wrap{padding:40px 18px 46px}
    .section-image-gallery-elite .h-rope{top:52px}
}

.section-image-gallery-elite .h-nav{
    position:absolute;
    left:14px;
    right:14px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:2;
    pointer-events:none;
}
.section-image-gallery-elite .h-nav__btn{
    border:0;
    cursor:pointer;
    background:transparent;
    color:#0b1b2a;
    font-size:32px;
    line-height:1;
    padding:6px 8px;
    display:grid;
    place-items:center;
    transition:transform 140ms ease, opacity 140ms ease;
    pointer-events:auto;
    opacity:0.8;
}
.section-image-gallery-elite .h-nav__btn:hover{transform:translateX(0); opacity:1}

/* social-media-elite */
.section-social-media-elite-alt {
    --shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.section-social-media-elite-alt .social {
    width: min(1520px, 100%);
    border-radius: 52px;
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.section-social-media-elite-alt .s-wrap {
    padding: 72px 42px 86px;
    display: flex;
    justify-content: center;
}

.section-social-media-elite-alt .s-grid {
    display: grid;
    grid-template-columns: repeat(4, 160px);
    gap: 56px;
    align-items: center;
    justify-items: center;
}

.section-social-media-elite-alt .s-icon {
    width: 140px;
    height: 140px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    text-decoration: none;
    background: #ffffff;
    box-shadow: 0 26px 42px rgba(0,0,0,0.12);
    transition: transform 140ms ease, filter 140ms ease;
}

.section-social-media-elite-alt .s-icon img {
    width: 86px;
    height: 86px;
    display: block;
    filter: drop-shadow(0 10px 14px rgba(0,0,0,0.08));
}

.section-social-media-elite-alt .s-icon:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

@media (max-width: 1100px) {
    .section-social-media-elite-alt .social { border-radius: 34px; }
    .section-social-media-elite-alt .s-wrap { padding: 62px 24px 72px; }
    .section-social-media-elite-alt .s-grid {
        grid-template-columns: repeat(2, 160px);
        gap: 52px 80px;
    }
}

@media (max-width: 680px) {
    .section-social-media-elite-alt .social { border-radius: 28px; }
    .section-social-media-elite-alt .s-wrap { padding: 54px 18px 62px; }
    .section-social-media-elite-alt .s-grid { grid-template-columns: repeat(2, 130px); gap: 36px 36px; }
    .section-social-media-elite-alt .s-icon { width: 120px; height: 120px; }
    .section-social-media-elite-alt .s-icon img { width: 74px; height: 74px; }
}

/* categories-hanging-elite */
.section-categories-hanging-elite {
  --bg-hanging: radial-gradient(900px 420px at 65% 10%, rgba(167, 239, 198, 0.55), rgba(255,255,255,0) 60%),
    radial-gradient(900px 520px at 25% 90%, rgba(255, 213, 230, 0.60), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #f7f2ea, #f0efe7);
  --shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.section-categories-hanging-elite .categories{
  width:min(1520px, 100%);
  border-radius:52px;
  background:var(--bg-hanging);
  box-shadow:var(--shadow);
  overflow:hidden;
  color:#0b1b2a;
}
.section-categories-hanging-elite .c-wrap{
  padding:64px 42px 58px;
  text-align:center;
}
.section-categories-hanging-elite .c-kicker{
  margin:0 0 8px;
  font-size:14px;
  color:rgba(11, 27, 42, 0.55);
  font-weight:600;
}
.section-categories-hanging-elite .c-title{
  margin:0 0 38px;
  font-size:44px;
  line-height:1.1;
  letter-spacing:-0.02em;
  font-weight:800;
  color:#0b1b2a;
}
.section-categories-hanging-elite .c-title span{color:#d9c27c}

.section-categories-hanging-elite .c-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(150px, 1fr));
  gap:28px;
  align-items:start;
}
.section-categories-hanging-elite .c-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-decoration:none;
  color:inherit;
  gap:10px;
  padding:8px 8px 10px;
  border-radius:18px;
  transition:transform 160ms ease, background 160ms ease;
}
.section-categories-hanging-elite .c-item:hover{
  transform:translateY(-2px);
  background:rgba(11, 27, 42, 0.03);
}
.section-categories-hanging-elite .c-circle{
  width:150px;
  height:150px;
  border-radius:999px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,0.14);
  background:#f3f3f4;
}
.section-categories-hanging-elite .c-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.section-categories-hanging-elite .c-name{
  font-size:18px;
  font-weight:800;
  margin-top:2px;
}
.section-categories-hanging-elite .c-count{
  font-size:13px;
  color:rgba(11, 27, 42, 0.50);
}

.section-categories-hanging-elite .c-actions{
  margin-top:28px;
  display:flex;
  justify-content:center;
}
.section-categories-hanging-elite .c-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border-radius:999px;
  border:1px solid rgba(11, 27, 42, 0.2);
  color:#0b1b2a;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  background:rgba(255,255,255,0.8);
  transition:transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.section-categories-hanging-elite .c-btn:hover{
  transform:translateY(-1px);
  background:#ffffff;
  box-shadow:0 10px 22px rgba(0,0,0,0.12);
}

@media (max-width: 1100px){
  .section-categories-hanging-elite .categories{border-radius:34px}
  .section-categories-hanging-elite .c-wrap{padding:52px 24px 46px}
  .section-categories-hanging-elite .c-grid{grid-template-columns:repeat(3, minmax(150px, 1fr));}
}

@media (max-width: 680px){
  .section-categories-hanging-elite .categories{border-radius:28px}
  .section-categories-hanging-elite .c-title{font-size:34px}
  .section-categories-hanging-elite .c-grid{
    grid-template-columns:repeat(2, minmax(140px, 1fr));
    gap:18px;
  }
  .section-categories-hanging-elite .c-circle{width:140px;height:140px}
}

/* testimonials-elite */
.section-testimonials-elite .testimonials {
    width: min(1520px, 100%);
    border-radius: 52px;
    background: #f6fbfb;
    color: #0b1320;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.section-testimonials-elite .t-wrap {
    padding: 56px 46px 34px;
}

.section-testimonials-elite .t-head {
    padding: 10px 6px 22px;
}

.section-testimonials-elite .t-title {
    margin: 0;
    font-size: 44px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: #0b1b2a;
}

.section-testimonials-elite .t-slider {
    position: relative;
    margin-top: 22px;
}

.section-testimonials-elite .t-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 1fr);
    gap: 26px;
    overflow: hidden;
    padding: 18px 52px 8px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.section-testimonials-elite .t-track:focus { outline: none; }

.section-testimonials-elite .t-card {
    position: relative;
    background: #eef7f6;
    border-radius: 28px;
    padding: 34px 34px 30px;
    min-height: 240px;
    box-shadow: 0 16px 44px rgba(10, 30, 45, 0.08);
    scroll-snap-align: start;
    overflow: hidden;
}

.section-testimonials-elite .t-quote {
    position: absolute;
    left: 22px;
    top: 16px;
    font-size: 120px;
    line-height: 1;
    font-weight: 900;
    color: #d9eeed;
    letter-spacing: -0.05em;
}

.section-testimonials-elite .t-avatar {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    overflow: hidden;
    margin: 12px auto 22px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.10);
    background: #ffffff;
}

.section-testimonials-elite .t-avatar img {
    width: 100%;
    height: 100%;
    display: block;
}

.section-testimonials-elite .t-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(11, 27, 42, 0.78);
    text-align: left;
}

.section-testimonials-elite .t-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-55%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 16px 28px rgba(0,0,0,0.10);
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 3;
    color: #0b1b2a;
    font-size: 30px;
    line-height: 1;
}

.section-testimonials-elite .t-nav--prev { left: 10px; }
.section-testimonials-elite .t-nav--next { right: 10px; }
.section-testimonials-elite .t-nav:hover { transform: translateY(-56%); }

.section-testimonials-elite .t-progress {
    margin: 22px auto 0;
    width: min(720px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 10px 0;
}

.section-testimonials-elite .t-arrow {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: transparent;
    color: rgba(11, 27, 42, 0.30);
    font-size: 34px;
    line-height: 1;
}

.section-testimonials-elite .t-arrow--active { color: #1ea88f; }

.section-testimonials-elite .t-bar {
    position: relative;
    height: 3px;
    width: min(520px, 70vw);
    background: rgba(11, 27, 42, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

.section-testimonials-elite .t-bar__fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20%;
    background: #1ea88f;
    border-radius: 999px;
    transition: width 160ms ease;
}

@media (max-width: 1100px) {
    .section-testimonials-elite .testimonials { border-radius: 34px; }
    .section-testimonials-elite .t-wrap { padding: 44px 26px 28px; }
    .section-testimonials-elite .t-title { font-size: 36px; }
    .section-testimonials-elite .t-track { overflow-x: auto; padding: 18px 22px 8px; }
    .section-testimonials-elite .t-nav { display: none; }
}

@media (max-width: 680px) {
    .section-testimonials-elite .testimonials { border-radius: 28px; }
    .section-testimonials-elite .t-title { font-size: 30px; }
    .section-testimonials-elite .t-text { font-size: 16px; }
    .section-testimonials-elite .t-card { padding: 28px 24px 26px; }
    .section-testimonials-elite .t-quote { font-size: 98px; }
}

/* featured_products-elite */
.section-featured-products-elite {
    --bg-hanging: radial-gradient(900px 420px at 65% 10%, rgba(167, 239, 198, 0.55), rgba(255,255,255,0) 60%),
        radial-gradient(900px 520px at 25% 90%, rgba(255, 213, 230, 0.60), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, #f7f2ea, #f0efe7);
    --shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.section-featured-products-elite .bestsellers {
    width: min(1520px, 100%);
    border-radius: 52px;
    background: var(--bg-hanging);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.section-featured-products-elite .b-wrap {
    position: relative;
    padding: 60px 42px 66px;
    text-align: center;
}

.section-featured-products-elite .b-title {
    margin: 0 0 42px;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #2a2323;
    font-family: Inter, system-ui, sans-serif;
}

.section-featured-products-elite .b-grid {
    display: flex;
    gap: 34px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}
.section-featured-products-elite .b-grid::-webkit-scrollbar { display: none; }

.section-featured-products-elite .b-card {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 4px 6px;
    scroll-snap-align: start;
}

.section-featured-products-elite .b-img {
    width: 180px;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f1f1;
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.section-featured-products-elite .b-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-featured-products-elite .b-name {
    margin: 12px 0 0;
    font-size: 14px;
    font-weight: 700;
    color: #2a2323;
}

.section-featured-products-elite .b-desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(42, 35, 35, 0.60);
    max-width: 220px;
}

.section-featured-products-elite .b-btn {
    margin-top: 10px;
    width: 160px;
    height: 38px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    background: #a7787f;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 14px 28px rgba(167, 120, 127, 0.25);
    transition: transform 140ms ease, filter 140ms ease;
}

.section-featured-products-elite .b-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.section-featured-products-elite .b-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}
.section-featured-products-elite .b-nav__btn {
    border: 0;
    cursor: pointer;
    background: transparent;
    color: #2a2323;
    font-size: 30px;
    line-height: 1;
    padding: 6px 8px;
    display: grid;
    place-items: center;
    transition: transform 140ms ease, opacity 140ms ease;
    pointer-events: auto;
    opacity: 0.8;
}
.section-featured-products-elite .b-nav__btn:hover { transform: translateX(0); opacity: 1; }

@media (max-width: 1100px) {
    .section-featured-products-elite .bestsellers { border-radius: 34px; }
    .section-featured-products-elite .b-wrap { padding: 52px 24px 58px; }
    .section-featured-products-elite .b-card { flex-basis: 240px; }
}

@media (max-width: 680px) {
    .section-featured-products-elite .bestsellers { border-radius: 28px; }
    .section-featured-products-elite .b-title { font-size: 34px; }
    .section-featured-products-elite .b-grid { gap: 18px; }
    .section-featured-products-elite .b-img { width: 140px; height: 170px; }
    .section-featured-products-elite .b-btn { width: 140px; }
}

/* trending-elite */
.section-trending-elite.bestsellers{
  width:min(1520px, 100%);
  border-radius:52px;
  background:var(--bg-hanging);
  box-shadow:var(--shadow);
  overflow:hidden;
  color:#0b1b2a;
}
.section-trending-elite .b-wrap{
  position:relative;
  padding:60px 42px 66px;
  text-align:center;
}
.section-trending-elite .b-title{
  margin:0 0 42px;
  font-size:46px;
  font-weight:700;
  letter-spacing:-0.02em;
  color:#2a2323;
  font-family:Inter, system-ui, sans-serif;
}
.section-trending-elite .b-grid{
  display:flex;
  gap:34px;
  align-items:flex-start;
  justify-content:flex-start;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
  -ms-overflow-style:none;
  padding-bottom:8px;
}
.section-trending-elite .b-grid::-webkit-scrollbar{display:none}
.section-trending-elite .b-card{
  flex:0 0 260px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  padding:4px 6px;
  scroll-snap-align:start;
}
.section-trending-elite .b-img{
  width:180px;
  height:220px;
  border-radius:10px;
  overflow:hidden;
  background:#f4f1f1;
  box-shadow:0 16px 36px rgba(0,0,0,0.12);
}
.section-trending-elite .b-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.section-trending-elite .b-name{
  margin:12px 0 0;
  font-size:14px;
  font-weight:700;
  color:#2a2323;
}
.section-trending-elite .b-desc{
  margin:0;
  font-size:12px;
  line-height:1.35;
  color:rgba(42, 35, 35, 0.60);
  max-width:220px;
}
.section-trending-elite .b-btn{
  margin-top:10px;
  width:160px;
  height:38px;
  border-radius:8px;
  border:0;
  cursor:pointer;
  background:#a7787f;
  color:#fff;
  font-weight:700;
  font-size:12px;
  box-shadow:0 14px 28px rgba(167, 120, 127, 0.25);
  transition:transform 140ms ease, filter 140ms ease;
  text-decoration:none;
  display:grid;
  place-items:center;
}
.section-trending-elite .b-btn:hover{transform:translateY(-1px); filter:brightness(1.03)}

.section-trending-elite .b-nav{
  position:absolute;
  left:12px;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  justify-content:space-between;
  align-items:center;
  pointer-events:none;
  z-index:2;
}
.section-trending-elite .b-nav__btn{
  border:0;
  cursor:pointer;
  background:transparent;
  color:#2a2323;
  font-size:30px;
  line-height:1;
  padding:6px 8px;
  display:grid;
  place-items:center;
  transition:transform 140ms ease, opacity 140ms ease;
  pointer-events:auto;
  opacity:0.8;
}
.section-trending-elite .b-nav__btn:hover{transform:translateX(0); opacity:1}

@media (max-width: 1100px){
  .section-trending-elite.bestsellers{border-radius:34px}
  .section-trending-elite .b-wrap{padding:52px 24px 58px}
  .section-trending-elite .b-title{font-size:40px}
  .section-trending-elite .b-card{flex-basis:240px}
}

@media (max-width: 680px){
  .section-trending-elite.bestsellers{border-radius:28px}
  .section-trending-elite .b-title{font-size:34px}
  .section-trending-elite .b-grid{gap:26px}
  .section-trending-elite .b-img{width:210px; height:250px}
  .section-trending-elite .b-btn{width:180px}
}

/* product_showcase-elite */
.section-product-showcase-elite.promo{
  width:min(1520px, 100%);
  border-radius:52px;
  background:var(--bg-hanging);
  box-shadow:var(--shadow);
  overflow:hidden;
  color:#ffffff;
}
.section-product-showcase-elite .p-wrap{
  position:relative;
  padding:40px 42px 64px;
}
.section-product-showcase-elite .p-track{
  display:flex;
  gap:34px;
  align-items:stretch;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
  -ms-overflow-style:none;
  padding-bottom:8px;
}
.section-product-showcase-elite .p-track::-webkit-scrollbar{display:none}
.section-product-showcase-elite .p-card{
  position:relative;
  border-radius:34px;
  overflow:hidden;
  min-height:720px;
  background:
    radial-gradient(900px 520px at 50% 25%, rgba(255,255,255,0.10), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, #d4415d, #a51f39 55%, #7c0f27);
  box-shadow:0 34px 90px rgba(0,0,0,0.22);
  flex:0 0 100%;
  scroll-snap-align:start;
}
.section-product-showcase-elite .p-card::before{
  content:"";
  position:absolute;
  inset:-40px -40px auto -40px;
  height:320px;
  background:
    radial-gradient(closest-side at 50% 50%, rgba(255,255,255,0.12), rgba(255,255,255,0) 70%),
    repeating-conic-gradient(from 0deg, rgba(255,255,255,0.14) 0 10deg, rgba(255,255,255,0) 10deg 20deg);
  opacity:0.35;
  pointer-events:none;
}
.section-product-showcase-elite .p-close{
  position:absolute;
  right:14px;
  top:14px;
  width:48px;
  height:48px;
  border-radius:999px;
  border:0;
  background:rgba(0,0,0,0.18);
  color:rgba(255,255,255,0.85);
  font-size:30px;
  line-height:1;
}
.section-product-showcase-elite .p-top{
  position:relative;
  z-index:2;
  text-align:center;
  padding:54px 22px 0;
}
.section-product-showcase-elite .p-title{
  margin:0;
  font-size:58px;
  font-weight:1000;
  letter-spacing:0.06em;
}
.section-product-showcase-elite .p-sub{
  margin:10px 0 0;
  font-size:22px;
  font-weight:800;
  opacity:0.95;
}
.section-product-showcase-elite .p-body{
  position:relative;
  z-index:2;
  height:520px;
}
.section-product-showcase-elite .p-products{
  position:absolute;
  left:50%;
  top:42px;
  transform:translateX(-50%);
  width:min(880px, 92%);
  height:auto;
  filter:drop-shadow(0 36px 70px rgba(0,0,0,0.30));
  opacity:0.98;
}
.section-product-showcase-elite .p-call{
  position:absolute;
  color:#ffffff;
  text-shadow:0 10px 20px rgba(0,0,0,0.25);
  white-space:pre-line;
}
.section-product-showcase-elite .p-call__t{
  font-size:26px;
  font-weight:1000;
  line-height:1.1;
}
.section-product-showcase-elite .p-call__d{
  margin-top:10px;
  font-size:16px;
  font-weight:800;
  opacity:0.95;
  line-height:1.25;
}
.section-product-showcase-elite .p-call--left{left:60px; top:260px}
.section-product-showcase-elite .p-call--rightTop{right:64px; top:170px; text-align:left}
.section-product-showcase-elite .p-call--rightBot{right:64px; bottom:10px; text-align:left}

.section-product-showcase-elite .p-brand{
  position:absolute;
  left:50%;
  bottom:112px;
  transform:translateX(-50%);
  text-align:center;
  opacity:0.95;
}
.section-product-showcase-elite .p-brand__name{
  font-weight:1000;
  letter-spacing:0.12em;
  font-size:34px;
}
.section-product-showcase-elite .p-brand__sub{
  margin-top:6px;
  font-weight:900;
  letter-spacing:0.38em;
  font-size:14px;
}

.section-product-showcase-elite .p-bottom{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:3;
}
.section-product-showcase-elite .p-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  border-radius:18px;
  background:rgba(255,255,255,0.22);
  color:#ffffff;
  text-decoration:none;
  font-weight:900;
  font-size:20px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.section-product-showcase-elite .p-btn__ico{
  width:22px;height:22px;
  display:grid;place-items:center;
  font-weight:1000;
}
.section-product-showcase-elite .p-round{
  width:66px;
  height:66px;
  border-radius:22px;
  border:0;
  cursor:pointer;
  background:rgba(255,255,255,0.22);
  color:#ffffff;
  font-size:26px;
  font-weight:1000;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.section-product-showcase-elite .p-round:hover{filter:brightness(1.05)}

.section-product-showcase-elite .p-nav{
  position:absolute;
  left:12px;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  justify-content:space-between;
  align-items:center;
  pointer-events:none;
  z-index:4;
}
.section-product-showcase-elite .p-nav__btn{
  border:0;
  cursor:pointer;
  background:rgba(0,0,0,0.18);
  color:rgba(255,255,255,0.9);
  font-size:28px;
  line-height:1;
  width:44px;
  height:44px;
  border-radius:999px;
  display:grid;
  place-items:center;
  pointer-events:auto;
  opacity:0.8;
  transition:transform 140ms ease, opacity 140ms ease;
}
.section-product-showcase-elite .p-nav__btn:hover{transform:translateX(0); opacity:1}

@media (max-width: 1100px){
  .section-product-showcase-elite.promo{border-radius:34px}
  .section-product-showcase-elite .p-wrap{padding:34px 24px 54px}
  .section-product-showcase-elite .p-card{min-height:760px}
  .section-product-showcase-elite .p-title{font-size:50px}
  .section-product-showcase-elite .p-call--left{left:28px}
  .section-product-showcase-elite .p-call--rightTop,
  .section-product-showcase-elite .p-call--rightBot{right:28px}
}

@media (max-width: 820px){
  .section-product-showcase-elite .p-body{height:560px}
  .section-product-showcase-elite .p-products{top:70px}
  .section-product-showcase-elite .p-call{position:static; text-align:center; padding:0 18px}
  .section-product-showcase-elite .p-call--left,
  .section-product-showcase-elite .p-call--rightTop,
  .section-product-showcase-elite .p-call--rightBot{position:static}
  .section-product-showcase-elite .p-brand{bottom:126px}
  .section-product-showcase-elite .p-top{padding-top:44px}
  .section-product-showcase-elite .p-title{font-size:44px}
  .section-product-showcase-elite .p-sub{font-size:18px}
  .section-product-showcase-elite .p-call__t{font-size:22px}
  .section-product-showcase-elite .p-call__d{font-size:14px}
}

@media (max-width: 680px){
  .section-product-showcase-elite.promo{border-radius:28px}
  .section-product-showcase-elite .p-wrap{padding:28px 18px 44px}
  .section-product-showcase-elite .p-card{border-radius:28px}
  .section-product-showcase-elite .p-brand__name{font-size:28px}
  .section-product-showcase-elite .p-btn{font-size:18px}
}

/* product_showcase */
.section-product-showcase .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.section-product-showcase .scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* hero-3slider */
@keyframes hero-3slider-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-hero-3slider .animate-fade-in {
    animation: hero-3slider-fade-in 0.8s ease-out;
}

.section-hero-3slider .animate-fade-in-delay {
    animation: hero-3slider-fade-in 0.8s ease-out 0.2s both;
}

.section-hero-3slider .animate-fade-in-delay-2 {
    animation: hero-3slider-fade-in 0.8s ease-out 0.4s both;
}

.section-hero-3slider .hero-slide {
    will-change: opacity;
}

/* hero-pretzel */
.section-hero-pretzel .model--right img {
    object-fit: contain;
    object-position: center;
}
.section-hero-pretzel .models{
    height:min(58vh, 560px);
}
.section-hero-pretzel .model--left{
    bottom:0 !important;
    height:min(52vh, 520px) !important;
}
.section-hero-pretzel .model--center{
    bottom:-2% !important;
    height:min(60vh, 640px) !important;
}
.section-hero-pretzel .model--right{
    bottom:0 !important;
    height:min(52vh, 520px) !important;
}

/* theme globals: align section buttons with admin colors */
.section-about-us-elite .a-btn--primary,
.section-contact-form-elite .ct-btn,
.section-newsletter-elite .n-btn,
.section-categories-hanging-elite .c-btn,
.section-featured-products-elite .b-btn,
.section-trending-elite .b-btn,
.section-product-showcase-elite .p-btn {
    background: var(--brand-accent, #a7787f);
    color: var(--brand-on-accent, #ffffff);
}

/* theme globals: default section button colors */
[class*="section-"] button[class*="btn"],
[class*="section-"] a[class*="btn"] {
    background: var(--brand-accent, #2563eb);
    color: var(--brand-on-accent, #ffffff);
}
[class*="section-"] button[class*="btn"]:hover,
[class*="section-"] a[class*="btn"]:hover {
    filter: brightness(1.03);
}