/* =========================================================
   TLA — INTRO (clean, minimal, stable)
   ========================================================= */

/* Header logo sizing */
.tla-logo-target svg{
  width: 56px;
  height: auto;
  display: block;
}
@media (max-width: 768px){
  .tla-logo-target svg{ width: 68px; }
}

/* Intro fail-safe (default OFF) */
#tla-intro.tla-intro{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 650ms ease;
}

#tla-intro.tla-intro.is-active{
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Background + overlay */
#tla-intro .tla-intro-bg{
  position: absolute;
  inset: 0;
  background-image: url("https://thelifeatelier.com/wp-content/uploads/2026/02/the-life-atelier-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: blur(7px);
  transition: filter 1200ms ease, transform 1200ms ease;
}

#tla-intro.is-sharp .tla-intro-bg{
  filter: blur(0);
  transform: scale(1.02);
}

#tla-intro .tla-intro-overlay{
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 23%);
}

#tla-intro .tla-intro-overlay::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(70% 55% at 50% 40%,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.20) 60%,
    rgba(0,0,0,0.52) 100%);
  pointer-events:none;
}

#tla-intro .tla-intro-inner{
  position: absolute;
  inset: 0;
}
/* Bird positioning (CRITICAL, stable) */
#tla-intro .tla-intro-bird,
#tla-intro #tla-intro-bird{
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  will-change: transform;
  z-index: 2;

  opacity: 0;
  filter: blur(14px);
}

/* “ulazak u ekran” (zoom-in + blur out) */
#tla-intro .tla-intro-bird svg{
  display: block;
  width: min(24vw, 200px);
  height: auto;

  transform: scale(1.18);
  opacity: 0;
  filter: blur(18px);

  transition:
    transform 1400ms cubic-bezier(.22,1,.36,1),
    opacity 1200ms cubic-bezier(.22,1,.36,1),
    filter 1600ms cubic-bezier(.22,1,.36,1);
}

#tla-intro.is-bird-in .tla-intro-bird,
#tla-intro.is-bird-in #tla-intro-bird{
  opacity: 1;
  filter: blur(0);
}

#tla-intro.is-bird-in .tla-intro-bird svg{
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
}

@media (max-width: 768px){
  #tla-intro .tla-intro-bird svg{
    width: min(38vw, 220px);
  }
}

/* Ensure SVG transforms work */
#tla-intro .tla-intro-bird #wing-left,
#tla-intro .tla-intro-bird #wing-right{
  transform-box: fill-box;
}

/* Copy block */
#tla-intro .tla-intro-copy{
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: min(92vw, 980px);
  display: grid;
  place-items: center;
  gap: 18px;
  z-index: 3;
}

/* Punchline (SLOWER) */
#tla-intro #tla-intro-punch{
  position: relative;
  margin: 0;
  text-align: center;

  font-family: "SangBleu", "Canela", "Iowan Old Style", serif;
  font-weight: 300;
  font-size: clamp(28px, 4.8vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #F6F4F0;

  opacity: 0;
  transform: translateY(18px);
  filter: blur(18px);

  transition:
    opacity 2400ms cubic-bezier(.22,1,.36,1),
    transform 2600ms cubic-bezier(.22,1,.36,1),
    filter 2600ms cubic-bezier(.22,1,.36,1);
}

/* Reveal */
#tla-intro.is-revealed #tla-intro-punch{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  text-shadow:
    0 1px 18px rgba(0,0,0,0.35),
    0 0 1px rgba(255,255,255,0.08);
}



/* CTA */
#tla-intro #tla-intro-cta{
  appearance: none;
  border: 1px solid rgba(245,241,232,0.40);
  background: rgba(0,0,0,0.18);
  color: rgba(245,241,232,0.92);

  padding: 12px 22px;
  border-radius: 999px;

  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;

  cursor: pointer;

  opacity: 0;
  transform: translateY(10px);
  filter: blur(8px);
  pointer-events: none;

  transition:
    opacity 900ms cubic-bezier(.22,1,.36,1),
    transform 900ms cubic-bezier(.22,1,.36,1),
    filter 900ms cubic-bezier(.22,1,.36,1),
    background 220ms ease,
    border-color 220ms ease;
}

#tla-intro.is-cta #tla-intro-cta{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  pointer-events: auto;
}

#tla-intro #tla-intro-cta:hover{
  background: rgba(245,241,232,0.06);
  border-color: rgba(245,241,232,0.72);
}

#tla-intro #tla-intro-cta:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(245,241,232,0.10);
}

/* Header logo visibility control */
.tla-logo-target{ opacity: 1; transition: opacity 260ms ease; }
body.tla-intro-running .tla-logo-target{ opacity: 0; }
body.tla-intro-running .tla-logo-target.is-visible{ opacity: 1; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  #tla-intro{ display:none !important; }
  .tla-logo-target{ opacity:1 !important; }
}


@media (max-width: 768px){
  .tla-logo-target{
    padding-left: 20px;
  }
}




  /* Same styling as before + author section layout */
  .lxp *{ box-sizing:border-box; }
  .lxp{
    --bg:#fbfaf7; --paper:#fff; --ink:rgba(12,12,12,.92); --muted:rgba(76,69,63,.78);
    --gold1:#B69764; --gold2:#F2EABC; --hair:rgba(76,69,63,.12);
    --shadow:0 28px 90px rgba(0,0,0,.10); --shadow2:0 42px 120px rgba(0,0,0,.12);
    --r:24px; --ease:cubic-bezier(.22,1,.36,1);
    background:var(--bg); color:var(--ink); position:relative; overflow:hidden;
  }
  .lxp::before{
    content:""; position:absolute; inset:-60px;
    background:
      radial-gradient(900px 540px at 18% 16%, rgba(182,151,100,.12), transparent 62%),
      radial-gradient(760px 520px at 84% 72%, rgba(242,234,188,.10), transparent 64%),
      repeating-linear-gradient(0deg, rgba(0,0,0,.016) 0 1px, transparent 1px 3px);
    opacity:.58; pointer-events:none; mix-blend-mode:multiply;
  }
  .lxp .wrap{ width:min(1160px,92vw); margin:0 auto; position:relative; z-index:2; padding:clamp(26px,4vw,40px) 0; }
  .lxp .section{ padding:clamp(70px,9vw,120px) 0; position:relative; }
  .lxp .section.paper{ background:var(--paper); }
  .lxp .hair{ height:1px; background:linear-gradient(90deg, rgba(76,69,63,0), rgba(76,69,63,.18), rgba(182,151,100,.50), rgba(76,69,63,.18), rgba(76,69,63,0)); opacity:.9; }

  .lxp .kicker{
    font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    font-size:11px; letter-spacing:.28em; text-transform:uppercase; color:rgba(76,69,63,.62);
    display:flex; align-items:center; gap:12px; margin:0 0 16px;
  }
  .lxp .kicker:before{ content:""; width:42px; height:1px; background:linear-gradient(90deg, rgba(182,151,100,.18), rgba(242,234,188,.95)); }
  .lxp h1,.lxp h2,.lxp h3{ font-family:"SangBleu","Canela","Iowan Old Style","Didot",serif; font-weight:300; letter-spacing:-0.02em; margin:0; color:var(--ink); }
  .lxp h1{ font-size:clamp(44px,6vw,86px); line-height:1.02; margin-bottom:14px; }
  .lxp h2{ font-size:clamp(34px,4.6vw,62px); line-height:1.06; }
  .lxp p{ font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif; color:var(--muted); line-height:1.95; margin:0 0 16px; font-size:16.5px; }
  .lxp .lede{ font-size:18px; max-width:66ch; color:rgba(76,69,63,.84); }

  .lxp .gold{
    background:linear-gradient(90deg, var(--gold1) 0%, var(--gold2) 55%, var(--gold1) 100%);
    -webkit-background-clip:text; background-clip:text; color:transparent; position:relative;
  }
  @media (hover:hover){
    .lxp .gold::after{
      content:""; position:absolute; inset:-10px -18px;
      background:linear-gradient(120deg, transparent 35%, rgba(255,255,255,.40) 50%, transparent 65%);
      transform:translateX(-140%) skewX(-14deg); opacity:0; pointer-events:none; mix-blend-mode:screen;
    }
    .lxp .gold:hover::after{ opacity:1; animation:lxpSheen 1.25s var(--ease) forwards; }
    @keyframes lxpSheen{ to{ transform:translateX(140%) skewX(-14deg); opacity:0; } }
  }

  .lxp .heroGrid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(26px,5vw,74px); align-items:start; }

  .lxp .metaRow{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
  .lxp .pill{
    display:inline-flex; align-items:center; gap:10px; padding:10px 14px; border-radius:999px;
    border:1px solid rgba(76,69,63,.14); background:rgba(255,255,255,.40);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
  }
  .lxp .pill:hover{ transform:translateY(-1px); border-color:rgba(76,69,63,.26); background:rgba(255,255,255,.60); }
  .lxp .dot{ width:8px; height:8px; border-radius:50%; background:linear-gradient(90deg,var(--gold1),var(--gold2)); box-shadow:0 0 0 6px rgba(182,151,100,.10); }
  .lxp .pill span{ font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif; font-size:11px; letter-spacing:.24em; text-transform:uppercase; color:rgba(76,69,63,.72); white-space:nowrap; }

  .lxp .ctaRow{ display:flex; gap:12px; flex-wrap:wrap; margin-top:22px; align-items:center; }
  .lxp .btn{
    appearance:none; border:0; cursor:pointer; border-radius:999px; padding:14px 18px;
    font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    letter-spacing:.18em; text-transform:uppercase; font-size:11px; user-select:none;
    transition: transform .25s ease, filter .25s ease, box-shadow .25s ease, background .25s ease;
    display:inline-flex; align-items:center; justify-content:center;
  }
  .lxp .btnPrimary{ background:linear-gradient(90deg,var(--gold1),var(--gold2)); color:rgba(12,12,12,.92); box-shadow:0 18px 48px rgba(182,151,100,.22); }
  .lxp .btnPrimary:hover{ transform:translateY(-1px); filter:saturate(1.05); box-shadow:0 26px 70px rgba(182,151,100,.28); }
  .lxp .btnGhost{ background:rgba(255,255,255,.55); border:1px solid rgba(76,69,63,.18); color:rgba(12,12,12,.86); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .lxp .btnGhost:hover{ transform:translateY(-1px); background:rgba(255,255,255,.75); }
  .lxp .finePrint{ font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif; font-size:11px; letter-spacing:.22em; text-transform:uppercase; color:rgba(76,69,63,.56); }

  .lxp .media{ position:relative; padding-top:8px; }
  .lxp .frame{
    position:relative; border-radius:var(--r); overflow:hidden; background:#eee;
    border:1px solid rgba(76,69,63,.12); box-shadow:var(--shadow); transform:translateZ(0);
    transition: transform .75s var(--ease), box-shadow .75s var(--ease); will-change:transform;
  }
  .lxp .frame:hover{ box-shadow:var(--shadow2); }
  .lxp .frame img{
    width:100%; height:auto; display:block;
    filter:saturate(.98) contrast(1.03);
    transform:scale(1.02); transition: transform 1.2s var(--ease);
  }
  .lxp .frame:hover img{ transform:scale(1.07) translateY(-6px); }
  .lxp .frame::after{
    content:""; position:absolute; inset:auto 18px 18px auto; width:92px; height:2px; border-radius:999px;
    background:linear-gradient(90deg,var(--gold1),var(--gold2)); opacity:.95;
  }
  .lxp .frame::before{
    content:""; position:absolute; inset:0; background: radial-gradient(60% 55% at 50% 45%, rgba(255,255,255,.12), transparent 62%);
    opacity:0; transition: opacity .6s ease; pointer-events:none;
  }
  .lxp .frame:hover::before{ opacity:.9; }

  .lxp .badge{
    position:absolute; left:-10px; bottom:-14px;
    display:flex; align-items:center; gap:10px; padding:12px 14px; border-radius:999px;
    background:rgba(255,255,255,.62); border:1px solid rgba(76,69,63,.12); box-shadow:0 18px 55px rgba(0,0,0,.10);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  }
  .lxp .badge i{ width:10px; height:10px; border-radius:50%; background:linear-gradient(90deg,var(--gold1),var(--gold2)); box-shadow:0 0 0 7px rgba(182,151,100,.10); }
  .lxp .badge span{ font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif; font-size:11px; letter-spacing:.26em; text-transform:uppercase; color:rgba(76,69,63,.64); white-space:nowrap; }

  .lxp .headRow{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(18px,4vw,54px); align-items:end; margin-bottom:clamp(20px,4vw,44px); }
  .lxp .cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(14px,2.2vw,22px); }
  .lxp .card{
    position:relative; border-radius:22px; background:rgba(255,255,255,.72);
    border:1px solid rgba(76,69,63,.10); box-shadow:0 22px 60px rgba(0,0,0,.07);
    padding:22px 22px 20px; overflow:hidden; transform:translateZ(0);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s ease;
  }
  .lxp .card::after{
    content:""; position:absolute; inset:0; border-radius:22px; padding:1px;
    background:linear-gradient(90deg,var(--gold1),var(--gold2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite:xor; mask-composite:exclude;
    opacity:0; transition: opacity .35s ease; pointer-events:none;
  }
  .lxp .card::before{
    content:""; position:absolute; inset:-60%;
    background: radial-gradient(520px 320px at var(--mx, 50%) var(--my, 50%),
      rgba(182,151,100,.22), rgba(242,234,188,.10), rgba(255,255,255,0) 60%);
    opacity:.55; pointer-events:none; transition: opacity .25s ease;
  }
  @media (hover:hover) and (pointer:fine){
    .lxp .card:hover{ transform:translateY(-6px); box-shadow:0 34px 90px rgba(0,0,0,.10); border-color:transparent; }
    .lxp .card:hover::after{ opacity:1; }
    .lxp .card:hover::before{ opacity:.72; }
  }
  .lxp .tag{ display:inline-flex; align-items:center; gap:10px; font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif; font-size:11px; letter-spacing:.24em; text-transform:uppercase; color:rgba(76,69,63,.66); margin-bottom:14px; position:relative; z-index:2; }
  .lxp .tag i{ width:8px; height:8px; border-radius:50%; background:linear-gradient(90deg,var(--gold1),var(--gold2)); box-shadow:0 0 0 6px rgba(182,151,100,.10); }
  .lxp .card h3{ font-size:22px; margin:0 0 10px; position:relative; z-index:2; }
  .lxp .card p{ font-size:15.5px; margin:0; position:relative; z-index:2; }

  /* Author section layout */
  .lxp .authorGrid{
    display:grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(22px, 4vw, 70px);
    align-items:center;
  }
  .lxp .authorFrame{
    border-radius: 22px;
    overflow:hidden;
    background:#eee;
    border:1px solid rgba(76,69,63,.12);
    box-shadow: var(--shadow);
  }
  .lxp .authorFrame img{ width:100%; height:auto; display:block; filter:saturate(.98) contrast(1.03); }
  .lxp .authorCopy .metaRow{ margin-top: 18px; }

  /* FAQ */
  .lxp .faq{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(14px,2.4vw,24px); margin-top:clamp(18px,3vw,34px); }
  .lxp details{ border-radius:18px; background:rgba(255,255,255,.78); border:1px solid rgba(76,69,63,.10); overflow:hidden; box-shadow:0 18px 55px rgba(0,0,0,.06); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
  @media (hover:hover){ .lxp details:hover{ transform:translateY(-3px); box-shadow:0 26px 70px rgba(0,0,0,.08);} }
  .lxp summary{ list-style:none; cursor:pointer; padding:18px 18px 16px; display:flex; align-items:center; justify-content:space-between; gap:14px; }
  .lxp summary::-webkit-details-marker{ display:none; }
  .lxp .q{ font-family:"SangBleu","Canela","Iowan Old Style","Didot",serif; font-weight:300; font-size:18px; color:rgba(12,12,12,.90); letter-spacing:-0.01em; }
  .lxp .chev{ width:34px; height:34px; border-radius:999px; border:1px solid rgba(76,69,63,.14); background:rgba(255,255,255,.55); display:grid; place-items:center; transition: transform .35s var(--ease), border-color .35s ease, background .35s ease; }
  .lxp details[open] .chev{ transform:rotate(45deg); background:rgba(255,255,255,.75); border-color:rgba(76,69,63,.24); }
  .lxp .a{ padding:0 18px 18px; font-size:15.5px; color:rgba(76,69,63,.82); }

  /* Sticky buy bar */
  .lxp .buybar{ position: sticky; bottom:14px; z-index:20; margin-top:30px; display:flex; justify-content:center; }
  .lxp .buybarInner{
    width:min(980px,92vw);
    border-radius:999px;
    background:rgba(255,255,255,.68);
    border:1px solid rgba(76,69,63,.12);
    box-shadow:0 26px 80px rgba(0,0,0,.10);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding:10px 10px 10px 16px;
    display:flex; align-items:center; justify-content:space-between; gap:14px;
  }
  .lxp .buyLeft{ display:flex; flex-direction:column; gap:4px; min-width:0; }
  .lxp .buyTitle{
    font-family:"SangBleu","Canela","Iowan Old Style","Didot",serif;
    font-weight:300; letter-spacing:-0.01em; color:rgba(12,12,12,.90);
    font-size:18px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:52ch;
  }
  .lxp .buyMeta{
    font-family: ui-sans-serif,system-ui,-apple-system,"Helvetica Neue",Arial,sans-serif;
    font-size:11px; letter-spacing:.22em; text-transform:uppercase; color:rgba(76,69,63,.58);
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  }
  .lxp .buyRight{ display:flex; align-items:center; gap:10px; }
  .lxp .price{
    font-family: ui-sans-serif,system-ui,-apple-system,"Helvetica Neue",Arial,sans-serif;
    letter-spacing:.18em; text-transform:uppercase; font-size:11px; color:rgba(76,69,63,.62);
    padding-right:6px;
  }

  /* Reveal */
  .lxp [data-reveal]{ opacity:1; transform:none; filter:none; }
  .lxp.lxp-armed [data-reveal]{ opacity:0; transform:translateY(16px); filter:blur(6px);
    transition: opacity 1.1s var(--ease), transform 1.25s var(--ease), filter 1.25s var(--ease);
  }
  .lxp.lxp-armed .in [data-reveal]{ opacity:1; transform:translateY(0); filter:blur(0); }
  .lxp.lxp-armed .in [data-reveal="2"]{ transition-delay:.08s; }
  .lxp.lxp-armed .in [data-reveal="3"]{ transition-delay:.16s; }
  .lxp.lxp-armed .in [data-reveal="4"]{ transition-delay:.24s; }
  .lxp.lxp-armed .in [data-reveal="5"]{ transition-delay:.32s; }

  /* Responsive */
  @media (max-width:980px){
    .lxp .heroGrid{ grid-template-columns:1fr; }
    .lxp .headRow{ grid-template-columns:1fr; }
    .lxp .cards{ grid-template-columns:1fr; }
    .lxp .faq{ grid-template-columns:1fr; }
    .lxp .authorGrid{ grid-template-columns:1fr; }
    .lxp .badge{ left:10px; }
  }
  @media (max-width:520px){
    .lxp .lede{ font-size:17px; }
    .lxp .buybarInner{ border-radius:22px; align-items:stretch; flex-direction:column; }
    .lxp .buyRight{ justify-content:space-between; width:100%; }
    .lxp .price{ padding-right:0; }
  }

  @media (prefers-reduced-motion: reduce){
    .lxp .frame,.lxp .frame img,.lxp .card,.lxp details,.lxp .btn{ transition:none !important; }
    .lxp.lxp-armed [data-reveal]{ opacity:1 !important; transform:none !important; filter:none !important; }
  }



/* ===============================
   TLA ABOUT AUTHOR (Shortcode)
   Class prefix: tla-aa
=============================== */

.tla-aa{
  --aa-g1:#B69764;
  --aa-g2:#F2EABC;
  --aa-ink: rgba(12,12,12,.92);
  --aa-mute: rgba(76,69,63,.74);
  --aa-border: rgba(76,69,63,.14);
  --aa-cream: #fbfaf7;
  --aa-white: #ffffff;
  --aa-ease: cubic-bezier(.22,1,.36,1);

  position: relative;
  background: var(--aa-cream);
  padding: clamp(96px, 10vw, 170px) 0;
  overflow: hidden;
}

.tla-aa__bg{
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(182,151,100,.10), transparent 60%),
    radial-gradient(760px 520px at 86% 70%, rgba(242,234,188,.10), transparent 62%),
    repeating-linear-gradient(0deg, rgba(0,0,0,.016) 0 1px, transparent 1px 3px);
  opacity:.55;
  mix-blend-mode: multiply;
  pointer-events:none;
}

.tla-aa__wrap{
  width: min(1160px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tla-aa__head{
  text-align: center;
  max-width: 70ch;
  margin: 0 auto clamp(28px, 4.2vw, 54px);
}

.tla-aa__kicker{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: rgba(76,69,63,.62);
  margin: 0 0 16px;
}

.tla-aa__hairline{
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(182,151,100,.22), rgba(242,234,188,.70));
  border-radius: 999px;
}

.tla-aa__title{
  margin: 0 0 10px;
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  font-size: clamp(40px, 5.0vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--aa-ink);
}

.tla-aa__sub{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
}

.tla-aa__grid{
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(22px, 4.2vw, 70px);
  align-items: start;
}

/* PHOTO */
.tla-aa__photo{
  margin: 0;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #eee;
  border: 1px solid rgba(76,69,63,.12);
  box-shadow: 0 34px 90px rgba(0,0,0,.12);
  transform: translateZ(0);
}

.tla-aa__photo img{
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  filter: saturate(.98) contrast(1.03);
}

.tla-aa__caption{
  position:absolute;
  left: 18px;
  bottom: 16px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(76,69,63,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(76,69,63,.78);
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.tla-aa__capdot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(182,151,100,.85), rgba(242,234,188,.85));
  box-shadow: 0 0 0 7px rgba(182,151,100,.10);
}

/* PANEL */
.tla-aa__panel{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(76,69,63,.10);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0,0,0,.08);
}

.tla-aa__paper{
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(closest-side at 40% 30%, rgba(182,151,100,.12), rgba(242,234,188,.05), rgba(255,255,255,0) 62%),
    repeating-linear-gradient(0deg, rgba(0,0,0,.014) 0 1px, transparent 1px 3px);
  opacity:.55;
  mix-blend-mode: multiply;
  pointer-events:none;
}

.tla-aa__copy{
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3.2vw, 34px);
}

/* hairline top */
.tla-aa__copy:before{
  content:"";
  position:absolute;
  left: clamp(22px, 3.2vw, 34px);
  top: 18px;
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(182,151,100,.92), rgba(242,234,188,.72));
  opacity:.85;
}

/* text */
.tla-aa__p{
  margin: 0 0 18px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.95;
  color: rgba(76,69,63,.86);
  max-width: 72ch;
}

/* Drop cap (unique premium touch) */
.tla-aa__drop:first-letter{
  float: left;
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  font-size: 78px;
  line-height: .92;
  margin: 6px 12px 0 0;
  color: rgba(76,69,63,.74);
}

/* quote */
.tla-aa__quote{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(76,69,63,.10);
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(12,12,12,.88);
}

.tla-aa__qmark{
  display:inline-block;
  margin-right: 10px;
  background: linear-gradient(90deg, var(--aa-g1), var(--aa-g2));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

/* signature */
.tla-aa__sig{
  margin-top: 18px;
  display:flex;
  align-items:center;
  gap: 12px;
  color: rgba(76,69,63,.62);
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .30em;
  text-transform: uppercase;
}

.tla-aa__sigline{
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(182,151,100,.22), rgba(242,234,188,.65));
  border-radius: 999px;
}

/* ===============================
   REVEAL (SAFE DEFAULT)
   - default visible (never blank)
=============================== */
.tla-aa [data-aa-reveal]{
  opacity: 1;
  transform: none;
  filter: none;
}

.tla-aa.tla-aa-armed [data-aa-reveal]{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(8px);
  transition:
    opacity 1.05s var(--aa-ease),
    transform 1.25s var(--aa-ease),
    filter 1.25s var(--aa-ease);
  will-change: opacity, transform, filter;
}

.tla-aa.tla-aa-armed.is-inview [data-aa-reveal]{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.tla-aa.tla-aa-armed.is-inview [data-aa-reveal="2"]{ transition-delay: .08s; }
.tla-aa.tla-aa-armed.is-inview [data-aa-reveal="3"]{ transition-delay: .14s; }
.tla-aa.tla-aa-armed.is-inview [data-aa-reveal="4"]{ transition-delay: .20s; }
.tla-aa.tla-aa-armed.is-inview [data-aa-reveal="5"]{ transition-delay: .26s; }

/* ===============================
   Responsive
=============================== */
@media (max-width: 980px){
  .tla-aa__grid{ grid-template-columns: 1fr; }
  .tla-aa__caption{ left: 14px; bottom: 12px; }
  .tla-aa__drop:first-letter{ font-size: 70px; }
}

@media (max-width: 520px){
  .tla-aa{ padding: 84px 0 120px; }
  .tla-aa__p{ font-size: 15px; }
}

@media (prefers-reduced-motion: reduce){
  .tla-aa.tla-aa-armed [data-aa-reveal]{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ===========================
   BRUTAL LUX • Minimal Product
   + About the author (NEW)
   CSS FILE VERSION (NO <style>)
   Namespace: .lxp
=========================== */

.lxp *{ box-sizing:border-box; }
.lxp{
  --bg:#fbfaf7;
  --paper:#ffffff;
  --ink:rgba(12,12,12,.92);
  --muted:rgba(76,69,63,.78);
  --hair:rgba(76,69,63,.12);
  --hair2:rgba(76,69,63,.18);
  --gold1:#B69764;
  --gold2:#F2EABC;
  --shadow: 0 28px 90px rgba(0,0,0,.10);
  --shadow2: 0 42px 120px rgba(0,0,0,.12);
  --r:24px;
  --ease: cubic-bezier(.22,1,.36,1);
  background: var(--bg);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.lxp::before{
  content:"";
  position:absolute; inset:-60px;
  background:
    radial-gradient(900px 540px at 18% 16%, rgba(182,151,100,.12), transparent 62%),
    radial-gradient(760px 520px at 84% 72%, rgba(242,234,188,.10), transparent 64%),
    repeating-linear-gradient(0deg, rgba(0,0,0,.016) 0 1px, transparent 1px 3px);
  opacity:.58;
  pointer-events:none;
  mix-blend-mode:multiply;
}

.lxp a{ color:inherit; text-decoration:none; }
.lxp .wrap{
  width: min(1160px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: clamp(26px, 4vw, 40px) 0;
}

/* Typography */
.lxp .kicker{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.62);
  display:flex;
  align-items:center;
  gap:12px;
  margin: 0 0 16px;
}
.lxp .kicker:before{
  content:"";
  width: 42px; height: 1px;
  background: linear-gradient(90deg, rgba(182,151,100,.18), rgba(242,234,188,.95));
}

.lxp h1, .lxp h2, .lxp h3{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.lxp h1{
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1.02;
  margin-bottom: 14px;
}
.lxp h2{
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.06;
}
.lxp p{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--muted);
  line-height: 1.95;
  margin: 0 0 16px;
  font-size: 16.5px;
}
.lxp .lede{
  font-size: 18px;
  max-width: 66ch;
  color: rgba(76,69,63,.84);
}

.lxp .gold{
  background: linear-gradient(90deg, var(--gold1) 0%, var(--gold2) 55%, var(--gold1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

/* micro sheen on hover */
@media (hover:hover){
  .lxp .gold::after{
    content:"";
    position:absolute;
    inset:-10px -18px;
    background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.40) 50%, transparent 65%);
    transform: translateX(-140%) skewX(-14deg);
    opacity: 0;
    pointer-events:none;
    mix-blend-mode: screen;
  }
  .lxp .gold:hover::after{
    opacity: 1;
    animation: lxpSheen 1.25s var(--ease) forwards;
  }
  @keyframes lxpSheen{
    to{ transform: translateX(140%) skewX(-14deg); opacity:0; }
  }
}

/* Layout blocks */
.lxp .section{
  padding: clamp(70px, 9vw, 120px) 0;
  position: relative;
}
.lxp .section.paper{
  background: var(--paper);
}
.lxp .hair{
  height: 1px;
  background: linear-gradient(90deg, rgba(76,69,63,0), rgba(76,69,63,.18), rgba(182,151,100,.50), rgba(76,69,63,.18), rgba(76,69,63,0));
  opacity: .9;
}

/* HERO */
.lxp .heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(26px, 5vw, 74px);
  align-items: start;
}

.lxp .metaRow{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.lxp .pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(76,69,63,.14);
  background: rgba(255,255,255,.40);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.lxp .pill:hover{
  transform: translateY(-1px);
  border-color: rgba(76,69,63,.26);
  background: rgba(255,255,255,.60);
}
.lxp .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  box-shadow: 0 0 0 6px rgba(182,151,100,.10);
  flex: 0 0 auto;
}
.lxp .pill span{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(76,69,63,.72);
  white-space: nowrap;
}

.lxp .ctaRow{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
  align-items:center;
}
.lxp .btn{
  appearance:none;
  border: 0;
  cursor:pointer;
  border-radius: 999px;
  padding: 14px 18px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease, background .25s ease;
  user-select:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.lxp .btnPrimary{
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  color: rgba(12,12,12,.92);
  box-shadow: 0 18px 48px rgba(182,151,100,.22);
}
.lxp .btnPrimary:hover{
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: 0 26px 70px rgba(182,151,100,.28);
}
.lxp .btnGhost{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(76,69,63,.18);
  color: rgba(12,12,12,.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lxp .btnGhost:hover{ transform: translateY(-1px); background: rgba(255,255,255,.75); }

.lxp .finePrint{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(76,69,63,.56);
}

/* Product media card */
.lxp .media{
  position: relative;
  padding-top: 8px;
}
.lxp .frame{
  position: relative;
  border-radius: var(--r);
  overflow:hidden;
  background: #eee;
  border: 1px solid rgba(76,69,63,.12);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform .75s var(--ease), box-shadow .75s var(--ease);
  will-change: transform;
}
.lxp .frame:hover{
  box-shadow: var(--shadow2);
}
.lxp .frame img{
  width:100%;
  height:auto;
  display:block;
  filter: saturate(.98) contrast(1.03);
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.lxp .frame:hover img{
  transform: scale(1.07) translateY(-6px);
}
.lxp .frame::after{
  content:"";
  position:absolute;
  inset: auto 18px 18px auto;
  width: 92px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  opacity: .95;
}
.lxp .frame::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(60% 55% at 50% 45%, rgba(255,255,255,.12), transparent 62%);
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events:none;
}
.lxp .frame:hover::before{ opacity: .9; }

/* Floating badge */
.lxp .badge{
  position:absolute;
  left: -10px;
  bottom: -14px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(76,69,63,.12);
  box-shadow: 0 18px 55px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateZ(0);
}
.lxp .badge i{
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  box-shadow: 0 0 0 7px rgba(182,151,100,.10);
}
.lxp .badge span{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(76,69,63,.64);
  white-space: nowrap;
}

/* FEATURE CARDS */
.lxp .headRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 54px);
  align-items:end;
  margin-bottom: clamp(20px, 4vw, 44px);
}
.lxp .cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.2vw, 22px);
}

.lxp .card{
  position: relative;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(76,69,63,.10);
  box-shadow: 0 22px 60px rgba(0,0,0,.07);
  padding: 22px 22px 20px;
  overflow:hidden;
  transform: translateZ(0);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s ease;
}
.lxp .card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  padding:1px;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity:0;
  transition: opacity .35s ease;
  pointer-events:none;
}
.lxp .card::before{
  content:"";
  position:absolute; inset:-60%;
  background:
    radial-gradient(520px 320px at var(--mx, 50%) var(--my, 50%),
      rgba(182,151,100,.22),
      rgba(242,234,188,.10),
      rgba(255,255,255,0) 60%);
  opacity:.55;
  pointer-events:none;
  transition: opacity .25s ease;
}
@media (hover:hover) and (pointer:fine){
  .lxp .card:hover{
    transform: translateY(-6px);
    box-shadow: 0 34px 90px rgba(0,0,0,.10);
    border-color: transparent;
  }
  .lxp .card:hover::after{ opacity:1; }
  .lxp .card:hover::before{ opacity:.72; }
}
.lxp .tag{
  display:inline-flex; align-items:center; gap:10px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(76,69,63,.66);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.lxp .tag i{
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  box-shadow: 0 0 0 6px rgba(182,151,100,.10);
}
.lxp .card h3{
  font-size: 22px;
  margin: 0 0 10px;
  position: relative;
  z-index: 2;
}
.lxp .card p{
  font-size: 15.5px;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* QUOTE */
.lxp .quoteBox{
  border-radius: 28px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(76,69,63,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.09);
  padding: clamp(22px, 3.2vw, 40px);
  overflow:hidden;
  position: relative;
}
.lxp .quoteBox::before{
  content:"";
  position:absolute;
  left: 26px; top: 22px;
  width: 48px; height: 2px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  opacity:.95;
}
.lxp .quote{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px;
  position: relative;
  z-index: 2;
}
.lxp .quoteSub{
  margin: 0;
  max-width: 64ch;
  font-size: 15.5px;
  color: rgba(76,69,63,.78);
  position: relative;
  z-index: 2;
}
.lxp .stamp{
  margin-top: 18px;
  display:flex; align-items:center; gap:10px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
}
.lxp .stamp i{
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  box-shadow: 0 0 0 7px rgba(182,151,100,.10);
}

/* ABOUT AUTHOR (NEW) */
.lxp .authorGrid{
  display:grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(24px, 4.5vw, 84px);
  align-items:center;
}
.lxp .authorMedia{
  position:relative;
}
.lxp .authorFrame{
  border-radius: 22px;
  overflow:hidden;
  background:#eee;
  border: 1px solid rgba(76,69,63,.12);
  box-shadow: var(--shadow);
  transform: translateZ(0);
}
.lxp .authorFrame img{
  width:100%;
  height:auto;
  display:block;
  filter: saturate(.98) contrast(1.03);
}
.lxp .authorMark{
  margin-top: 14px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(76,69,63,.56);
  display:flex;
  align-items:center;
  gap:10px;
}
.lxp .authorMark i{
  width: 8px; height: 8px; border-radius:50%;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  box-shadow: 0 0 0 6px rgba(182,151,100,.10);
}

/* FAQ */
.lxp .faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.4vw, 24px);
  margin-top: clamp(18px, 3vw, 34px);
}
.lxp details{
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(76,69,63,.10);
  overflow:hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
@media (hover:hover){
  .lxp details:hover{ transform: translateY(-3px); box-shadow: 0 26px 70px rgba(0,0,0,.08); }
}
.lxp summary{
  list-style:none;
  cursor:pointer;
  padding: 18px 18px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.lxp summary::-webkit-details-marker{ display:none; }
.lxp .q{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(12,12,12,.90);
  letter-spacing: -0.01em;
}
.lxp .chev{
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(76,69,63,.14);
  background: rgba(255,255,255,.55);
  display:grid; place-items:center;
  flex: 0 0 auto;
  transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
}
.lxp details[open] .chev{ transform: rotate(45deg); background: rgba(255,255,255,.75); border-color: rgba(76,69,63,.24); }
.lxp .a{
  padding: 0 18px 18px;
  font-size: 15.5px;
  color: rgba(76,69,63,.82);
}

/* Sticky buy bar */
.lxp .buybar{
  position: sticky;
  bottom: 14px;
  z-index: 20;
  margin-top: 30px;
  display:flex;
  justify-content:center;
}
.lxp .buybarInner{
  width: min(980px, 92vw);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(76,69,63,.12);
  box-shadow: 0 26px 80px rgba(0,0,0,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 10px 10px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.lxp .buyLeft{
  display:flex;
  flex-direction:column;
  gap: 4px;
  min-width: 0;
}
.lxp .buyTitle{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(12,12,12,.90);
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52ch;
}
.lxp .buyMeta{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.lxp .buyRight{
  display:flex;
  align-items:center;
  gap: 10px;
  flex: 0 0 auto;
}
.lxp .price{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(76,69,63,.62);
  padding-right: 6px;
}

/* Reveal */
.lxp [data-reveal]{ opacity: 1; transform: none; filter: none; }
.lxp.lxp-armed [data-reveal]{
  opacity: 0;
  transform: translateY(16px);
  filter: blur(6px);
  transition: opacity 1.1s var(--ease), transform 1.25s var(--ease), filter 1.25s var(--ease);
  will-change: opacity, transform, filter;
}
.lxp.lxp-armed .in [data-reveal]{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.lxp.lxp-armed .in [data-reveal="2"]{ transition-delay:.08s; }
.lxp.lxp-armed .in [data-reveal="3"]{ transition-delay:.16s; }
.lxp.lxp-armed .in [data-reveal="4"]{ transition-delay:.24s; }
.lxp.lxp-armed .in [data-reveal="5"]{ transition-delay:.32s; }

/* Responsive */
@media (max-width: 980px){
  .lxp .heroGrid{ grid-template-columns: 1fr; }
  .lxp .headRow{ grid-template-columns: 1fr; }
  .lxp .cards{ grid-template-columns: 1fr; }
  .lxp .faq{ grid-template-columns: 1fr; }
  .lxp .authorGrid{ grid-template-columns: 1fr; }
  .lxp .badge{ left: 10px; }
}
@media (max-width: 520px){
  .lxp .lede{ font-size: 17px; }
  .lxp .buybarInner{ border-radius: 22px; align-items: stretch; flex-direction: column; }
  .lxp .buyRight{ justify-content:space-between; width:100%; }
  .lxp .price{ padding-right:0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .lxp .frame, .lxp .frame img, .lxp .card, .lxp details, .lxp .btn{ transition:none !important; }
  .lxp.lxp-armed [data-reveal]{ opacity:1 !important; transform:none !important; filter:none !important; }
}

/* =========================================
   LXP • PREMIUM REFINEMENT (override patch)
========================================= */

/* global rhythm */
.lxp .section{ padding: clamp(88px, 10vw, 150px) 0; }
.lxp .hair{ opacity:.75; }

/* kill “too many boxes” feeling */
.lxp .pill,
.lxp .badge,
.lxp .specRow,
.lxp .keyDetails,
.lxp .pillars,
.lxp .cardsAsym,
.lxp .stack { display:none !important; } /* smirujemo sistem */

/* HERO: cleaner */
.lxp .heroGrid{ align-items:center; gap: clamp(36px, 6vw, 96px); }
.lxp .kicker{ margin-bottom: 14px; opacity:.9; }
.lxp .lede{ max-width: 58ch; }

.lxp .metaLine{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
}
.lxp .metaDot{
  width: 6px; height: 6px; border-radius:50%;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  box-shadow: 0 0 0 6px rgba(182,151,100,.08);
  display:inline-block;
  margin-right: 10px;
  transform: translateY(-1px);
}

/* CTA: one premium + one editorial link */
.lxp .ctaRow{ gap:14px; margin-top: 26px; }
.lxp .btnPrimary{
  padding: 14px 20px;
  box-shadow: 0 18px 46px rgba(182,151,100,.18);
}
.lxp .btnPrimary:hover{ box-shadow: 0 28px 78px rgba(182,151,100,.24); }

.lxp .linkLine{
  border:0;
  background:transparent;
  padding: 10px 0;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.62);
  cursor:pointer;
  position:relative;
}
.lxp .linkLine::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, rgba(182,151,100,.85), rgba(242,234,188,.25));
  opacity:.9;
  transition: width .6s var(--ease);
}
@media (hover:hover){
  .lxp .linkLine:hover::after{ width: 120px; }
}

/* Product image: museum frame */
.lxp .frame{
  border-radius: 30px;
  border: 1px solid rgba(76,69,63,.10);
  box-shadow: 0 38px 120px rgba(0,0,0,.10);
}
.lxp .frame::after{ display:none; } /* ukloni “gold corner” */
.lxp .frame::before{ opacity:.55; } /* softer highlight */
.lxp .frame img{ transform: none; }
@media (hover:hover){
  .lxp .frame:hover img{ transform: scale(1.03); }
}

/* FEATURES: editorial list (no cards) */
.lxp .featureEditorial{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(22px, 4vw, 72px);
  align-items:start;
  margin-top: clamp(18px, 3vw, 32px);
}
.lxp .featureList{
  margin: 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 18px;
}
.lxp .fItem{
  display:grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items:start;
  padding-top: 18px;
  border-top: 1px solid rgba(76,69,63,.10);
}
.lxp .fNum{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight:300;
  font-size: 26px;
  letter-spacing:-0.02em;
  color: rgba(12,12,12,.90);
}
.lxp .fTitle{
  margin:0 0 6px;
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight:300;
  font-size: 20px;
  color: rgba(12,12,12,.90);
}
.lxp .fBody{ margin:0; font-size: 15.5px; color: rgba(76,69,63,.82); }

/* FULL BLEED: one wow moment */
.lxp .bleed{ border-radius: 32px; box-shadow: 0 44px 140px rgba(0,0,0,.10); }
.lxp .bleed img{ height: clamp(300px, 38vw, 520px); }

/* Quote: editorial, not “cardy” */
.lxp .quoteBox{
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.lxp .quoteRule,
.lxp .noteTop{ display:none !important; }

.lxp .quote{
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: 1.08;
}
.lxp .quoteSub{
  max-width: 70ch;
  margin-top: 16px;
  color: rgba(76,69,63,.76);
}
.lxp .stamp{
  margin-top: 22px;
  color: rgba(76,69,63,.58);
}
.lxp .stamp::before{
  content:"";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(182,151,100,.85), rgba(242,234,188,.25));
  display:inline-block;
  margin-right: 12px;
  transform: translateY(-3px);
}

/* Author: cleaner cover story */
.lxp #lxp-author .heroGrid{ align-items:start; }
.lxp #lxp-author .microHead{ display:none; } /* tiše */
.lxp .pullQuote{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight:300;
  font-size: 24px;
  line-height: 1.25;
  margin-top: 18px;
  color: rgba(12,12,12,.90);
}

/* FAQ: premium strip + calmer details */
.lxp .keyStrip{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  align-items:center;
  margin: 18px 0 22px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing:.28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
}
.lxp .keyStrip span{
  display:inline-flex; align-items:center;
}
.lxp .keyStrip span::before{
  content:"";
  width: 6px; height: 6px; border-radius:50%;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  box-shadow: 0 0 0 6px rgba(182,151,100,.08);
  margin-right: 10px;
}

/* FAQ details: less “app card” */
.lxp details{
  border-radius: 16px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 14px 46px rgba(0,0,0,.05);
}
.lxp summary{ padding: 16px 16px 14px; }
.lxp .chev{ width: 32px; height: 32px; }

/* Sticky buy bar: smaller + sharper */
.lxp .buybarInner{
  box-shadow: 0 22px 70px rgba(0,0,0,.10);
  background: rgba(255,255,255,.62);
}
.lxp .buyThumb{ width: 30px; height:30px; border-radius: 9px; }
.lxp .buyMeta{ opacity:.85; }

/* Responsive */
@media (max-width: 980px){
  .lxp .featureEditorial{ grid-template-columns: 1fr; }
}

/* ==============================
   LXP • ABOUT AUTHOR (premium)
============================== */

.lxp .authorGrid{
  display:grid;
  grid-template-columns: .92fr 1.08fr; /* image | text */
  gap: clamp(26px, 5vw, 86px);
  align-items:start;
}

/* Left */
.lxp .authorMedia{ position:relative; }
.lxp .authorMedia .frame{
  border-radius: 28px;
  box-shadow: 0 40px 130px rgba(0,0,0,.10);
}

/* caption under image (editorial) */
.lxp .authorCaption{
  margin-top: 14px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
  display:flex;
  align-items:center;
  gap:10px;
}
.lxp .authorCaption i{
  width: 7px; height: 7px; border-radius:50%;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  box-shadow: 0 0 0 6px rgba(182,151,100,.08);
  display:inline-block;
  flex: 0 0 auto;
}

/* Right */
.lxp .authorCopy h2{
  margin-top: 6px;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.02;
}

.lxp .authorCopy .lede{
  margin-top: 16px;
  max-width: 62ch;
}

/* pull quote that “fills” the column in a premium way */
.lxp .authorPull{
  margin: 18px 0 16px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(76,69,63,.10);
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight:300;
  font-size: 24px;
  line-height: 1.18;
  color: rgba(12,12,12,.90);
  max-width: 36ch;
}

/* Responsive */
@media (max-width: 980px){
  .lxp .authorGrid{ grid-template-columns: 1fr; }
  .lxp .authorPull{ max-width: 42ch; }
}

/* ==============================
   Editorial spread (magazine)
============================== */
.lxp .spread{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(76,69,63,.10);
  box-shadow: 0 44px 140px rgba(0,0,0,.10);
}

.lxp .spreadMedia img{
  width:100%;
  height: clamp(320px, 40vw, 560px);
  display:block;
  object-fit: cover;
  object-position: 50% 35%;
}

.lxp .spreadNote{
  padding: clamp(20px, 3vw, 42px);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.lxp .spreadKicker{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
  margin-bottom: 12px;
}

.lxp .spreadLead{
  margin:0;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(76,69,63,.82);
  max-width: 46ch;
}

.lxp .spreadRule{
  height:1px;
  width: min(240px, 70%);
  margin: 18px 0;
  background: linear-gradient(90deg, rgba(182,151,100,.85), rgba(242,234,188,.25));
  opacity:.9;
}

.lxp .spreadSmall{
  margin:0;
  font-size: 15.5px;
  line-height: 1.9;
  color: rgba(76,69,63,.78);
  max-width: 52ch;
}

.lxp .spreadIndex{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
}
.lxp .spreadIndex span{ display:inline-flex; align-items:center; }
.lxp .spreadIndex i{
  width: 6px; height:6px; border-radius:50%;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  box-shadow: 0 0 0 6px rgba(182,151,100,.08);
  margin-right: 10px;
}

/* responsive */
@media (max-width: 980px){
  .lxp .spread{ grid-template-columns: 1fr; }
  .lxp .spreadNote{ padding: 22px; }
}


/* ==========================
   LXP • FAQ + Sticky Buy Bar
========================== */

.lxp .lxp-anchor{ height: 1px; width: 100%; }

/* premium info strip */
.lxp .keyStrip{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
  align-items:center;
  margin: 18px 0 26px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
}
.lxp .keyStrip span{
  display:inline-flex;
  align-items:center;
}
.lxp .keyStrip span::before{
  content:"";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  box-shadow: 0 0 0 6px rgba(182,151,100,.08);
  margin-right: 10px;
  transform: translateY(-1px);
}

/* FAQ layout stays two cols desktop, one col mobile */
.lxp .faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.4vw, 22px);
}

/* details: calmer, less “app” */
.lxp details{
  border-radius: 16px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(76,69,63,.10);
  overflow:hidden;
  box-shadow: 0 14px 46px rgba(0,0,0,.05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
@media (hover:hover){
  .lxp details:hover{
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0,0,0,.07);
  }
}

.lxp summary{
  list-style:none;
  cursor:pointer;
  padding: 16px 16px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.lxp summary::-webkit-details-marker{ display:none; }

.lxp .q{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(12,12,12,.90);
  letter-spacing: -0.01em;
}
.lxp .chev{
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(76,69,63,.14);
  background: rgba(255,255,255,.55);
  display:grid; place-items:center;
  flex: 0 0 auto;
  transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
}
.lxp details[open] .chev{
  transform: rotate(45deg);
  background: rgba(255,255,255,.72);
  border-color: rgba(76,69,63,.22);
}
.lxp .a{
  padding: 0 16px 16px;
  font-size: 15.5px;
  color: rgba(76,69,63,.80);
  line-height: 1.9;
}

/* Sticky buy bar */
.lxp .buybar{
  position: sticky;
  bottom: 14px;
  z-index: 50;
  margin-top: 28px;
  display:flex;
  justify-content:center;
}
.lxp .buybarInner{
  width: min(980px, 92vw);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(76,69,63,.12);
  box-shadow: 0 22px 70px rgba(0,0,0,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 28px 14px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.lxp .buyLeft{
  display:flex;
  flex-direction:column;
  gap: 4px;
  min-width: 0;
}
.lxp .buyTitle{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(12,12,12,.90);
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52ch;
}
.lxp .buyMeta{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.lxp .buySep{ opacity:.65; padding: 0 6px; }

.lxp .buyRight{
  display:flex;
  align-items:center;
  gap: 10px;
  flex: 0 0 auto;
}
.lxp .price{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(76,69,63,.62);
}

/* Responsive */
@media (max-width: 980px){
  .lxp .faq{ grid-template-columns: 1fr; }
}


/* ==========================
   LXP • FAQ + Sticky Buy Bar (CLEAN END)
========================== */

/* Responsive */
@media (max-width: 980px){
  .lxp .faq{ grid-template-columns: 1fr; }
}

/* MOBILE buybar: premium compact (no nesting chaos) */
@media (max-width: 520px){
  .lxp .buybarInner{
    border-radius: 18px;
    padding: 10px 12px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .lxp .buyTitle{
    font-size: 14px;
    line-height: 1.1;
    max-width: 22ch;
  }
  .lxp .buyMeta{
    font-size: 9px;
    letter-spacing: .22em;
    opacity: .85;
  }
  .lxp .buyRight{
    justify-content: flex-end;
    gap: 8px;
  }
  .lxp .price{
    font-size: 9px;
    white-space: nowrap;
    opacity: .9;
    padding-right: 0;
  }
  .lxp .buybar .btn{
    padding: 10px 12px;
    font-size: 9.5px;
    letter-spacing: .22em;
  }
}

@media (max-width: 380px){
  .lxp .buyTitle{ max-width: 18ch; }
  .lxp .price{ display:none; }
}

/* ===========================
   LXP Drawer Cart — FULL CSS (DESKTOP + MOBILE)
   IMPORTANT: this must be OUTSIDE any @media
=========================== */

/* Vars for cart (independent from .lxp) */
:root{
  --lxp-bg: #fbfaf7;
  --lxp-paper:#ffffff;
  --lxp-ink: rgba(12,12,12,.92);
  --lxp-muted: rgba(76,69,63,.78);
  --lxp-hair: rgba(76,69,63,.12);
  --lxp-gold1:#B69764;
  --lxp-gold2:#F2EABC;
  --lxp-ease: cubic-bezier(.22,1,.36,1);
}

html.lxpCartLock{ overflow:hidden; }

.lxpCart, .lxpCart *{ box-sizing:border-box; }
.lxpCart{
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  pointer-events: none;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--lxp-ink);
}

.lxpCart a{ color:inherit; text-decoration:none; }
.lxpCart img{ max-width:100%; height:auto; display:block; }

.lxpCart__backdrop{
  position:absolute;
  inset:0;
  background: rgba(10,10,10,.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity:0;
  transition: opacity .45s var(--lxp-ease);
}

.lxpCart__panel{
  position:absolute !important;
  top:0 !important;
  right:0 !important;
  height:100% !important;
  width: min(460px, 92vw);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(76,69,63,.12);
  box-shadow: -40px 0 120px rgba(0,0,0,.22);
  transform: translateX(104%);
  transition: transform .55s var(--lxp-ease);
  pointer-events: auto;
  display:flex !important;
  flex-direction:column !important;
  overflow:hidden;
}

/* paper grain + subtle gold glow */
.lxpCart__panel::before{
  content:"";
  position:absolute; inset:-60px;
  background:
    radial-gradient(900px 540px at 10% 12%, rgba(182,151,100,.14), transparent 60%),
    radial-gradient(760px 520px at 90% 75%, rgba(242,234,188,.10), transparent 64%),
    repeating-linear-gradient(0deg, rgba(0,0,0,.016) 0 1px, transparent 1px 3px);
  opacity:.55;
  pointer-events:none;
  mix-blend-mode:multiply;
}

.lxpCart.is-open{ pointer-events:auto; }
.lxpCart.is-open .lxpCart__backdrop{ opacity:1; }
.lxpCart.is-open .lxpCart__panel{ transform: translateX(0); }

.lxpCart__head{
  position: relative;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(76,69,63,.10);
  z-index: 1;
}
.lxpCart__kicker{
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.60);
}
.lxpCart__title{
  margin-top: 8px;
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: 28px;
  line-height: 1.05;
  color: var(--lxp-ink);
}
.lxpCart__close{
  position:absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(76,69,63,.14);
  background: rgba(255,255,255,.55);
  cursor:pointer;
  display:grid;
  place-items:center;
  transition: transform .25s var(--lxp-ease), background .25s ease, border-color .25s ease;
}
.lxpCart__close:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.75);
  border-color: rgba(76,69,63,.22);
}
.lxpCart__close span{ font-size: 22px; line-height: 1; color: rgba(12,12,12,.85); }

.lxpCart__body{
  position:relative;
  padding: 14px 18px;
  overflow:auto;
  flex: 1 1 auto;
  z-index: 1;
}

.lxpCart__empty{
  padding: 26px 6px;
  color: rgba(76,69,63,.74);
  line-height: 1.9;
}

.lxpCart__item{
  position:relative;
  display:grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(76,69,63,.08);
  align-items:start;
}

.lxpCart__thumb{
  width: 74px;
  height: 74px;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(76,69,63,.10);
  background: #f2efe8;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}
.lxpCart__thumbImg{
  width:100% !important;
  height:100% !important;
  object-fit: cover;
  display:block;
}

.lxpCart__name{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(12,12,12,.90);
  font-size: 16px;
  line-height: 1.2;
}

.lxpCart__sub{
  margin-top: 6px;
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(76,69,63,.62);
}
.lxpCart__dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(90deg, var(--lxp-gold1), var(--lxp-gold2));
  box-shadow: 0 0 0 6px rgba(182,151,100,.10);
}

.lxpCart__controls{
  margin-top: 10px;
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.lxpCart__qtyBtn{
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(76,69,63,.14);
  background: rgba(255,255,255,.55);
  cursor:pointer;
  font-size: 16px;
  color: rgba(12,12,12,.82);
  display:grid;
  place-items:center;
  transition: transform .25s var(--lxp-ease), background .25s ease;
}
.lxpCart__qtyBtn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.75); }

.lxpCart__qtyInput{
  width: 64px !important;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(76,69,63,.14);
  background: rgba(255,255,255,.70);
  text-align:center;
  font-size: 13px;
  color: rgba(12,12,12,.86);
  padding: 0 8px;
}

/* remove as button or link */
.lxpCart__remove{
  margin-left:auto;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(76,69,63,.60);
  background: transparent;
  border: 0;
  padding: 0;
  cursor:pointer;
  border-bottom: 1px solid rgba(182,151,100,.35);
  padding-bottom: 2px;
}

.lxpCart__foot{
  position:relative;
  padding: 14px 18px 16px;
  border-top: 1px solid rgba(76,69,63,.10);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

.lxpCart__subtotalRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(76,69,63,.08);
}
.lxpCart__subtotalLabel{
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.62);
}
.lxpCart__subtotalVal{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(12,12,12,.88);
}

.lxpCart__actions{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lxpCart__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 12px 12px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: transform .25s var(--lxp-ease), box-shadow .25s var(--lxp-ease), filter .25s ease;
  width: 100%;
}

.lxpCart__btnPrimary{
  background: linear-gradient(90deg, var(--lxp-gold1), var(--lxp-gold2));
  color: rgba(12,12,12,.92);
  box-shadow: 0 18px 55px rgba(182,151,100,.24);
}
.lxpCart__btnPrimary:hover{
  transform: translateY(-1px);
  box-shadow: 0 26px 80px rgba(182,151,100,.30);
}
.lxpCart__btnGhost{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(76,69,63,.14);
  color: rgba(12,12,12,.84);
}
.lxpCart__btnGhost:hover{ transform: translateY(-1px); }

.lxpCart__fine{
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(76,69,63,.54);
}

/* Mobile */
@media (max-width: 520px){
  .lxpCart__panel{ width: 92vw; }
  .lxpCart__title{ font-size: 24px; }
  .lxpCart__actions{ grid-template-columns: 1fr; }
  .lxpCart__thumb{ width: 66px; height: 66px; }
  .lxpCart__qtyInput{ width: 58px !important; }
}

@media (prefers-reduced-motion: reduce){
  .lxpCart__backdrop, .lxpCart__panel, .lxpCart__close, .lxpCart__btn, .lxpCart__qtyBtn{ transition:none !important; }
}


/* ===========================
   LXP CART — center +/- icons
   Paste at END of tla.css
=========================== */

.lxpCart__qtyBtn{
  display: grid !important;
  place-items: center !important;

  width: 34px;
  height: 34px;

  padding: 0 !important;
  line-height: 1 !important;

  font-size: 18px;          /* po želji 16–20 */
  font-weight: 400;
}

.lxpCart__qtyBtn::before,
.lxpCart__qtyBtn::after{
  line-height: 1 !important;
}

/* ako tema ubaci span/ikonice unutra (nekad se desi) */
.lxpCart__qtyBtn > *{
  display: block !important;
  line-height: 1 !important;
}


/* ===========================
   LXP Drawer Cart — Controls polish
   Paste at END of tla.css
=========================== */

/* ---------- Close (X) button ---------- */
.lxpCart__close{
  display: grid !important;
  place-items: center !important;
  line-height: 1 !important;
  padding: 0 !important;
}

.lxpCart__close span{
  display: block;
  width: 100%;
  text-align: center;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px); /* optičko centriranje “×” */
}

/* hover/active/focus for X */
.lxpCart__close{
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}
.lxpCart__close:hover{
  transform: translateY(-1px);
}
.lxpCart__close:active{
  transform: translateY(0px) scale(.98);
}
.lxpCart__close:focus-visible{
  box-shadow:
    0 0 0 3px rgba(182,151,100,.20),
    0 18px 55px rgba(0,0,0,.10);
  border-color: rgba(182,151,100,.42);
}

/* ---------- Qty buttons (+ / −) ---------- */
.lxpCart__qtyBtn{
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

/* optičko centriranje znakova */
.lxpCart__qtyBtn{
  font-size: 16px;
}
.lxpCart__qtyBtn[data-lxp-qty="-1"]{
  transform: translateY(-1px); /* minus često deluje niže */
}
.lxpCart__qtyBtn[data-lxp-qty="1"]{
  transform: translateY(-1px); /* plus isto */
}

.lxpCart__qtyBtn:hover{
  background: rgba(255,255,255,.78);
  border-color: rgba(76,69,63,.26);
  box-shadow: 0 16px 45px rgba(0,0,0,.08);
	color: black;
}
.lxpCart__qtyBtn:active{
  transform: translateY(0px) scale(.98);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.lxpCart__qtyBtn:focus-visible{
  border-color: rgba(182,151,100,.50);
  box-shadow:
    0 0 0 3px rgba(182,151,100,.18),
    0 16px 45px rgba(0,0,0,.08);
}

/* ---------- Qty input focus ---------- */
.lxpCart__qtyInput{
  outline: none !important;
}
.lxpCart__qtyInput:focus{
  border-color: rgba(182,151,100,.52);
  box-shadow: 0 0 0 3px rgba(182,151,100,.16);
	color: black;
}

/* ---------- Remove button (theme-proof) ---------- */
/* ti imaš <button class="lxpCart__remove">Remove</button> */
.lxpCart__remove{
  appearance: none !important;
  -webkit-appearance: none !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin-left: auto;
  cursor: pointer;

  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;

  color: rgba(76,69,63,.62) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(182,151,100,.35);
  padding-bottom: 2px;

  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.lxpCart__remove:hover{
  color: rgba(12,12,12,.86) !important;
  border-bottom-color: rgba(182,151,100,.62);
}

.lxpCart__remove:active{
  transform: translateY(1px);
  opacity: .85;
}

.lxpCart__remove:focus-visible{
  border-bottom-color: rgba(182,151,100,.85);
  box-shadow: 0 6px 18px rgba(182,151,100,.18);
}

/* Optional: reduce motion */
@media (prefers-reduced-motion: reduce){
  .lxpCart__close,
  .lxpCart__qtyBtn,
  .lxpCart__remove{
    transition: none !important;
  }
}

/* FIX: ensure Editorial Spread is visible even if an old "stack" hide rule exists */
.lxp .spread{
  display: grid !important;
}
.lxp .spreadMedia,
.lxp .spreadNote{
  display: block !important;
}


/* =========================================
   LXP • PREMIUM CHECKOUT (tla.css)
   Scope: body.lxp-checkout
========================================= */

body.lxp-checkout .site-main,
body.lxp-checkout #content,
body.lxp-checkout .elementor-location-single,
body.lxp-checkout .elementor-location-archive{
  background: transparent !important;
}

/* Shell */
.lxpCk{
  --ck-bg:#fbfaf7;
  --ck-paper:#ffffff;
  --ck-ink: rgba(12,12,12,.92);
  --ck-muted: rgba(76,69,63,.72);
  --ck-hair: rgba(76,69,63,.12);
  --ck-gold1:#B69764;
  --ck-gold2:#F2EABC;
  --ck-ease: cubic-bezier(.22,1,.36,1);

  position: relative;
  background: var(--ck-bg);
  overflow: hidden;
}

.lxpCk__bg{
  position:absolute; inset:-80px;
  background:
    radial-gradient(900px 620px at 18% 16%, rgba(182,151,100,.12), transparent 62%),
    radial-gradient(760px 560px at 86% 74%, rgba(242,234,188,.10), transparent 64%),
    repeating-linear-gradient(0deg, rgba(0,0,0,.014) 0 1px, transparent 1px 3px);
  opacity:.62;
  pointer-events:none;
  mix-blend-mode:multiply;
}

.lxpCk__wrap{
  width: min(1160px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: clamp(34px, 4.8vw, 56px) 0 clamp(90px, 9vw, 120px);
}

/* Header */
.lxpCk__head{ margin: 0 0 clamp(22px, 3vw, 30px); }

.lxpCk__kicker{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
  display:flex; align-items:center; gap:12px;
}
.lxpCk__kicker:before{
  content:"";
  width: 44px; height:1px;
  background: linear-gradient(90deg, rgba(182,151,100,.25), rgba(242,234,188,.95));
}

.lxpCk__title{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ck-ink);
  font-size: clamp(38px, 5.2vw, 74px);
  line-height: 1.02;
  margin: 12px 0 10px;
}
.lxpCk__gold{
  background: linear-gradient(90deg, var(--ck-gold1) 0%, var(--ck-gold2) 55%, var(--ck-gold1) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.lxpCk__sub{
  margin: 0;
  max-width: 70ch;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: rgba(76,69,63,.78);
  line-height: 1.95;
  font-size: 16.5px;
}

.lxpCk__trust{
  display:flex; flex-wrap:wrap; gap: 10px 14px;
  margin-top: 18px;
}
.lxpCk__trustItem{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(76,69,63,.14);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lxpCk__trustItem i{
  width: 8px; height:8px; border-radius:50%;
  background: linear-gradient(90deg, var(--ck-gold1), var(--ck-gold2));
  box-shadow: 0 0 0 6px rgba(182,151,100,.10);
}
.lxpCk__trustItem span{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing:.22em;
  text-transform: uppercase;
  color: rgba(76,69,63,.66);
}

/* Layout: make checkout feel like a “suite” */
body.lxp-checkout form.checkout{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 3vw, 34px);
  align-items:start;
}

/* Left column “paper” */
body.lxp-checkout .woocommerce-checkout #customer_details{
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(76,69,63,.10);
  box-shadow: 0 34px 120px rgba(0,0,0,.08);
  padding: clamp(16px, 2.2vw, 26px);
  overflow:hidden;
}

/* Right column “order room” */
body.lxp-checkout #order_review{
  position: sticky;
  top: 110px;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(76,69,63,.10);
  box-shadow: 0 34px 120px rgba(0,0,0,.08);
  overflow:hidden;
}
body.lxp-checkout #order_review_heading{
  display:none !important;
}

/* Headings */
body.lxp-checkout .woocommerce-billing-fields h3,
body.lxp-checkout .woocommerce-shipping-fields h3,
body.lxp-checkout .woocommerce-additional-fields h3{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(12,12,12,.90);
  font-size: 22px;
  margin: 0 0 14px;
}

/* Fields */
body.lxp-checkout .form-row{
  margin: 0 0 14px !important;
}
body.lxp-checkout .lxpField__label,
body.lxp-checkout label{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px !important;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(76,69,63,.62) !important;
  margin-bottom: 8px !important;
}
body.lxp-checkout .lxpField__input,
body.lxp-checkout input.input-text,
body.lxp-checkout textarea,
body.lxp-checkout select{
  border-radius: 14px !important;
  border: 1px solid rgba(76,69,63,.14) !important;
  background: rgba(255,255,255,.82) !important;
  padding: 12px 12px !important;
  box-shadow: none !important;
  outline: none !important;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif !important;
  color: rgba(12,12,12,.88) !important;
  transition: border-color .25s var(--ck-ease), transform .25s var(--ck-ease), background .25s var(--ck-ease);
}
body.lxp-checkout .lxpField__input:focus,
body.lxp-checkout input.input-text:focus,
body.lxp-checkout textarea:focus,
body.lxp-checkout select:focus{
  border-color: rgba(182,151,100,.55) !important;
  background: rgba(255,255,255,.92) !important;
  transform: translateY(-1px);
}

/* Payment preview block */
.lxpPayPreview{
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(76,69,63,.10);
  background: rgba(255,255,255,.52);
}
.lxpPayPreview__top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.lxpPayPreview__label{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing:.28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
}
.lxpPayPreview__note{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  color: rgba(76,69,63,.72);
}
.lxpPayPreview__cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.lxpPayPreview__card{
  appearance:none;
  border-radius: 16px;
  border: 1px solid rgba(76,69,63,.14);
  background: rgba(255,255,255,.72);
  padding: 12px 12px;
  cursor: pointer;
  transition: transform .25s var(--ck-ease), border-color .25s var(--ck-ease), box-shadow .25s var(--ck-ease);
  text-align:left;
}
.lxpPayPreview__card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(0,0,0,.08);
  border-color: rgba(182,151,100,.40);
}
.lxpPayPreview__card.is-active{
  border-color: rgba(182,151,100,.65);
  box-shadow: 0 26px 80px rgba(182,151,100,.14);
}
.lxpPayPreview__brand{
  display:block;
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  letter-spacing:-0.01em;
  color: rgba(12,12,12,.90);
  font-size: 16px;
}
.lxpPayPreview__meta{
  display:block;
  margin-top: 6px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing:.24em;
  text-transform: uppercase;
  color: rgba(76,69,63,.62);
}
.lxpPayPreview__lock{
  margin-top: 12px;
  display:flex; align-items:center; gap:10px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing:.22em;
  text-transform: uppercase;
  color: rgba(76,69,63,.56);
}
.lxpPayPreview__lockDot{
  width: 7px; height:7px; border-radius:50%;
  background: linear-gradient(90deg, var(--ck-gold1), var(--ck-gold2));
  box-shadow: 0 0 0 6px rgba(182,151,100,.10);
}

/* Order review table polish */
body.lxp-checkout .woocommerce-checkout-review-order-table{
  margin: 0 !important;
  border: 0 !important;
}
body.lxp-checkout .woocommerce-checkout-review-order-table th,
body.lxp-checkout .woocommerce-checkout-review-order-table td{
  border-color: rgba(76,69,63,.10) !important;
  padding: 14px 18px !important;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: rgba(76,69,63,.78);
}
body.lxp-checkout .woocommerce-checkout-review-order-table .order-total td,
body.lxp-checkout .woocommerce-checkout-review-order-table .order-total th{
  color: rgba(12,12,12,.90) !important;
}

/* Place order button premium */
body.lxp-checkout #place_order,
body.lxp-checkout .woocommerce #place_order{
  width: 100% !important;
  border-radius: 999px !important;
  padding: 14px 16px !important;
  border: 0 !important;
  background: linear-gradient(90deg, var(--ck-gold1), var(--ck-gold2)) !important;
  color: rgba(12,12,12,.92) !important;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 11px !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  box-shadow: 0 22px 80px rgba(182,151,100,.22) !important;
  transition: transform .25s var(--ck-ease), box-shadow .25s var(--ck-ease), filter .25s var(--ck-ease) !important;
}
body.lxp-checkout #place_order:hover{
  transform: translateY(-2px);
  box-shadow: 0 30px 110px rgba(182,151,100,.28) !important;
  filter: saturate(1.05);
}
body.lxp-checkout #place_order:focus{
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(182,151,100,.22), 0 30px 110px rgba(182,151,100,.22) !important;
}

/* Payment methods area: calm */
body.lxp-checkout #payment{
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}
body.lxp-checkout #payment .payment_methods{
  border: 0 !important;
  margin: 0 !important;
  padding: 10px 18px 6px !important;
}
body.lxp-checkout #payment .place-order{
  padding: 14px 18px 18px !important;
  border-top: 1px solid rgba(76,69,63,.10) !important;
}

/* Mobile */
@media (max-width: 980px){
  body.lxp-checkout form.checkout{
    grid-template-columns: 1fr;
  }
  body.lxp-checkout #order_review{
    position: relative;
    top: auto;
  }
  .lxpPayPreview__cards{ grid-template-columns: 1fr; }
}


/* =========================================
   TLA • PREMIUM CHECKOUT (Woo overwrite)
   Scope: body.tla-checkout
========================================= */

body.tla-checkout{
  background: #fbfaf7;
}

/* kill random theme spacing around main */
body.tla-checkout .site-main,
body.tla-checkout main{
  padding-top: 0 !important;
}

/* page width */
body.tla-checkout .tlaCk{
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px) 0 clamp(64px, 7vw, 110px);
  position: relative;
}

/* subtle paper grain */
body.tla-checkout .tlaCk::before{
  content:"";
  position:absolute; inset:-60px;
  pointer-events:none;
  background:
    radial-gradient(900px 540px at 18% 16%, rgba(182,151,100,.10), transparent 62%),
    radial-gradient(760px 520px at 84% 72%, rgba(242,234,188,.09), transparent 64%),
    repeating-linear-gradient(0deg, rgba(0,0,0,.014) 0 1px, transparent 1px 3px);
  opacity:.55;
  mix-blend-mode:multiply;
}

/* grid */
body.tla-checkout .tlaCk__grid{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(18px, 3vw, 28px);
  align-items:start;
}

/* left column wraps the form */
body.tla-checkout .tlaCk__left{
  min-width: 0;
}

/* right summary card */
body.tla-checkout .tlaCk__right{
  position: sticky;
  top: 24px;
  align-self:start;
}

body.tla-checkout .tlaCk__panel{
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(76,69,63,.10);
  box-shadow: 0 34px 120px rgba(0,0,0,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

body.tla-checkout .tlaCk__panelHead{
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(76,69,63,.10);
}

body.tla-checkout .tlaCk__kicker{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
}
body.tla-checkout .tlaCk__title{
  margin-top: 8px;
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: 28px;
  color: rgba(12,12,12,.92);
}

/* ---------------------------
   Woo: hard reset (no tables vibe)
--------------------------- */

body.tla-checkout .woocommerce,
body.tla-checkout .woocommerce-checkout{
  color: rgba(12,12,12,.92);
}

body.tla-checkout .woocommerce form .form-row{
  margin: 0 0 14px !important;
  padding: 0 !important;
}

body.tla-checkout .woocommerce form .form-row label{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
  margin: 0 0 8px !important;
}

body.tla-checkout .woocommerce form .form-row input.input-text,
body.tla-checkout .woocommerce form .form-row textarea,
body.tla-checkout .woocommerce form .form-row select{
  width: 100% !important;
  border-radius: 16px !important;
  border: 1px solid rgba(76,69,63,.12) !important;
  background: rgba(255,255,255,.72) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.06) !important;
  padding: 12px 12px !important;
  color: rgba(12,12,12,.90) !important;
  outline: none !important;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s cubic-bezier(.22,1,.36,1), border-color .25s ease;
}

body.tla-checkout .woocommerce form .form-row textarea{
  min-height: 112px;
  resize: vertical;
}

body.tla-checkout .woocommerce form .form-row input:focus,
body.tla-checkout .woocommerce form .form-row textarea:focus,
body.tla-checkout .woocommerce form .form-row select:focus{
  border-color: rgba(182,151,100,.35) !important;
  box-shadow:
    0 22px 70px rgba(0,0,0,.08),
    0 0 0 6px rgba(182,151,100,.10) !important;
  transform: translateY(-1px);
}

/* headings (Billing details, etc) – make them editorial */
body.tla-checkout .woocommerce-billing-fields h3,
body.tla-checkout .woocommerce-additional-fields h3{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: 30px;
  margin: 0 0 14px;
}

/* remove noisy borders */
body.tla-checkout .woocommerce-checkout-review-order,
body.tla-checkout #order_review{
  padding: 16px 18px 18px;
}

/* order table => “list” */
body.tla-checkout .woocommerce table.shop_table{
  border: 0 !important;
  background: transparent !important;
  margin: 0 !important;
}

body.tla-checkout .woocommerce table.shop_table th,
body.tla-checkout .woocommerce table.shop_table td{
  border: 0 !important;
  padding: 12px 0 !important;
}

body.tla-checkout .woocommerce table.shop_table tr{
  border-bottom: 1px solid rgba(76,69,63,.10) !important;
}

body.tla-checkout .woocommerce table.shop_table thead{
  display: none; /* cleaner */
}

body.tla-checkout .woocommerce table.shop_table td:last-child{
  text-align:right;
  white-space:nowrap;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(12,12,12,.86);
}

/* totals row stronger */
body.tla-checkout .woocommerce table.shop_table tfoot tr.order-total td{
  font-size: 12px;
  letter-spacing: .20em;
}
body.tla-checkout .woocommerce table.shop_table tfoot tr.order-total th{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
}

/* coupon notice – tiny, premium */
body.tla-checkout .woocommerce-form-coupon-toggle .woocommerce-info{
  border: 0 !important;
  background: rgba(255,255,255,.60) !important;
  border-radius: 18px !important;
  box-shadow: 0 20px 70px rgba(0,0,0,.06);
  padding: 14px 16px !important;
  margin: 0 0 16px !important;
}
body.tla-checkout .woocommerce-form-coupon-toggle .woocommerce-info a{
  color: rgba(12,12,12,.86) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(182,151,100,.35);
  padding-bottom: 2px;
}

/* visual card preview */
body.tla-checkout .tlaPayViz{
  margin: 16px 0 14px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(76,69,63,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
}

body.tla-checkout .tlaPayViz__row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 12px;
}

body.tla-checkout .tlaPayViz__k{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
}
body.tla-checkout .tlaPayViz__s{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(76,69,63,.52);
  text-align:right;
}

body.tla-checkout .tlaPayViz__cards{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

body.tla-checkout .tlaCard{
  border-radius: 16px;
  border: 1px solid rgba(76,69,63,.12);
  background: rgba(255,255,255,.72);
  padding: 12px 12px 10px;
  min-height: 64px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow: 0 16px 50px rgba(0,0,0,.05);
  transform: translateZ(0);
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s cubic-bezier(.22,1,.36,1), border-color .25s ease;
}
@media (hover:hover){
  body.tla-checkout .tlaCard:hover{
    transform: translateY(-2px);
    border-color: rgba(182,151,100,.28);
    box-shadow: 0 22px 70px rgba(0,0,0,.07);
  }
}
body.tla-checkout .tlaCard span{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(12,12,12,.86);
}
body.tla-checkout .tlaCard i{
  font-style: normal;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(76,69,63,.62);
}

body.tla-checkout .tlaPayViz__fine{
  margin-top: 10px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(76,69,63,.52);
}

/* payment box clean */
body.tla-checkout #payment{
  background: transparent !important;
  border: 0 !important;
}
body.tla-checkout #payment .payment_methods{
  border: 0 !important;
}
body.tla-checkout #payment .place-order{
  padding: 16px 0 0 !important;
  margin: 0 !important;
}

/* Place order button premium */
body.tla-checkout #place_order,
body.tla-checkout .woocommerce #place_order{
  width: 100% !important;
  border-radius: 999px !important;
  border: 0 !important;
  padding: 14px 16px !important;
  background: linear-gradient(90deg, #B69764, #F2EABC) !important;
  color: rgba(12,12,12,.92) !important;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 11px !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  box-shadow: 0 22px 70px rgba(182,151,100,.22) !important;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s cubic-bezier(.22,1,.36,1), filter .25s ease;
}
@media (hover:hover){
  body.tla-checkout #place_order:hover{
    transform: translateY(-1px);
    box-shadow: 0 30px 90px rgba(182,151,100,.28) !important;
    filter: saturate(1.04);
  }
}
body.tla-checkout #place_order:active{
  transform: translateY(0px) scale(.99);
}
body.tla-checkout #place_order:focus{
  outline: none !important;
  box-shadow:
    0 30px 90px rgba(182,151,100,.26),
    0 0 0 6px rgba(182,151,100,.14) !important;
}

/* notices: calmer */
body.tla-checkout .woocommerce-error,
body.tla-checkout .woocommerce-info,
body.tla-checkout .woocommerce-message{
  border: 0 !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.64) !important;
  box-shadow: 0 20px 70px rgba(0,0,0,.06);
  color: rgba(12,12,12,.86) !important;
}
body.tla-checkout .woocommerce-error::before,
body.tla-checkout .woocommerce-info::before,
body.tla-checkout .woocommerce-message::before{
  display:none !important;
}

/* ---------- Reveal (mini animation) ---------- */
body.tla-checkout .tlaCk__left,
body.tla-checkout .tlaCk__panel{
  opacity: 0;
  transform: translateY(10px);
  filter: blur(6px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1), filter 1s cubic-bezier(.22,1,.36,1);
}
body.tla-checkout .tlaCk.is-in .tlaCk__left,
body.tla-checkout .tlaCk.is-in .tlaCk__panel{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce){
  body.tla-checkout .tlaCk__left,
  body.tla-checkout .tlaCk__panel{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  body.tla-checkout .tlaCk__grid{
    grid-template-columns: 1fr;
  }
  body.tla-checkout .tlaCk__right{
    position: relative;
    top: auto;
  }
}
@media (max-width: 520px){
  body.tla-checkout .tlaPayViz__cards{
    grid-template-columns: 1fr;
  }
}


/* =========================================
   TLA • PREMIUM CHECKOUT (override pack)
   Scope: body.tla-checkout
   Paste at END of tla.css
========================================= */

body.tla-checkout{
  background: #fbfaf7;
}

body.tla-checkout .site,
body.tla-checkout #page{
  background: transparent;
}

/* wrappers */
.tlaChkWrap{
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.tlaChkShell{
  padding: clamp(18px, 3.2vw, 40px) 0 clamp(70px, 7vw, 110px);
}

.tlaChkHero{
  padding: clamp(34px, 5vw, 70px) 0 10px;
  position: relative;
}
.tlaChkKicker{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: rgba(76,69,63,.62);
}
.tlaChkTitle{
  margin: 10px 0 12px;
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(44px, 6vw, 86px);
  color: rgba(12,12,12,.92);
}
.tlaChkGold{
  background: linear-gradient(90deg, #B69764 0%, #F2EABC 55%, #B69764 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tlaChkSub{
  margin: 0;
  max-width: 66ch;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.95;
  color: rgba(76,69,63,.78);
}

.tlaChkChips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.tlaChkChip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(76,69,63,.14);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(76,69,63,.64);
}
.tlaChkChip i{
  width: 7px; height:7px; border-radius:50%;
  background: linear-gradient(90deg, #B69764, #F2EABC);
  box-shadow: 0 0 0 6px rgba(182,151,100,.10);
}

/* Coupon (clean, not duplicated / not chunky) */
.tlaChkCoupon{ margin-top: 18px; }
body.tla-checkout .woocommerce-form-coupon-toggle{ display:none !important; } /* hide ugly toggle row */
body.tla-checkout form.checkout_coupon{
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
body.tla-checkout form.checkout_coupon p{
  margin: 0 0 10px;
  color: rgba(76,69,63,.72);
}
body.tla-checkout form.checkout_coupon .form-row{
  display:flex;
  gap: 10px;
  align-items:center;
  margin: 0;
}
body.tla-checkout form.checkout_coupon input.input-text{
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(76,69,63,.16);
  background: rgba(255,255,255,.70);
  padding: 0 16px;
  outline: none;
  box-shadow: none;
}
body.tla-checkout form.checkout_coupon button.button{
  height: 44px;
  border-radius: 999px;
  padding: 0 16px;
  border: 1px solid rgba(76,69,63,.16);
  background: rgba(255,255,255,.55);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 10px;
  cursor:pointer;
}
body.tla-checkout form.checkout_coupon button.button:hover{
  transform: translateY(-1px);
}
body.tla-checkout form.checkout_coupon button.button:focus-visible{
  outline: 2px solid rgba(182,151,100,.35);
  outline-offset: 3px;
}

/* GRID */
.tlaChkGrid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(18px, 3vw, 28px);
  align-items:start;
  margin-top: clamp(16px, 2.5vw, 26px);
}

/* Cards */
.tlaChkCard{
  border-radius: 28px;
  border: 1px solid rgba(76,69,63,.10);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 34px 120px rgba(0,0,0,.08);
  overflow:hidden;
  position: relative;
}
.tlaChkCard::before{
  content:"";
  position:absolute; inset:-60px;
  background:
    radial-gradient(900px 540px at 18% 16%, rgba(182,151,100,.10), transparent 62%),
    radial-gradient(760px 520px at 84% 72%, rgba(242,234,188,.08), transparent 64%),
    repeating-linear-gradient(0deg, rgba(0,0,0,.014) 0 1px, transparent 1px 3px);
  opacity:.55;
  pointer-events:none;
  mix-blend-mode:multiply;
}

/* Left: form styles */
body.tla-checkout .woocommerce-billing-fields,
body.tla-checkout .woocommerce-shipping-fields,
body.tla-checkout .woocommerce-additional-fields{
  padding: 22px 22px 10px;
  margin: 0;
  background: transparent;
  border: 0;
}

body.tla-checkout h3,
body.tla-checkout #ship-to-different-address{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(12,12,12,.92);
  margin: 0 0 16px;
}

body.tla-checkout label{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
}

body.tla-checkout .form-row{
  margin: 0 0 14px;
}

body.tla-checkout input.input-text,
body.tla-checkout textarea,
body.tla-checkout select{
  border-radius: 16px;
  border: 1px solid rgba(76,69,63,.14);
  background: rgba(255,255,255,.72);
  height: 46px;
  padding: 0 14px;
  box-shadow: none !important;
  outline: none;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  color: rgba(12,12,12,.86);
}

body.tla-checkout textarea{
  height: auto;
  padding: 12px 14px;
  min-height: 120px;
  resize: vertical;
}

body.tla-checkout input.input-text:focus,
body.tla-checkout textarea:focus,
body.tla-checkout select:focus{
  border-color: rgba(182,151,100,.45);
  box-shadow: 0 0 0 6px rgba(182,151,100,.10) !important;
  transform: translateY(-1px);
}

body.tla-checkout .woocommerce-account-fields,
body.tla-checkout .woocommerce-shipping-fields{
  padding: 0 22px 18px;
}

/* Remove Woo ugly notices look */
body.tla-checkout .woocommerce-error,
body.tla-checkout .woocommerce-message,
body.tla-checkout .woocommerce-info{
  border: 1px solid rgba(76,69,63,.12);
  background: rgba(255,255,255,.62);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
  color: rgba(12,12,12,.82);
}

/* Right: sticky */
.tlaChkSticky{
  position: sticky;
  top: 18px;
  display:grid;
  gap: 14px;
}

/* Order review: kill table look */
body.tla-checkout #order_review{
  padding: 18px 18px 16px;
  background: transparent;
}
body.tla-checkout #order_review_heading{ display:none !important; }

body.tla-checkout table.shop_table{
  border: 0 !important;
  background: transparent !important;
  margin: 0 !important;
}
body.tla-checkout table.shop_table th,
body.tla-checkout table.shop_table td{
  border: 0 !important;
  padding: 12px 0 !important;
  background: transparent !important;
}
body.tla-checkout table.shop_table thead{ display:none !important; }
body.tla-checkout table.shop_table tr{ border-bottom: 1px solid rgba(76,69,63,.10) !important; }
body.tla-checkout table.shop_table tr:last-child{ border-bottom: 0 !important; }

body.tla-checkout .product-name{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  color: rgba(12,12,12,.90);
}
body.tla-checkout .product-total,
body.tla-checkout .order-total td,
body.tla-checkout .cart-subtotal td{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: .10em;
  color: rgba(12,12,12,.86);
}
body.tla-checkout .order-total td strong{
  font-weight: 600;
}

/* Payment area */
body.tla-checkout #payment{
  background: transparent !important;
  border: 0 !important;
  padding: 14px 0 0 !important;
}
body.tla-checkout #payment ul.payment_methods{
  border: 0 !important;
  padding: 0 !important;
}
body.tla-checkout #payment .place-order{
  padding: 14px 0 0 !important;
  margin: 0 !important;
  border-top: 1px solid rgba(76,69,63,.10) !important;
}

body.tla-checkout button#place_order{
  width: 100% !important;
  height: 46px;
  border-radius: 999px !important;
  border: 0 !important;
  cursor:pointer;
  background: linear-gradient(90deg, #B69764, #F2EABC) !important;
  color: rgba(12,12,12,.92) !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  font-size: 10px !important;
  box-shadow: 0 22px 70px rgba(182,151,100,.22) !important;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
body.tla-checkout button#place_order:hover{
  transform: translateY(-1px);
  box-shadow: 0 30px 92px rgba(182,151,100,.28) !important;
}
body.tla-checkout button#place_order:focus-visible{
  outline: 2px solid rgba(182,151,100,.35);
  outline-offset: 4px;
}

/* Cards preview (UI-only) */
.tlaChkCardHead{
  padding: 16px 18px 0;
  display:flex;
  justify-content:space-between;
  gap: 12px;
  align-items: baseline;
}
.tlaChkMiniKicker{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(76,69,63,.58);
}
.tlaChkMiniNote{
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  color: rgba(76,69,63,.68);
}
.tlaChkCardsRow{
  padding: 12px 18px 16px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.tlaChkCardTile{
  border-radius: 16px;
  border: 1px solid rgba(76,69,63,.12);
  background: rgba(255,255,255,.60);
  padding: 12px 12px 10px;
  box-shadow: 0 18px 55px rgba(0,0,0,.05);
}
.tlaChkBrand{
  font-family: "SangBleu","Canela","Iowan Old Style","Didot",serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(12,12,12,.86);
}
.tlaChkDigits{
  margin-top: 8px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(76,69,63,.62);
}
.tlaChkFineLine{
  padding: 0 18px 16px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(76,69,63,.56);
  display:flex;
  align-items:center;
  gap: 10px;
}
.tlaChkFineLine i{
  width: 7px; height: 7px; border-radius:50%;
  background: linear-gradient(90deg, #B69764, #F2EABC);
  box-shadow: 0 0 0 6px rgba(182,151,100,.08);
}

/* Small “quiet animation” reveal */
body.tla-checkout .tlaChkHero,
body.tla-checkout .tlaChkGrid{
  animation: tlaChkIn .9s cubic-bezier(.22,1,.36,1) both;
}
body.tla-checkout .tlaChkGrid{ animation-delay: .06s; }
@keyframes tlaChkIn{
  from{ opacity: 0; transform: translateY(12px); filter: blur(6px); }
  to{ opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Responsive */
@media (max-width: 980px){
  .tlaChkGrid{ grid-template-columns: 1fr; }
  .tlaChkSticky{ position: static; }
}
@media (max-width: 520px){
  .tlaChkCardsRow{ grid-template-columns: 1fr; }
  body.tla-checkout form.checkout_coupon .form-row{ flex-direction: column; align-items: stretch; }
  body.tla-checkout form.checkout_coupon button.button{ width: 100%; }
}
@media (prefers-reduced-motion: reduce){
  body.tla-checkout .tlaChkHero,
  body.tla-checkout .tlaChkGrid{ animation: none !important; }
  body.tla-checkout *{ transition: none !important; }
}

