:root {
  --ink: #20212a;
  --muted: #6b6f7b;
  --line: #e8e7ee;
  --soft: #f7f8fb;
  --white: #ffffff;
  --pink: #e5308a;
  --cyan: #10a6df;
  --yellow: #ffd23c;
  --green: #18a957;
  --shadow: 0 18px 50px rgba(32, 33, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand-logo,
.piazza-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.brand-logo img,
.piazza-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 74px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.footer-brand img {
  width: 190px;
  max-height: 74px;
  object-fit: contain;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 8px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  min-width: 92px;
  padding: 12px 16px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(32, 33, 42, 0.07);
  text-decoration: none;
  transition: 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  border-color: transparent;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #11131a;
}

.slider,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  transition: opacity 900ms ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.38) 55%, rgba(0, 0, 0, 0.2));
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px clamp(18px, 6vw, 72px);
  color: var(--white);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink), var(--cyan), var(--yellow));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
}

.hero-panel p,
.section-head p,
.about-copy p,
.contact-card p {
  color: inherit;
  font-size: 18px;
  line-height: 1.7;
}

.hero-panel p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.promo-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 8px 0 10px;
}

.promo-pills span {
  padding: 9px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  gap: 10px;
  max-width: 470px;
  width: 100%;
  margin: 24px auto;
}

.countdown div {
  padding: 14px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
}

.countdown strong {
  display: block;
  font-size: 28px;
}

.countdown span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-actions > * {
  flex: 1 1 110px;
}

.product-order-title {
  margin: 12px 0 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.btn-order-small {
  min-height: 40px;
  min-width: 120px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.2;
}

.btn,
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #b90f68);
  box-shadow: 0 12px 26px rgba(229, 48, 138, 0.28);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--green), #0a7f3b);
}

.btn-call {
  background: linear-gradient(135deg, var(--cyan), #087eaa);
}

.btn-outline {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.section-pad {
  padding: 78px clamp(18px, 5vw, 72px);
}

.section-head {
  width: min(900px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
}

.intro {
  background: var(--white);
}

.trust-strip {
  max-width: 1040px;
  margin: 34px auto 0;
  text-align: center;
}

.trust-heading {
  margin-bottom: 14px;
}

.trust-heading h3 {
  margin-bottom: 6px;
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
}

.trust-heading p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.trust-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 150px;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 10px;
  color: var(--white);
  font-weight: 900;
}

.trust-item:nth-child(1) {
  background: linear-gradient(135deg, var(--cyan), #087eaa);
}

.trust-item:nth-child(2) {
  background: linear-gradient(135deg, var(--green), #0a7f3b);
}

.trust-item:nth-child(3) {
  background: linear-gradient(135deg, var(--pink), #b90f68);
}

.trust-item strong {
  display: inline;
  margin: 0;
  font-size: 18px;
}

.trust-item span {
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.products-section,
.about-section {
  background: var(--soft);
}

.reserved-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: 18px 20px;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 210, 60, 0.95), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(229, 48, 138, 0.22);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(32, 33, 42, 0.08);
}

.reserved-bar strong {
  font-size: 18px;
}

.reserved-bar span {
  color: #4b4f5c;
  font-weight: 700;
}

.reserved-bar a {
  padding: 11px 14px;
  color: var(--white);
  background: var(--pink);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.promo-order-top {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: 26px 34px 78px;
  background: #fff;
  border: 2px dashed #ff6aa9;
  border-radius: 22px;
  overflow: hidden;
}

.promo-order-top::before {
  content: "🛒 🏪 💳 🎁";
  position: absolute;
  inset: 0;
  font-size: 42px;
  letter-spacing: 40px;
  opacity: .04;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.promo-order-top-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.promo-order-step {
  display: flex;
  align-items: center;
  gap: 18px;
}

.promo-order-step + .promo-order-step {
  border-left: 2px solid #f1d3df;
  padding-left: 40px;
}

.promo-order-circle {
  width: 82px;
  height: 82px;
  border: 3px solid var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  flex-shrink: 0;
}

.promo-order-step h3 {
  margin: 0 0 8px;
  color: #e5308a;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo-order-step p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.promo-order-badge {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  padding: 12px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg,var(--pink),#b90f68);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(229,48,138,.22);
}

.promo-order-bottom {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 0;
  background: #fff;
  border: 2px dashed #7fc4ff;
  border-radius: 22px;
  overflow: hidden;
}

.promo-order-benefit {
  padding: 24px;
  text-align: center;
  border-right: 1px solid #dfeaf7;
}

.promo-order-benefit:last-child {
  border-right: 0;
}

.promo-order-benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  border: 3px solid currentColor;
}

.promo-order-benefit:nth-child(1){
  color:#1f9a53;
}

.promo-order-benefit:nth-child(2){
  color:#2490ff;
}

.promo-order-benefit:nth-child(3){
  color:#7b3fd0;
}

.promo-order-benefit:nth-child(4){
  color:#ff8a00;
}

.promo-order-benefit h4{
  margin:0 0 8px;
  font-size:16px;
  font-weight:900;
  text-transform:uppercase;
}

.promo-order-benefit p{
  margin:0;
  color:var(--ink);
  font-size:14px;
  line-height:1.5;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(32, 33, 42, 0.08);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 78px 22px 22px;
  background: linear-gradient(180deg, #ffffff, #f3f6fb);
}

.product-share {
  position: absolute;
  top: 14px;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 8px 10px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(32,33,42,.08);
}

.product-share span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.share-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
}

.share-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.share-facebook {
  background: #1877f2;
}

.share-whatsapp {
  background: #25d366;
}

.share-telegram {
  background: #229ed9;
}

.share-email {
  background: #6b6f7b;
}

.product-media img {
  max-height: 240px;
  border-radius: 14px;
  object-fit: contain;
}

.exclusive-ribbon {
  position: absolute;
  top: 66px;
  right: 18px;
  z-index: 1;
  padding: 8px 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.badge {
  position: absolute;
  top: 66px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 99px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.brand-name {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-body h3 {
  margin-bottom: 8px;
}

.subtitle {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
}

.product-body p {
  color: var(--muted);
  line-height: 1.6;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.benefits li {
  padding: 7px 10px;
  border-radius: 99px;
  background: #f2f8fc;
  color: #267496;
  font-size: 12px;
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 14px;
}

.old-price {
  color: var(--muted);
  font-size: 16px;
  text-decoration: line-through;
}

.new-price {
  color: var(--pink);
  font-size: 34px;
  font-weight: 900;
}

.sales-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.ecommerce-section{
  background:var(--soft);
  padding-top:24px;
  padding-bottom:24px;
}

.ecommerce-box{
  display:grid;
  grid-template-columns:200px 1fr;
  align-items:center;
  gap:28px;
  max-width:1180px;
  margin:0 auto;
  padding:34px;
  background:linear-gradient(135deg,#fff7fc,#ffffff);
  border:2px solid rgba(229,48,138,.22);
  border-radius:24px;
  box-shadow:
    0 18px 45px rgba(229,48,138,.10),
    0 12px 30px rgba(32,33,42,.08);
}

.ecommerce-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:180px;
  height:180px;
  padding:10px;
  border-radius:22px;
  background:linear-gradient(135deg,#f7f8fb,#ffffff);
  border:2px solid rgba(229,48,138,.18);
}

.ecommerce-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.ecommerce-content h2{
  margin:0 0 18px;
  max-width:720px;
}

.ecommerce-content .btn{
  min-width:260px;
  background:linear-gradient(135deg,#ffb000,#f07d00);
  box-shadow:0 12px 26px rgba(240,125,0,.28);
}

.ecommerce-content .btn:hover{
  background:linear-gradient(135deg,#ffbf33,#ff8c00);
}

.brand-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 12px 0;
  animation: marquee 32s linear infinite;
}

.brand-card {
  display: grid;
  place-items: center;
  width: 170px;
  height: 82px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.brand-card img {
  width: 98%;
  max-height: 78px;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.about-section {
  background: var(--soft);
}

.about-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.35fr);
  gap: 32px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(32, 33, 42, 0.08);
}

.about-copy {
  padding: 0;
}

.about-copy h2 {
  max-width: 520px;
}

.about-copy p {
  max-width: 620px;
}

.store-card {
  padding: 0;
}

.storefront-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(32, 33, 42, 0.14);
}

.map-section {
  background: var(--white);
}

.map-layout {
  display: grid;
  grid-template-columns: 460px minmax(0, 1fr);
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.map-info {
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.map-info h2 {
  margin-bottom: 20px;
  font-size: clamp(24px, 3vw, 34px);
}

.map-info-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.map-info-block:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.map-info-block h3 {
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 15px;
  text-transform: uppercase;
}

.map-info-block p {
  color: var(--ink);
  line-height: 1.55;
}

.map-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.map-contact-link::before {
  width: 26px;
  text-align: center;
  font-size: 20px;
}

#mapPhone::before {
  content: "☎";
  color: var(--cyan);
}

#mapWhatsapp::before {
  content: "💬";
  color: var(--green);
}

.map-contact-link:hover {
  color: var(--pink);
}

.business-hours {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.hours-row {
  display: grid;
  grid-template-columns: 88px minmax(210px, 1fr);
  gap: 10px;
  align-items: start;
}

.hours-row strong {
  font-weight: 800;
}

.hours-row span {
  color: var(--ink);
  white-space: nowrap;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.map-button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: auto;
  margin: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #b90f68);
  box-shadow: 0 12px 26px rgba(229, 48, 138, 0.28);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #141820;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.footer-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,15,21,.92), rgba(12,15,21,.78)),
    radial-gradient(circle at 52% 22%, rgba(229,48,138,.28), transparent 32%);
}

.footer-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 26px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 520px) 1fr;
  gap: 38px;
  align-items: center;
}

.footer-brand {
  min-width: 0;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
}

.footer-newsletter {
  position: relative;
  padding: 44px 36px 30px;
  color: var(--white);
  text-align: center;
  background: rgba(18,22,30,.72);
  border: 1px solid rgba(229,48,138,.58);
  border-radius: 28px;
  box-shadow:
    0 24px 70px rgba(0,0,0,.32),
    0 0 34px rgba(229,48,138,.22);
}

.footer-newsletter-icon {
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #b90f68);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(229,48,138,.35);
  font-size: 30px;
  font-weight: 900;
}

.footer-newsletter h3 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 2px 18px rgba(229,48,138,.35);
}

.footer-newsletter p {
  max-width: 430px;
  margin: 0 auto 22px;
  color: rgba(255,255,255,.92);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
}

.footer-newsletter form {
  display: grid;
  gap: 12px;
}

.footer-newsletter input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  background: rgba(255,255,255,.96);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

.footer-newsletter .btn {
  width: 100%;
  min-height: 54px;
  font-size: 16px;
  border-radius: 14px;
}

.footer-newsletter small {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
}

#newsletterMessage{
  margin-top:16px;
  padding:16px;
  border-radius:12px;
  font-size:15px;
  font-weight:900;
  line-height:1.45;
}

.newsletter-success{
  color:#0f5132 !important;
  background:#d1e7dd;
  border:1px solid #badbcc;
  text-align:center;
}

.newsletter-success,
.newsletter-success *{
  color:#0f5132 !important;
}

.newsletter-error{
  color:#842029;
  background:#f8d7da;
  border:1px solid #f5c2c7;
}

.footer-social-box {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.footer-social-box h3 {
  position: relative;
  margin: 0;
  padding-bottom: 16px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.footer-social-box h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: var(--pink);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-social {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  transition: 180ms ease;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.footer-social:not([href]),
.footer-social[style*="display:none"] {
  display: none !important;
}

.footer-social svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.footer-social:hover {
  transform: translateY(-3px) scale(1.04);
}

.footer-social-facebook {
  background: #1877f2;
}

.footer-social-instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 12%, #fd5949 38%, #d6249f 62%, #285AEB 100%);
}

.footer-social-youtube {
  background: #ff0000;
}

.footer-legal {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 50px auto 0;
  padding: 18px 0 35px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.72);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.footer-legal a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--yellow);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.sticky-cta a {
  min-height: 46px;
  border-radius: 0;
  background: linear-gradient(135deg,#10a6df,#087eaa);
  font-size: 13px;
}

.sticky-cta a:nth-child(2) {
  background: var(--green);
}

.sticky-cta a:nth-child(3) {
  background: var(--pink);
}

.proof-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 80;

  max-width: 370px;

  padding: 16px 18px;

  border: 2px solid rgba(229,48,138,.35);

  border-radius: 18px;

  background:
    linear-gradient(135deg,#fff6fb,#ffffff);

  box-shadow:
    0 18px 45px rgba(229,48,138,.22);

  color: var(--ink);

  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;

  opacity: 0;
  transform: translateY(14px);

  transition: 300ms ease;
}

.proof-widget.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.modal-card {
  position: relative;
  width: min(560px, calc(100% - 28px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  overflow: auto;
  padding: 28px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 99px;
  background: var(--soft);
  cursor: pointer;
  font-weight: 900;
}

.request-form {
  display: grid;
  gap: 14px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 12px;
}

.form-product-summary {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: #fff8df;
  border: 1px solid rgba(255, 210, 60, 0.8);
  border-radius: 12px;
}

.form-product-summary strong {
  font-size: 15px;
}

.form-product-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.modal-success-message {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid #badbcc;
  border-radius: 16px;
  text-align: center;
  color: #0f5132;
  background: #d1e7dd;
}

.modal-success-message strong {
  font-size: 22px;
}

.modal-success-message span {
  font-size: 15px;
  font-weight: 800;
}

.modal-success-message .btn {
  margin-top: 8px;
}

.modal-error-message {
  padding: 13px 14px;
  border: 1px solid #f5c2c7;
  border-radius: 12px;
  color: #842029;
  background: #f8d7da;
  font-size: 14px;
  font-weight: 800;
}

/* ==========================================
   APERTO / CHIUSO NEGOZIO
========================================== */

.store-status-widget{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  margin-top:16px;
  padding:12px 18px;
  border-radius:14px;
  text-align:center;
  font-weight:900;
}

.store-status-widget strong{
  display:block;
  font-size:15px;
}

.store-status-widget span{
  display:block;
  font-size:13px;
  font-weight:800;
}

.store-status-widget.is-open{
  background:rgba(24,169,87,.12);
  border:2px solid rgba(24,169,87,.35);
  color:#18a957;
}

.store-status-widget.is-closed{
  background:rgba(220,53,69,.10);
  border:2px solid rgba(220,53,69,.30);
  color:#dc3545;
}

.store-status-widget-small{
  margin-bottom:14px;
}

.store-status-widget-footer{
  margin-bottom:18px;
  align-items:flex-start;
  text-align:left;
  max-width:320px;
}

/* ==========================================
   TELEFONO DISABILITATO
========================================== */

.is-disabled{
  pointer-events:none !important;
  cursor:not-allowed !important;
  opacity:.65;
  background:#9aa3ad !important;
  box-shadow:none !important;
  gap:4px;
  padding-top:10px !important;
  padding-bottom:10px !important;
}

.btn-order-small.is-disabled{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  line-height:1.2;
  font-size:12px;
  gap:6px;
  overflow:visible;
}

/* ==========================================
   COUNTDOWN SCADUTO
========================================== */

.countdown-expired{
  grid-column:1/-1;
  padding:18px;
  border-radius:14px;
  text-align:center;
  background:linear-gradient(135deg,#dc3545,#b91c1c);
  color:#fff;
  font-size:20px;
  font-weight:900;
  letter-spacing:.3px;
}

/* ==========================================
   OFFERTA SCADUTA PRODOTTI
========================================== */



.expired-cta-pill{
  margin:0 0 12px;
  padding:10px 12px;
  border-radius:10px;
  background:#fff0f0;
  border:1px solid #f5c2c7;
  color:#b91c1c;
  text-align:center;
  font-size:12px;
  font-weight:900;
}

.is-promo-expired .new-price{
  color:#b91c1c;
}

.is-promo-expired .product-media{
  background:linear-gradient(180deg,#fafafa,#f2f2f2);
}

/* ==========================================
   PRODOTTO CONDIVISO
========================================== */

.shared-product-highlight{
  animation:sharedProductPulse 5s ease;
  border-color:#e5308a !important;
  box-shadow:
    0 0 0 4px rgba(229,48,138,.18),
    0 18px 45px rgba(229,48,138,.25) !important;
}

@keyframes sharedProductPulse{

  0%{
    transform:scale(1);
  }

  15%{
    transform:scale(1.02);
  }

  30%{
    transform:scale(1);
  }

  45%{
    transform:scale(1.02);
  }

  60%{
    transform:scale(1);
  }

  100%{
    transform:scale(1);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 135px 1fr 135px;
  }

  .main-nav {
    display: none;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
  }

  .footer-brand p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-newsletter {
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .footer-social-box {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-actions {
    grid-template-columns: 1fr 1fr;
  }

.card-actions .btn-primary {
  flex-basis: 100%;
}

  .about-card,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .reserved-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .map-info {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 980px){

  .promo-order-top{
    width: calc(100% - 28px);
    margin-left: auto;
    margin-right: auto;
    padding: 26px 22px 78px;
  }

  .promo-order-top-grid{
    grid-template-columns:1fr;
  }

  .promo-order-step + .promo-order-step{
    border-left:0;
    border-top:1px solid #f1d3df;
    padding-left:0;
    padding-top:24px;
  }

  .promo-order-bottom{
    width: calc(100% - 28px);
    grid-template-columns:1fr 1fr;
  }

  .ecommerce-box{
    grid-template-columns:1fr;
    text-align:center;
    padding:26px 20px;
  }

  .ecommerce-icon{
    margin:0 auto;
  }

  .ecommerce-content .btn{
    width:100%;
    min-width:0;
  }
}

@media (max-width: 720px) {
  .btn-order-small.is-disabled{
    font-size:11px;
    padding-left:6px;
    padding-right:6px;
  }

  .btn-order-small{
    min-height:42px;
    padding:9px 12px;
    font-size:12px;
    border-radius:10px;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .footer-content {
    width: min(100% - 28px, 520px);
    padding: 46px 0 20px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand img {
    width: 170px;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.45;
  }

  .footer-newsletter {
    width: 100%;
    padding: 42px 18px 24px;
    border-radius: 22px;
  }

  .footer-newsletter h3 {
    font-size: 32px;
  }

  .footer-newsletter p {
    font-size: 15px;
  }

  .footer-newsletter input,
  .footer-newsletter .btn {
    min-height: 50px;
  }

  .footer-social-box h3 {
    font-size: 22px;
  }

  .footer-social {
    width: 54px;
    height: 54px;
  }

  .footer-legal {
    margin-top: 28px;
    padding-bottom: 92px;
    font-size: 12px;
    line-height: 1.45;
  }

  .brand-logo img,
  .piazza-logo img {
    width: auto;
    max-width: 100%;
    max-height: 58px;
    height: auto;
    border-radius: 12px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-panel {
    padding-top: 74px;
  }

  .countdown,
  .product-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-actions {
    flex-direction: column;
  }

  .trust-item {
    width: 100%;
  }

  .about-card,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .card-actions {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .card-actions .btn {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
  }

  .sticky-cta a {
    flex: 1;
  }

    .promo-order-bottom{
      grid-template-columns:1fr;
    }

    .promo-order-benefit{
      border-right:0;
      border-bottom:1px solid #dfeaf7;
    }

    .promo-order-benefit:last-child{
      border-bottom:0;
    }

    .proof-widget {
      position: fixed !important;
      display: block !important;
    left: 10px !important;
    right: 10px !important;
    top: auto !important;
    bottom: calc(96px + env(safe-area-inset-bottom)) !important;
    z-index: 999999 !important;
    max-width: none !important;
    width: auto !important;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.35;
    border-radius: 14px;
    pointer-events: none;
    will-change: transform, opacity;
    transform: translate3d(0, 14px, 0);
  }

  .proof-widget.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate3d(0, 0, 0) !important;
  }
}
