:root {
      --bg: #0a0f19;
      --bg-2: #111827;
      --panel: rgba(17, 24, 39, 0.82);
      --panel-2: rgba(255, 255, 255, 0.05);
      --text: #f4f7fb;
      --muted: #b9c2d0;
      --line: rgba(255, 255, 255, 0.1);
      --blue: #3558d8;
      --blue-2: #5e80ff;
      --steel: #d7dde7;
      --silver: #a9b4c5;
      --shadow: 0 20px 60px rgba(0,0,0,.35);
      --radius: 22px;
      --radius-sm: 14px;
      --max: 1240px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top right, rgba(53,88,216,.22), transparent 28%),
        radial-gradient(circle at 12% 18%, rgba(94,128,255,.12), transparent 18%),
        linear-gradient(180deg, #0a0f19 0%, #0b1220 50%, #09111d 100%);
      color: var(--text);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 85%);
      z-index: -1;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    .container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
    .section { padding: 88px 0; }
    .section-title {
      font-size: clamp(1.9rem, 3vw, 3.2rem);
      line-height: 1.05;
      margin: 0 0 14px;
      letter-spacing: -0.03em;
    }
    .section-copy {
      color: var(--muted);
      margin: 0;
      max-width: 760px;
      line-height: 1.7;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
      color: #e8eef9;
      font-size: .93rem;
      backdrop-filter: blur(12px);
    }

    .btn {
      appearance: none;
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 52px;
      padding: 0 20px;
      border-radius: 16px;
      font-weight: 700;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary {
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      color: white;
      box-shadow: 0 12px 30px rgba(53, 88, 216, .28);
    }
    .btn-secondary {
      background: rgba(255,255,255,.06);
      color: white;
      border: 1px solid rgba(255,255,255,.1);
    }
    .btn-dark {
      background: #151f31;
      color: #fff;
      border: 1px solid rgba(255,255,255,.08);
    }
    .btn.small { min-height: 44px; font-size: .95rem; padding: 0 16px; border-radius: 14px; }

    header.site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(18px);
      background: rgba(7, 12, 22, .68);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .nav-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 14px 0;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }
    .brand img {
      width: 180px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 8px 20px rgba(0,0,0,.2));
    }
    .brand-meta { display: none; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .nav-links a {
      color: #dfe7f4;
      font-size: .95rem;
      opacity: .92;
    }
    .mobile-toggle { display: none; }

    .hero {
      padding: 54px 0 72px;
      position: relative;
      overflow: clip;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 36px;
      align-items: stretch;
    }
    .hero-copy {
      padding-top: 18px;
    }
    .eyebrow {
      font-size: .9rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #94a7d4;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .hero h1 {
      margin: 0;
      font-size: clamp(2.8rem, 6vw, 5.7rem);
      line-height: .94;
      letter-spacing: -.05em;
      max-width: 780px;
    }
    .hero h1 .accent {
      color: #d8e3ff;
      text-shadow: 0 0 40px rgba(94,128,255,.15);
    }
    .hero p {
      margin: 22px 0 0;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.8;
      max-width: 760px;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 30px;
    }
    .hero-pills {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .hero-card {
      position: relative;
      min-height: 640px;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: var(--shadow);
      background: linear-gradient(180deg, rgba(12,17,30,.4), rgba(12,17,30,.88));
      isolation: isolate;
    }
    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(8,12,22,.06), rgba(8,12,22,.65) 60%, rgba(8,12,22,.95) 100%),
        url('../images/hero-engine.jpg') center/cover no-repeat;
      transform: scale(1.02);
      z-index: -2;
    }
    .hero-card::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 52%;
      background: linear-gradient(180deg, transparent, rgba(10,15,25,.95));
      z-index: -1;
    }
    .hero-logo-box {
      position: absolute;
      top: 22px;
      right: 22px;
      width: min(42%, 220px);
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 20px;
      padding: 14px;
      box-shadow: 0 18px 45px rgba(0,0,0,.28);
    }
    .hero-card-content {
      position: absolute;
      inset: auto 0 0 0;
      padding: 26px;
    }
    .hero-kpis {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 18px;
    }
    .hero-kpi {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
      backdrop-filter: blur(12px);
    }
    .hero-kpi strong {
      display: block;
      font-size: .86rem;
      color: #fff;
      margin-bottom: 6px;
    }
    .hero-kpi span {
      color: #d7deea;
      font-size: .92rem;
      line-height: 1.55;
    }

    .spotlight-strip {
      margin-top: 26px;
      padding: 18px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      border: 1px solid rgba(255,255,255,.08);
    }
    .spotlight-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .spot-item {
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.06);
      color: #d5dcec;
      font-size: .94rem;
      line-height: 1.55;
    }
    .spot-item strong { display: block; color: #fff; margin-bottom: 6px; }

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

    .card {
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
    }
    .service-card {
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: "";
      position: absolute;
      top: -28px;
      right: -28px;
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(94,128,255,.35), transparent 70%);
    }
    .service-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: rgba(94,128,255,.12);
      color: #dce5ff;
      margin-bottom: 18px;
      border: 1px solid rgba(94,128,255,.2);
    }
    .service-card h3,
    .shop-card h3,
    .why-card h3,
    .faq-card h3,
    .contact-card h3,
    .gallery-card h3 {
      margin: 0 0 10px;
      font-size: 1.14rem;
    }
    .service-card p,
    .why-card p,
    .contact-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: .97rem;
    }

    .catalog-shell {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 20px;
      align-items: start;
    }
    .catalog-sidebar {
      position: sticky;
      top: 92px;
      padding: 22px;
    }
    .search-box,
    .field,
    .textarea,
    select {
      width: 100%;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      color: #fff;
      border-radius: 16px;
      padding: 14px 16px;
      outline: none;
      font: inherit;
    }
    .search-box::placeholder,
    .field::placeholder,
    .textarea::placeholder { color: #8ea0bf; }
    .filter-group { margin-top: 18px; }
    .filter-label {
      display: block;
      font-size: .86rem;
      color: #b7c4db;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 700;
    }
    .chip-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .chip {
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      color: #e8effc;
      padding: 10px 13px;
      border-radius: 999px;
      cursor: pointer;
      transition: all .18s ease;
      font: inherit;
      font-size: .92rem;
    }
    .chip.active,
    .chip:hover {
      background: rgba(94,128,255,.14);
      border-color: rgba(94,128,255,.44);
      color: white;
    }
    .results-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
      color: var(--muted);
      font-size: .96rem;
    }
    .catalog-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }
    .shop-card {
      display: flex;
      flex-direction: column;
      gap: 16px;
      overflow: hidden;
      padding: 0;
    }
    .shop-card img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }
    .shop-card-body { padding: 20px; }
    .sku {
      display: inline-flex;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(94,128,255,.1);
      border: 1px solid rgba(94,128,255,.2);
      color: #dce5ff;
      font-size: .8rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .shop-meta,
    .tag-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .tag {
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.05);
      color: #d8dfec;
      font-size: .84rem;
      border: 1px solid rgba(255,255,255,.08);
    }
    .availability {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin: 16px 0;
      padding: 14px 15px;
      border-radius: 16px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
    }
    .availability strong { font-size: .95rem; }
    .availability span { color: #8ef1bc; font-weight: 700; font-size: .9rem; }
    .shop-copy {
      color: var(--muted);
      line-height: 1.7;
      font-size: .95rem;
      margin: 0;
    }
    .shop-actions {
      margin-top: 18px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 30px;
    }
    .step-card {
      padding: 22px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      border: 1px solid rgba(255,255,255,.08);
      position: relative;
    }
    .step-number {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      color: white;
      font-weight: 800;
      margin-bottom: 16px;
      box-shadow: 0 12px 26px rgba(53,88,216,.28);
    }
    .step-card p { color: var(--muted); line-height: 1.7; margin: 0; }

    .why-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 30px;
      align-items: stretch;
    }
    .why-card.media-card {
      padding: 0;
      overflow: hidden;
      min-height: 100%;
    }
    .why-card.media-card img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    .why-card { padding: 22px; }

    .gallery-grid {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 20px;
    }
    .gallery-main,
    .gallery-stack {
      display: grid;
      gap: 20px;
    }
    .gallery-main .gallery-card,
    .gallery-stack .gallery-card {
      overflow: hidden;
      padding: 0;
      min-height: 100%;
    }
    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .gallery-stack { grid-template-rows: 1fr 1fr; }
    .gallery-main { grid-template-rows: 1fr; }

    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 20px;
      margin-top: 30px;
      align-items: start;
    }
    .accordion {
      display: grid;
      gap: 12px;
    }
    .faq-item {
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.04);
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      text-align: left;
      padding: 18px 20px;
      font: inherit;
      color: #fff;
      background: transparent;
      border: 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      font-weight: 700;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .22s ease;
      color: var(--muted);
      line-height: 1.7;
      padding: 0 20px;
    }
    .faq-item.open .faq-answer { padding-bottom: 18px; }

    .bot-card {
      padding: 22px;
      position: sticky;
      top: 92px;
    }
    .bot-card p {
      color: var(--muted);
      line-height: 1.7;
      margin: 0 0 16px;
    }
    .bot-shortcuts {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 12px;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 20px;
      margin-top: 30px;
      align-items: start;
    }
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .textarea { min-height: 140px; resize: vertical; }
    .full { grid-column: 1 / -1; }
    .contact-card .meta-list {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }
    .meta-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--muted);
      line-height: 1.7;
    }
    .meta-item strong { color: white; display: block; }
    .hours {
      margin-top: 18px;
      display: grid;
      gap: 10px;
    }
    .hours-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.06);
      color: #d8dfeb;
    }
    .hours-row span:first-child { color: #fff; font-weight: 700; }

    .social-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 18px;
    }
    .social-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 15px;
      border-radius: 14px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      color: #eef3fd;
    }

    .map-frame {
      width: 100%;
      min-height: 380px;
      border: 0;
      border-radius: 20px;
      box-shadow: var(--shadow);
      filter: saturate(.92) contrast(1.02);
    }

    footer.site-footer {
      padding: 34px 0 46px;
      border-top: 1px solid rgba(255,255,255,.06);
      color: #afbbd0;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .floating-actions {
      position: fixed;
      right: 18px;
      bottom: 18px;
      display: grid;
      gap: 12px;
      z-index: 50;
    }
    .fab {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      color: white;
      box-shadow: 0 16px 34px rgba(53,88,216,.35);
      border: 0;
      cursor: pointer;
    }
    .fab.secondary {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(10px);
    }

    .chatbot {
      position: fixed;
      right: 18px;
      bottom: 92px;
      width: min(390px, calc(100vw - 28px));
      background: rgba(9, 14, 24, .95);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 22px 60px rgba(0,0,0,.45);
      transform: translateY(18px) scale(.98);
      opacity: 0;
      pointer-events: none;
      transition: all .2s ease;
      z-index: 60;
    }
    .chatbot.open {
      transform: translateY(0) scale(1);
      opacity: 1;
      pointer-events: auto;
    }
    .chat-head {
      padding: 16px 18px;
      background: linear-gradient(135deg, rgba(53,88,216,.18), rgba(94,128,255,.1));
      border-bottom: 1px solid rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .chat-head strong { display: block; }
    .chat-head small { color: #b9c7de; }
    .chat-log {
      max-height: 360px;
      overflow: auto;
      padding: 18px;
      display: grid;
      gap: 12px;
      background: linear-gradient(180deg, rgba(255,255,255,.025), transparent 40%);
    }
    .bubble {
      max-width: 88%;
      padding: 14px 15px;
      border-radius: 16px;
      line-height: 1.6;
      font-size: .95rem;
    }
    .bubble.bot {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
      color: #f4f7fb;
    }
    .bubble.user {
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      color: white;
      margin-left: auto;
    }
    .chat-quick {
      padding: 0 18px 14px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .chat-quick button {
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      color: #eef4ff;
      border-radius: 999px;
      padding: 10px 12px;
      cursor: pointer;
      font: inherit;
      font-size: .86rem;
    }
    .chat-form {
      display: flex;
      gap: 10px;
      padding: 16px 18px 18px;
      border-top: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.025);
    }
    .chat-form input {
      flex: 1;
      min-width: 0;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      color: white;
      border-radius: 14px;
      padding: 13px 14px;
      outline: none;
      font: inherit;
    }

    .drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: min(420px, 100vw);
      height: 100vh;
      background: rgba(9, 14, 24, .98);
      border-left: 1px solid rgba(255,255,255,.08);
      box-shadow: -20px 0 60px rgba(0,0,0,.45);
      transform: translateX(102%);
      transition: transform .22s ease;
      z-index: 70;
      display: flex;
      flex-direction: column;
    }
    .drawer.open { transform: translateX(0); }
    .drawer-head,
    .drawer-foot {
      padding: 18px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .drawer-foot {
      margin-top: auto;
      border-top: 1px solid rgba(255,255,255,.08);
      border-bottom: 0;
      display: grid;
      gap: 12px;
    }
    .drawer-body {
      padding: 18px;
      overflow: auto;
      display: grid;
      gap: 12px;
    }
    .cart-item {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
    }
    .cart-item p {
      margin: 6px 0 0;
      color: var(--muted);
      line-height: 1.6;
      font-size: .92rem;
    }
    .cart-empty {
      color: var(--muted);
      line-height: 1.7;
      font-size: .97rem;
      padding: 18px 2px;
    }

    .notice {
      margin-top: 14px;
      color: #95a8c8;
      font-size: .86rem;
      line-height: 1.6;
    }
    .success-box {
      margin-top: 16px;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(100, 255, 170, .08);
      color: #c8f8dd;
      border: 1px solid rgba(100,255,170,.14);
      display: none;
    }

    @media (max-width: 1120px) {
      .hero-grid,
      .gallery-grid,
      .why-layout,
      .faq-layout,
      .contact-layout,
      .catalog-shell {
        grid-template-columns: 1fr;
      }
      .catalog-sidebar,
      .bot-card { position: static; }
      .hero-card { min-height: 560px; }
      .steps,
      .grid-4,
      .grid-3,
      .why-grid,
      .spotlight-grid,
      .catalog-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-stack { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
    }

    @media (max-width: 860px) {
      .nav-links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 10px);
        padding: 18px;
        border-radius: 20px;
        background: rgba(8, 12, 22, .96);
        border: 1px solid rgba(255,255,255,.08);
        display: none;
        flex-direction: column;
        align-items: flex-start;
      }
      .nav-links.open { display: flex; }
      .mobile-toggle {
        display: inline-flex;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,.1);
        background: rgba(255,255,255,.05);
        color: white;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }
      .hero h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
      .form-grid,
      .steps,
      .grid-4,
      .grid-3,
      .why-grid,
      .spotlight-grid,
      .catalog-grid,
      .gallery-stack { grid-template-columns: 1fr; }
      .hero-kpis { grid-template-columns: 1fr; }
      .brand img { width: 150px; }
    }

    @media (max-width: 560px) {
      .section { padding: 72px 0; }
      .hero { padding: 34px 0 54px; }
      .hero-card { min-height: 500px; }
      .hero-logo-box { width: 160px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; }
      .chatbot { right: 10px; left: 10px; width: auto; }
      .floating-actions { right: 12px; bottom: 12px; }
      .container { width: min(calc(100% - 20px), var(--max)); }
    }

/* WordPress additions */
.screen-reader-text {
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.admin-bar header.site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar header.site-header { top: 46px; }
}
.brand img,
.brand .custom-logo,
.brand .site-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.2));
}
.lang-switch {
  display:flex;
  align-items:center;
  gap:8px;
}
.lang-switch a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:42px;
  padding:0 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color:#fff;
  font-weight:700;
}
.lang-switch a.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 12px 30px rgba(53, 88, 216, .22);
}
.nav-links .menu {
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  list-style:none;
  margin:0;
  padding:0;
}
.nav-links .menu li { list-style:none; }
.nav-links .menu a {
  color:#dfe7f4;
  font-size:.95rem;
  opacity:.92;
}
.nav-links .menu .current-menu-item > a,
.nav-links .menu .current_page_item > a {
  color:#fff;
}
.site-main { min-height: 50vh; }
.page-hero { padding: 110px 0 60px; }
.content-shell {
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.entry-content,
.entry-summary {
  color: var(--muted);
  line-height: 1.8;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-summary h1,
.entry-summary h2,
.entry-summary h3 {
  color: var(--text);
}
.entry-content a,
.entry-summary a { color: #d8e3ff; }
.wp-block-image img,
.entry-content img { border-radius: 18px; }

.woocommerce-page .content-shell,
.post-type-archive-product .content-shell,
.single-product .content-shell {
  background: transparent;
  border:0;
  padding:0;
  box-shadow:none;
}
.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  color: var(--muted);
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.woocommerce ul.products li.product a img { border-radius: 16px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price { color: var(--text); }
.woocommerce ul.products li.product .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white;
  border-radius: 14px;
  min-height: 46px;
  padding: 12px 18px;
  border:0;
}
.woocommerce .quantity .qty {
  min-height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  color: white;
  border:1px solid rgba(255,255,255,.08);
}
.woocommerce div.product div.images img,
.woocommerce div.product div.summary {
  background: rgba(255,255,255,.03);
  border-radius: 20px;
}
.woocommerce div.product div.images img { padding: 10px; }
.woocommerce div.product form.cart .button { margin-top: 8px; }
.woocommerce table.shop_table,
.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th,
.woocommerce-checkout-review-order-table,
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  border-color: rgba(255,255,255,.08) !important;
  color: var(--text);
  background: rgba(255,255,255,.03);
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  color: var(--text);
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  color: var(--text);
  border:1px solid rgba(255,255,255,.08);
}
.woocommerce-checkout #payment,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 22px;
}
.woocommerce-Tabs-panel,
.woocommerce-tabs ul.tabs li,
.woocommerce-tabs ul.tabs li a { color: var(--text); }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 12px 12px 0 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-bottom-color: rgba(255,255,255,.08); }
.woocommerce a.remove { color: #fff !important; }
.woocommerce ul.products,
.woocommerce-page ul.products {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float:none;
  width:auto;
  margin:0;
}
@media (max-width: 980px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr;
  }
}
.hero-card-content .hero-shop-cta { margin-top: 14px; }
.shop-preview-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  margin-top: 28px;
}
.shop-preview-card { display:flex; flex-direction:column; overflow:hidden; }
.shop-preview-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}
.shop-preview-body {
  display:flex;
  flex-direction:column;
  gap: 14px;
  padding-top: 16px;
}
.shop-preview-body h3 { margin:0; font-size:1.18rem; }
.shop-preview-price { color:#d8e3ff; font-weight:700; }
.note-box {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color: var(--muted);
  line-height: 1.7;
}
.whatsapp-banner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:22px;
  border-radius:22px;
  background: linear-gradient(135deg, rgba(53,88,216,.18), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
}
@media (max-width: 980px) {
  .shop-preview-grid { grid-template-columns: 1fr; }
  .whatsapp-banner { flex-direction: column; align-items:flex-start; }
}
