
:root{
  --bg:#111216;
  --bg-soft:#17191e;
  --card:#1c1f25;
  --card-2:#242830;
  --text:#f5f5f7;
  --muted:#9da2ad;
  --line:#30343d;
  --dark:#090a0c;
  --accent:#dfe8ff;
  --danger:#ff6978;
  --success:#64d58b;
  --shadow:0 14px 38px rgba(0,0,0,.35);
}

*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
html,body{
  margin:0;
  background:
    radial-gradient(circle at 10% -10%,rgba(255,255,255,.06),transparent 28%),
    radial-gradient(circle at 100% 15%,rgba(255,255,255,.035),transparent 30%),
    var(--bg);
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text)
}
button,input,textarea,select{font:inherit}
button{color:inherit}

#app{
  max-width:520px;
  margin:auto;
  min-height:100vh;
  padding-bottom:98px;
}

.topbar{
  position:sticky;
  top:0;
  z-index:30;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px 12px;
  background:rgba(17,18,22,.88);
  border-bottom:1px solid rgba(255,255,255,.05);
  backdrop-filter:blur(18px)
}
.brand{display:flex;align-items:center;gap:10px}
.brand-logo{
  width:43px;height:43px;border-radius:14px;
  background:#07080a;color:#fff;
  display:grid;place-items:center;
  font-size:22px;font-weight:950;
  border:1px solid #2d3138;
  box-shadow:0 8px 20px rgba(0,0,0,.28)
}
.brand-title{font-size:17px;font-weight:950}
.brand-subtitle{font-size:11px;color:var(--muted);margin-top:4px}

.top-actions{display:flex;gap:8px}
.icon-btn{
  width:44px;height:44px;border:1px solid #2c3038;border-radius:14px;
  background:linear-gradient(180deg,#23262c,#181a1f);
  display:grid;place-items:center;position:relative;font-size:21px;
  box-shadow:0 8px 20px rgba(0,0,0,.22);
  transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease
}
.icon-btn:hover{border-color:#464b55}
.icon-btn:active{transform:scale(.9) rotate(-2deg);box-shadow:0 3px 10px rgba(0,0,0,.3)}
.badge{
  display:none;position:absolute;right:-4px;top:-5px;background:#ff445d;color:#fff;
  border:2px solid var(--bg);border-radius:999px;min-width:19px;height:19px;
  font-size:10px;font-weight:900;align-items:center;justify-content:center
}

.page{padding:7px 14px 20px}

.hero{
  min-height:242px;border-radius:30px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.035),transparent 40%),
    #090a0c;
  color:#fff;padding:26px 24px;position:relative;overflow:hidden;
  border:1px solid #292c33;
  box-shadow:var(--shadow)
}
.hero::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(110deg,transparent 25%,rgba(255,255,255,.035) 45%,transparent 62%);
  transform:translateX(-110%);
  animation:heroShine 5.5s ease-in-out infinite;
  pointer-events:none
}
@keyframes heroShine{
  0%,68%{transform:translateX(-110%)}
  88%,100%{transform:translateX(120%)}
}
.hero .eyebrow{font-size:13px;font-weight:800;letter-spacing:.08em;color:#d9dbe1}
.hero h1{font-size:39px;line-height:.92;margin:10px 0 8px;letter-spacing:.02em}
.hero p{width:65%;font-size:16px;margin:0;color:#e4e5e9}
.hero-note{position:absolute;left:24px;bottom:20px;color:#8f949f;font-size:12px}
.doodle-flower{position:absolute;right:-7px;top:-20px;width:125px;opacity:.92;animation:floatDoodle 6s ease-in-out infinite}
.doodle-char{position:absolute;right:23px;bottom:20px;width:82px;animation:floatDoodle 4.8s ease-in-out infinite reverse}
@keyframes floatDoodle{0%,100%{transform:translateY(0) rotate(0)}50%{transform:translateY(-7px) rotate(2deg)}}

.find-row{
  margin:14px 0 20px;
  background:linear-gradient(180deg,#202329,#1a1c21);
  border:1px solid #2d3139;border-radius:22px;padding:10px 12px;
  display:flex;align-items:center;gap:10px;
  box-shadow:0 9px 24px rgba(0,0,0,.18);
  transition:transform .16s ease,border-color .16s ease
}
.find-row:active{transform:scale(.98);border-color:#4b515d}
.search-mini{
  width:32px;height:32px;border-radius:10px;background:#2a2e36;
  display:grid;place-items:center;color:#fff
}
.find-row .arrow{margin-left:auto;color:#cdd1da}

.section{margin:22px 0}
.section-head{display:flex;justify-content:space-between;align-items:end;margin:0 4px 12px}
.section-head h2{font-size:19px;margin:0}
.section-head button{border:0;background:none;color:#aeb3bd;font-weight:800}

.promo-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.promo{
  min-height:118px;border-radius:21px;
  background:linear-gradient(145deg,#23262d,#181a1f);
  border:1px solid #2f333b;
  padding:14px;position:relative;overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.16);
  transition:transform .18s ease,box-shadow .18s ease
}
.promo:active{transform:scale(.97) rotate(-.5deg)}
.promo h3{margin:0;font-size:16px}
.promo p{font-size:11px;color:#969ba5}
.promo-big{position:absolute;right:12px;bottom:9px;font-size:24px;font-weight:950;color:#fff}
.promo img{position:absolute;width:65px;right:8px;bottom:-3px;opacity:.12}

.product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.product-card{
  background:linear-gradient(180deg,#202329,#1a1c21);
  border:1px solid #2c3038;
  border-radius:25px;overflow:hidden;display:flex;flex-direction:column;
  box-shadow:0 10px 28px rgba(0,0,0,.18);
  animation:cardIn .35s ease both
}
@keyframes cardIn{from{opacity:0;transform:translateY(10px) scale(.98)}to{opacity:1;transform:none}}
.product-image{
  aspect-ratio:1/1;
  background:#131519;position:relative;overflow:hidden
}
.product-image img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.product-card:active .product-image img{transform:scale(1.025)}
.favorite{
  position:absolute;right:10px;top:10px;width:39px;height:39px;border-radius:50%;
  border:1px solid rgba(255,255,255,.13);background:rgba(14,15,18,.82);
  color:#fff;font-size:23px;backdrop-filter:blur(8px);
  transition:transform .16s ease,background .16s ease
}
.favorite:active{transform:scale(.82) rotate(-8deg);background:#2b2f37}
.sale-chip{
  position:absolute;left:9px;top:10px;background:rgba(15,16,19,.86);color:#fff;
  border:1px solid rgba(255,255,255,.12);border-radius:999px;padding:7px 9px;
  font-size:10px;font-weight:900;backdrop-filter:blur(8px)
}
.product-body{padding:14px;display:flex;flex-direction:column;flex:1}
.product-title{font-size:16px;font-weight:950;min-height:36px}
.price-row{display:flex;gap:7px;align-items:center;margin-top:12px}
.price{font-size:21px;font-weight:950}
.old-price{font-size:13px;color:#737984;text-decoration:line-through}

/* Doodle style ONLY for product "Подробнее" buttons */
.more-btn{
  position:relative;isolation:isolate;overflow:hidden;
  border:1px solid #30343c;
  background:#08090b;color:#fff;
  border-radius:18px;padding:14px 16px;font-weight:950;cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.28);
  transition:transform .16s cubic-bezier(.2,.8,.2,1),box-shadow .16s ease,border-color .16s ease;
  margin-top:14px
}
.more-btn::before{
  content:"";position:absolute;left:-6px;bottom:-12px;width:72px;height:72px;z-index:-1;
  background:url("/static/assets/flower.svg") center/contain no-repeat;opacity:.52;
  transform:rotate(-18deg)
}
.more-btn::after{
  content:"";position:absolute;right:3px;bottom:-13px;width:55px;height:72px;z-index:-1;
  background:url("/static/assets/character.svg") center/contain no-repeat;opacity:.48
}
.more-btn:hover{border-color:#525863;box-shadow:0 13px 30px rgba(0,0,0,.34)}
.more-btn:active{
  transform:scale(.955) rotate(-.35deg);
  box-shadow:0 4px 12px rgba(0,0,0,.25)
}
.more-btn.press-pop{animation:pressPop .28s ease}

/* All other main buttons are simple, clean dark buttons */
.primary-btn{
  width:100%;
  border:1px solid #343842;
  background:#24272e;
  color:#fff;
  border-radius:16px;
  padding:16px 14px;
  font-weight:900;
  cursor:pointer;
  box-shadow:none;
  transition:transform .15s ease,background .15s ease,border-color .15s ease
}
.primary-btn:hover{background:#2b2f37;border-color:#434953}
.primary-btn:active{transform:scale(.97);background:#30343c}
.primary-btn.press-pop{animation:pressPop .24s ease}
@keyframes pressPop{0%{transform:scale(1)}45%{transform:scale(.93)}75%{transform:scale(1.025)}100%{transform:scale(1)}}

.bottom-nav{
  position:fixed;left:50%;bottom:10px;transform:translateX(-50%);
  width:min(calc(100% - 24px),496px);height:72px;
  background:rgba(22,24,29,.94);
  border:1px solid #30343b;
  backdrop-filter:blur(18px);border-radius:26px;
  display:grid;grid-template-columns:repeat(5,1fr);padding:7px;z-index:40;
  box-shadow:0 16px 40px rgba(0,0,0,.42)
}
.nav-item{
  border:0;background:none;border-radius:18px;color:#8f949f;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;font-weight:800;
  transition:transform .15s ease,background .18s ease,color .18s ease
}
.nav-item small{font-size:9px}
.nav-item.active{background:#08090b;color:#fff;box-shadow:inset 0 0 0 1px #2a2e35}
.nav-item:active{transform:scale(.88)}

.page-title{padding:10px 4px 14px}
.page-kicker{font-size:11px;letter-spacing:.3em;color:#747a85;text-transform:uppercase;margin-bottom:7px}
.page-title h1{font-size:30px;margin:0}

.category-list{display:grid;gap:10px}
.category-card{
  border:1px solid #2c3038;background:linear-gradient(180deg,#21242a,#1a1c21);
  color:#fff;border-radius:19px;padding:18px;font-weight:900;text-align:left;
  transition:transform .16s ease,border-color .16s ease
}
.category-card:active{transform:scale(.98);border-color:#505662}

.cart-list{display:grid;gap:10px}
.cart-item{
  background:#1c1f25;border:1px solid #2b2f37;border-radius:20px;padding:12px;
  display:grid;grid-template-columns:72px 1fr auto;gap:12px;align-items:center
}
.cart-thumb{width:72px;height:72px;border-radius:15px;object-fit:cover;background:#111}
.cart-name{font-weight:950;font-size:14px}.cart-meta{font-size:11px;color:#8f949e;margin-top:4px}
.cart-price{font-weight:900;margin-top:6px}
.qty{display:flex;align-items:center;gap:7px}
.qty button{
  width:30px;height:30px;border:1px solid #343943;border-radius:9px;
  background:#272b32;color:#fff;font-weight:900;transition:transform .14s ease
}
.qty button:active{transform:scale(.82)}

.cart-summary,.checkout-card,.profile-card{
  background:linear-gradient(180deg,#1f2228,#191b20);
  border:1px solid #2d3139;border-radius:24px;padding:18px;margin-top:14px;
  box-shadow:0 10px 28px rgba(0,0,0,.17)
}
.total-row{display:flex;justify-content:space-between;font-size:18px;font-weight:950;margin-bottom:14px}

.field{margin:14px 0}
.field label{display:block;font-size:12px;color:#a2a7b1;font-weight:850;margin:0 0 7px 4px}
.input,.textarea,.select{
  width:100%;border:1px solid #343842;background:#14161a;color:#fff;
  border-radius:15px;padding:15px 14px;outline:none;
  transition:border-color .18s ease,box-shadow .18s ease,background .18s ease
}
.input:focus,.textarea:focus,.select:focus{
  border-color:#626977;background:#17191e;box-shadow:0 0 0 3px rgba(255,255,255,.045)
}
.input::placeholder,.textarea::placeholder{color:#656b75}
.textarea{min-height:96px;resize:vertical}

.empty{
  background:#1b1e23;border:1px solid #2b2f36;
  border-radius:24px;padding:34px 20px;text-align:center;color:#8d929c
}
.profile-card h2{margin-top:0}

.modal{position:fixed;inset:0;background:rgba(0,0,0,.68);z-index:100;display:none;align-items:flex-end;justify-content:center}
.modal.show{display:flex;animation:fadeIn .18s ease}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.modal-sheet{
  width:min(100%,520px);max-height:90vh;overflow:auto;
  background:#17191e;border:1px solid #30343c;border-bottom:0;
  border-radius:28px 28px 0 0;padding:18px 14px 28px;
  box-shadow:0 -18px 50px rgba(0,0,0,.46);
  animation:sheetUp .26s cubic-bezier(.2,.8,.2,1)
}
@keyframes sheetUp{from{transform:translateY(40px);opacity:.5}to{transform:none;opacity:1}}
.modal-head{display:flex;justify-content:space-between;align-items:center;font-size:21px;margin-bottom:14px}
.close-btn{
  border:1px solid #343943;background:#24272e;color:#fff;border-radius:50%;
  width:35px;height:35px;font-size:23px;transition:transform .14s ease
}
.close-btn:active{transform:scale(.82) rotate(8deg)}
.search-results{margin-top:12px;display:grid;gap:8px}
.search-result{
  background:#202329;border:1px solid #2c3038;border-radius:16px;padding:12px;
  display:flex;justify-content:space-between;align-items:center
}

.product-sheet{padding:0 0 24px}
.product-detail-image{display:block;width:100%;max-height:340px;object-fit:contain;background:#111}
.product-detail-body{padding:18px}
.product-detail-body h2{font-size:25px;margin:0 40px 10px 0}
.product-desc{color:#989da7;line-height:1.4}
.option-block{margin:20px 0}
.option-title{font-size:14px;font-weight:900;margin-bottom:10px}
.variant-list{display:flex;flex-wrap:wrap;gap:8px}
.variant-btn{
  border:1px solid #363b45;background:#202329;color:#daddE3;
  border-radius:13px;padding:11px 13px;font-weight:750;
  transition:transform .15s ease,border-color .15s ease,background .15s ease
}
.variant-btn.active{border:1px solid #bfc4cd;background:#30343c;color:#fff;box-shadow:0 0 0 1px #bfc4cd inset}
.variant-btn:active{transform:scale(.93)}
.addon-list{display:grid;gap:9px}
.addon-row{
  display:flex;gap:10px;align-items:center;background:#202329;border:1px solid #2c3038;
  border-radius:14px;padding:12px
}
.addon-row input{width:20px;height:20px;accent-color:#d8b24d}
.stock-text{font-size:14px;font-weight:850;color:#b9bec7}
.detail-price{font-size:28px;font-weight:950;margin:18px 0 12px}

.success{
  background:#1c1f25;border:1px solid #2d3139;border-radius:26px;padding:28px;text-align:center;
  box-shadow:var(--shadow)
}
.success .big{font-size:54px}

/* Promocode + orders */
.promo-input-row{display:grid;grid-template-columns:1fr auto;gap:8px}
.promo-apply-btn{
  border:1px solid #343842;background:#272b32;color:#fff;border-radius:15px;
  padding:0 14px;font-weight:900;transition:transform .15s ease,background .15s ease
}
.promo-apply-btn:active{transform:scale(.93);background:#343942}
.promo-message{font-size:12px;margin:7px 4px 0;min-height:16px}
.success-text{color:var(--success)}.error-text{color:var(--danger)}
.checkout-total-box{
  background:#14161a;border:1px solid #2d3139;border-radius:17px;padding:14px;margin:16px 0
}
.checkout-total-box>div{display:flex;justify-content:space-between;gap:10px;padding:5px 0;font-size:14px}
.checkout-total-box .checkout-final{border-top:1px solid #2d3139;margin-top:5px;padding-top:12px;font-size:18px;font-weight:950}

.my-order-card{
  background:#1c1f25;border:1px solid #2d3139;border-radius:22px;padding:16px;margin:10px 0;
  box-shadow:0 8px 24px rgba(0,0,0,.14)
}
.my-order-top{display:flex;justify-content:space-between;align-items:flex-start;gap:10px}
.my-order-date{font-size:11px;color:#7f858f;margin-top:4px}
.order-status{
  font-size:11px;font-weight:900;background:#292d34;border:1px solid #383d47;
  border-radius:999px;padding:7px 9px;text-align:center
}
.my-order-items{margin:12px 0;background:#14161a;border:1px solid #292d34;border-radius:14px;padding:10px}
.my-order-item{display:flex;justify-content:space-between;gap:10px;padding:8px 0;border-bottom:1px solid #292d34;font-size:13px}
.my-order-item:last-child{border-bottom:0}
.my-order-item small{display:block;color:#858b95;margin-top:3px;line-height:1.3}
.my-order-discount,.my-order-total{display:flex;justify-content:space-between;gap:10px;padding:5px 2px}
.my-order-discount{font-size:13px;color:#a5abb5}
.my-order-total{font-size:17px;font-weight:950;margin-top:5px}

.hidden{display:none!important}

@media(max-width:360px){
  .brand-subtitle{display:none}
  .hero h1{font-size:34px}
  .product-grid{gap:8px}
  .product-body{padding:11px}
}

.sale-page-intro{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:0 0 16px;
  padding:14px 15px;
  background:#1c1f25;
  border:1px solid #2d3139;
  border-radius:18px
}
.sale-page-intro strong{display:block;font-size:14px}
.sale-page-intro span{display:block;margin-top:4px;color:#8f949f;font-size:12px}
.sale-back-btn{
  border:1px solid #343842;
  background:#272b32;
  color:#fff;
  border-radius:13px;
  padding:10px 12px;
  font-weight:850;
  transition:transform .15s ease,background .15s ease
}
.sale-back-btn:active{transform:scale(.94);background:#343942}


.order-status.order-status-done{
  background:rgba(74,196,112,.16);
  border-color:rgba(74,196,112,.34);
  color:#b9efc9;
  box-shadow:inset 0 0 0 1px rgba(74,196,112,.04);
}


/* v9.10 — full-screen product image viewer */
.product-detail-image-btn{
  position:relative;
  display:block;
  width:100%;
  margin:0;
  padding:0;
  border:0;
  background:#111;
  color:#fff;
  cursor:zoom-in;
  overflow:hidden;
}
.product-detail-image-btn:active .product-detail-image{
  transform:scale(.985);
}
.product-detail-image{
  transition:transform .16s ease;
}
.image-zoom-hint{
  position:absolute;
  left:50%;
  bottom:10px;
  transform:translateX(-50%);
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(10,11,13,.68);
  color:rgba(255,255,255,.86);
  font-size:11px;
  font-weight:750;
  white-space:nowrap;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.image-viewer{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:58px 14px 28px;
  background:rgba(0,0,0,.94);
  opacity:0;
  visibility:hidden;
  transition:opacity .18s ease,visibility .18s ease;
}
.image-viewer.show{
  opacity:1;
  visibility:visible;
}
.image-viewer img{
  display:block;
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:12px;
  user-select:none;
  -webkit-user-select:none;
}
.image-viewer-close{
  position:absolute;
  top:max(14px,env(safe-area-inset-top));
  right:16px;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.2);
  border-radius:50%;
  background:rgba(28,31,37,.88);
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  z-index:2;
}
body.viewer-open{
  overflow:hidden;
}
@media(max-width:600px){
  .product-detail-image{
    max-height:300px;
  }
  .image-viewer{
    padding-left:8px;
    padding-right:8px;
  }
}


/* v10.1 — storefront UX and stock */
.hero{
  min-height:250px;
  display:flex;
  align-items:flex-end;
}
.hero.hero-has-image{
  background-image:
    linear-gradient(180deg,rgba(8,9,11,.20),rgba(8,9,11,.86)),
    var(--hero-image);
  background-size:cover;
  background-position:center;
}
.hero-copy{position:relative;z-index:2;width:100%}
.hero p{width:78%;font-weight:800}
.hero-note{position:static;margin-top:34px;max-width:82%;line-height:1.45}

.product-card{cursor:pointer}
.product-card.sold-out{opacity:.68}
.stock-chip{
  position:absolute;left:9px;bottom:10px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(13,14,17,.88);color:#b7bbc3;
  border-radius:999px;padding:7px 9px;font-size:10px;font-weight:900;
}
.more-btn:disabled,.primary-btn:disabled,.variant-btn:disabled,.qty button:disabled,.addon-qty button:disabled{
  opacity:.45;cursor:not-allowed;transform:none!important;
}
.cart-item{cursor:pointer}
.cart-item.cart-unavailable{border-color:rgba(232,82,94,.55)}
.cart-stock-warning{font-size:12px;font-weight:850;color:#ff8f99;margin-top:6px}
.search-result{cursor:pointer}

.addon-row{
  justify-content:space-between;
}
.addon-copy{display:flex;flex-direction:column;gap:3px;min-width:0}
.addon-copy small{color:#9298a3;font-size:11px}
.addon-qty{display:flex;align-items:center;gap:8px;flex:0 0 auto}
.addon-qty button{
  width:32px;height:32px;border:1px solid #3a3f49;border-radius:9px;
  background:#272b32;color:#fff;font-size:18px;font-weight:900;
}
.addon-qty b{min-width:18px;text-align:center}
.addon-sold-out{opacity:.55}


/* v10.2 — bestseller badge + category price filters */
.bestseller-chip{
  position:absolute;
  right:9px;
  bottom:10px;
  border:1px solid rgba(216,178,77,.45);
  background:rgba(57,48,20,.86);
  color:#f0d989;
  border-radius:999px;
  padding:7px 9px;
  font-size:10px;
  font-weight:900;
}

.price-filter{
  margin:0 0 16px;
  padding:14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:#17191e;
}
.price-filter-title{
  margin-bottom:10px;
  font-size:13px;
  font-weight:900;
  color:#e8e8ea;
}
.price-filter-row{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:8px;
}
.price-filter input{
  width:100%;
  min-width:0;
  background:#111318;
  color:#f5f5f7;
  border:1px solid #343842;
  border-radius:12px;
  padding:12px;
  outline:none;
  -webkit-appearance:none;
  appearance:none;
}
.price-filter input::placeholder{color:#7f8590}
.price-filter button{
  border:1px solid #3b4049;
  border-radius:12px;
  padding:0 14px;
  background:#272b32;
  color:#fff;
  font-weight:850;
}
@media(max-width:560px){
  .price-filter-row{grid-template-columns:1fr 1fr}
  .price-filter button{grid-column:1/-1;min-height:44px}
}


/* v10.3 — custom product badge */
.custom-product-chip{
  position:absolute;
  left:9px;
  top:9px;
  max-width:calc(100% - 18px);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  border:1px solid rgba(216,178,77,.45);
  background:rgba(57,48,20,.88);
  color:#f0d989;
  border-radius:999px;
  padding:7px 10px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.1px;
}


/* v10.3.2 — price sorting in categories */
.sort-filter{
  margin:0 0 16px;
  padding:14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:#17191e;
}
.sort-filter-title{
  margin-bottom:10px;
  font-size:13px;
  font-weight:900;
  color:#e8e8ea;
}
.sort-filter-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.sort-price-btn{
  min-height:44px;
  border:1px solid #3b4049;
  border-radius:12px;
  background:#24272e;
  color:#d7d9de;
  font-weight:850;
  padding:10px 12px;
}
.sort-price-btn.active{
  border-color:rgba(216,178,77,.55);
  background:rgba(64,53,23,.58);
  color:#f0d989;
}
@media(max-width:520px){
  .sort-filter-row{grid-template-columns:1fr}
}


/* v10.3.3 — compact filter button with popover */
.sort-toolbar{
  position:relative;
  display:flex;
  justify-content:flex-end;
  margin:0 0 14px;
}
.sort-toggle-btn{
  min-height:42px;
  border:1px solid #3b4049;
  border-radius:12px;
  padding:0 14px;
  background:#24272e;
  color:#fff;
  font-weight:850;
}
.sort-popover{
  position:absolute;
  top:50px;
  right:0;
  z-index:20;
  width:min(260px,calc(100vw - 32px));
  padding:10px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  background:#1b1e24;
  box-shadow:0 18px 45px rgba(0,0,0,.36);
}
.sort-popover-title{
  padding:4px 6px 9px;
  color:#aeb3bd;
  font-size:12px;
  font-weight:850;
}
.sort-price-option{
  display:block;
  width:100%;
  min-height:42px;
  margin-top:6px;
  border:1px solid #343842;
  border-radius:11px;
  background:#24272e;
  color:#e4e6ea;
  font-weight:850;
  text-align:left;
  padding:0 12px;
}
.sort-price-option.active{
  border-color:rgba(216,178,77,.55);
  background:rgba(64,53,23,.58);
  color:#f0d989;
}
.sort-popover.hidden{
  display:none;
}


/* v10.4 — HUETA visual language from supplied references */
:root{
  --hueta-display-font:"Arial Black","Impact","Trebuchet MS",system-ui,sans-serif;
}

/* Heavy playful display type for headings / important UI labels.
   Long descriptions, quantities and ordinary helper text keep the normal UI font. */
h1,h2,h3,
.page-title h1,
.product-title,
.price,
.old-price,
.section-head h2,
.category-card,
.more-btn,
.primary-btn,
.secondary-btn,
.sale-back-btn,
.sort-toggle-btn,
.sort-price-option,
.variant-btn,
.option-title,
.detail-price,
.cart-name,
.total-row,
.nav-item,
.hero .eyebrow,
.hero h1,
.hero p,
.find-row strong,
.promo h3,
.promo-big,
.search-result strong,
.stock-chip,
.custom-product-chip,
.bestseller-chip,
.sale-chip{
  font-family:var(--hueta-display-font);
  font-weight:900;
  letter-spacing:-.02em;
}

/* Product CTA: black rounded button with white doodle accents like the reference. */
.more-btn{
  position:relative;
  isolation:isolate;
  min-height:58px;
  overflow:hidden;
  border:0;
  border-radius:22px;
  background:#0d0e10;
  color:#fff;
  font-size:18px;
  text-align:center;
  box-shadow:none;
}
.more-btn::before,
.more-btn::after{
  content:"";
  position:absolute;
  z-index:-1;
  pointer-events:none;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  opacity:.95;
}
.more-btn::before{
  left:14px;
  bottom:-12px;
  width:95px;
  height:78px;
  background-image:url("/static/assets/button_flower.png");
  filter:brightness(0) invert(1);
}
.more-btn::after{
  right:-2px;
  bottom:-7px;
  width:78px;
  height:78px;
  background-image:url("/static/assets/button_sponge.png");
  filter:brightness(0) invert(1);
}
.more-btn:hover,
.more-btn:focus-visible{
  background:#111317;
}
.more-btn:active{
  transform:scale(.985);
}
.more-btn:disabled{
  opacity:.45;
}

/* Reuse the same button look for the main add-to-cart action in product details. */
.product-detail-body .primary-btn{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  border:0;
  border-radius:22px;
  min-height:58px;
  background:#0d0e10;
  color:#fff;
  font-size:18px;
}
.product-detail-body .primary-btn::before,
.product-detail-body .primary-btn::after{
  content:"";
  position:absolute;
  z-index:-1;
  pointer-events:none;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  opacity:.9;
}
.product-detail-body .primary-btn::before{
  left:16px;
  bottom:-13px;
  width:92px;
  height:74px;
  background-image:url("/static/assets/button_flower.png");
  filter:brightness(0) invert(1);
}
.product-detail-body .primary-btn::after{
  right:0;
  bottom:-8px;
  width:76px;
  height:76px;
  background-image:url("/static/assets/button_sponge.png");
  filter:brightness(0) invert(1);
}

/* Keep helper/description/quantity text clean and readable. */
.product-desc,
.hero-note,
.muted,
.cart-meta,
.stock-text,
.addon-copy small,
input,
textarea,
select,
.qty,
.addon-qty,
#fStock,
.v-stock,
.a-stock{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  letter-spacing:normal;
  font-weight:inherit;
}

/* Slightly stronger product-card typography, matching the supplied card reference. */
.product-title{
  font-size:18px;
  line-height:1.12;
  text-transform:uppercase;
}
.price{
  font-size:25px;
  line-height:1;
}
.old-price{
  font-size:17px;
  font-weight:900;
}


/* v10.5 — HUETA gradient typography */
:root{
  --hueta-gradient:linear-gradient(180deg,#ffe04f 0%,#ffb438 34%,#ff7a47 62%,#ff4f8e 100%);
}

/* Main display text uses the HUETA-style yellow/orange/pink gradient.
   Descriptions, quantities and helper text intentionally stay plain. */
.hero .eyebrow,
.hero h1,
.hero p,
.page-title h1,
.section-head h2,
.product-title,
.price,
.promo h3,
.promo-big,
.find-row strong,
.category-card,
.option-title,
.detail-price,
.cart-name,
.total-row,
.search-result strong,
.sort-popover-title,
.custom-product-chip{
  background:var(--hueta-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  -webkit-text-fill-color:transparent;
  -webkit-text-stroke:.35px rgba(0,0,0,.72);
  text-shadow:0 1px 0 rgba(0,0,0,.18);
}

/* Old price must stay grey and crossed out. */
.old-price{
  background:none;
  color:#8f9299;
  -webkit-text-fill-color:#8f9299;
  -webkit-text-stroke:0;
  text-shadow:none;
}

/* Keep all readable / utility copy plain. */
.product-desc,
.hero-note,
.muted,
.cart-meta,
.stock-text,
.stock-chip,
input,
textarea,
select,
.qty,
.addon-qty,
.addon-copy small{
  background:none !important;
  color:inherit;
  -webkit-text-fill-color:initial;
  -webkit-text-stroke:0;
  text-shadow:none;
}

/* Exact-ish product card CTA from the supplied reference:
   white centered label, white flower doodles, SpongeBob doodle on the right. */
.more-btn{
  position:relative;
  isolation:isolate;
  min-height:62px;
  overflow:hidden;
  border:0 !important;
  border-radius:24px;
  background:#0c0d0f !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  font-size:18px;
  font-family:var(--hueta-display-font);
  font-weight:900;
  letter-spacing:-.02em;
  text-align:center;
  box-shadow:none !important;
  padding:0 86px;
}
.more-btn::before,
.more-btn::after{
  content:"";
  position:absolute;
  pointer-events:none;
  z-index:-1;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  filter:brightness(0) invert(1);
  opacity:.98;
}
.more-btn::before{
  left:10px;
  top:-8px;
  width:115px;
  height:88px;
  background-image:
    url("/static/assets/button_flower.png");
}
.more-btn::after{
  right:8px;
  bottom:-9px;
  width:66px;
  height:66px;
  background-image:url("/static/assets/button_sponge.png");
}

/* Add a second flower without covering the label. */
.more-btn{
  background-image:url("/static/assets/button_flower.png") !important;
  background-repeat:no-repeat !important;
  background-size:76px 76px !important;
  background-position:44% 115% !important;
}
.more-btn:hover,
.more-btn:focus-visible{
  background-color:#101114 !important;
}
.more-btn:active{
  transform:scale(.985);
}

/* Same CTA language inside product details. */
.product-detail-body .primary-btn{
  position:relative;
  isolation:isolate;
  min-height:62px;
  overflow:hidden;
  border:0 !important;
  border-radius:24px;
  background:#0c0d0f !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  font-size:18px;
  font-family:var(--hueta-display-font);
  font-weight:900;
  padding:0 86px;
}
.product-detail-body .primary-btn::before,
.product-detail-body .primary-btn::after{
  content:"";
  position:absolute;
  z-index:-1;
  pointer-events:none;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  filter:brightness(0) invert(1);
}
.product-detail-body .primary-btn::before{
  left:10px;
  top:-8px;
  width:115px;
  height:88px;
  background-image:url("/static/assets/button_flower.png");
}
.product-detail-body .primary-btn::after{
  right:8px;
  bottom:-9px;
  width:66px;
  height:66px;
  background-image:url("/static/assets/button_sponge.png");
}
.product-detail-body .primary-btn{
  background-image:url("/static/assets/button_flower.png") !important;
  background-repeat:no-repeat !important;
  background-size:76px 76px !important;
  background-position:44% 115% !important;
}

@media(max-width:520px){
  .more-btn,
  .product-detail-body .primary-btn{
    min-height:58px;
    padding-left:70px;
    padding-right:70px;
    font-size:16px;
  }
  .more-btn::before,
  .product-detail-body .primary-btn::before{
    width:98px;
    height:76px;
  }
  .more-btn::after,
  .product-detail-body .primary-btn::after{
    width:58px;
    height:58px;
  }
}


/* v10.5.1 — product button matched more closely to supplied reference */
.more-btn,
.product-detail-body .primary-btn{
  position:relative;
  isolation:isolate;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:64px;
  width:100%;
  overflow:hidden;
  border:0 !important;
  border-radius:25px;
  background:#0d0d0f !important;
  background-image:none !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  font-family:var(--hueta-display-font);
  font-size:18px;
  font-weight:900;
  letter-spacing:-.02em;
  text-align:center;
  padding:0 88px;
  box-shadow:none !important;
}

/* small flower, upper-left */
.more-btn::before,
.product-detail-body .primary-btn::before{
  content:"";
  position:absolute;
  left:17px;
  top:8px;
  width:39px;
  height:39px;
  z-index:0;
  pointer-events:none;
  background:url("/static/assets/button_flower.png") center/contain no-repeat;
  filter:brightness(0) invert(1);
  opacity:.82;
}

/* square doodle character, bottom-right */
.more-btn::after,
.product-detail-body .primary-btn::after{
  content:"";
  position:absolute;
  right:10px;
  bottom:-9px;
  width:64px;
  height:64px;
  z-index:0;
  pointer-events:none;
  background:url("/static/assets/button_sponge.png") center/contain no-repeat;
  filter:brightness(0) invert(1);
  opacity:.9;
}

/* larger second flower is painted on the button background, low-left */
.more-btn,
.product-detail-body .primary-btn{
  background-color:#0d0d0f !important;
  background-image:url("/static/assets/button_flower.png") !important;
  background-repeat:no-repeat !important;
  background-size:76px 76px !important;
  background-position:27% 124% !important;
}

/* Keep label visually above the doodles. */
.more-btn{
  text-shadow:0 1px 0 rgba(0,0,0,.3);
}
.more-btn > *,
.product-detail-body .primary-btn > *{
  position:relative;
  z-index:2;
}

.more-btn:hover,
.more-btn:focus-visible,
.product-detail-body .primary-btn:hover,
.product-detail-body .primary-btn:focus-visible{
  background-color:#111214 !important;
}

.more-btn:active,
.product-detail-body .primary-btn:active{
  transform:scale(.985);
}

@media(max-width:520px){
  .more-btn,
  .product-detail-body .primary-btn{
    min-height:60px;
    border-radius:23px;
    padding-left:72px;
    padding-right:72px;
    font-size:16px;
  }

  .more-btn::before,
  .product-detail-body .primary-btn::before{
    left:14px;
    top:8px;
    width:34px;
    height:34px;
  }

  .more-btn::after,
  .product-detail-body .primary-btn::after{
    right:8px;
    bottom:-8px;
    width:58px;
    height:58px;
  }

  .more-btn,
  .product-detail-body .primary-btn{
    background-size:68px 68px !important;
    background-position:29% 125% !important;
  }
}


/* v10.5.2 — smaller doodles + HUETA gradient button text */

/* Make the doodles noticeably smaller and keep more breathing room around the label. */
.more-btn,
.product-detail-body .primary-btn{
  min-height:60px;
  border-radius:24px;
  padding:0 74px;
  background-color:#0d0d0f !important;
  background-image:url("/static/assets/button_flower.png") !important;
  background-repeat:no-repeat !important;
  background-size:48px 48px !important;
  background-position:30% 118% !important;

  /* HUETA logo-like text gradient */
  background-clip:border-box !important;
  -webkit-background-clip:border-box !important;
  color:transparent !important;
  -webkit-text-fill-color:transparent !important;
  -webkit-text-stroke:.55px rgba(0,0,0,.82);
  text-shadow:none !important;
}

/* Put gradient on an inner text layer using mask-free CSS text gradient. */
.more-btn{
  background-color:#0d0d0f !important;
}
.more-btn,
.product-detail-body .primary-btn{
  --btn-text-gradient:linear-gradient(
    180deg,
    #ffe861 0%,
    #ffc94a 23%,
    #ff9a3f 48%,
    #ff6c63 70%,
    #ff4d92 100%
  );
}

/* Because button text itself needs a gradient while the button still has a background image,
   use background layers and clip only the text via an inline span inserted by JS/CSS fallback. */
.more-btn .btn-label,
.product-detail-body .primary-btn .btn-label{
  background:var(--btn-text-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  -webkit-text-fill-color:transparent;
  -webkit-text-stroke:.45px rgba(0,0,0,.72);
  position:relative;
  z-index:3;
}

/* Smaller top-left flower */
.more-btn::before,
.product-detail-body .primary-btn::before{
  left:13px;
  top:10px;
  width:27px;
  height:27px;
  opacity:.82;
}

/* Smaller character on the right */
.more-btn::after,
.product-detail-body .primary-btn::after{
  right:9px;
  bottom:-5px;
  width:45px;
  height:45px;
  opacity:.9;
}

@media(max-width:520px){
  .more-btn,
  .product-detail-body .primary-btn{
    min-height:56px;
    border-radius:22px;
    padding-left:62px;
    padding-right:62px;
    background-size:43px 43px !important;
    background-position:31% 118% !important;
    font-size:15px;
  }

  .more-btn::before,
  .product-detail-body .primary-btn::before{
    left:11px;
    top:9px;
    width:24px;
    height:24px;
  }

  .more-btn::after,
  .product-detail-body .primary-btn::after{
    right:7px;
    bottom:-4px;
    width:40px;
    height:40px;
  }
}


/* v10.5.3 — unified HUETA logo-style CTA text */
.more-btn,
.product-detail-body .primary-btn{
  /* one continuous logo-like fill for the whole label */
  --btn-text-gradient:linear-gradient(
    180deg,
    #ffb13b 0%,
    #ff9638 34%,
    #ff7445 58%,
    #f05267 78%,
    #e94478 100%
  );
}

/* Never split "В корзину" into separate yellow/pink lines.
   Each letter now receives the same vertical yellow→red/pink gradient. */
.more-btn .btn-label,
.product-detail-body .primary-btn .btn-label{
  display:inline-block;
  white-space:nowrap;
  line-height:1;
  background:var(--btn-text-gradient) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
  -webkit-text-fill-color:transparent !important;
  -webkit-text-stroke:0 !important;
  text-shadow:none !important;
  font-size:clamp(13px,4vw,18px);
  font-weight:900;
}

/* Override older rules that made the whole button text transparent. */
.more-btn,
.product-detail-body .primary-btn{
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
}

/* Slightly more room for the one-line label on narrow product cards. */
.more-btn{
  padding-left:48px !important;
  padding-right:48px !important;
}

@media(max-width:520px){
  .more-btn{
    padding-left:44px !important;
    padding-right:44px !important;
  }
  .more-btn .btn-label,
  .product-detail-body .primary-btn .btn-label{
    font-size:14px;
  }
}


/* v10.5.5 — smaller product-card prices */
.product-card .price{
  font-size:20px !important;
  line-height:1.05;
}

.product-card .old-price{
  font-size:14px !important;
  line-height:1.05;
}

@media(max-width:520px){
  .product-card .price{
    font-size:18px !important;
  }

  .product-card .old-price{
    font-size:13px !important;
  }
}


/* v10.5.6 — brighter HUETA gradient inside product details */
:root{
  --hueta-glow-gradient:linear-gradient(
    180deg,
    #ffc85a 0%,
    #ff9f3f 34%,
    #ff744d 60%,
    #ff4f78 82%,
    #f04488 100%
  );
}

/* Product modal key text: use the same HUETA look instead of plain white. */
.product-detail-body h2,
.product-detail-body .option-title,
.product-detail-body .detail-price{
  background:var(--hueta-glow-gradient) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
  -webkit-text-fill-color:transparent !important;
  -webkit-text-stroke:.25px rgba(0,0,0,.65);
  text-shadow:
    0 0 8px rgba(255,154,63,.28),
    0 0 16px rgba(255,79,120,.18);
}

/* Variant names can stay readable, but selected one gets the glow accent. */
.product-detail-body .variant-btn.active{
  border-color:rgba(255,151,64,.62) !important;
  box-shadow:
    0 0 0 1px rgba(255,151,64,.12),
    0 0 14px rgba(255,94,104,.12);
  color:#ffd59b !important;
}

/* Slightly brighter storefront gradient overall. */
.hero .eyebrow,
.hero h1,
.hero p,
.page-title h1,
.section-head h2,
.product-title,
.price,
.promo h3,
.promo-big,
.find-row strong,
.category-card,
.cart-name,
.total-row,
.search-result strong,
.sort-popover-title,
.custom-product-chip{
  background:var(--hueta-glow-gradient) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
  -webkit-text-fill-color:transparent !important;
  text-shadow:
    0 0 7px rgba(255,154,63,.20),
    0 0 13px rgba(255,79,120,.12);
}

/* Keep helper copy plain. */
.product-detail-body .product-desc,
.product-detail-body .stock-text,
.product-detail-body .addon-copy,
.product-detail-body .addon-copy small,
.product-detail-body .variant-btn:not(.active){
  background:none !important;
  -webkit-text-fill-color:initial !important;
  color:inherit !important;
  text-shadow:none !important;
}


/* v10.5.7 — stronger neon-like glow for HUETA text */
:root{
  --hueta-neon-gradient:linear-gradient(
    180deg,
    #ffb347 0%,
    #ff8b3d 34%,
    #ff5f52 60%,
    #ff3f82 82%,
    #f22f9a 100%
  );
}

/* Main glowing headings */
.hero .eyebrow,
.hero h1,
.hero p,
.page-title h1,
.section-head h2,
.product-title,
.price,
.promo h3,
.promo-big,
.find-row strong,
.category-card,
.cart-name,
.total-row,
.search-result strong,
.sort-popover-title,
.custom-product-chip,
.product-detail-body h2,
.product-detail-body .option-title,
.product-detail-body .detail-price{
  background:var(--hueta-neon-gradient) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
  -webkit-text-fill-color:transparent !important;

  /* neon tube feel */
  -webkit-text-stroke:.45px rgba(255,255,255,.28);
  text-shadow:
    0 0 2px rgba(255,255,255,.72),
    0 0 5px rgba(255,145,66,.90),
    0 0 10px rgba(255,88,91,.70),
    0 0 18px rgba(255,55,133,.55),
    0 0 28px rgba(242,47,154,.34);
}

/* Button label gets a tighter glow so it remains readable */
.more-btn .btn-label,
.product-detail-body .primary-btn .btn-label{
  background:var(--hueta-neon-gradient) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
  -webkit-text-fill-color:transparent !important;
  -webkit-text-stroke:.35px rgba(255,255,255,.22);
  text-shadow:
    0 0 2px rgba(255,255,255,.58),
    0 0 5px rgba(255,140,58,.78),
    0 0 9px rgba(255,70,103,.58),
    0 0 14px rgba(238,48,147,.40) !important;
}

/* Selected variant: subtle matching neon accent */
.product-detail-body .variant-btn.active{
  border-color:rgba(255,93,108,.72) !important;
  color:#ffd2b1 !important;
  box-shadow:
    0 0 0 1px rgba(255,118,69,.16),
    0 0 8px rgba(255,99,74,.20),
    0 0 15px rgba(255,54,131,.14);
}

/* Keep all ordinary copy calm */
.product-desc,
.hero-note,
.muted,
.cart-meta,
.stock-text,
.stock-chip,
input,
textarea,
select,
.qty,
.addon-qty,
.addon-copy small,
.product-detail-body .product-desc,
.product-detail-body .stock-text,
.product-detail-body .addon-copy,
.product-detail-body .addon-copy small,
.product-detail-body .variant-btn:not(.active){
  text-shadow:none !important;
  -webkit-text-stroke:0 !important;
}


/* v10.5.7.1 — black outline added on top of 10.5.7 neon text */
.hero .eyebrow,
.hero h1,
.hero p,
.page-title h1,
.section-head h2,
.product-title,
.price,
.promo h3,
.promo-big,
.find-row strong,
.category-card,
.cart-name,
.total-row,
.search-result strong,
.sort-popover-title,
.custom-product-chip,
.product-detail-body h2,
.product-detail-body .option-title,
.product-detail-body .detail-price{
  -webkit-text-stroke:1px rgba(0,0,0,.96) !important;
}

.more-btn .btn-label,
.product-detail-body .primary-btn .btn-label{
  -webkit-text-stroke:.9px rgba(0,0,0,.96) !important;
}


/* v10.5.9 — restore clean white typography */
.hero .eyebrow,
.hero h1,
.hero p,
.page-title h1,
.section-head h2,
.product-title,
.price,
.promo h3,
.promo-big,
.find-row strong,
.category-card,
.cart-name,
.total-row,
.search-result strong,
.sort-popover-title,
.custom-product-chip,
.product-detail-body h2,
.product-detail-body .option-title,
.product-detail-body .detail-price,
.more-btn .btn-label,
.product-detail-body .primary-btn .btn-label{
  background:none !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  -webkit-background-clip:border-box !important;
  background-clip:border-box !important;
  -webkit-text-stroke:0 !important;
  text-shadow:none !important;
}

/* Keep old crossed-out price grey. */
.old-price{
  color:#8f9299 !important;
  -webkit-text-fill-color:#8f9299 !important;
  -webkit-text-stroke:0 !important;
  text-shadow:none !important;
}


/* v10.5.10 — clearer sold-out badge */
.stock-chip{
  background:rgba(118,34,42,.82) !important;
  border:1px solid rgba(255,113,126,.58) !important;
  color:#ffd9dd !important;
  -webkit-text-fill-color:#ffd9dd !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.025),
    0 5px 14px rgba(110,24,35,.28);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}
