:root {
      --blue: #2431ff;
      --blue-dark: #1118a8;
      --lime: #d9ff46;
      --pink: #ff4fa2;
      --orange: #ff8a3d;
      --cream: #fbfaf5;
      --ink: #101114;
      --muted: #65676f;
      --line: rgba(16,17,20,.14);
      --white: #fff;
      --shadow: 0 22px 70px rgba(36,49,255,.16);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Heebo", Arial, sans-serif;
      color: var(--ink);
      background: var(--cream);
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    img { max-width: 100%; display: block; }

    .announcement {
      height: 42px;
      background: var(--blue);
      color: var(--lime);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      font-weight: 800;
      letter-spacing: .02em;
      border-radius: 0 0 28px 28px;
      position: relative;
      z-index: 30;
      font-size: 14px;
    }

    .announcement span { opacity: .9; }

    .site-header {
      height: 74px;
      background: var(--lime);
      border-bottom: 3px solid var(--blue);
      position: sticky;
      top: 0;
      z-index: 25;
    }

    .header-inner {
      max-width: 1460px;
      height: 100%;
      margin: 0 auto;
      padding: 0 28px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 20px;
    }

    .nav-main, .header-actions {
      display: flex;
      align-items: center;
      gap: 28px;
      font-weight: 700;
      font-size: 16px;
    }

    .header-actions { justify-content: flex-end; }

    .nav-main a, .header-actions a {
      position: relative;
      padding: 8px 0;
    }

    .nav-main a::after, .header-actions a::after {
      content: "";
      position: absolute;
      right: 0;
      left: 0;
      bottom: 2px;
      height: 2px;
      background: var(--blue);
      transform: scaleX(0);
      transition: .25s ease;
      transform-origin: right;
    }

    .nav-main a:hover::after, .header-actions a:hover::after { transform: scaleX(1); }

    .logo {
      font-size: 30px;
      font-weight: 900;
      color: var(--blue);
      letter-spacing: -.06em;
      line-height: 1;
      text-transform: uppercase;
      transform: scaleY(1.05);
    }

    .bag {
      width: 42px;
      height: 42px;
      border: 2px solid var(--blue);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px 14px 18px 18px;
      position: relative;
      color: var(--blue);
      font-weight: 900;
      background: rgba(255,255,255,.4);
    }

    .bag::before {
      content: "";
      width: 15px;
      height: 9px;
      border: 2px solid var(--blue);
      border-bottom: 0;
      border-radius: 12px 12px 0 0;
      position: absolute;
      top: -7px;
    }

    .mobile-menu-btn { display: none; border: 0; background: transparent; color: var(--blue); font-size: 26px; cursor: pointer; }

    .hero {
      min-height: 730px;
      position: relative;
      overflow: hidden;
      border-bottom: 3px solid var(--blue);
      background:
        radial-gradient(circle at 68% 22%, rgba(217,255,70,.56), transparent 26%),
        radial-gradient(circle at 78% 71%, rgba(255,79,162,.20), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8f6ff 100%);
    }

    .hero-inner {
      max-width: 1460px;
      margin: 0 auto;
      min-height: 730px;
      padding: 70px 34px 44px;
      display: grid;
      grid-template-columns: 44% 56%;
      align-items: center;
      gap: 10px;
      direction: ltr;
    }

    .hero-copy {
      direction: rtl;
      z-index: 5;
      max-width: 610px;
      justify-self: start;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      border: 1.5px solid var(--blue);
      border-radius: 999px;
      color: var(--blue);
      font-weight: 800;
      font-size: 13px;
      background: rgba(255,255,255,.72);
      margin-bottom: 22px;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(72px, 8vw, 138px);
      color: var(--blue);
      font-weight: 900;
      letter-spacing: -.075em;
      line-height: .82;
      text-transform: uppercase;
    }

    .hero h1 span { display: block; }
    .hero h1 .outline {
      -webkit-text-stroke: 2px var(--blue);
      color: transparent;
    }

    .hero-subtitle {
      font-size: 25px;
      font-weight: 800;
      margin: 26px 0 8px;
    }

    .hero-subtitle b { color: var(--blue); }

    .hero-text {
      margin: 0;
      font-size: 18px;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.7;
    }

    .stats {
      display: flex;
      align-items: stretch;
      gap: 0;
      margin: 30px 0;
      max-width: 510px;
    }

    .stat {
      min-width: 130px;
      padding: 0 22px;
      border-inline-start: 1px solid rgba(36,49,255,.35);
    }
    .stat:first-child { padding-right: 0; border: 0; }
    .stat strong { display: block; font-size: 30px; color: var(--blue); font-weight: 900; }
    .stat small { color: var(--blue); font-weight: 700; }

    .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
    .btn {
      height: 58px;
      padding: 0 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border: 2px solid var(--blue);
      font-weight: 800;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .btn:hover { transform: translateY(-3px); }
    .btn-primary { background: var(--blue); color: white; box-shadow: 0 12px 25px rgba(36,49,255,.22); }
    .btn-secondary { background: white; color: var(--blue); }

    .product-stage {
      direction: ltr;
      position: relative;
      height: 620px;
      min-width: 720px;
      transform: translateX(10px);
    }

    .stage-pedestal {
      position: absolute;
      left: 9%;
      right: 2%;
      bottom: 4%;
      height: 128px;
      background: linear-gradient(180deg, #ebe4ff 0%, #c8bbff 100%);
      border-radius: 50% 50% 24px 24px / 25% 25% 25px 25px;
      box-shadow: 0 40px 45px rgba(82,55,255,.18);
      border: 1px solid rgba(36,49,255,.15);
    }

    .pouch {
      position: absolute;
      width: 255px;
      height: 360px;
      border-radius: 17px 17px 28px 28px;
      padding: 26px 20px 20px;
      box-shadow: 0 28px 48px rgba(31,27,66,.22);
      border: 2px solid rgba(16,17,20,.09);
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
    }

    .pouch::before {
      content: "";
      position: absolute;
      top: 13px;
      left: 0;
      right: 0;
      height: 8px;
      border-top: 2px solid rgba(16,17,20,.22);
      border-bottom: 2px solid rgba(16,17,20,.22);
      z-index: -1;
    }

    .pouch::after {
      content: "";
      position: absolute;
      width: 22px;
      height: 22px;
      background: #fff;
      border-radius: 50%;
      top: 15px;
      box-shadow: inset 0 0 0 2px rgba(16,17,20,.06);
    }

    .pouch-green { background: linear-gradient(135deg, #d8ff35, #a8ed30); }
    .pouch-pink { background: linear-gradient(135deg, #ff4fa2, #ff2f83); }
    .pouch-orange { background: linear-gradient(135deg, #ffb04a, #ff7a2c); }

    .pouch .tiny {
      margin-top: 12px;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      opacity: .72;
      white-space: nowrap;
    }

    .pouch .brand {
      color: var(--blue);
      font-size: 44px;
      line-height: .9;
      font-weight: 900;
      letter-spacing: -.09em;
      margin: 40px 0 4px;
      transform: rotate(-4deg);
    }

    .pouch .flavor { font-weight: 800; color: var(--blue); text-align: center; font-size: 17px; }
    .pouch .sugar { margin-top: auto; color: var(--blue); font-size: 28px; font-weight: 900; }

    .candy-row { display: flex; gap: 9px; margin-top: 24px; }
    .candy {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      transform: rotate(18deg);
      background: repeating-linear-gradient(45deg, rgba(255,255,255,.9) 0 4px, rgba(255,255,255,.25) 4px 8px), var(--orange);
      border: 2px solid rgba(255,255,255,.7);
      box-shadow: 0 7px 12px rgba(38,24,22,.18);
    }
    .candy.star { clip-path: polygon(50% 0%,61% 34%,98% 35%,68% 57%,79% 92%,50% 72%,21% 92%,32% 57%,2% 35%,39% 34%); border-radius: 0; }
    .candy.red { background: repeating-linear-gradient(45deg, rgba(255,255,255,.9) 0 4px, rgba(255,255,255,.22) 4px 8px), #ff3f4e; }
    .candy.yellow { background: repeating-linear-gradient(45deg, rgba(255,255,255,.9) 0 4px, rgba(255,255,255,.22) 4px 8px), #ffc228; }

    .p1 { left: 39%; top: 2%; transform: rotate(-8deg); z-index: 4; }
    .p2 { left: 64%; top: 29%; transform: rotate(13deg); z-index: 5; }
    .p3 { left: 12%; top: 36%; transform: rotate(10deg); z-index: 3; }

    .float-candy { position: absolute; filter: drop-shadow(0 10px 12px rgba(30,20,60,.18)); animation: float 4.5s ease-in-out infinite; }
    .float-candy.f1 { left: 4%; top: 16%; transform: rotate(18deg); }
    .float-candy.f2 { right: 5%; top: 15%; animation-delay: -1.2s; }
    .float-candy.f3 { right: 4%; bottom: 10%; animation-delay: -2s; }
    @keyframes float { 0%,100%{ transform: translateY(0) rotate(10deg);} 50%{ transform: translateY(-18px) rotate(18deg);} }

    .marquee {
      height: 62px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--blue);
      color: var(--lime);
      border-bottom: 3px solid var(--blue);
      font-weight: 900;
      font-size: 23px;
      white-space: nowrap;
    }
    .marquee-track { display: flex; gap: 38px; min-width: max-content; animation: scroll 18s linear infinite; }
    @keyframes scroll { from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

    .section { padding: 100px 28px; }
    .section-inner { max-width: 1380px; margin: 0 auto; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 42px;
    }
    .section-head h2 { margin: 0; color: var(--blue); font-size: clamp(42px, 5vw, 76px); line-height: .95; letter-spacing: -.05em; }
    .section-head p { margin: 0; max-width: 520px; color: var(--muted); font-size: 17px; }

    .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .product-card {
      border: 2px solid var(--blue);
      background: white;
      min-height: 480px;
      position: relative;
      overflow: hidden;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
    .product-visual {
      height: 330px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .product-card:nth-child(1) .product-visual { background: #e3ff69; }
    .product-card:nth-child(2) .product-visual { background: #ff8bc2; }
    .product-card:nth-child(3) .product-visual { background: #ffd17e; }
    .product-card:nth-child(4) .product-visual { background: #cfc8ff; }

    .mini-pouch {
      width: 180px;
      height: 248px;
      border-radius: 14px 14px 22px 22px;
      box-shadow: 0 22px 30px rgba(20,20,40,.18);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 38px;
      transform: rotate(-5deg);
      border: 2px solid rgba(16,17,20,.1);
    }
    .mini-pouch strong { color: var(--blue); font-size: 31px; letter-spacing: -.08em; }
    .mini-pouch small { color: var(--blue); font-weight: 800; margin-top: 8px; }
    .product-card:nth-child(even) .mini-pouch { transform: rotate(6deg); }

    .product-info { padding: 20px 20px 22px; border-top: 2px solid var(--blue); }
    .product-info h3 { margin: 0 0 4px; font-size: 22px; }
    .product-info p { margin: 0; color: var(--muted); font-size: 14px; }
    .product-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
    .price { color: var(--blue); font-size: 24px; font-weight: 900; }
    .add-btn { width: 42px; height: 42px; border: 2px solid var(--blue); background: var(--blue); color: #fff; border-radius: 50%; font-size: 24px; cursor: pointer; }

    .feature-band {
      background: var(--lime);
      border-top: 3px solid var(--blue);
      border-bottom: 3px solid var(--blue);
      padding: 0 28px;
    }
    .features { max-width: 1380px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
    .feature { padding: 34px 28px; border-left: 2px solid var(--blue); display: flex; gap: 16px; align-items: flex-start; }
    .feature:last-child { border-left: 0; }
    .feature-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: var(--lime); display: grid; place-items: center; flex: 0 0 auto; font-size: 21px; font-weight: 900; }
    .feature h3 { margin: 0 0 3px; font-size: 18px; }
    .feature p { margin: 0; font-size: 14px; color: #353634; }

    .how {
      background: var(--blue);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .how::before {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      border: 90px solid rgba(217,255,70,.11);
      border-radius: 50%;
      left: -160px;
      top: -220px;
    }
    .how .section-head h2 { color: var(--lime); }
    .how .section-head p { color: rgba(255,255,255,.75); }
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.22); }
    .step { padding: 46px 34px; border-left: 1px solid rgba(255,255,255,.22); position: relative; }
    .step:last-child { border-left: 0; }
    .step-number { font-size: 84px; line-height: 1; font-weight: 900; color: var(--lime); opacity: .95; }
    .step h3 { font-size: 25px; margin: 16px 0 8px; }
    .step p { color: rgba(255,255,255,.74); margin: 0; line-height: 1.7; }

    .cta-box {
      background: #ff78b8;
      border: 3px solid var(--blue);
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      overflow: hidden;
      min-height: 430px;
    }
    .cta-copy { padding: 64px; display: flex; flex-direction: column; justify-content: center; }
    .cta-copy h2 { font-size: clamp(48px, 5vw, 80px); color: var(--blue); margin: 0 0 20px; line-height: .93; letter-spacing: -.05em; }
    .cta-copy p { font-size: 18px; max-width: 620px; margin: 0 0 28px; }
    .cta-art { border-right: 3px solid var(--blue); background: var(--lime); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
    .phone {
      width: 250px;
      height: 410px;
      background: #111;
      border-radius: 34px;
      padding: 12px;
      transform: rotate(-7deg);
      box-shadow: 0 30px 50px rgba(16,17,20,.28);
    }
    .phone-screen { width: 100%; height: 100%; border-radius: 25px; background: #fff; overflow: hidden; display: flex; flex-direction: column; }
    .phone-top { background: var(--blue); color: var(--lime); padding: 16px 14px; font-weight: 900; }
    .phone-chat { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
    .bubble { max-width: 88%; padding: 10px 13px; border-radius: 15px; font-size: 13px; }
    .bubble.in { align-self: flex-start; background: #f0f0f0; }
    .bubble.out { align-self: flex-end; background: #d8ffb0; }
    .phone-action { margin: auto 14px 14px; background: #25D366; color: white; border-radius: 13px; padding: 12px; text-align: center; font-weight: 800; }

    .faq { max-width: 980px; margin: 0 auto; }
    .faq-item { border-top: 2px solid var(--blue); }
    .faq-item:last-child { border-bottom: 2px solid var(--blue); }
    .faq-q { width: 100%; padding: 22px 0; border: 0; background: transparent; display: flex; justify-content: space-between; align-items: center; text-align: right; color: var(--blue); font-weight: 800; font-size: 20px; cursor: pointer; }
    .faq-q span { font-size: 28px; transition: transform .2s ease; }
    .faq-a { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .25s ease; }
    .faq-a p { margin: 0; padding: 0 0 22px; line-height: 1.7; }
    .faq-item.open .faq-a { max-height: 160px; }
    .faq-item.open .faq-q span { transform: rotate(45deg); }

    footer { background: var(--ink); color: white; padding: 70px 28px 30px; }
    .footer-grid { max-width: 1380px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 60px; }
    .footer-brand .logo { color: var(--lime); font-size: 42px; }
    .footer-brand p { color: rgba(255,255,255,.62); max-width: 400px; line-height: 1.7; }
    .footer-col h4 { color: var(--lime); margin: 0 0 14px; }
    .footer-col a { display: block; color: rgba(255,255,255,.72); margin: 8px 0; }
    .footer-bottom { max-width: 1380px; margin: 50px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); display: flex; justify-content: space-between; color: rgba(255,255,255,.45); font-size: 13px; }

    .floating-whatsapp {
      position: fixed;
      left: 24px;
      bottom: 24px;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: #25D366;
      color: white;
      display: grid;
      place-items: center;
      font-size: 27px;
      box-shadow: 0 14px 30px rgba(0,0,0,.22);
      z-index: 40;
      border: 3px solid white;
    }

    .mobile-drawer {
      display: none;
      position: fixed;
      top: 116px;
      right: 0;
      left: 0;
      background: var(--lime);
      border-bottom: 3px solid var(--blue);
      z-index: 24;
      padding: 22px;
    }
    .mobile-drawer a { display: block; padding: 13px 0; font-weight: 800; border-bottom: 1px solid rgba(36,49,255,.2); }
    .mobile-drawer.open { display: block; }

    @media (max-width: 1100px) {
      .hero-inner { grid-template-columns: 1fr; padding-top: 54px; }
      .hero-copy { max-width: 760px; justify-self: center; text-align: center; }
      .hero-text { margin-inline: auto; }
      .stats { margin-inline: auto; justify-content: center; }
      .hero-cta { justify-content: center; }
      .product-stage { width: 100%; min-width: 0; transform: none; margin-top: 10px; }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .features { grid-template-columns: repeat(2, 1fr); }
      .feature:nth-child(2) { border-left: 0; }
      .feature:nth-child(-n+2) { border-bottom: 2px solid var(--blue); }
      .cta-box { grid-template-columns: 1fr; }
      .cta-art { border-right: 0; border-top: 3px solid var(--blue); min-height: 460px; }
      .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
      .footer-col:last-child { display: none; }
    }

    @media (max-width: 760px) {
      .announcement { height: 36px; font-size: 11px; border-radius: 0 0 18px 18px; }
      .site-header { height: 64px; }
      .header-inner { padding: 0 16px; grid-template-columns: 1fr auto 1fr; }
      .nav-main, .header-actions a:not(.bag) { display: none; }
      .mobile-menu-btn { display: block; justify-self: start; }
      .header-actions { gap: 0; }
      .logo { font-size: 25px; }
      .bag { width: 38px; height: 38px; }
      .mobile-drawer { top: 100px; }

      .hero, .hero-inner { min-height: auto; }
      .hero-inner { padding: 44px 18px 20px; display: flex; flex-direction: column; }
      .hero h1 { font-size: 64px; }
      .hero-subtitle { font-size: 20px; }
      .hero-text { font-size: 16px; }
      .stats { width: 100%; margin: 22px 0; }
      .stat { min-width: 0; flex: 1; padding: 0 10px; }
      .stat strong { font-size: 24px; }
      .stat small { font-size: 11px; }
      .btn { height: 52px; padding: 0 22px; }
      .hero-cta .btn { flex: 1; min-width: 145px; }

      .product-stage { height: 450px; transform: scale(.9); transform-origin: top center; margin-bottom: -30px; }
      .stage-pedestal { left: 1%; right: 1%; }
      .pouch { width: 175px; height: 250px; padding: 18px 12px; }
      .pouch .tiny { font-size: 7px; }
      .pouch .brand { font-size: 30px; margin-top: 30px; }
      .pouch .flavor { font-size: 11px; }
      .pouch .sugar { font-size: 18px; }
      .candy { width: 30px; height: 30px; }
      .p1 { left: 37%; top: 2%; }
      .p2 { left: 53%; top: 36%; }
      .p3 { left: 6%; top: 41%; }

      .section { padding: 68px 16px; }
      .section-head { display: block; }
      .section-head h2 { margin-bottom: 18px; }
      .products-grid { grid-template-columns: 1fr; gap: 14px; }
      .product-card { min-height: 440px; }
      .product-visual { height: 290px; }
      .features { grid-template-columns: 1fr; }
      .feature { border-left: 0; border-bottom: 2px solid var(--blue) !important; }
      .feature:last-child { border-bottom: 0 !important; }
      .steps { grid-template-columns: 1fr; }
      .step { border-left: 0; border-bottom: 1px solid rgba(255,255,255,.22); padding-inline: 10px; }
      .step:last-child { border-bottom: 0; }
      .cta-copy { padding: 42px 24px; }
      .cta-art { min-height: 420px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col:last-child { display: block; }
      .footer-bottom { display: block; line-height: 1.8; }
      .floating-whatsapp { width: 56px; height: 56px; left: 16px; bottom: 16px; }
    }

/* Django pages */
body.menu-open { overflow: hidden; }
.page-shell { min-height: 60vh; }
.page-hero { padding: 78px 24px 42px; border-bottom: 3px solid var(--blue); background: #fff; }
.page-hero-inner { max-width: 1320px; margin: 0 auto; }
.page-hero h1 { margin: 0; color: var(--blue); font-size: clamp(48px, 7vw, 92px); line-height: .95; letter-spacing: -.055em; }
.page-hero p { max-width: 650px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.content-wrap { max-width: 1320px; margin: 0 auto; padding: 54px 24px 90px; }
.messages { max-width: 1320px; margin: 18px auto 0; padding: 0 24px; }
.message { padding: 14px 18px; background: var(--lime); border: 2px solid var(--blue); border-radius: 14px; font-weight: 700; }

.product-visual img { width: 100%; height: 100%; object-fit: cover; }
.product-card-link { display:block; }
.product-card .mini-pouch { box-shadow: 0 22px 50px rgba(20, 20, 40, .18); }
.product-card form { margin:0; }
.add-btn:disabled { opacity:.45; cursor:not-allowed; }
.old-price { text-decoration: line-through; color: var(--muted); font-size: 15px; margin-inline-start: 8px; }
.stock-note { font-size: 13px; font-weight: 700; color: #217a3c; }
.stock-note.out { color:#a82121; }

.catalog-toolbar { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:28px; }
.filter-pill { border:1.5px solid var(--blue); color:var(--blue); padding:9px 16px; border-radius:999px; font-weight:800; }
.filter-pill.active, .filter-pill:hover { background:var(--blue); color:white; }

.product-detail { display:grid; grid-template-columns: 1.05fr .95fr; gap:54px; align-items:start; direction:ltr; }
.product-gallery, .product-copy { direction:rtl; }
.product-main-image { min-height:620px; border:3px solid var(--blue); background:#f2f0ff; display:flex; align-items:center; justify-content:center; overflow:hidden; border-radius:34px; }
.product-main-image img { width:100%; height:100%; min-height:620px; object-fit:cover; }
.product-placeholder-large { width:300px; height:430px; border-radius:24px 24px 34px 34px; transform:rotate(-5deg); display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; padding:30px; box-shadow:0 34px 70px rgba(0,0,0,.2); position:relative; }
.product-placeholder-large::before { content:""; position:absolute; top:20px; width:22px; height:22px; border-radius:50%; background:#fff; }
.product-placeholder-large strong { font-size:56px; letter-spacing:-.07em; }
.product-placeholder-large small { font-size:20px; font-weight:800; }
.gallery-thumbs { display:flex; gap:12px; margin-top:14px; }
.gallery-thumbs img { width:92px; height:92px; object-fit:cover; border:2px solid var(--blue); border-radius:16px; }
.product-copy .eyebrow { margin-bottom:16px; }
.product-copy h1 { font-size:clamp(50px,6vw,88px); color:var(--blue); line-height:.96; margin:0 0 18px; letter-spacing:-.055em; }
.product-copy .lead { font-size:20px; color:var(--muted); line-height:1.7; }
.detail-price { font-size:36px; font-weight:900; margin:24px 0 8px; }
.detail-actions { display:flex; gap:12px; align-items:stretch; margin-top:28px; flex-wrap:wrap; }
.qty-input { width:92px; min-height:56px; border:2px solid var(--blue); border-radius:16px; padding:0 14px; text-align:center; font-weight:800; background:white; }
.detail-actions .btn { border:none; cursor:pointer; }
.contact-buttons { display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.contact-button { padding:12px 16px; border:1.5px solid var(--blue); border-radius:14px; color:var(--blue); font-weight:800; background:white; }
.product-description { margin-top:36px; padding-top:28px; border-top:1px solid var(--line); line-height:1.8; }

.cart-layout, .checkout-layout { display:grid; grid-template-columns:minmax(0,1fr) 390px; gap:30px; align-items:start; }
.cart-list, .checkout-form-card, .summary-card, .account-card, .empty-state { background:white; border:2px solid var(--blue); border-radius:26px; }
.cart-list { overflow:hidden; }
.cart-row { display:grid; grid-template-columns:110px minmax(0,1fr) 130px 110px; gap:18px; align-items:center; padding:20px; border-bottom:1px solid var(--line); }
.cart-row:last-child { border-bottom:0; }
.cart-thumb { width:100px; height:100px; border-radius:18px; overflow:hidden; display:flex; align-items:center; justify-content:center; font-weight:900; }
.cart-thumb img { width:100%; height:100%; object-fit:cover; }
.cart-title { font-size:20px; font-weight:900; }
.cart-row form { margin:0; }
.quantity-control { display:flex; gap:8px; align-items:center; }
.quantity-control input { width:66px; border:1.5px solid var(--blue); border-radius:10px; padding:9px; text-align:center; }
.link-button { border:0; background:transparent; color:#a62020; text-decoration:underline; cursor:pointer; padding:6px 0; }
.summary-card { padding:26px; position:sticky; top:96px; }
.summary-card h2 { margin-top:0; }
.summary-line { display:flex; justify-content:space-between; gap:15px; padding:12px 0; border-bottom:1px solid var(--line); }
.summary-line.total { font-size:23px; font-weight:900; border-bottom:0; }
.summary-card .btn { width:100%; margin-top:18px; }
.empty-state { padding:70px 25px; text-align:center; }
.empty-state h2 { color:var(--blue); font-size:42px; margin:0 0 12px; }

.checkout-form-card { padding:30px; }
.checkout-form-card h2 { margin-top:0; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group { display:flex; flex-direction:column; gap:7px; }
.form-group.full { grid-column:1/-1; }
.form-group label { font-weight:800; }
.form-group input:not([type=radio]):not([type=checkbox]), .form-group select, .form-group textarea,
.auth-form input { width:100%; border:1.5px solid #b8b9c3; border-radius:13px; padding:13px 14px; background:white; outline:none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus, .auth-form input:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(36,49,255,.1); }
.errorlist { color:#a51f1f; margin:6px 0; padding-right:18px; }
.form-errors { padding:14px 18px; background:#fff0f0; border:1.5px solid #d52b2b; border-radius:14px; margin-bottom:18px; }
.radio-list > div, #id_contact_method > div { margin:8px 0; }
.terms-row { margin-top:18px; font-weight:700; }
.checkout-submit { width:100%; border:0; cursor:pointer; margin-top:22px; }
.security-note { margin-top:16px; padding:14px; background:#f2f4ff; border-radius:12px; color:var(--muted); line-height:1.6; font-size:14px; }

.success-card { max-width:820px; margin:0 auto; text-align:center; background:white; border:3px solid var(--blue); border-radius:34px; padding:55px 35px; }
.success-icon { width:82px; height:82px; margin:0 auto 20px; border-radius:50%; background:var(--lime); color:var(--blue); display:flex; align-items:center; justify-content:center; font-size:42px; font-weight:900; }
.success-card h1 { color:var(--blue); font-size:52px; margin:0 0 14px; }
.success-order { text-align:right; max-width:560px; margin:30px auto 0; }

.auth-wrap { max-width:560px; margin:0 auto; }
.account-card { padding:34px; }
.auth-form p { display:flex; flex-direction:column; gap:7px; }
.auth-form label { font-weight:800; }
.auth-form .helptext { color:var(--muted); font-size:13px; line-height:1.5; }
.account-card .btn { width:100%; border:0; cursor:pointer; margin-top:12px; }
.profile-head { display:flex; justify-content:space-between; align-items:center; gap:20px; margin-bottom:25px; }
.orders-table { width:100%; border-collapse:collapse; background:white; border:2px solid var(--blue); overflow:hidden; border-radius:22px; }
.orders-table th, .orders-table td { padding:15px; text-align:right; border-bottom:1px solid var(--line); }
.status-chip { display:inline-flex; border-radius:999px; padding:6px 10px; background:#eef0ff; color:var(--blue); font-weight:800; font-size:13px; }

.toast { position:fixed; left:24px; bottom:94px; z-index:100; background:var(--blue); color:white; padding:13px 18px; border-radius:14px; font-weight:800; transform:translateY(20px); opacity:0; pointer-events:none; transition:.25s; }
.toast.show { transform:translateY(0); opacity:1; }

@media (max-width: 980px) {
  .product-detail, .cart-layout, .checkout-layout { grid-template-columns:1fr; }
  .product-main-image { min-height:500px; }
  .summary-card { position:static; }
  .cart-row { grid-template-columns:90px minmax(0,1fr) 110px; }
  .cart-row > strong { grid-column:3; }
}

@media (max-width: 760px) {
  .page-hero { padding:54px 16px 30px; }
  .content-wrap { padding:34px 16px 70px; }
  .product-main-image, .product-main-image img { min-height:420px; }
  .product-placeholder-large { width:230px; height:330px; }
  .product-placeholder-large strong { font-size:44px; }
  .form-grid { grid-template-columns:1fr; }
  .form-group.full { grid-column:auto; }
  .cart-row { grid-template-columns:76px 1fr; gap:12px; }
  .cart-thumb { width:76px; height:76px; }
  .cart-row .quantity-control, .cart-row > strong { grid-column:2; }
  .orders-table thead { display:none; }
  .orders-table, .orders-table tbody, .orders-table tr, .orders-table td { display:block; width:100%; }
  .orders-table tr { padding:12px; border-bottom:1px solid var(--line); }
  .orders-table td { border:0; padding:6px 4px; }
  .profile-head { display:block; }
}

.field-help {
  display: block;
  min-height: 20px;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
}
.delivery-summary-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f2f4ff;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* SEO-friendly navigation and category copy */
.breadcrumbs{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin:0 0 24px;color:#6b7280;font-size:14px}
.breadcrumbs a{color:var(--blue);font-weight:700;text-decoration:none}
.breadcrumbs span[aria-current="page"]{color:#2d3138;font-weight:700}
.catalog-seo-copy{max-width:900px;margin:54px auto 0;padding:30px;border-top:1px solid rgba(28,31,38,.12);line-height:1.8}
.catalog-seo-copy h2{margin:0 0 12px;font-size:clamp(24px,3vw,38px)}
.catalog-seo-copy p{color:#555d69}
.product-stage {
  position: relative;
  min-height: 560px;
  width: 100%;
}

.stage-pedestal {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 70px;
  border-radius: 999px;
  background: rgba(36, 49, 255, 0.08);
  filter: blur(2px);
}

.stage-image {
  position: absolute;
  width: 220px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.18));
}

.stage-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.stage-image:hover {
  z-index: 5;
}

/* Позиции */
.img-1 {
  top: 10px;
  right: 240px;
  transform: rotate(-16deg);
}

.img-2 {
  top: 120px;
  right: 40px;
  transform: rotate(12deg);
}

.img-3 {
  top: 220px;
  right: 260px;
  transform: rotate(-6deg);
}

/* Hover эффект */
.img-1:hover {
  transform: rotate(-12deg) translateY(-8px);
}

.img-2:hover {
  transform: rotate(8deg) translateY(-8px);
}

.img-3:hover {
  transform: rotate(-2deg) translateY(-8px);
}
@media (max-width: 992px) {
  .product-stage {
    min-height: 420px;
    margin-top: 30px;
  }

.product-stage {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 42vw, 580px);
}

.stage-image {
  position: absolute;
  width: clamp(150px, 16vw, 240px);
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.18));
  transition: transform 0.35s ease;
}

.stage-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

  .img-1 {
    top: 0;
    right: 120px;
    transform: rotate(-14deg);
  }

  .img-2 {
    top: 90px;
    right: 10px;
    transform: rotate(10deg);
  }

  .img-3 {
    top: 180px;
    right: 130px;
    transform: rotate(-5deg);
  }

  .stage-pedestal {
    width: 220px;
    height: 50px;
    bottom: 20px;
  }
}

@media (max-width: 640px) {
  .product-stage {
    min-height: 340px;
  }

  .stage-image {
    width: 120px;
  }

  .img-1 {
    top: 10px;
    right: 95px;
  }

  .img-2 {
    top: 85px;
    right: 5px;
  }

  .img-3 {
    top: 155px;
    right: 105px;
  }
}