 
    :root {
      --bg-body: #e5f3ff;
      --bg-card: #ffffff;
      --bg-soft: #f9fafb;
      --bg-accent: #fef3c7;

      --text-main: #0f172a;
      --text-muted: #6b7280;

      --primary: #f97316;
      --primary-dark: #ea580c;
      --accent-red: #ef4444;
      --pine: #065f46;
      --icy: #0ea5e9;

      --radius-md: 18px;
      --radius-lg: 24px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top, #e0f2fe 0, #eff6ff 35%, #fdf2f8 70%, #fefce8 100%);
      color: var(--text-main);
      line-height: 1.5;
    }

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

    button { font-family: inherit; }

    .wrapper {
      max-width: 480px;
      margin: 0 auto;
      background:
        radial-gradient(circle at top, rgba(248, 250, 252, 0.98) 0, #ffffff 55%, #f9fafb 100%);
      min-height: 100vh;
      border-radius: 28px 28px 0 0;
      overflow: hidden;
      padding-bottom: 80px;
      box-shadow:
        0 0 0 3px rgba(148, 163, 184, 0.35),
        0 24px 70px rgba(15, 23, 42, 0.25);
      position: relative;
    }

    @media (min-width: 520px) {
      body { padding: 18px 0; }
    }

    /* Сніжинки */
    .snowflakes {
      pointer-events: none;
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 1;
    }

    .snowflake {
      position: absolute;
      top: -10%;
      color: rgba(148, 163, 184, 0.65);
      font-size: 16px;
      opacity: 0.9;
      animation: snow 12s linear infinite;
      filter: drop-shadow(0 4px 6px rgba(148, 163, 184, 0.7));
    }

    .snowflake:nth-child(1) { left: 5%; animation-duration: 14s; font-size: 18px; }
    .snowflake:nth-child(2) { left: 18%; animation-duration: 11s; font-size: 13px; }
    .snowflake:nth-child(3) { left: 32%; animation-duration: 16s; font-size: 20px; }
    .snowflake:nth-child(4) { left: 50%; animation-duration: 13s; font-size: 15px; }
    .snowflake:nth-child(5) { left: 68%; animation-duration: 17s; font-size: 19px; }
    .snowflake:nth-child(6) { left: 82%; animation-duration: 12s; font-size: 16px; }
    .snowflake:nth-child(7) { left: 94%; animation-duration: 15s; font-size: 14px; }

    @keyframes snow {
      0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
      10%  { opacity: 1; }
      100% { transform: translateY(110vh) translateX(20px) rotate(360deg); opacity: 0; }
    }

    /* Верхній сніг */
    .top-snow {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 26px;
      background: radial-gradient(circle at 10% 130%, #fff 0, transparent 55%),
                  radial-gradient(circle at 35% 140%, #fff 0, transparent 55%),
                  radial-gradient(circle at 65% 125%, #fff 0, transparent 55%),
                  radial-gradient(circle at 90% 130%, #fff 0, transparent 55%);
      z-index: 2;
      pointer-events: none;
      opacity: 0.9;
    }

    /* HEADER */
    .hdr {
      position: relative;
      z-index: 3;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 14px 6px;
      background: linear-gradient(90deg, #0f172a, #1f2937);
      color: #f9fafb;
      font-size: 13px;
    }

    .hdr-left {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .hdr-left i { color: #bfdbfe; font-size: 18px; }

    .hdr-right {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .hdr-tag {
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      border: 1px solid rgba(249, 250, 251, 0.16);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
/* LOADER OVERLAY */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

.loader-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.loader-box {
  background: #0b1120;
  border-radius: 20px;
  padding: 20px 18px 18px;
  max-width: 280px;
  width: 90%;
  text-align: center;
  color: #e5e7eb;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.loader-spinner {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 3px solid rgba(248, 250, 252, 0.2);
  border-top-color: #f97316;
  border-right-color: #f97316;
  margin: 0 auto 12px;
  animation: loader-spin 0.7s linear infinite;
}

@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  font-size: 14px;
  line-height: 1.4;
}

    .hdr-tag i { color: #bbf7d0; }

    /* Гірлянда під хедером */
    .top-garland {
      position: relative;
      z-index: 3;
      padding: 4px 14px 10px;
      background: linear-gradient(to bottom, #111827, transparent);
    }

    .garland-line {
      position: relative;
      height: 14px;
      border-bottom: 2px solid rgba(148, 163, 184, 0.8);
      border-radius: 999px;
      opacity: 0.9;
    }

    .garland-bulb {
      position: absolute;
      top: 6px;
      width: 10px;
      height: 14px;
      border-radius: 999px;
      transform-origin: top center;
      animation: bulb-swing 2.6s ease-in-out infinite alternate;
      box-shadow: 0 0 10px rgba(248, 250, 252, 0.8);
    }

    .garland-bulb.red    { background: #f97373;  left: 10%; animation-delay: .1s; }
    .garland-bulb.green  { background: #22c55e; left: 26%; animation-delay: .3s; }
    .garland-bulb.gold   { background: #fbbf24; left: 42%; animation-delay: .6s; }
    .garland-bulb.blue   { background: #38bdf8; left: 58%; animation-delay: .2s; }
    .garland-bulb.pink   { background: #fb7185; left: 74%; animation-delay: .5s; }
    .garland-bulb.white  { background: #f9fafb; left: 88%; animation-delay: .8s; }

    @keyframes bulb-swing {
      0%   { transform: rotate(-7deg); opacity: .8; }
      100% { transform: rotate(5deg);  opacity: 1; }
    }

    /* Новорічний банер */
   .ny-banner {
    position: absolute;
    z-index: 3;
    top: 10px;
    margin: 0 14px 10px;
    border-radius: 999px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    background: linear-gradient(90deg, #b91c1c, #ea580c);
    color: #fef9c3;
    box-shadow: 0 12px 26px rgba(185, 28, 28, 0.55);
}

    .ny-banner i {
      font-size: 15px;
    }

    .ny-banner span {
      font-weight: 700;
    }

    /* HERO */
    .hero-img {
      position: relative;
      background:
        radial-gradient(circle at 0 0, #fee2e2 0, #fef9c3 30%, #e0f2fe 70%, #eff6ff 100%);
      overflow: hidden;
    
      z-index: 2;
    }

   
   

    .hero-img img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Новорічні іконки збоку hero */
    .hero-ornaments {
      position: absolute;
      right: 6px;
      top: 10px;
      z-index: 3;
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: 13px;
      color: #fef3c7;
      text-shadow: 0 3px 8px rgba(15, 23, 42, 0.8);
    }

    .hero-ornaments span {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(15, 23, 42, 0.7);
      border-radius: 999px;
      padding: 4px 8px;
      border: 1px solid rgba(248, 250, 252, 0.5);
    }

    .hero-ornaments i {
      color: #facc15;
    }

    .badge-main {
      position: absolute;
      top: 10px;
      left: 16px;
      z-index: 3;
      background: rgba(15, 23, 42, 0.96);
      color: #f9fafb;
      padding: 7px 11px;
      border-radius: 999px;
      font-size: 12px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(248, 250, 252, 0.9);
      box-shadow: 0 14px 34px rgba(15, 23, 42, 0.9);
    }

    .badge-main span {
      background: #bbf7d0;
      padding: 2px 8px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      color: #052e16;
    }

    .badge-main i { color: #fde68a; }

    .hero-chips {
      position: absolute;
      left: 14px;
      bottom: 16px;
      z-index: 3;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .chip {
      padding: 5px 9px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.96);
      font-size: 11px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
      color: #e5e7eb;
    }

    .chip i { color: #7dd3fc; }

    .hero-price {
      position: absolute;
      right: 16px;
      bottom: 18px;
      z-index: 3;
      background: #f9fafb;
      color: #0f172a;
      padding: 9px 12px;
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.9);
      box-shadow: 0 20px 45px rgba(148, 163, 184, 0.7);
      min-width: 160px;
    }

    .hero-price-old {
      font-size: 13px;
      text-decoration: line-through;
      color: #9ca3af;
    }

    .hero-price-new {
      font-size: 20px;
      font-weight: 900;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 1px;
      color: var(--accent-red);
    }

    .hero-price-new i { color: var(--pine); }

    .hero-price-note {
      font-size: 11px;
      color: #6b7280;
      margin-top: 2px;
    }

    .hero-body {
      padding: 14px 14px 10px;
      background: #ffffff;
      position: relative;
      z-index: 2;
    }

    .hero-title {
      font-size: 23px;
      font-weight: 900;
      margin-bottom: 6px;
    }

    .hero-title span { color: var(--pine); }

    .hero-sub {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .hero-bullets {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }

    .hero-bullets div {
      border-radius: 999px;
      padding: 6px 9px;
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-bullets div:nth-child(1) {
      background: #ecfdf5;
      color: #065f46;
    }

    .hero-bullets div:nth-child(2) {
      background: #eef2ff;
      color: #3730a3;
    }

    .hero-bullets div:nth-child(3) {
      background: #fef3c7;
      color: #92400e;
    }

    .main-img {
      margin-top: 12px;
      margin-bottom: 12px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(226, 232, 240, 0.9);
    }

    .btn-main {
      width: 100%;
      border: none;
      border-radius: 999px;
      padding: 13px 16px;
      font-size: 17px;
      font-weight: 800;
      cursor: pointer;
    background: linear-gradient(90deg, #fa7730, #ea580c);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 16px 40px #ea580c;
      margin-bottom: 6px;
      transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
    }

   

    .hero-timer {
      font-size: 13px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hero-timer span {
      font-weight: 800;
      color: var(--accent-red);
    }

    /* QUICK STATS */
    .quick-stats {
      padding: 10px 14px 14px;
      background: #f9fafb;
    }

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

    .qs-card {
      border-radius: 18px;
      padding: 8px 6px;
      text-align: center;
      font-size: 11px;
      background: #ffffff;
      box-shadow: 0 8px 20px rgba(148, 163, 184, 0.25);
      position: relative;
    }

    .qs-card::after {
      content: "❄";
      position: absolute;
      top: -10px;
      right: 8px;
      font-size: 12px;
      color: rgba(148, 163, 184, 0.8);
    }

    .qs-number {
      font-size: 17px;
      font-weight: 900;
      margin-bottom: 1px;
      color: #0f172a;
    }

    .qs-label { line-height: 1.2; color: var(--text-muted); }

    .qs-card:nth-child(2) { background: #eef2ff; }
    .qs-card:nth-child(3) { background: #ecfdf5; }

    /* BLOCKS */
    .blk { padding: 14px 14px; border-top: 1px solid rgba(203, 213, 225, 0.7); background: #ffffff; }
    .blk-soft { background: #f9fafb; }
    .blk-accent { background: #fff7ed; }

    .blk-title {
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 6px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .blk-title i {
      color: #f97316;
    }

    .blk-sub {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    /* SHORT CARDS */
    .card-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .card {
      border-radius: var(--radius-md);
      background: #ffffff;
      padding: 9px 11px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      box-shadow: 0 8px 18px rgba(148, 163, 184, 0.15);
      border: 1px solid rgba(226, 232, 240, 0.9);
      position: relative;
    }

    .card::after {
      content: "✶";
      position: absolute;
      top: 6px;
      right: 8px;
      font-size: 11px;
      color: rgba(252, 211, 77, 0.9);
    }

    .card-icon {
      width: 32px;
      height: 32px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 17px;
      color: #fff;
    }

    .card-icon.orange { background: #f97316; }
    .card-icon.blue   { background: #0ea5e9; }
    .card-icon.lime   { background: #22c55e; }
    .card-icon.steel  { background: #6b7280; }
    .card-icon.pine   { background: #065f46; }

    .card-title { font-weight: 700; font-size: 14px; }
    .card-text  { font-size: 13px; color: var(--text-muted); }

    /* MINI STEPS */
    .steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 6px;
      font-size: 14px;
    }

    .step {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 7px 9px;
      border-radius: var(--radius-md);
      background: #ffffff;
      box-shadow: 0 6px 14px rgba(148, 163, 184, 0.2);
      border: 1px solid rgba(226, 232, 240, 0.9);
      position: relative;
    }

    .step::after {
      content: "🎄";
      position: absolute;
      right: 8px;
      top: 6px;
      font-size: 12px;
      opacity: 0.8;
    }

    .step-num {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      border: 2px solid var(--icy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 800;
      color: var(--icy);
      flex-shrink: 0;
      background: #e0f2fe;
    }

    /* PLAID SLIDERS */
    .plaids-section-title {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .plaids-section-title i {
      color: var(--accent-red);
    }

  
  .plaid-card {
    margin-top: 10px;
    padding: 10px 10px 11px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 10px 22px rgba(148, 163, 184, 0.25);
    position: relative;
    overflow: hidden;
  }

  .plaid-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 0 0, rgba(254, 243, 199, 0.4) 0, transparent 55%),
      radial-gradient(circle at 100% 100%, rgba(248, 250, 252, 0.5) 0, transparent 55%);
    pointer-events: none;
    opacity: 0.7;
  }

  .plaid-inner {
    position: relative;
    z-index: 1;
  }

  .plaid-header {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    align-items: flex-start;
    margin-bottom: 6px;
  }

  .plaid-name {
    font-weight: 800;
    font-size: 15px;
  }

  .plaid-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 3px 8px;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    white-space: nowrap;
  }

  .plaid-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
  }

  /* СЛАЙДЕР ВСЕРЕДИНІ КАРТОЧКИ */
  .plaid-card .slider {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #f9fafb;
    margin-bottom: 8px;
  }

  .plaid-card .slider-inner {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .plaid-card .slide {
    display: none;
    width: 100%;
    height: auto;
  }

  .plaid-card .slide.active {
    display: block;
  }

  .plaid-card .slider-controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    padding: 0 4px;
  }

  .plaid-card .slider-btn {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.55);
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(8px);
    transition: transform .12s ease, background .12s ease;
  }

  .plaid-card .slider-btn:hover {
    transform: translateY(-1px);
    background: rgba(15, 23, 42, 0.8);
  }

  .plaid-card .slider-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6px;
    display: flex;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
  }

  .plaid-card .slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(248, 250, 251, 0.6);
    cursor: pointer;
    transition: transform .12s ease, background .12s ease;
  }

  .plaid-card .slider-dot.active {
    background: #facc15;
    transform: scale(1.25);
  }

  /* НИЖНІЙ БЛОК: РОЗМІРИ + ЦІНА ВІД */
  .plaid-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    margin-top: 4px;
  }

  .plaid-sizes {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
  }
  .plaid-bottom .sticky-btn{
    box-shadow: none;
    margin-right: 10px;
  }
  .plaid-sizes-label {
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #9ca3af;
    font-size: 10px;
  }

  .plaid-sizes-text {
    font-size: 12px;
    color: #4b5563;
  }

  .plaid-price-main {
    text-align: right;
  }

  .plaid-price-label {
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #9ca3af;
    font-size: 10px;
  }

  .plaid-price-value {
    font-size: 14px;
    font-weight: 800;
    color: #b91c1c;
  }


    /* SLIDER */
    .slider {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(226, 232, 240, 0.95);
      background: #f9fafb;
    }

    .slider-inner {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .slide {
      display: none;
      width: 100%;
      height: auto;
    }

    .slide.active {
      display: block;
    }

    .slider-controls {
      position: absolute;
      inset: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      pointer-events: none;
      padding: 0 4px;
    }

    .slider-btn {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      border: none;
      background: rgba(15, 23, 42, 0.55);
      color: #f9fafb;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      pointer-events: auto;
      backdrop-filter: blur(8px);
      transition: transform .12s ease, background .12s ease;
    }

    .slider-btn:hover {
      transform: translateY(-1px);
      background: rgba(15, 23, 42, 0.75);
    }

    .slider-dots {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 6px;
      display: flex;
      gap: 4px;
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.55);
      backdrop-filter: blur(8px);
    }

    .slider-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: rgba(248, 250, 252, 0.6);
      cursor: pointer;
      transition: transform .12s ease, background .12s ease;
    }

    .slider-dot.active {
      background: #facc15;
      transform: scale(1.25);
    }

    .plaid-prices {
      margin-top: 8px;
      font-size: 13px;
      display: grid;
      gap: 3px;
    }

    .plaid-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 4px;
    }

    .plaid-size-pill {
      padding: 3px 9px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.8);
      font-size: 11px;
      background: #f9fafb;
    }

    .plaid-price-value {
      font-weight: 700;
      color: var(--primary-dark);
    }

    /* ORDER */
    .order {
      padding: 16px 14px 18px;
      border-top: 2px solid rgba(234, 88, 12, 0.7);
      background:
        radial-gradient(circle at top, #fee2e2 0, #fff7ed 35%, #f9fafb 100%);
      position: relative;
      overflow: hidden;
    }

    .order::before {
      content: "";
      position: absolute;
      inset: auto -20px -18px;
      height: 40px;
      background:
        radial-gradient(circle at 10% -40%, #fff 0, transparent 60%),
        radial-gradient(circle at 40% -40%, #fff 0, transparent 60%),
        radial-gradient(circle at 70% -40%, #fff 0, transparent 60%),
        radial-gradient(circle at 100% -40%, #fff 0, transparent 60%);
      opacity: 0.85;
      pointer-events: none;
    }

    .order h2 {
      font-size: 21px;
      font-weight: 900;
      margin-bottom: 6px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .order h2 i {
      color: #b91c1c;
    }

    .order-sub {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .order-price {
      font-size: 15px;
      margin-bottom: 10px;
    }

    .order-price span {
      font-size: 19px;
      font-weight: 900;
      color: var(--primary-dark);
      margin-left: 4px;
    }

    .order-price::before {
      content: "Було від 633 грн → ";
      text-decoration: line-through;
      color: #6b7280;
      margin-right: 4px;
      font-size: 14px;
    }

    .inp {
      width: 100%;
      border-radius: 14px;
      border: 1px solid rgba(148, 163, 184, 0.9);
      padding: 9px 11px;
      font-size: 15px;
      margin-bottom: 8px;
      outline: none;
      background: #ffffff;
    }

    .inp::placeholder { color: #9ca3af; }

    .inp:focus {
      border-color: var(--icy);
      box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.4);
    }

    .select {
      width: 100%;
      border-radius: 14px;
      border: 1px solid rgba(148, 163, 184, 0.9);
      padding: 8px 11px;
      font-size: 14px;
      margin-bottom: 8px;
      outline: none;
      background: #ffffff;
    }

    .order-note {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
      position: relative;
      z-index: 1;
    }

    /* FOOTER */
    .ftr {
      font-size: 11px;
      color: var(--text-muted);
      text-align: center;
      padding: 10px 10px 14px;
      border-top: 1px solid rgba(203, 213, 225, 0.9);
      background: #f9fafb;
    }

    .ftr a {
      color: inherit;
      text-decoration: none;
    }

    .ftr a:hover {
      text-decoration: underline;
    }

    /* STICKY CTA */
    .sticky {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 50;
      background: #0f172a;
      color: #f9fafb;
    }

    .sticky-inner {
      max-width: 480px;
      margin: 0 auto;
      padding: 7px 10px 9px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .sticky-price {
      font-size: 13px;
      flex: 1;
    }

    .sticky-price span:first-child {
      text-decoration: line-through;
      color: #9ca3af;
      font-size: 12px;
      margin-right: 6px;
    }

    .sticky-price span:last-child {
      font-size: 17px;
      font-weight: 900;
      color: #facc15;
    }

    .sticky-btn {
      border-radius: 999px;
      border: none;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
     background: linear-gradient(90deg, #fa7730, #ea580c);
      color: #fff;
      white-space: nowrap;
      box-shadow: 0 12px 26px #fa7730;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
    }

   .select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 9px 11px;
  font-size: 15px;
  margin-bottom: 8px;
  outline: none;
  background: #ffffff;
  color: #111827;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(to bottom, #e5e7eb, #cbd5f5);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: right 12px center;
}

.select:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35);
}

/* Кнопки розмірів */
.size-group {
  margin-bottom: 10px;
}

.size-label {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.size-options input[type="radio"] {
  display: none;
}

.size-btn {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  font-size: 13px;
  cursor: pointer;
  background: #ffffff;
  color: #374151;
  transition: background .12s ease, color .12s ease, box-shadow .12s ease, border-color .12s ease, transform .08s ease;
}

.size-options input[type="radio"]:checked + .size-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  border-color: #16a34a;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.4);
  transform: translateY(-1px);
}

  