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

:root{
  --rose-50:#ffd8eb;
  --rose-100:#ffc4e0;
  --rose-200:#ffadd6;
  --rose-300:#ff94cc;
  --rose-400:#ff7cc2;
  --rose-500:#ff67b8;
  --rose-600:#ff4fa7;
  --rose-700:#e33f93;
  --text:#e7e9ee;
  --muted:#c2cad8;
  --bg:#0f1117;
  --bg-soft:#0b0f16;
  --card-bg:#151a24;
  --border:#232b3a;
  --success:#1f8f63;
  --danger:#a04b4b;
  --radius:14px;
  --shadow:0 8px 24px rgba(0,0,0,.35);
  --font-display:'Marcellus',serif
}

*{box-sizing:border-box}
html,body{height:100%}
html{font-size:16px}
body{
  margin:0;
  color:var(--text);
  position:relative;
  min-height:100vh;
  overflow-x:hidden;
  isolation:isolate;
  background:
    radial-gradient(120% 120% at -20% -20%,rgba(255,124,194,.06),transparent 50%),
    radial-gradient(120% 120% at 120% 0,rgba(255,103,184,.06),transparent 50%),
    var(--bg)
}

.site-background{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  overflow:hidden;
  background:
    radial-gradient(120% 100% at 8% 0,rgba(255,79,168,.08),transparent 55%),
    radial-gradient(120% 140% at 92% 10%,rgba(119,104,255,.08),transparent 60%);
  animation:siteSkyShift 26s ease-in-out infinite alternate
}

.site-background__glow{
  position:absolute;
  width:clamp(280px,45vw,820px);
  aspect-ratio:1;
  border-radius:50%;
  filter:blur(55px);
  opacity:.55;
  animation:siteGlowDrift 32s linear infinite
}

.site-background__glow--violet{
  top:-18vh;
  right:-8vw;
  background:radial-gradient(circle,rgba(148,118,255,.35),rgba(148,118,255,0))
}

.site-background__glow--pink{
  bottom:-22vh;
  left:-12vw;
  background:radial-gradient(circle,rgba(255,93,188,.32),rgba(255,93,188,0));
  animation-direction:reverse;
  animation-duration:38s
}

.site-background__canvas{
  position:absolute;
  inset:-10vh -10vw;
  width:calc(100% + 20vw);
  height:calc(100% + 20vh);
  display:block;
  mix-blend-mode:screen;
  opacity:.95
}

@keyframes siteSkyShift{
  0%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(1vw,-1vh,0) scale(1.02)}
  100%{transform:translate3d(-1vw,1vh,0) scale(1)}
}

@keyframes siteGlowDrift{
  0%{transform:translate3d(0,0,0) scale(.95)}
  50%{transform:translate3d(3vw,-2vh,0) scale(1.05)}
  100%{transform:translate3d(-2vw,2vh,0) scale(.98)}
}

@media (prefers-reduced-motion:reduce){
  .site-background,
  .site-background__glow{
    animation:none;
    opacity:.35
  }
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.card{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow)}
.card__body{padding:1rem}

.btn{border:0;border-radius:12px;padding:.7rem 1rem;font-weight:700}
.btn--primary{background:linear-gradient(180deg,#ff8fcf,#ff5db2);color:#14171f}
.btn--ghost{background:transparent;border:1px solid rgba(255,255,255,.14);color:var(--text)}

.badge{display:inline-flex;align-items:center;gap:.5rem;padding:.2rem .55rem;border-radius:999px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);font-size:.75rem}
.badge--pink{background:rgba(255,124,194,.15);border-color:rgba(255,124,194,.25)}

.grid{display:grid;gap:1rem}
.grid--2{grid-template-columns:1fr}
@media (min-width:768px){.grid--2{grid-template-columns:1fr 1fr}}
.grid--3{grid-template-columns:1fr}
@media (min-width:992px){.grid--3{grid-template-columns:repeat(3,1fr)}}

.h1{font-family:var(--font-display);font-size:2.2rem;line-height:1.1;margin:0 0 .5rem}
@media (min-width:768px){.h1{font-size:2.6rem}}
@media (min-width:1200px){.h1{font-size:3rem}}
.h2{font-family:var(--font-display);font-size:1.6rem;line-height:1.2;margin:0 0 .5rem}
.h3{font-weight:700;margin:0 0 .25rem}
.muted{color:var(--muted)}

/* Account area polish: tokens + components */
:root{
  --brand:#ff2b85;
  --brand-600:#e02675;
  --surface:#0f1115;
  --surface-2:#151821;
  --border:#262b3a;
  --text:#e9ebf0;
  --muted:#a3adbf;
  --success:#36d399;
  --warning:#fbbd23;
  --danger:#ef4444;
}

body{letter-spacing:.2px}
.brand-title{font-weight:700;letter-spacing:.3px}
.brand-title--hero{font-size:2rem}

.card{background:var(--surface-2);border:1px solid var(--border);border-radius:16px}
.tile{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:16px}

.btn{border-radius:10px}
.btn-primary{background:var(--brand);border-color:var(--brand-600)}
.btn-primary:hover{background:var(--brand-600);border-color:var(--brand-600)}
.btn-ghost{background:transparent;border:1px solid var(--border)}
.btn-ghost:hover{background:rgba(255,255,255,.04)}
.btn-xxs{padding:.125rem .35rem;font-size:.75rem;line-height:1;border-radius:.35rem}

.dropdown-menu{background:var(--surface);border-color:var(--border);border-radius:12px}

.avatar{width:28px;height:28px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;font-weight:700;background:var(--brand);color:#000}

.alert{border-radius:12px;border:1px solid var(--border)}

.table{--tbl-border:var(--border);color:var(--text)}
.table> :not(caption)>*>*{border-color:var(--tbl-border)}
.table thead th{position:sticky;top:0;background:var(--surface);z-index:1}
.table .stretched-link::after{position:absolute;inset:0;content:""}

.badge.status-badge{font-weight:600;border-radius:999px;padding:.35rem .6rem}

.table-stack-md{}
@media (max-width:768px){
  .table-stack-md thead{display:none}
  .table-stack-md tbody,.table-stack-md tr,.table-stack-md td{display:block;width:100%}
  .table-stack-md tr{border:1px solid var(--border);border-radius:12px;padding:8px 12px;margin-bottom:8px;background:var(--surface);position:relative}
  .table-stack-md td{border:0;display:flex;justify-content:space-between;align-items:center;padding:.4rem 0}
  .table-stack-md td::before{content:attr(data-label);flex:0 0 auto;font-size:.875rem;color:var(--muted);margin-right:1rem}
  .table-stack-md td .stretched-link{position:static}
}

.order-number code{font-weight:600}

/* Account additions */
.progress{background:var(--surface);border:1px solid var(--border);border-radius:999px;height:10px}
.progress .progress-bar{background:var(--brand)}

.address-card .badge{font-size:.75rem}
.tile a{text-decoration:none}
.lead{font-size:1rem;color:var(--muted)}

.search{display:flex;gap:.5rem;align-items:center}
.search__input{flex:1;padding:.75rem 1rem;border-radius:12px;border:1px solid var(--border);background:#0d121a;color:var(--text)}
.search__btn{padding:.75rem 1rem;border-radius:12px;border:0;background:linear-gradient(180deg,#ff8fcf,#ff5db2);color:#14171f;font-weight:800}

.hero-illustration{
  position:relative;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:16px;
  background:
    radial-gradient(140% 120% at 50% 50%,rgba(255,124,194,.10),rgba(255,124,194,0) 60%),
    linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.05));
  border:1px solid rgba(255,255,255,.10);
  height:clamp(280px,32vw,420px);
  aspect-ratio:16/9;
  padding:12px
}
.hero-illustration::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background:linear-gradient(135deg,rgba(255,124,194,.45),rgba(255,124,194,0) 35%,rgba(255,103,184,0) 65%,rgba(255,103,184,.35));
  -webkit-mask:linear-gradient(#000,#000) content-box,linear-gradient(#000,#000);
  -webkit-mask-composite:xor;
          mask-composite:exclude;
  padding:1px;
  pointer-events:none;
  opacity:.4
}
.hero-illustration::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    radial-gradient(60% 90% at 50% 55%,rgba(0,0,0,.18),transparent 65%),
    radial-gradient(55% 80% at 50% 45%,rgba(255,255,255,.06),transparent 65%);
  pointer-events:none
}
.hero-logo{
  width:auto;
  height:auto;
  max-width:96%;
  max-height:88%;
  object-fit:contain;
  object-position:center;
  filter:drop-shadow(0 12px 32px rgba(0,0,0,.55)) drop-shadow(0 6px 16px rgba(255,124,194,.12));
  margin:auto
}

.kpis{display:grid;gap:1rem;grid-template-columns:repeat(2,minmax(0,1fr))}
@media (min-width:576px){.kpis{grid-template-columns:repeat(3,minmax(0,1fr))}}
.kpi{display:flex;gap:.75rem;align-items:center;background:rgba(255,255,255,.04);padding:.75rem 1rem;border-radius:12px;border:1px solid rgba(255,255,255,.08)}
.kpi__icon{width:34px;height:34px;border-radius:8px;display:grid;place-items:center;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1)}
.kpi__value{font-weight:800}
.kpi__label{color:var(--muted);font-size:.9rem}

.thumb{position:relative;border-radius:12px;overflow:hidden;background:#0e141e;border:1px solid rgba(255,255,255,.08)}
.thumb img{width:100%;height:100%;object-fit:cover}
.thumb__badge{position:absolute;left:.5rem;top:.5rem}

.product{display:flex;gap:.75rem;align-items:center}
.product__media{width:52px;height:52px;border-radius:8px;overflow:hidden;background:#0e141e;border:1px solid rgba(255,255,255,.08)}
.product__media img{width:100%;height:100%;object-fit:cover}
.product__title{font-weight:800;color:#d7ddeb}
.product__price{color:#cfd6e4}

.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:.625rem .75rem;border-bottom:1px solid rgba(255,255,255,.06)}
.table th{color:#bfc7d5}
.table tr:hover td{background:rgba(255,255,255,.02)}

.alert{display:flex;gap:.75rem;align-items:flex-start;border-radius:12px;padding:.75rem 1rem;border:1px solid rgba(255,255,255,.14)}
.alert--success{background:rgba(31,143,99,.12);color:#bff3dc;border-color:rgba(31,143,99,.35)}
.alert--danger{background:rgba(160,75,75,.12);color:#ffd7d7;border-color:rgba(160,75,75,.35)}

.form{display:grid;gap:.75rem}
.input{width:100%;padding:.75rem 1rem;border-radius:12px;border:1px solid var(--border);background:#0d121a;color:var(--text)}
.label{font-weight:700;color:#cfd6e4}
.checkbox{display:flex;align-items:center;gap:.5rem}

.tabs{display:flex;gap:.5rem;border-bottom:1px solid rgba(255,255,255,.08)}
.tabs a{padding:.625rem .75rem}
.tabs a.active{border-bottom:2px solid var(--rose-600)}

.pager{display:flex;gap:.5rem;align-items:center}
.pager a{padding:.5rem .75rem;border-radius:8px;border:1px solid rgba(255,255,255,.1)}
.pager a.active{background:rgba(255,255,255,.06)}

/* Product page */
.breadcrumbs{margin-bottom:1.5rem;font-size:.95rem;color:rgba(255,255,255,.7)}
.breadcrumbs__list{display:flex;gap:.5rem;list-style:none;padding:0;margin:0}
.breadcrumbs__link{color:inherit;text-decoration:none}
.breadcrumbs__link:hover{text-decoration:underline}
.breadcrumbs__current{color:#fff}
.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.product-page{display:flex;flex-direction:column;gap:3rem}
.product-hero{display:grid;gap:2.5rem;grid-template-columns:1fr}
.product-hero__media{width:100%}
.product-hero__content{display:flex;flex-direction:column;gap:1.25rem}
.product-hero__title{font-size:clamp(1.8rem,1.2rem + 2vw,2.6rem);font-weight:700;margin:0}
.product-hero__meta{display:flex;flex-wrap:wrap;gap:1rem;align-items:center;font-size:.95rem;color:rgba(255,255,255,.7)}
.product-hero__pricing{display:flex;flex-wrap:wrap;align-items:baseline;gap:1rem}
.product-hero__price{font-size:2.1rem;font-weight:700}
.product-hero__lead{font-size:1.05rem;color:rgba(255,255,255,.82)}

.product-gallery{display:flex;flex-direction:column;gap:1rem}
.product-gallery__main{border-radius:1.2rem;overflow:hidden;background:rgba(0,0,0,.1);border:1px solid rgba(255,255,255,.08)}
.product-gallery__main img{
  display:block;
  width:100%;
  height:100%;
  max-height:72vh;
  object-fit:contain;
  object-position:center;
}
.product-gallery__thumbs{display:flex;gap:.65rem;overflow-x:auto;padding-bottom:.35rem}
.product-gallery__thumb{border:none;background:none;padding:0;cursor:pointer;border-radius:.8rem;transition:transform .2s ease}
.product-gallery__thumb:focus-visible{outline:2px solid rgba(148,163,255,.85);outline-offset:2px}
.product-gallery__thumb img{display:block;width:82px;height:82px;object-fit:cover;border-radius:.8rem;border:1px solid rgba(255,255,255,.12)}
.product-gallery__thumb:hover{transform:translateY(-2px)}

.product-badges{display:flex;flex-wrap:wrap;gap:.5rem;list-style:none;padding:0;margin:0}
.product-badge{padding:.35rem .8rem;border-radius:999px;background:rgba(255,255,255,.09);font-size:.85rem}
.product-badge--ghost{background:transparent;border:1px solid rgba(255,255,255,.16)}

.stock-badge{font-size:.95rem;font-weight:600;padding:.25rem .65rem;border-radius:.5rem}
.stock-badge--in{background:rgba(34,197,94,.18);color:#66ffb4}
.stock-badge--low{background:rgba(249,195,50,.18);color:#ffdd8b}
.stock-badge--mto{background:rgba(147,197,253,.16);color:#9ed2ff}
.stock-badge--variant{background:rgba(147,197,253,.16);color:#9ed2ff}
.stock-badge--out{background:rgba(248,113,113,.16);color:#ff9f9f}

.product-variants{display:flex;flex-direction:column;gap:1rem;margin-bottom:1rem}
.product-variant-group{border:0;padding:0;margin:0;display:flex;flex-direction:column;gap:.5rem}
.product-variant-group legend{font-size:.95rem;color:rgba(255,255,255,.7);margin-bottom:.35rem}
.product-variant-group__choices{display:flex;flex-wrap:wrap;gap:.5rem}
.product-swatch{display:flex;align-items:center;gap:.4rem;padding:.45rem .8rem;border-radius:.7rem;border:1px solid rgba(255,255,255,.14);cursor:pointer;transition:background .2s ease, transform .2s ease}
.product-swatch:hover{transform:translateY(-1px)}
.product-swatch__color{width:20px;height:20px;border-radius:999px;background:var(--swatch-color,#fff);border:1px solid rgba(0,0,0,.2)}
.product-swatch__label{font-size:.9rem}
.product-variants input:checked + .product-swatch{border-color:#a5b4fc;background:rgba(165,180,252,.12)}

.product-add-to-cart{display:flex;flex-direction:column;gap:1rem;padding:1.5rem;border-radius:1.25rem;background:rgba(17,24,39,.5);border:1px solid rgba(255,255,255,.06)}
.product-add-to-cart__quantity{display:flex;align-items:center;gap:1rem}
.product-add-to-cart__quantity label{min-width:90px;margin:0;color:rgba(255,255,255,.8)}
.product-add-to-cart__quantity input{max-width:110px;border-radius:.75rem;border:1px solid rgba(255,255,255,.18);background:rgba(15,23,42,.7);color:#fff;padding:.45rem .75rem}
.product-add-to-cart__actions{display:flex;flex-wrap:wrap;gap:.75rem}
.product-trust,
.product-shipping{padding:1.25rem 1.5rem;border-radius:1.1rem;border:1px solid rgba(255,255,255,.08);background:rgba(15,23,42,.45);display:flex;flex-direction:column;gap:.75rem}
.product-trust h2,
.product-shipping h2{font-size:1.1rem;margin:0}
.product-trust ul,
.product-shipping ul{margin:0;padding-left:1.1rem;display:flex;flex-direction:column;gap:.4rem}
.product-shipping__estimator{display:flex;flex-direction:column;gap:.5rem}
.product-shipping__estimator-fields{display:flex;gap:.5rem}
.product-shipping__estimator input{flex:1;border-radius:.75rem;border:1px solid rgba(255,255,255,.16);background:rgba(17,24,39,.65);color:#fff;padding:.45rem .75rem}

.product-tabs{display:flex;flex-direction:column;gap:1rem}
.product-tabs__nav{display:flex;flex-wrap:wrap;gap:.75rem;border-bottom:1px solid rgba(255,255,255,.08)}
.product-tabs__nav button{border:none;background:transparent;color:rgba(255,255,255,.7);padding:.6rem .85rem;border-radius:.6rem .6rem 0 0;cursor:pointer}
.product-tabs__nav button.is-active{color:#fff;background:rgba(148,163,255,.16)}
.product-tabs__panel{padding:1.25rem 0;line-height:1.7}
.product-specs{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1rem;border-top:1px solid rgba(255,255,255,.08);padding-top:1rem}
.product-specs div{display:flex;flex-direction:column;gap:.35rem;padding:1rem;border-radius:.9rem;background:rgba(17,24,39,.5);border:1px solid rgba(255,255,255,.06)}
.product-specs dt{opacity:.75;font-size:.85rem}
.product-specs dd{margin:0;font-weight:600}

.product-rating{display:inline-flex;align-items:center;gap:.5rem}
.product-rating__star{color:rgba(255,255,255,.25);font-size:1rem}
.product-rating__star.is-filled{color:#fbbf24}
.product-rating__count{color:rgba(255,255,255,.7);text-decoration:none;font-size:.95rem}
.product-rating__count:hover{text-decoration:underline}

.product-reviews{display:flex;flex-direction:column;gap:1.25rem;list-style:none;padding:0;margin:0}
.product-review{padding:1.25rem;border-radius:1rem;background:rgba(15,23,42,.45);border:1px solid rgba(255,255,255,.08);display:flex;flex-direction:column;gap:.75rem}
.product-review__header{display:flex;justify-content:space-between;align-items:center}
.product-review__rating{display:flex;gap:.25rem;color:#fbbf24}
.product-review__content{margin:0;color:rgba(255,255,255,.78)}
.product-review time{font-size:.85rem;color:rgba(255,255,255,.55)}
.product-review-form{margin-top:1.5rem;display:flex;flex-direction:column;gap:.75rem;padding:1.5rem;border-radius:1rem;border:1px solid rgba(255,255,255,.08);background:rgba(15,23,42,.45)}
.product-review-form__stars{display:flex;gap:.45rem;font-size:1.3rem;color:rgba(255,255,255,.35);cursor:pointer}
.product-review-form__stars label{cursor:pointer}
.product-review-form input,
.product-review-form textarea{border-radius:.75rem;border:1px solid rgba(255,255,255,.16);background:rgba(17,24,39,.65);color:#fff;padding:.5rem .75rem}

.product-related,
.product-recent{display:flex;flex-direction:column;gap:1.25rem}
.product-related__header{display:flex;justify-content:space-between;align-items:center;gap:1rem}
.product-related__grid,
.product-recent__grid{display:grid;gap:1.5rem;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.product-related__cta{color:rgba(148,163,255,.9);text-decoration:none}
.product-related__cta:hover{text-decoration:underline}

.product-sticky-cta{position:fixed;left:0;right:0;bottom:0;transform:translateY(110%);transition:transform .25s ease;z-index:1040;background:rgba(13,17,23,.92);border-top:1px solid rgba(255,255,255,.08);padding:.75rem 1rem}
.product-sticky-cta.is-visible{transform:translateY(0)}
.product-sticky-cta__content{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.product-sticky-cta__title{font-weight:600;font-size:1rem}
.product-sticky-cta__price{font-weight:700}
@media (min-width:992px){
  .product-hero{grid-template-columns:1.05fr .95fr;align-items:start}
  .product-sticky-cta{display:none}
}

.cart-page{max-width:1200px;margin:0 auto}
.cart-page__header{display:flex;flex-direction:column;gap:.5rem}
.cart-page__intro{max-width:620px}
.cart-items-card .card-body{border-radius:1rem;overflow:hidden}
.cart-table{min-width:100%}
.cart-table__head th{background:#f8f9fb;border-bottom:1px solid #e4e7ec;font-weight:600;font-size:.9rem;letter-spacing:.015em;text-transform:uppercase;padding:.85rem 1rem;color:var(--bs-body-color, #212529)}
.cart-table__head th:first-child{border-top-left-radius:1rem}
.cart-table__head th:last-child{border-top-right-radius:1rem}
.cart-table__row td{padding:1rem;border-bottom:1px solid #eef1f6;vertical-align:middle}
.cart-table__row:last-child td{border-bottom:none}
.cart-item__image{width:72px;height:72px;object-fit:cover;border:1px solid #e5e7eb;background:#fff}
.cart-item__placeholder{width:72px;height:72px;display:flex;align-items:center;justify-content:center;background:#f3f4f6;border:1px dashed #d0d5dd;color:#6b7280;font-size:.72rem;font-weight:600;text-transform:uppercase;padding:.5rem}
.cart-item__placeholder-label{line-height:1.1;text-align:center}
.cart-item__details{flex:1;min-width:0}
.cart-item__name{font-weight:600;color:var(--bs-body-color,#212529);text-decoration:none;display:inline-block;margin-bottom:.25rem}
.cart-item__name:hover{text-decoration:underline}
.cart-item__meta:not(:first-child){margin-top:.35rem}
.cart-item__qty-input{max-width:94px}
.cart-items-actions__hint a{color:inherit;text-decoration:underline}
.cart-summary{position:sticky;top:5rem;border-radius:1rem;border:1px solid #e4e7ec;box-shadow:0 12px 30px rgba(15,23,42,.08)}
.cart-summary__totals{margin:0 0 1rem;display:flex;flex-direction:column;gap:.75rem}
.cart-summary__line{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;font-size:.95rem}
.cart-summary__line dt{margin:0;color:#4f566b;font-weight:500}
.cart-summary__line dd{margin:0 0 0 auto;font-weight:600;color:var(--bs-body-color,#212529)}
.cart-summary__grand-total{display:flex;justify-content:space-between;align-items:center;padding:1rem;border-radius:.75rem;background:#f4f6fb;font-size:1.05rem;font-weight:600}
.cart-summary__grand-total span{color:#4f566b;font-weight:500}
.cart-summary__benefits{margin-top:1.5rem}
.cart-summary__benefits li{display:flex;align-items:flex-start;gap:.6rem;margin-bottom:.5rem}
.cart-summary__benefits li::before{content:"\2713";font-size:.85rem;color:#4c6ef5;line-height:1.2;flex-shrink:0;margin-top:.1rem}
.cart-summary__benefits li:last-child{margin-bottom:0}
.cart-summary__checkout .btn{box-shadow:0 10px 20px rgba(76,110,245,.25)}
.cart-summary__checkout .btn:disabled{box-shadow:none}
.cart-items-card{border-radius:1rem;border:1px solid #e4e7ec;box-shadow:0 16px 40px rgba(15,23,42,.04)}
.cart-table-wrapper{border-radius:1rem;overflow:hidden}
.cart-item{min-height:72px}

@media (max-width:767.98px){
  .cart-table__head{display:none}
  .cart-table{display:block}
  .cart-table tbody{display:flex;flex-direction:column;gap:1.25rem}
  .cart-table__row{display:flex;flex-direction:column;gap:.75rem;border:1px solid #e4e7ec;border-radius:1rem;padding:1rem}
  .cart-table__row td{border-bottom:none;padding:0;display:flex;gap:.75rem}
  .cart-table__row td:first-child{flex-direction:column}
  .cart-table__row td:not(:first-child){justify-content:space-between;align-items:center;padding-top:.35rem}
  .cart-table__row td:nth-child(2)::before{content:'Quantite';font-size:.85rem;color:#6b7280;font-weight:500;text-transform:uppercase;letter-spacing:.05em}
  .cart-table__row td:nth-child(3)::before{content:'PU';font-size:.85rem;color:#6b7280;font-weight:500;text-transform:uppercase;letter-spacing:.05em}
  .cart-table__row td:nth-child(4)::before{content:'Sous-total';font-size:.85rem;color:#6b7280;font-weight:500;text-transform:uppercase;letter-spacing:.05em}
  .cart-table__row td:nth-child(5)::before{content:'Actions';font-size:.85rem;color:#6b7280;font-weight:500;text-transform:uppercase;letter-spacing:.05em;margin-right:1rem}
  .cart-table__row td:last-child{padding-top:.5rem;flex-wrap:wrap}
  .cart-table tfoot{display:none}
  .cart-item{flex-direction:row}
  .cart-item__actions,.cart-table__actions{text-align:left}
  .cart-summary{position:static}
}

.gallery-zoom{
  position:fixed;
  inset:0;
  background:rgba(5,7,14,.92);
  backdrop-filter:blur(12px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1200;
  cursor:zoom-in;
  padding:2rem;
  animation:galleryZoomIn .2s ease;
}
.gallery-zoom.is-zoomed{cursor:zoom-out}
.gallery-zoom__image{
  max-width:92vw;
  max-height:92vh;
  border-radius:1.2rem;
  box-shadow:0 20px 80px rgba(0,0,0,.55);
  transition:transform .2s ease;
  user-select:none;
}
@keyframes galleryZoomIn{
  from{opacity:0;transform:scale(.95)}
  to{opacity:1;transform:scale(1)}
}

/* Order show layout */
.order-show-page{padding:1.5rem 1.5rem 3rem;}
.order-show-container{max-width:1320px;margin:0 auto;display:flex;flex-direction:column;gap:1.25rem;}
.order-header{display:flex;justify-content:space-between;align-items:flex-start;gap:1.5rem;}
.order-header-left{display:flex;flex-direction:column;gap:.6rem;}
.order-header-status{display:flex;flex-wrap:wrap;gap:.5rem;}
.order-header-main{display:flex;flex-direction:column;gap:.25rem;}
.order-title{margin:0;font-size:1.35rem;}
.order-subtitle{margin:0;font-size:.95rem;opacity:.75;}
.order-header-actions{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:flex-end;}
.order-top-grid{display:grid;grid-template-columns:minmax(0,3fr) minmax(0,4fr) minmax(0,3fr);gap:1.25rem;}
.order-main-grid{display:grid;grid-template-columns:minmax(0,7fr) minmax(0,5fr);gap:1.25rem;}
.order-bottom-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:1.25rem;}
.order-card{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:1rem 1.25rem;box-shadow:0 0 0 1px rgba(255,255,255,.04);}
.order-card h2,.order-card h3{margin:0;font-size:1rem;}
.order-card-header{display:flex;align-items:center;justify-content:space-between;gap:.75rem;margin-bottom:.75rem;}
.order-card-header-actions{display:flex;gap:.5rem;flex-wrap:wrap;align-items:center;}
.order-card-header--sub{margin-bottom:.35rem;}
.order-card-section+.order-card-section{margin-top:1rem;}
.order-card-section-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;}
.order-card-meta{margin:0;font-size:.85rem;opacity:.75;}
.order-card-divider{height:1px;background:var(--border);opacity:.7;margin:.75rem 0;}
.order-card-info{padding-top:.35rem;}
.address-chip{border:1px solid var(--border);border-radius:10px;padding:.65rem .75rem;background:rgba(255,255,255,.03);line-height:1.5;}
.order-customer-main{display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;}
.order-customer-identities{display:flex;flex-direction:column;gap:.35rem;}
.order-customer-badges{display:flex;gap:.5rem;flex-wrap:wrap;}
.order-summary-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.25rem;}
.order-summary-block{display:flex;flex-direction:column;gap:.2rem;}
.order-summary-block hr{border-color:var(--border);opacity:.8;margin:.4rem 0 .6rem;}
.order-label{font-size:.82rem;margin:0;opacity:.72;}
.order-label-strong{font-weight:600;}
.order-value{margin:0;font-size:1rem;}
.order-value-strong{font-weight:700;font-size:1.05rem;}
.order-quick-actions-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:.5rem;}
.order-shipping-form label{font-size:.82rem;opacity:.78;margin-bottom:.25rem;}
.order-shipping-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:.75rem;align-items:end;}
.order-shipping-actions{align-self:end;}
.order-lines-table{margin-top:.35rem;}
.order-lines-table .table{margin-bottom:0;}
.order-lines-table th{font-size:.9rem;}
.order-side-column{display:flex;flex-direction:column;gap:1rem;}
.order-history-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.5rem;}
.order-history-item a{display:flex;align-items:center;justify-content:space-between;gap:.5rem;text-decoration:none;color:inherit;border:1px solid var(--border);border-radius:10px;padding:.55rem .65rem;}
.order-history-item a:hover{background:rgba(255,255,255,.04);}
.order-history-ref{font-weight:700;}
.order-history-date,.order-history-amount{font-size:.9rem;}
.order-timeline{display:flex;flex-direction:column;gap:.35rem;}
.order-timeline-item{display:flex;justify-content:space-between;align-items:center;padding:.4rem .35rem;border-bottom:1px solid rgba(255,255,255,.05);}
.order-timeline-item:last-child{border-bottom:0;}
.order-timeline-main{display:flex;align-items:center;gap:.5rem;flex:1;}
.order-timeline-label{font-size:.92rem;}
.order-timeline-date{font-size:.85rem;opacity:.75;}
@media (max-width: 1200px){
  .order-header{flex-direction:column;align-items:flex-start;}
  .order-top-grid,.order-main-grid{grid-template-columns:1fr;}
  .order-header-actions{width:100%;}
}
.form-group-grid{
  display:grid;
  gap:1rem;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}
.form-field .form-label{margin-bottom:.35rem;}
.input-icon--action .btn-icon{position:absolute;right:.35rem;top:50%;transform:translateY(-50%);padding:.55rem .65rem;border-radius:10px}
.form-tile{
  border:1px dashed rgba(255,255,255,.1);
  border-radius:14px;
  padding:1rem 1.1rem;
  background:rgba(255,255,255,.02);
}
.rule-intro{color:var(--muted);font-size:.9rem;margin-top:.35rem;}
.rule-list{list-style:none;padding-left:0;margin:0;display:grid;gap:.15rem;}
.rule-list .rule{display:flex;align-items:center;gap:.4rem;color:rgba(255,255,255,.8);}
.rule-list .rule.valid{color:#a0f0c0;}
.rule-list .rule i{color:currentColor;}
@media (max-width: 768px){
  .order-header-actions{justify-content:flex-start;}
  .order-summary-grid{grid-template-columns:1fr;}
  .order-card-section-grid{grid-template-columns:1fr;}
}

/* Auth page refresh */
.auth-shell{padding:clamp(1.5rem,2vw+1rem,3rem) 0 4rem;}
.auth-layout{
  position:relative;
  border:1px solid rgba(255,255,255,.06);
  border-radius:22px;
  padding:clamp(1.5rem,2vw+1.25rem,2.75rem);
  background:
    radial-gradient(120% 120% at 18% 8%,rgba(255,124,194,.08),transparent 55%),
    radial-gradient(110% 110% at 88% 10%,rgba(115,134,255,.08),transparent 50%),
    rgba(10,12,20,.72);
  box-shadow:0 25px 80px rgba(0,0,0,.4);
  overflow:hidden;
}
.auth-layout::before{
  content:"";
  position:absolute;
  inset:-18% 10% auto 8%;
  height:220px;
  background:radial-gradient(120% 90% at 20% 60%,rgba(255,93,178,.14),transparent 65%),
    radial-gradient(60% 90% at 82% 40%,rgba(124,132,255,.12),transparent 65%);
  filter:blur(24px);
  opacity:.9;
  pointer-events:none;
}
.auth-layout::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.04);
  pointer-events:none;
}
.auth-hero__pill{
  display:inline-flex;
  align-items:center;
  gap:.25rem;
  padding:.45rem .75rem;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.86);
  font-weight:700;
  text-transform:uppercase;
  font-size:.8rem;
  letter-spacing:.6px;
}
.auth-hero__lead{color:var(--muted);margin-bottom:1.25rem;max-width:34ch;}
.auth-hero__eyebrow{display:flex;flex-wrap:wrap;gap:.55rem;}
.auth-hero__grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:.75rem;
  margin:1.25rem 0 1rem;
}
.auth-feature{
  position:relative;
  display:flex;
  gap:.85rem;
  padding:1rem 1.05rem;
  border-radius:16px;
  background:linear-gradient(140deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 16px 36px rgba(0,0,0,.3),0 0 0 1px rgba(255,255,255,.02) inset;
  overflow:hidden;
}
.auth-feature::after{
  content:"";
  position:absolute;
  inset:-40% 55% auto -35%;
  height:90%;
  background:radial-gradient(120% 120% at 50% 50%,rgba(255,93,178,.18),transparent 65%);
  opacity:.55;
  pointer-events:none;
}
.auth-feature__icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#ff8fcf,#ff5db2);
  color:#0f1115;
  font-size:1.1rem;
  box-shadow:0 12px 30px rgba(255,124,194,.32);
  flex-shrink:0;
}
.auth-feature__icon--violet{
  background:linear-gradient(180deg,#9da4ff,#7a83ff);
  color:#0d0f16;
  box-shadow:0 12px 30px rgba(126,132,255,.3);
}
.auth-feature__title{
  font-weight:800;
  letter-spacing:.15px;
  margin-bottom:.2rem;
  color:#fef0ff;
}
.auth-feature__desc{
  color:rgba(217,224,238,.9);
  margin:0;
  font-size:.95rem;
}
.auth-hero__stats{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
  margin-top:1.1rem;
}
.stat-chip{
  display:flex;
  flex-direction:column;
  gap:.05rem;
  padding:.65rem .8rem;
  border-radius:12px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  min-width:110px;
  box-shadow:0 12px 26px rgba(0,0,0,.28);
}
.stat-chip__value{
  font-weight:850;
  letter-spacing:.18px;
  color:#ffe6f4;
}
.stat-chip__label{
  color:rgba(217,224,238,.85);
  font-size:.9rem;
}
.auth-hero__meta{display:flex;flex-wrap:wrap;gap:.75rem;}
.auth-hero__meta-item{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  background:rgba(255,255,255,.04);
  padding:.6rem .8rem;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.9);
  font-weight:600;
}
.dot{
  width:.75rem;
  height:.75rem;
  border-radius:999px;
  display:inline-block;
  box-shadow:0 0 18px currentColor;
}
.dot--pink{background:#ff5db2;color:#ff5db2;}
.dot--violet{background:#8a7cff;color:#8a7cff;}

.auth-card{
  position:relative;
  background:rgba(9,11,19,.9);
  border:1px solid rgba(255,255,255,.05);
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
  overflow:hidden;
}
.auth-card__glow{
  position:absolute;
  width:320px;
  height:320px;
  background:radial-gradient(circle at 30% 30%,rgba(255,93,178,.28),rgba(255,93,178,0));
  top:-120px;
  right:-140px;
  filter:blur(18px);
  opacity:.9;
}
.auth-card__title{
  font-weight:850;
  letter-spacing:.25px;
  color:#fff;
  font-size:1.25rem;
}
.auth-form .form-label{margin-bottom:.35rem;}
.auth-form .form-control{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  padding:.78rem .95rem .78rem 2.8rem;
  border-radius:12px;
  transition:border-color .2s ease,box-shadow .2s ease;
}
.auth-form .form-control:focus{
  border-color:rgba(255,93,178,.75);
  box-shadow:0 0 0 3px rgba(255,93,178,.12);
  background:rgba(255,255,255,.05);
}
.input-icon{position:relative;}
.input-icon i{
  position:absolute;
  left:.95rem;
  top:50%;
  transform:translateY(-50%);
  color:rgba(255,255,255,.6);
  pointer-events:none;
}
.auth-card .btn{padding:.9rem 1.1rem;font-weight:800;letter-spacing:.1px;}
.auth-card .btn-ghost{border-color:rgba(255,255,255,.1);color:#fff;}
.auth-card .btn-ghost:hover{background:rgba(255,255,255,.05);}
.auth-footnote{color:var(--muted);font-size:.95rem;}
.auth-footnote__item{display:inline-flex;align-items:center;gap:.35rem;padding:.4rem .6rem;border-radius:10px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);}

.pill{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.45rem .75rem;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:#e9ebf0;
  font-weight:700;
  letter-spacing:.1px;
  backdrop-filter:blur(10px);
  box-shadow:0 6px 28px rgba(0,0,0,.25);
}
.pill--glass{
  background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
  border-color:rgba(255,255,255,.12);
}
.pill--soft{
  background:linear-gradient(135deg,rgba(255,124,194,.14),rgba(255,255,255,.03));
  border-color:rgba(255,124,194,.3);
  color:#ffe6f4;
}
.pill--outline{
  background:rgba(255,255,255,.02);
  border-color:rgba(255,255,255,.18);
}
.pill--compact{
  padding:.35rem .65rem;
  font-size:.82rem;
  line-height:1.1;
}

.register-hero{
  position:relative;
}
.register-hero::after{
  content:"";
  position:absolute;
  inset:-12% -16%;
  background:radial-gradient(70% 70% at 18% 12%,rgba(255,93,178,.09),transparent 60%),radial-gradient(70% 70% at 90% 16%,rgba(124,132,255,.07),transparent 60%);
  filter:blur(20px);
  opacity:.9;
  z-index:0;
  pointer-events:none;
}
.register-hero>*{position:relative;z-index:1;}
.register-hero__benefits{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:.75rem;
  margin:1.2rem 0 1.6rem;
}
.register-hero__panel{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1rem;
  padding:1rem 1.1rem;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.02)),
    radial-gradient(120% 120% at 18% 8%,rgba(255,93,178,.07),transparent 55%),
    radial-gradient(100% 100% at 82% 20%,rgba(124,132,255,.06),transparent 50%);
  box-shadow:0 26px 60px rgba(0,0,0,.35);
  backdrop-filter:blur(8px);
}
.register-panel__column{
  display:flex;
  flex-direction:column;
  gap:.65rem;
}
.panel-label{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  font-weight:800;
  letter-spacing:.12px;
  color:rgba(233,235,240,.9);
  text-transform:uppercase;
  font-size:.82rem;
}
.register-benefit{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  padding:.8rem .9rem;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(135deg,rgba(255,255,255,.07),rgba(255,255,255,.02));
  box-shadow:0 16px 38px rgba(0,0,0,.32),0 0 0 1px rgba(255,255,255,.02) inset;
  position:relative;
  overflow:hidden;
}
.register-benefit::after{
  content:"";
  position:absolute;
  inset:-30% 55% auto -35%;
  height:80%;
  background:radial-gradient(120% 120% at 50% 50%,rgba(255,93,178,.18),transparent 60%);
  opacity:.6;
  pointer-events:none;
}
.register-benefit__icon{
  width:42px;
  height:42px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#ff7cc2,#ff5db2);
  color:#0f1115;
  font-size:1.1rem;
  box-shadow:0 10px 30px rgba(255,124,194,.35);
}
.register-benefit__icon--violet{
  background:linear-gradient(180deg,#9da4ff,#7a83ff);
  color:#0d0f16;
  box-shadow:0 10px 30px rgba(126,132,255,.32);
}
.register-benefit__icon--soft{
  background:linear-gradient(180deg,#ffd8eb,#ff9fd2);
  color:#1a1c27;
}
.register-benefit--soft{
  background:rgba(255,255,255,.04);
  border-style:dashed;
}
.register-benefit__title{
  font-weight:850;
  margin-bottom:.2rem;
  color:#ffe6f4;
  letter-spacing:.15px;
  text-shadow:0 4px 18px rgba(0,0,0,.4);
}
.register-benefit__desc{
  color:rgba(217,224,238,.88);
  font-size:.95rem;
}

.register-steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:.6rem;
  padding:.9rem 1rem;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(135deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  box-shadow:0 12px 32px rgba(0,0,0,.25);
}
.register-step{
  display:flex;
  align-items:flex-start;
  gap:.9rem;
  padding:.25rem 0;
  color:rgba(233,235,240,.85);
  position:relative;
}
.register-step::before{
  content:"";
  position:absolute;
  inset:6px;
  border-radius:12px;
  background:linear-gradient(135deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
  z-index:-1;
}
.register-step__bullet{
  width:36px;
  height:36px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  font-weight:800;
  color:rgba(233,235,240,.85);
  box-shadow:0 8px 20px rgba(0,0,0,.2);
}
.register-step:not(:last-child)::after{
  content:"";
  position:absolute;
  left:18px;
  top:44px;
  bottom:-4px;
  width:3px;
  background:linear-gradient(180deg,rgba(255,141,207,.6),rgba(115,134,255,.25));
}
.register-step__title{
  font-weight:850;
  letter-spacing:.14px;
  color:#ffe6f4;
}
.register-step__desc{
  color:rgba(207,214,228,.9);
  font-size:.92rem;
}
.register-step.is-active .register-step__bullet{
  background:linear-gradient(180deg,#ff8fcf,#ff5db2);
  color:#0f1115;
  border-color:rgba(255,124,194,.5);
}
.register-step.is-active .register-step__title{
  color:#fff;
  text-shadow:0 5px 20px rgba(255,124,194,.35);
}

.auth-card__header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1rem;
  padding:0 0 1rem;
  margin-bottom:1rem;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.auth-card__chips{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  justify-content:flex-end;
}
.mini-label{
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.4px;
  font-weight:800;
  color:rgba(233,235,240,.9);
}

@media (max-width:992px){
  .auth-layout{padding:1.25rem;border-radius:18px;}
  .auth-hero__lead{font-size:.98rem;}
  .auth-shell{padding:1rem 0 3rem;}
}
@media (max-width:576px){
  .auth-footnote{flex-direction:column;}
  .auth-card__glow{width:240px;height:240px;top:-80px;right:-110px;}
  .auth-hero__meta-item{width:100%;}
  .register-steps{grid-template-columns:1fr;padding:.85rem;}
  .auth-card__header{flex-direction:column;align-items:flex-start;}
  .auth-card__chips{justify-content:flex-start;}
}
