:root{
  --pink-25:#fffafd;
  --pink-50:#fff3f7;
  --pink-100:#fde6ef;
  --pink-200:#f6cfde;
  --pink-400:#dc93af;
  --blue-25:#f8fcff;
  --blue-50:#eff8ff;
  --blue-100:#dfeffc;
  --blue-200:#c7e1f3;
  --blue-500:#6e9fbe;
  --white:#ffffff;
  --ink:#413d48;
  --muted:#746f7d;
  --line:rgba(78,78,98,.12);
  --line-strong:rgba(78,78,98,.2);
  --shadow:0 24px 70px rgba(76,77,103,.11);
  --shadow-soft:0 12px 36px rgba(76,77,103,.08);
  --radius-xl:34px;
  --radius-lg:24px;
  --radius-md:18px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  min-height:100vh;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(253,230,239,.9), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(223,239,252,.95), transparent 34rem),
    linear-gradient(180deg,var(--pink-25),var(--blue-25) 52%,#fff);
  line-height:1.5;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.25) 1px,transparent 1px);
  background-size:100% 7px;
  opacity:.14;
  z-index:-1;
}

a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
button{color:inherit}
img{max-width:100%}
[hidden]{display:none!important}
.shell{width:min(1240px,calc(100% - 42px));margin-inline:auto}

h1,h2,h3,h4{
  font-family:"Cormorant Garamond",Georgia,serif;
  letter-spacing:-.045em;
  line-height:.96;
}
h1{font-size:clamp(3.1rem,6vw,5.25rem)}
h2{font-size:clamp(2.2rem,4vw,3.55rem)}
h3{font-size:2rem}
p{color:var(--muted)}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid var(--line);
  background:rgba(255,250,253,.8);
  backdrop-filter:blur(18px);
}
.topbar{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand,.footer-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.brand img,.footer-brand img{
  width:210px;
  max-height:54px;
  object-fit:contain;
}
.brand-fallback{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:28px;
  font-weight:700;
  letter-spacing:-.04em;
}
.brand img + .brand-fallback,
.footer-brand img + .brand-fallback{display:none}
.brand img[src=""] + .brand-fallback,
.footer-brand img[src=""] + .brand-fallback{display:inline}

.navlinks{
  display:flex;
  align-items:center;
  gap:30px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.09em;
  color:var(--muted);
}
.navlinks a{position:relative;padding:30px 0}
.navlinks a:hover,.navlinks a.active{color:var(--ink)}
.navlinks a.active::after{
  content:"";
  position:absolute;
  left:22%;
  right:22%;
  bottom:21px;
  height:2px;
  border-radius:99px;
  background:linear-gradient(90deg,var(--pink-400),var(--blue-500));
}
.bag{
  position:relative;
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border:1px solid var(--line);
  border-radius:50%;
  background:rgba(255,255,255,.72);
  cursor:pointer;
  box-shadow:var(--shadow-soft);
}
.bag-icon{font-size:22px}
.bag [data-cart-count]{
  position:absolute;
  right:-5px;
  top:-5px;
  min-width:22px;
  height:22px;
  display:grid;
  place-items:center;
  padding:0 6px;
  border-radius:999px;
  background:var(--ink);
  color:#fff;
  font-size:10px;
  font-weight:800;
}

.page{padding:34px 0 0}
.hero{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:46px;
  align-items:center;
  padding-block:18px 24px;
}
.kicker,.section-eyebrow,.panel-kicker{
  display:inline-block;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.13em;
  color:#9b7183;
}
.hero-copy h1{max-width:630px;margin:12px 0 14px}
.accent-line{
  width:84px;
  height:4px;
  border-radius:99px;
  background:linear-gradient(90deg,var(--pink-400),var(--blue-500));
  margin:18px 0;
}
.hero-copy>p{
  max-width:620px;
  font-size:17px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:11px;
  margin-top:26px;
}
.primary-action,.secondary-action,.outline,.send{
  border:0;
  border-radius:999px;
  padding:13px 18px;
  font-weight:800;
  cursor:pointer;
  transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease;
}
.primary-action{
  background:linear-gradient(135deg,#e9a6bd,#b8d8ee);
  color:#2f3340;
  box-shadow:0 12px 26px rgba(188,162,190,.24);
}
.secondary-action{
  background:rgba(255,255,255,.8);
  border:1px solid var(--line-strong);
}
.primary-action:hover,.secondary-action:hover,.outline:hover,.send:hover{transform:translateY(-1px)}
.trust{
  display:flex;
  flex-wrap:wrap;
  gap:12px 22px;
  margin-top:25px;
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}
.hero-media{
  position:relative;
  overflow:hidden;
  min-height:500px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.82);
  border-radius:42px;
  background:
    radial-gradient(circle at 35% 30%,rgba(255,255,255,.96),transparent 33%),
    linear-gradient(145deg,var(--pink-100),var(--blue-100));
  box-shadow:var(--shadow);
}
.hero-media img{
  display:block;
  width:100%;
  height:100%;
  max-height:610px;
  object-fit:cover;
}
.hero-badge{
  position:absolute;
  right:28px;
  top:28px;
  width:126px;
  aspect-ratio:1;
  display:grid;
  place-items:center;
  align-content:center;
  text-align:center;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.82);
  background:rgba(255,255,255,.76);
  backdrop-filter:blur(12px);
  box-shadow:var(--shadow-soft);
}
.hero-badge strong{font-family:"Cormorant Garamond",serif;font-size:31px;line-height:1}
.hero-badge small{font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.12em;color:var(--muted)}

.audience-panel{
  margin-top:22px;
  display:grid;
  grid-template-columns:.48fr 1.52fr;
  gap:24px;
  align-items:center;
  padding:22px;
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  background:rgba(255,255,255,.7);
  box-shadow:var(--shadow-soft);
}
.audience-intro h2{font-size:40px;margin-top:5px}
.audience-switch{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.audience-choice{
  display:grid;
  grid-template-columns:48px 1fr;
  align-items:center;
  gap:13px;
  min-height:92px;
  padding:15px;
  text-align:left;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.72);
  cursor:pointer;
  transition:.18s ease;
}
.audience-choice:hover{transform:translateY(-1px);box-shadow:var(--shadow-soft)}
.audience-choice.active{
  border-color:rgba(126,163,191,.38);
  background:linear-gradient(135deg,rgba(253,230,239,.94),rgba(223,239,252,.94));
}
.choice-icon{
  width:48px;height:48px;
  display:grid;place-items:center;
  border-radius:16px;
  background:#fff;
  font-size:21px;
  box-shadow:0 8px 20px rgba(76,77,103,.08);
}
.audience-choice strong{display:block;font-size:15px}
.audience-choice small{display:block;color:var(--muted);font-size:12px;margin-top:3px}

.featured{margin-top:22px}
.barhead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 18px;
  border:1px solid var(--line);
  border-radius:24px 24px 0 0;
  background:rgba(255,255,255,.72);
}
.barhead span{
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.11em;
}
.barhead a{font-size:12px;font-weight:800;color:var(--muted)}
.featured-row{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
  padding:14px;
  border:1px solid var(--line);
  border-top:0;
  border-radius:0 0 24px 24px;
  background:rgba(255,255,255,.64);
  box-shadow:var(--shadow-soft);
}

.featurecard,.product-card{
  position:relative;
  min-width:0;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.84);
  box-shadow:0 10px 28px rgba(76,77,103,.06);
  overflow:hidden;
}
.featurecard{padding:9px}
.product-card{padding:11px}
.featuretag{
  position:absolute;
  z-index:4;
  top:18px;
  left:18px;
  padding:5px 9px;
  border-radius:999px;
  background:rgba(65,61,72,.88);
  color:#fff;
  font-size:9px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.media-frame,.preview-image,.cart-thumb{
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg,var(--pink-50),var(--blue-50));
}
.media-frame::after,.preview-image::after,.cart-thumb::after{
  content:"Fotografia";
  position:absolute;
  inset:0;
  display:none;
  place-items:center;
  color:var(--muted);
  font-size:11px;
  font-weight:700;
}
.image-missing::after{display:grid}
.media-frame img,.preview-image img,.cart-thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}
.feature-media{
  height:136px;
  border-radius:16px;
}
.feature-media img{padding:8px}
.product-media{
  height:224px;
  border-radius:16px;
}
.product-media img{padding:9px}
.photo-count{
  position:absolute;
  right:9px;
  bottom:9px;
  padding:5px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  color:var(--muted);
  backdrop-filter:blur(8px);
  font-size:9px;
  font-weight:800;
}
.product-copy{padding:11px 5px 9px;text-align:center}
.product-copy h4{
  font-size:22px;
  min-height:42px;
  display:grid;
  place-items:center;
}
.product-copy p{
  margin-top:5px;
  min-height:42px;
  font-size:11px;
}
.featurecard h4{
  margin:9px 3px 8px;
  text-align:center;
  font-size:18px;
  min-height:35px;
  display:grid;
  place-items:center;
}
.product-gallery{min-width:0}
.gallery-strip{
  display:flex;
  gap:6px;
  margin-top:7px;
  overflow:auto hidden;
  scrollbar-width:thin;
}
.gallery-thumb{
  flex:0 0 45px;
  height:42px;
  padding:2px;
  overflow:hidden;
  border:1px solid transparent;
  border-radius:11px;
  background:linear-gradient(145deg,var(--pink-50),var(--blue-50));
  cursor:pointer;
}
.gallery-thumb.active{border-color:var(--blue-500);box-shadow:0 0 0 2px rgba(110,159,190,.12)}
.gallery-thumb img{width:100%;height:100%;object-fit:contain}

.qty{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:4px;
  padding:6px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(242,247,251,.75);
}
.qty button{
  width:27px;
  height:27px;
  border:0;
  border-radius:50%;
  background:#fff;
  cursor:pointer;
  font-weight:900;
  box-shadow:0 5px 12px rgba(76,77,103,.08);
}
.qty span{min-width:18px;text-align:center;font-size:12px;font-weight:900}
.qty.compact{width:max-content;margin-top:5px;padding:3px}
.qty.compact button{width:23px;height:23px}

.b2b-banner{
  margin-top:24px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:center;
  padding:28px;
  border:1px solid rgba(125,160,186,.2);
  border-radius:var(--radius-xl);
  background:linear-gradient(135deg,rgba(223,239,252,.85),rgba(253,230,239,.72));
  box-shadow:var(--shadow-soft);
}
.b2b-banner h2{margin:7px 0 10px}
.b2b-banner p{max-width:850px}

.content-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 338px;
  gap:28px;
  align-items:start;
  margin-top:26px;
}
.section-heading{
  display:flex;
  justify-content:space-between;
  gap:28px;
  align-items:end;
  margin-bottom:15px;
}
.section-heading p{max-width:460px;font-size:13px;text-align:right}
.category-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.category-card{
  min-width:0;
  padding:18px;
  border:1px solid var(--line);
  border-radius:24px;
  background:rgba(255,255,255,.72);
  box-shadow:var(--shadow-soft);
  cursor:pointer;
  transition:.18s ease;
}
.category-card:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
.category-card.wide{grid-column:span 2}
.category-top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
}
.category-top h3{font-size:31px}
.category-top p{font-size:11px;font-weight:800}
.category-top span{font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.07em;color:var(--muted)}
.category-copy{margin:9px 0 12px;font-size:12px}
.preview-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:7px;
  margin-bottom:12px;
}
.category-card.wide .preview-grid{grid-template-columns:repeat(6,minmax(0,1fr))}
.preview-image{
  height:72px;
  border-radius:13px;
}
.preview-image img{padding:5px}
.outline{
  width:100%;
  padding:10px 13px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.82);
  font-size:11px;
}

.product-panel{
  margin-top:16px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(255,255,255,.72);
  box-shadow:var(--shadow-soft);
}
.panel-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:14px;
}
.panel-head h2{margin-top:5px}
.panel-count{
  padding:7px 10px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--pink-100),var(--blue-100));
  font-size:11px;
  font-weight:800;
  color:var(--muted);
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:13px;
}

.sidebar{
  position:sticky;
  top:102px;
}
.order-card,.info-card{
  padding:20px;
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(255,255,255,.88);
  box-shadow:var(--shadow-soft);
}
.info-card{margin-top:15px}
.order-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}
.order-head h2{font-size:34px;margin-top:5px}
.order-audience-badge{
  display:inline-flex;
  padding:5px 8px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--pink-100),var(--blue-100));
  font-size:9px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.item-count{
  flex:0 0 auto;
  padding:7px 9px;
  border-radius:999px;
  background:var(--blue-50);
  color:var(--muted);
  font-size:10px;
  font-weight:800;
}
.order-subtitle{font-size:12px;margin:10px 0}
.cart-items{
  display:flex;
  flex-direction:column;
  gap:9px;
  max-height:290px;
  overflow:auto;
  padding:12px 0;
  border-block:1px solid var(--line);
}
.empty{font-size:12px}
.cart-item{
  display:grid;
  grid-template-columns:54px 1fr auto;
  gap:9px;
  align-items:center;
}
.cart-thumb{
  width:54px;
  height:54px;
  border-radius:13px;
}
.cart-thumb img{padding:4px}
.cart-item h5{font-size:11px;line-height:1.15}
.remove{
  width:27px;height:27px;
  border:0;
  border-radius:50%;
  background:var(--pink-50);
  cursor:pointer;
  color:var(--muted);
}
.commercial-note{
  margin:12px 0;
  padding:11px;
  border:1px solid rgba(222,155,180,.22);
  border-radius:15px;
  background:linear-gradient(135deg,rgba(253,230,239,.62),rgba(223,239,252,.58));
  color:var(--muted);
  font-size:11px;
}
.commercial-note strong{color:var(--ink)}
.form-grid,.audience-fields{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.field.full,.audience-fields.full{grid-column:1/-1}
.audience-fields{display:grid}
.field label{
  display:block;
  margin:5px 0 4px;
  font-size:10px;
  font-weight:900;
  color:var(--muted);
}
input,textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:13px;
  padding:10px 11px;
  outline:none;
  background:rgba(255,255,255,.86);
  color:var(--ink);
}
input:focus,textarea:focus{
  border-color:rgba(110,159,190,.55);
  box-shadow:0 0 0 3px rgba(110,159,190,.1);
}
textarea{resize:vertical}
.send-stack{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:13px;
}
.send{padding:12px 13px}
.send.whatsapp{background:#4f9c69;color:#fff}
.send.email{background:var(--ink);color:#fff}
.privacy{
  display:block;
  margin-top:9px;
  text-align:center;
  color:var(--muted);
  font-size:9px;
}
.info-card h3{margin:6px 0 13px}
.info-card ul{
  display:grid;
  gap:10px;
  padding-left:18px;
  color:var(--muted);
  font-size:12px;
}
.info-art{
  height:150px;
  display:grid;
  place-items:center;
  margin-top:15px;
  border-radius:22px;
  background:
    radial-gradient(circle at 70% 28%,rgba(255,255,255,.8),transparent 30%),
    linear-gradient(135deg,var(--pink-200),var(--blue-200));
  overflow:hidden;
}
.info-art span{
  width:72px;height:72px;
  display:grid;place-items:center;
  border-radius:50%;
  border:1px solid rgba(65,61,72,.14);
  background:rgba(255,255,255,.65);
  font-family:"Cormorant Garamond",serif;
  font-size:29px;
  font-weight:700;
}

.bottom-trust{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin:28px auto 34px;
}
.bottom-trust>div{
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.62);
  font-size:12px;
  font-weight:800;
}
.bottom-trust small{display:block;margin-top:4px;color:var(--muted);font-weight:500}

.site-footer{
  border-top:1px solid var(--line);
  background:#3f3d49;
  color:#fff;
}
.footerbar{
  min-height:102px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
}
.footerbar img{filter:brightness(0) invert(1)}
.footerbar p{text-align:center;color:rgba(255,255,255,.68);font-size:12px}
.footlinks{
  display:flex;
  gap:14px;
  font-size:11px;
  font-weight:800;
  color:rgba(255,255,255,.84);
}
.mobile-orderbar{display:none}

body[data-audience="professional"] .audience-panel,
body[data-audience="professional"] .commercial-note{
  --mode-a:#dfeffc;
  --mode-b:#f7dce7;
}

@media (max-width:1120px){
  .content-grid{grid-template-columns:1fr}
  .sidebar{position:static}
  .mobile-orderbar{
    position:fixed;
    z-index:65;
    left:12px;
    right:12px;
    bottom:12px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:11px 13px;
    border:1px solid var(--line);
    border-radius:999px;
    background:rgba(255,255,255,.94);
    box-shadow:0 18px 50px rgba(65,61,72,.22);
    backdrop-filter:blur(16px);
  }
  .mobile-orderbar span{font-size:11px}
  .mobile-orderbar strong{
    padding:8px 11px;
    border-radius:999px;
    background:var(--ink);
    color:#fff;
    font-size:11px;
  }
  .sidebar.showmobile{
    position:fixed;
    z-index:70;
    left:12px;
    right:12px;
    bottom:72px;
    top:auto;
    max-height:78vh;
    overflow:auto;
  }
  .sidebar.showmobile .info-card{display:none}
}

@media (max-width:1000px){
  .navlinks{display:none}
  .hero{grid-template-columns:1fr;gap:20px}
  .hero-media{min-height:0;max-height:620px}
  .audience-panel{grid-template-columns:1fr}
  .featured-row{
    display:flex;
    overflow:auto;
    scroll-snap-type:x mandatory;
  }
  .featurecard{flex:0 0 190px;scroll-snap-align:start}
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .bottom-trust{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:720px){
  .shell{width:min(100% - 24px,1240px)}
  .page{padding-top:18px}
  .topbar{min-height:70px}
  .brand img{width:175px}
  .hero{padding-top:6px}
  .hero-copy>p{font-size:15px}
  .trust{display:none}
  .hero-media{border-radius:28px}
  .hero-badge{width:94px;right:15px;top:15px}
  .hero-badge strong{font-size:24px}
  .audience-panel{padding:15px}
  .audience-switch{grid-template-columns:1fr}
  .b2b-banner{grid-template-columns:1fr;padding:20px}
  .section-heading{display:block}
  .section-heading p{margin-top:8px;text-align:left}
  .category-grid{grid-template-columns:1fr}
  .category-card.wide{grid-column:auto}
  .category-card.wide .preview-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .product-grid{grid-template-columns:1fr}
  .product-media{height:250px}
  .form-grid,.audience-fields{grid-template-columns:1fr}
  .send-stack{grid-template-columns:1fr}
  .bottom-trust{grid-template-columns:1fr}
  .footerbar{
    grid-template-columns:1fr;
    justify-items:center;
    gap:10px;
    padding:22px 0 90px;
  }
  .footerbar p{text-align:center}
  .footlinks{flex-wrap:wrap;justify-content:center}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{transition:none!important;animation:none!important}
}


/* Packaging + automatic order submission */
.pack-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  max-width:100%;
  margin:8px auto 0;
  padding:5px 9px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--pink-100),var(--blue-100));
  color:var(--ink);
  font-size:9px;
  font-weight:900;
  letter-spacing:.035em;
}

.cart-pack{
  display:block;
  margin-top:3px;
  color:var(--muted);
  font-size:9px;
  line-height:1.2;
}

.contact-hint{
  grid-column:1/-1;
  margin-top:-2px;
  color:var(--muted);
  font-size:9px;
}

.honeypot{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}

.send-stack.single{
  grid-template-columns:1fr;
}

.submit-order{
  width:100%;
  background:linear-gradient(135deg,#dfa0b8,#8fb8d2);
  color:#26303b;
  box-shadow:0 12px 28px rgba(128,157,181,.22);
}

.submit-order:disabled{
  cursor:wait;
  opacity:.68;
  transform:none;
}

.order-status{
  min-height:0;
  margin-top:10px;
  padding:0;
  border-radius:13px;
  font-size:10px;
  line-height:1.45;
  text-align:center;
}

.order-status:not(:empty){
  padding:10px 11px;
  border:1px solid var(--line);
  background:var(--blue-50);
}

.order-status.success{
  border-color:rgba(76,146,103,.24);
  background:rgba(224,244,231,.7);
  color:#376648;
}

.order-status.error{
  border-color:rgba(184,91,105,.2);
  background:rgba(255,235,239,.82);
  color:#874d57;
}

.order-status.loading{
  background:linear-gradient(135deg,var(--pink-50),var(--blue-50));
  color:var(--muted);
}


.server-note{
  font-size:10px;
  color:var(--muted);
}
