:root {
  --bg-light: #efefef;
  --white: #ffffff;
  --text: #1b1b1b;
  --muted: #7a7a7a;
  --line: #d7d7d7;

  --grad-1: #d63ad8;
  --grad-2: #6e00ff;
  --grad-3: #3b00ff;

  --header-max: 1600px;
  --content-max: 1400px;

  --radius-xl: 26px;
  --radius-pill: 999px;
  --shadow-soft: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg-light);
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 48px, var(--content-max));
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2), var(--grad-3));
  color: var(--white);
  text-align: center;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
}

.topbar p {
  margin: 0;
}

/* GŁÓWNA BELKA */
.header-main {
  display: grid;
  grid-template-columns: 80px minmax(280px, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 18px 0 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

/* Gradient na białym SVG przez maskę */
.logo-mark {
  display: block;
  width: 52px;
  height: 52px;
  background: linear-gradient(180deg, var(--grad-1), var(--grad-2), var(--grad-3));
  -webkit-mask: url("../images/promivo.svg") center / contain no-repeat;
  mask: url("../images/promivo.svg") center / contain no-repeat;
}

/* SEARCH */
.search-box {
  position: relative;
  width: 100%;
}

.search-box input {
  width: 100%;
  height: 58px;
  border: none;
  outline: none;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 0 68px 0 32px;
  font-size: 18px;
  box-shadow: var(--shadow-soft);
}

.search-box input::placeholder {
  color: #8c8c8c;
}

.search-box button {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #9c20ff;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
}

/* AKCJE */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  white-space: nowrap;
  flex-wrap: wrap;
}

.text-link {
  font-size: 18px;
  font-weight: 400;
  transition: 0.2s ease;
}

.text-link:hover,
.icon-link:hover,
.config-btn:hover,
.hero-btn:hover {
  opacity: 0.9;
}

.icon-link {
  position: relative;
  font-size: 32px;
  color: #9c20ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-link {
  margin-left: 4px;
}

.cart-badge {
  position: absolute;
  right: -8px;
  bottom: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #7a00ff;
  color: var(--white);
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  font-weight: 600;
}

/* MENU */
.header-nav {
  border-top: 1px solid #cfcfcf;
  background: transparent;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0 12px;
}

.categories {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.categories a {
  font-size: 16px;
  font-weight: 400;
  transition: 0.2s ease;
}

.categories a:hover {
  color: #8e1cff;
}

.config-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, #e13ad2, #7f19ff);
  box-shadow: none;
  flex-shrink: 0;
  transition: 0.2s ease;
}

/* HERO */
.hero {
  padding: 200px 0 90px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 720px;
}

.hero-subtitle {
  font-size: clamp(28px, 2.2vw, 28px);
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.3;
}

.hero-subtitle span {
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  font-size: clamp(34px, 5vw, 34px);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 32px;
  max-width: 760px;
}

/* BUTTON */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, #e13ad2, #7f19ff);
  box-shadow: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  height: 420px;
  width: 100%;
}

/* KARTY */
.card {
  position: absolute;
  width: min(100%, 440px);
  aspect-ratio: 1.62 / 1;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2), var(--grad-3));
}

/* TYLNA */
.card-back {
  top: 6px;
  left: 10px;
  transform: rotate(-13deg);
  opacity: 0.95;
}


/* PRZEDNIA */
.card-front {
  right: 0;
  bottom: 0;
  transform: rotate(4deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DUŻE LOGO */
.logo-mark.big {
  width: 92px;
  height: 92px;
  background: white;
  -webkit-mask: url("../images/promivo.svg") center / contain no-repeat;
  mask: url("../images/promivo.svg") center / contain no-repeat;
}

/* =========================
   LARGE DESKTOP
========================= */
@media (max-width: 1400px) {
  .header-main {
    grid-template-columns: 72px minmax(220px, 1fr) auto;
    gap: 22px;
  }

  .header-actions {
    gap: 18px;
  }

  .text-link,
  .categories a {
    font-size: 16px;
  }

  .hero {
    padding: 150px 0 80px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
    gap: 36px;
  }

  .hero-visual {
    height: 380px;
  }

  .logo-mark.big {
    width: 82px;
    height: 82px;
  }
}

/* =========================
   TABLET / SMALL DESKTOP
========================= */
@media (max-width: 1200px) {
  .header-main {
    grid-template-columns: 72px 1fr;
    gap: 18px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
  }

  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .categories {
    gap: 18px 22px;
  }

  .hero {
    padding: 150px 0 70px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    max-width: 900px;
    text-align: center;
  }

  .hero-visual {
    max-width: 520px;
    width: 100%;
    height: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .card {
    width: min(100%, 400px);
  }

  .card-back {
    left: 10px;
    top: 0;
  }

  .card-front {
    right: 10px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .topbar {
    padding: 12px 16px;
    font-size: 13px;
  }

  .logo {
    width: 58px;
    height: 58px;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
  }

  .search-box input {
    height: 54px;
    font-size: 16px;
    padding: 0 58px 0 22px;
  }

  .search-box button {
    right: 18px;
    font-size: 22px;
  }

  .header-actions {
    gap: 14px 18px;
  }

  .icon-link {
    font-size: 28px;
  }

  .hero {
    padding: 150px 0 64px;
  }

  .hero-subtitle {
    font-size: 22px;
    text-align: center;
  }

  .hero-title {
    font-size: 37px;
    margin-bottom: 26px;
    text-align: center;
  }

  .hero-visual {
    height: 330px;
    max-width: 470px;
  }

  .card {
    width: min(100%, 360px);
  }

  .card-back::after {
    transform: translate(12px, 12px);
  }

  .logo-mark.big {
    width: 74px;
    height: 74px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .container {
    width: min(100% - 24px, var(--content-max));
  }

  .topbar {
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1.4;
  }

  .header-main {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 14px 0;
  }

  .logo {
    width: 52px;
    height: 52px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .search-box input {
    height: 48px;
    font-size: 15px;
    padding: 0 50px 0 18px;
  }

  .search-box button {
    right: 16px;
    font-size: 18px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 12px 16px;
  }

  .text-link {
    font-size: 15px;
  }

  .icon-link {
    font-size: 24px;
  }

  .header-nav {
    display: none;
  }

  .hero {
    padding: 150px 0 54px;
  }

  .hero-inner {
    gap: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: center;
  }

  .hero-btn {
    min-height: 48px;
    padding: 0 22px;
    font-size: 16px;
  }

  .hero-visual {
    height: 260px;
    max-width: 360px;
  }

  .card {
    width: min(100%, 280px);
    border-radius: 7px;
  }

  .card-back {
    left: 8px;
    top: 6px;
    transform: rotate(-12deg);
  }

  .card-front {
    right: 8px;
    bottom: 0;
    transform: rotate(4deg);
  }

  .logo-mark.big {
    width: 58px;
    height: 58px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, var(--content-max));
  }

  .topbar {
    font-size: 11px;
    padding: 9px 10px;
  }

  .header-main {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 0 14px;
  }

  .logo {
    width: 48px;
    height: 48px;
  }

  .search-box {
    order: 3;
  }

  .header-actions {
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .text-link {
    font-size: 14px;
  }

  .hero {
    padding: 34px 0 46px;
  }

  .hero-subtitle {
    font-size: 16px;
    text-align: center;
  }

  .hero-title {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
  }

  .hero-btn {
    width: 100%;
    min-height: 46px;
    font-size: 15px;
  }

  .hero-visual {
    height: 210px;
    max-width: 290px;
  }

  .card {
    width: min(100%, 220px);
  }

  .logo-mark.big {
    width: 48px;
    height: 48px;
  }
}

/* BESTSELLERY */
.bestsellers {
  padding: 110px 0 120px;
}

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  color: #7c19ff;
}

.section-subtitle {
  margin: 0;
  font-size: 24px;
  color: #7d7d7d;
  font-weight: 400;
}

.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.bestseller-card {
  display: block;
  text-align: center;
  transition: transform 0.2s ease;
}

.bestseller-card:hover {
  transform: translateY(-4px);
}

.bestseller-card__frame {
  border: 4px solid #6f19ff;
  border-radius: 28px;
  padding: 12px;
}

.bestseller-card__inner {
  height: 285px;
  border-radius: 20px;
  background: #f3f3f5;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  padding: 0; /* 🔥 usuń padding */
}

.bestseller-card__inner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
}

.bestseller-card__title {
  margin: 18px 0 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
  color: #1b1b1b;
}

.bestsellers-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 18px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .section-title {
    font-size: 52px;
  }

  .section-subtitle {
    font-size: 22px;
  }

  .bestsellers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .bestseller-card__inner {
    height: 260px;
  }

  .bestseller-card__title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .bestsellers {
    padding: 80px 0 90px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 42px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .bestsellers-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bestseller-card__frame {
    border-radius: 24px;
    padding: 10px;
  }

  .bestseller-card__inner {
    height: 230px;
    border-radius: 18px;
    padding: 20px;
  }

  .bestseller-card__title {
    font-size: 18px;
    margin-top: 14px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 34px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .bestseller-card__frame {
    border-width: 3px;
    border-radius: 20px;
    padding: 8px;
  }

  .bestseller-card__inner {
    height: 200px;
    border-radius: 16px;
    padding: 16px;
  }
}

/* WSZYSTKIE PRODUKTY */
.all-products {
  padding: 40px 0 120px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .all-products {
    padding: 20px 0 90px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.all-products {
  padding: 40px 0 120px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .all-products {
    padding: 20px 0 90px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* FOOTER */
.site-footer {
  background: linear-gradient(90deg, #9a2cff, #ff4db8);
  color: #fff;
  padding: 70px 0;
  margin-top: 80px;
}

/* TOPBAR */
.footer-topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  white-space: nowrap;
}

/* 🔥 TA LINIA */
.footer-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

/* SOCIAL */
.footer-socials {
  display: flex;
  gap: 18px;
  font-size: 18px;
}

.footer-socials a {
  color: white;
  opacity: 0.9;
}

/* DÓŁ */
.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.35fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: start;
}
/* Sekcje strony głównej zarządzane z panelu */
.home-managed-section { position:relative; }
.home-managed-section--soft { background:#f8f6fb; }
.home-managed-section--accent { background:linear-gradient(125deg,#f7eaff 0%,#eeeaff 48%,#f7f4ff 100%); }
.home-managed-section--dark { background:#15131c; color:#fff; }
.home-managed-section--dark .section-title,.home-managed-section--dark .section-subtitle,.home-managed-section--dark .home-section-eyebrow { color:#fff; }
.home-section-eyebrow { margin:0 0 8px; color:#8b18ef; font-size:12px; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
.home-section-action { display:flex; justify-content:center; margin-top:30px; }
.home-section-button { display:inline-flex; min-height:49px; align-items:center; justify-content:center; padding:0 24px; border-radius:999px; background:linear-gradient(90deg,#d10cff,#4000ff); box-shadow:0 12px 28px rgba(112,21,255,.2); color:#fff; font-size:13px; font-weight:800; text-decoration:none; transition:transform .2s ease,filter .2s ease; }
.home-section-button:hover { filter:brightness(1.08); transform:translateY(-2px); }
.home-content-block { padding:70px 0; }
.home-content-block__inner { max-width:900px; margin:0 auto; padding:clamp(28px,5vw,58px); border:1px solid rgba(116,24,183,.13); border-radius:28px; background:#fff; box-shadow:0 22px 60px rgba(55,22,83,.08); text-align:center; }
.home-content-block__inner.has-image { max-width:1100px; display:grid; grid-template-columns:minmax(280px,.9fr) minmax(0,1.1fr); gap:clamp(26px,5vw,60px); align-items:center; text-align:left; }
.home-content-block__inner.has-image.image-right .home-content-block__media { order:2; }
.home-content-block__media { overflow:hidden; border-radius:20px; background:#f1edf5; aspect-ratio:4/3; }
.home-content-block__media img { display:block; width:100%; height:100%; object-fit:cover; }
.home-content-block__copy { min-width:0; }
.home-content-block__inner.has-image .home-content-block__lead,.home-content-block__inner.has-image .home-content-block__body { margin-left:0; margin-right:0; }
.home-hero-image { position:relative; display:block; width:100%; height:420px; min-height:330px; overflow:hidden; border-radius:34px; background:#fff; box-shadow:0 28px 70px rgba(44,12,82,.22); transform:rotate(1.5deg); }
.home-hero-image::before { content:""; position:absolute; inset:10px; z-index:1; border:1px solid rgba(255,255,255,.55); border-radius:26px; pointer-events:none; }
.home-hero-image img { display:block; width:100%; height:100%; min-height:330px; object-fit:cover; }
.home-content-block__inner h2 { margin:0; color:inherit; font-size:clamp(28px,4vw,46px); line-height:1.12; }
.home-content-block__lead { max-width:720px; margin:15px auto 0; color:#62596c; font-size:17px; line-height:1.7; }
.home-content-block__body { max-width:760px; margin:18px auto 0; color:#62596c; font-size:14px; line-height:1.8; }
.home-content-block .home-section-button { margin-top:25px; }
.home-managed-section--accent .home-content-block__inner { border-color:rgba(145,27,232,.24); background:rgba(255,255,255,.82); }
.home-managed-section--dark .home-content-block__inner { border-color:#383342; background:#211e28; box-shadow:0 24px 65px rgba(0,0,0,.3); }
.home-managed-section--dark .home-content-block__lead,.home-managed-section--dark .home-content-block__body { color:#c9c2d1; }
.home-data-notice { margin:0 0 24px; color:#8a8a8a; text-align:center; }
html[data-theme="dark"] .home-managed-section--soft { background:#15131b; }
html[data-theme="dark"] .home-managed-section--accent { background:linear-gradient(125deg,#281731,#191528 55%,#17151d); }
html[data-theme="dark"] .home-content-block__inner { border-color:#393440; background:#211e28; box-shadow:0 24px 65px rgba(0,0,0,.28); }
html[data-theme="dark"] .home-content-block__lead,html[data-theme="dark"] .home-content-block__body { color:#c6bfce; }
@media(max-width:800px){.home-content-block__inner.has-image{grid-template-columns:1fr;text-align:center}.home-content-block__inner.has-image.image-right .home-content-block__media{order:0}.home-content-block__inner.has-image .home-content-block__lead,.home-content-block__inner.has-image .home-content-block__body{margin-left:auto;margin-right:auto}.home-hero-image{width:100%;min-height:260px;transform:none}.home-hero-image img{min-height:260px}}
@media(max-width:700px){.home-content-block{padding:46px 0}.home-content-block__inner{border-radius:21px}.home-content-block__lead{font-size:15px}}

/* LEWA */
.footer-left {
  max-width: 520px;
}

.footer-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* BUTTON */
.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: #e9e9e9;
  color: #6e00ff;
  font-weight: 600;
  font-size: 16px;
  transition: 0.2s;
}

.footer-btn:hover {
  transform: translateY(-2px);
}

/* PRAWA */
.footer-right {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(2, minmax(155px, 1fr));
  gap: 28px;
  text-align: left;
  font-size: 14px;
  line-height: 1.7;
  width: 100%;
}
.all-products--search { min-height: 62vh; padding-top: clamp(54px, 8vw, 105px); }
.search-results-header { max-width: 880px; margin: 0 auto 48px; text-align: center; }
.search-results-eyebrow { margin: 0 0 10px; color: #8a18ed; font-size: 13px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.search-results-header h1 { margin: 0 0 13px; color: var(--pmv-text-theme, #1b1b1b); font-size: clamp(30px, 4vw, 48px); line-height: 1.14; overflow-wrap: anywhere; }
.search-results-header > p:not(.search-results-eyebrow) { margin: 0; color: var(--pmv-muted-theme, #67606e); font-size: 16px; }
.search-clear { display: inline-flex; min-height: 42px; align-items: center; gap: 8px; margin-top: 20px; padding: 0 17px; border: 1px solid var(--pmv-border-theme, #d8d3df); border-radius: 999px; background: var(--pmv-surface, #fff); color: #7d17db; font-size: 13px; font-weight: 700; }
.search-product-card { padding-bottom: 18px; border-radius: 28px; }
.search-product-category { display: inline-flex; margin-top: 10px; padding: 5px 10px; border-radius: 999px; background: color-mix(in srgb, #8618e8 10%, var(--pmv-surface, #fff)); color: #8217e4; font-size: 11px; font-weight: 700; }
.search-product-description { margin: 12px auto 0; color: var(--pmv-muted-theme, #67606e); font-size: 13px; line-height: 1.65; text-align: center; }
.search-empty { padding: clamp(30px, 6vw, 58px) 20px; border: 1px solid var(--pmv-border-theme, #d8d3df); border-radius: 22px; background: var(--pmv-surface, #fff); color: var(--pmv-muted-theme, #67606e); text-align: center; }
.search-empty > i { margin-bottom: 12px; color: #8a18ed; font-size: 34px; }
.search-empty h2 { margin: 0 0 8px; color: var(--pmv-text-theme, #1b1b1b); }
.search-empty p { margin: 0; }
.search-empty a { color: #8518e9; font-weight: 700; }

@media (max-width: 768px) {
  .all-products--search { padding-top: 42px; }
  .search-results-header { margin-bottom: 34px; }
  .search-product-description { max-width: 420px; }
}

.favorite-link { position: relative; }
.favorite-badge { position: absolute; right: -9px; bottom: 2px; display: grid; min-width: 18px; height: 18px; place-items: center; padding: 0 5px; border-radius: 999px; background: #e1308a; color: #fff; font-size: 10px; font-weight: 700; }

.footer-column h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-right p {
  margin: 0 0 7px;
}

.footer-company p { color: rgba(255,255,255,.86); }
.footer-company strong { color: #fff; }

.footer-right a {
  color: #fff;
  text-decoration: none;
}

.footer-right a:hover,
.footer-right a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 3px;
}

.footer-links a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  width: fit-content;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 12px;
  opacity: 0.84;
}

/* LOGO */
.logo-mark.small {
  width: 24px;
  height: 24px;
  background: white;

  -webkit-mask: url("../images/promivo.svg") center / contain no-repeat;
  mask: url("../images/promivo.svg") center / contain no-repeat;
}

@media (max-width: 1100px) {
  .footer-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-line {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-right {
    grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(160px, 1fr));
    text-align: left;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-footer { padding: 52px 0; }
  .footer-topbar { margin-bottom: 36px; }
  .footer-right { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 22px; }
  .footer-company { grid-column: 1 / -1; }
}

@media (max-width: 500px) {
  .footer-right { grid-template-columns: 1fr; }
  .footer-company { grid-column: auto; }
}

.category-page {
  padding: 60px 0 80px;
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.category-title {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  color: #7a00ff;
  margin-bottom: 10px;
}

.category-subtitle {
  color: #888;
  margin-bottom: 40px;
}

.product-page {
  padding: 50px 0 90px;
}

.product-favorite-form { display: flex; justify-content: center; margin: -22px 0 28px; }
.product-favorite-button { display: inline-flex; min-height: 42px; align-items: center; gap: 9px; padding: 0 17px; border: 1px solid #cfc6d8; border-radius: 999px; background: var(--pmv-surface, #fff); color: #7b18d9; font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
.product-favorite-button.is-saved { border-color: #e9a9c8; background: #fff0f7; color: #b22066; }
html[data-theme="dark"] .product-favorite-button.is-saved { background: #3a1d2c; }

.product-page-title {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  color: #7a00ff;
  text-align: center;
  margin: 0 0 10px;
}

.product-page-subtitle {
  text-align: center;
  color: #7b7b7b;
  font-size: 20px;
  margin: 0 0 24px;
}

.product-layout {
  display: grid;
  grid-template-columns: 370px 1fr 360px;
  gap: 36px;
  align-items: start;
  margin-top: 40px;
}

.product-section-title,
.guide-title,
.side-promo-box,
.downloads-header,
.summary-header {
  background: linear-gradient(90deg, #d63ad8, #6e00ff, #3b00ff);
  color: #fff;
  border-radius: 0;
}

.product-section-title {
  padding: 32px 28px;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 26px;
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-field label {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-field select {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 2px solid #bcbcbc;
  background: transparent;
  padding: 0 16px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #1b1b1b;
}

.shipping-note {
  font-size: 14px;
  color: #9b9b9b;
  margin-bottom: 10px;
}

.shipping-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.shipping-card {
  background: linear-gradient(90deg, #d63ad8, #6e00ff, #3b00ff);
  color: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
}

.shipping-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.shipping-card p {
  margin: 0 0 4px;
  font-size: 14px;
}

.shipping-card strong {
  font-size: 18px;
}

.price-table {
  margin-top: 10px;
}

.price-table-head {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 0;
  padding: 0 0 8px;
  font-weight: 700;
  text-align: center;
}

.price-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  align-items: center;
  min-height: 54px;
  border: 2px solid #bdbdbd;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  background: transparent;
}

.price-row .qty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.03);
  border-right: 2px solid #bdbdbd;
}

.price-row .net,
.price-row .gross {
  text-align: center;
  font-size: 15px;
}

.price-row.active {
  border-color: #8a2cff;
}

.price-row.active .qty {
  border-right-color: #8a2cff;
}

.summary-card {
  border: 1px solid #d7cdea;
  background: #efe7f7;
}

.summary-header {
  padding: 22px 20px;
  text-align: center;
}

.summary-header h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.summary-header p {
  margin: 0;
  font-size: 14px;
}

.summary-header strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.summary-banner {
  background: #5f00ff;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
}

.summary-body {
  padding: 14px 0 0;
}

.coupon-row,
.summary-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.35);
  padding: 12px 18px;
  border-top: 1px solid rgba(120, 80, 160, 0.15);
}

.coupon-row span,
.summary-price span {
  font-weight: 600;
}

.coupon-row input {
  width: 140px;
  height: 28px;
  border: none;
  border-radius: 8px;
  padding: 0 10px;
  font-family: "Poppins", sans-serif;
}

.product-cart-btn,
.side-promo-btn,
.download-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.product-cart-btn {
  width: 100%;
  height: 54px;
  margin: 22px 0 26px;
  color: #fff;
  background: linear-gradient(90deg, #d63ad8, #6e00ff);
}

.side-promo-box {
  padding: 26px 20px;
  text-align: center;
  margin-bottom: 18px;
}

.side-promo-box h4 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #fff;
}

.side-promo-box p {
  margin: 0;
  color: #fff;
}

.side-promo-btn {
  width: 230px;
  height: 48px;
  color: #fff;
  background: linear-gradient(90deg, #d63ad8, #6e00ff);
  margin: 0 auto 28px;
}

.downloads-box {
  margin-top: 20px;
}

.downloads-header {
  padding: 26px 20px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}

.download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.download-row span {
  font-size: 24px;
  font-weight: 700;
}

.download-row a {
  min-width: 86px;
  height: 36px;
  color: #fff;
  background: linear-gradient(90deg, #d63ad8, #6e00ff);
  font-size: 14px;
}

.project-guide {
  margin-top: 70px;
}

.guide-title {
  padding: 26px 30px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
}

.guide-content {
  font-size: 18px;
  line-height: 1.65;
}

.guide-content h3 {
  font-size: 24px;
  margin: 36px 0 12px;
}

.guide-content p {
  margin: 0 0 18px;
}

.guide-content ul {
  margin: 0 0 12px 24px;
  padding: 0;
}

.guide-content li {
  margin-bottom: 8px;
}

@media (max-width: 1200px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-page-title {
    font-size: 54px;
  }

  .shipping-grid {
    grid-template-columns: 1fr;
  }

  .side-promo-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .product-page {
    padding: 40px 0 70px;
  }

  .product-page-title {
    font-size: 40px;
  }

  .product-page-subtitle {
    font-size: 16px;
  }

  .product-section-title,
  .guide-title {
    font-size: 24px;
    padding: 22px 18px;
  }

  .price-table-head,
  .price-row {
    grid-template-columns: 110px 1fr 1fr;
  }

  .download-row span {
    font-size: 18px;
  }

  .guide-content {
    font-size: 16px;
  }
}

.product-layout {
  display: grid;
  grid-template-columns: 340px minmax(540px, 1fr) 330px;
  gap: 32px;
  align-items: start;
  margin-top: 40px;
}

.product-left,
.product-center,
.product-right {
  min-width: 0;
}

.with-icon {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d63ad8, #6e00ff, #3b00ff);
  color: #fff;
  box-shadow: none;
  font-size: 18px;
}

.product-section-title,
.guide-title,
.downloads-header,
.summary-header,
.side-promo-box {
  border-radius: 0;
}

.product-section-title {
  padding: 24px 24px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-field label {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-field select {
  width: 100%;
  height: 42px;
  border-radius: 12px;
  border: 2px solid #bcbcbc;
  background: transparent;
  padding: 0 14px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #1b1b1b;
}

.product-center {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.shipping-note {
  font-size: 14px;
  color: #9b9b9b;
  margin-bottom: 10px;
  text-align: left;
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.shipping-card {
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #d63ad8, #6e00ff, #3b00ff);
  color: #fff;
  padding: 22px 16px 18px;
  text-align: center;
  position: relative;
  min-height: 152px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shipping-card:hover {
  transform: translateY(-2px);
}

.shipping-card--active {
  box-shadow: none;
  outline: 3px solid rgba(255,255,255,.72);
  outline-offset: -5px;
}

.shipping-badge {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.shipping-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.2;
}

.shipping-card p {
  margin: 0 0 4px;
  font-size: 13px;
}

.shipping-card strong {
  font-size: 17px;
}

.price-table-head {
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  padding: 0 0 8px;
  font-weight: 700;
  text-align: center;
}

.price-row {
  width: 100%;
  border: 2px solid #bdbdbd;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  background: transparent;
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  align-items: center;
  min-height: 52px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.price-row:hover {
  border-color: #9b42ff;
}

.price-row .qty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.03);
  border-right: 2px solid #bdbdbd;
}

.price-row .net,
.price-row .gross {
  text-align: center;
  font-size: 15px;
}

.price-row.active {
  border-color: #8a2cff;
  box-shadow: none;
}

.price-row.active .qty {
  border-right-color: #8a2cff;
}

.summary-card {
  border: 1px solid #d7cdea;
  background: #efe7f7;
}

.summary-header {
  padding: 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.summary-header h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.summary-header p {
  margin: 0;
  font-size: 13px;
}

.summary-header strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
}

.summary-banner {
  background: #5f00ff;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
}

.summary-body {
  padding: 0;
}

.coupon-row,
.summary-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.35);
  padding: 12px 16px;
  border-top: 1px solid rgba(120, 80, 160, 0.15);
}

.coupon-row span,
.summary-price span {
  font-weight: 600;
}

.coupon-row input {
  width: 128px;
  height: 28px;
  border: none;
  border-radius: 8px;
  padding: 0 10px;
  font-family: "Poppins", sans-serif;
}

.product-cart-btn {
  width: 100%;
  height: 50px;
  margin: 20px 0 24px;
  color: #fff;
  background: linear-gradient(90deg, #d63ad8, #6e00ff);
}

.side-promo-box {
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  margin-bottom: 16px;
}

.side-promo-box h4 {
  margin: 0 0 6px;
  font-size: 19px;
  color: #fff;
}

.side-promo-box p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.side-promo-btn {
  width: 100%;
  height: 46px;
  color: #fff;
  background: linear-gradient(90deg, #d63ad8, #6e00ff);
  margin: 0 0 26px;
}

.downloads-header {
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}

.project-guide {
  margin-top: 64px;
}

.guide-title {
  padding: 22px 24px;
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}

@media (max-width: 1280px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-page-title {
    font-size: 42px;
  }

  .shipping-grid {
    grid-template-columns: 1fr;
  }

  .price-table-head,
  .price-row {
    grid-template-columns: 110px 1fr 1fr;
  }

  .summary-header,
  .downloads-header,
  .side-promo-box,
  .guide-title,
  .product-section-title {
    gap: 10px;
  }

  .section-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex-basis: 40px;
  }
}

.product-input,
.product-form select,
.product-form input[type="number"] {
  width: 100%;
  height: 42px;
  border: 2px solid #b9b9b9;
  border-radius: 14px;
  background: transparent;
  padding: 0 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #1d1d1d;
  outline: none;
  transition: 0.2s ease;
}

.product-input:focus,
.product-form select:focus,
.product-form input[type="number"]:focus {
  border-color: #7a1cff;
  box-shadow: 0 0 0 3px rgba(122, 28, 255, 0.08);
}

.product-form input[type="number"]::-webkit-outer-spin-button,
.product-form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-form input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.product-form .product-field {
  margin-bottom: 18px;
}

.product-form .product-field label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #161616;
}

.product-form .product-field select,
.product-form .product-field input[type="number"],
.product-form .product-field input[type="text"],
.product-form .product-input {
  width: 100%;
  height: 56px;
  border: 2px solid #b7b7b7;
  border-radius: 16px;
  background: #f3f3f3;
  padding: 0 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1b1b1b;
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-form .product-field select:focus,
.product-form .product-field input[type="number"]:focus,
.product-form .product-field input[type="text"]:focus,
.product-form .product-input:focus {
  border-color: #7a1cff;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(122, 28, 255, 0.08);
}

.product-form .product-field input[type="number"]::-webkit-outer-spin-button,
.product-form .product-field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-form .product-field input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.product-form .checkbox-field {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 18px;
  border: 2px solid #b7b7b7;
  border-radius: 16px;
  background: #f3f3f3;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1b1b1b;
}

.product-form .checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #7a1cff;
}
.price-row .net,
.price-row .gross {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.price-row .price-per-unit {
  margin-top: 3px;
  color: #777;
  font-size: 12px;
  font-weight: 500;
}

html[data-theme="dark"] .price-row .price-per-unit {
  color: #b8b3c3;
}

/* Product labels, bestseller marker and promotional prices */
.bestseller-card__frame { position:relative; }
.product-badges { position:absolute; z-index:4; top:11px; right:11px; display:flex; flex-direction:column; align-items:flex-end; gap:6px; pointer-events:none; }
.product-badges--inline { position:static; flex-direction:row; flex-wrap:wrap; align-items:center; pointer-events:auto; }
.product-badge { display:inline-flex; align-items:center; min-height:26px; padding:4px 10px; border-radius:999px; color:#fff; background:#6f19ff; box-shadow:0 6px 16px rgba(42,19,55,.2); font-size:10px; font-weight:800; letter-spacing:.045em; line-height:1; text-transform:uppercase; }
.product-badge--bestseller { background:linear-gradient(135deg,#ffa600,#ff4c00); }
.product-badge--new { background:linear-gradient(135deg,#00a88d,#00c9a7); }
.product-badge--promotion,.product-badge--discount { background:linear-gradient(135deg,#d40c74,#ff3e66); }
.product-card-price { display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:7px; margin:6px 0 0; font-size:13px; }
.product-card-price del { color:#8b818f; font-size:12px; }
.product-card-price strong { color:#8f18ed; font-weight:800; }
.product-title-row { display:flex; flex-wrap:wrap; align-items:center; gap:12px 18px; }
.product-title-row .product-page-title { margin-right:auto; }
.price-old { display:block; margin-bottom:2px; color:#8f8495; font-size:11px; line-height:1.1; text-decoration:line-through; }
.price-row-discount { display:inline-flex; margin-top:4px; padding:3px 6px; border-radius:999px; background:#ffdeea; color:#b71051; font-size:9px; font-weight:800; }
.cart-promotion-price { display:grid; gap:2px; }
.cart-promotion-price del { color:#8f8495; font-size:11px; }
.cart-discount-label { display:inline-flex; margin-top:5px; padding:3px 7px; border-radius:999px; background:#ffdeea; color:#b71051; font-size:10px; font-weight:800; }
html[data-theme="dark"] .product-card-price del,html[data-theme="dark"] .price-old,html[data-theme="dark"] .cart-promotion-price del { color:#b7aabd; }
@media(max-width:640px){.product-badges{top:8px;right:8px}.product-badge{min-height:23px;padding:3px 8px;font-size:9px}.product-title-row{align-items:flex-start}.product-badges--inline{margin-bottom:8px}}
.custom-made-notice{display:flex;align-items:flex-start;gap:13px;max-width:850px;margin:14px 0 26px;padding:15px 17px;border:1px solid #e3c8ff;border-radius:15px;background:#faf5ff;color:#311641}.custom-made-notice>i{margin-top:2px;color:#8a1cff;font-size:18px}.custom-made-notice strong,.custom-made-notice span{display:block}.custom-made-notice span{margin-top:4px;color:#65566f;font-size:13px;line-height:1.55}.price-history-note{margin:9px 2px 0;color:#72657a;font-size:11px;line-height:1.45}.product-card-lowest{display:block;flex-basis:100%;margin-top:4px;color:#776b80;font-size:10px;line-height:1.35;text-align:center}
html[data-theme="dark"] .custom-made-notice{border-color:#563b70;background:#21182b;color:#f2e8f8}html[data-theme="dark"] .custom-made-notice span,html[data-theme="dark"] .price-history-note,html[data-theme="dark"] .product-card-lowest{color:#c6b8cf}html[data-theme="dark"] .legal-callout{background:#251932}html[data-theme="dark"] .legal-form-template{background:#1c1722;border-color:#6d5d77}
.legal-callout{padding:18px 20px;border-left:4px solid #8a1cff;border-radius:12px;background:#f8f1ff}.legal-form-template{margin:16px 0;padding:20px;border:1px dashed #a993b8;border-radius:14px;background:#fcfafc}.legal-form-template p{margin:8px 0}.content-card .admin-table{font-size:13px}.content-card .admin-table td{vertical-align:top;line-height:1.55}

.cart-coupon-panel {
  flex: 1 1 420px;
  padding: 18px;
  border: 1px solid #dedede;
  border-radius: 14px;
  background: #fff;
}

.cart-coupon-panel h3 { margin: 0 0 12px; font-size: 18px; }
.cart-coupon-form { display: flex; gap: 9px; }
.cart-coupon-form input {
  min-width: 0;
  flex: 1;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 0 12px;
  font: inherit;
  text-transform: uppercase;
}
.cart-coupon-form button, .cart-coupon-chip button {
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #d10cff, #2d00ff);
  color: #fff;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
}
.cart-coupon-list { display: grid; gap: 8px; margin-top: 12px; }
.cart-coupon-chip { display: flex; justify-content: space-between; gap: 10px; align-items: center; padding: 9px 10px; border-radius: 10px; background: #f3ecff; color: #54208a; }
.cart-coupon-chip form { margin: 0; }
.cart-coupon-chip button { width: 28px; height: 28px; padding: 0; }
.cart-total-row--discount { color: #6f12cc; }
html[data-theme="dark"] .cart-coupon-panel { background:#17171f; border-color:#363541; }
html[data-theme="dark"] .cart-coupon-chip { background:#2b2040; color:#e4cfff; }

@media (max-width: 680px) {
  .cart-coupon-form { flex-direction: column; }
  .cart-coupon-form button { min-height: 44px; }
}
