﻿    :root {
      --bg: radial-gradient(circle at 12% 20%, #ffe9d7, transparent 35%),
            radial-gradient(circle at 85% 10%, #d0e8ff, transparent 32%),
            radial-gradient(circle at 70% 80%, #ffe2f2, transparent 28%),
            #0f1720;
      --card: rgba(255, 255, 255, 0.08);
      --border: rgba(255, 255, 255, 0.12);
      --ink: #f7f6f3;
      --muted: #cdd3db;
      --accent: #ff7a4c;
      --accent-2: #7cf7d4;
      --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      display: flex;
      flex-direction: column;
      font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
      color: var(--ink);
      background: var(--bg);
      min-height: 100vh;
    }
    .top-nav {
      position: fixed;
      top: 0;
      z-index: 20;
      max-width: 1200px;
      width: calc(100% - clamp(36px, 8vw, 80px));
      left: 50%;
      transform: translateX(-50%);
      margin: 0;
      padding: 12px clamp(18px, 4vw, 40px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      border: 1px solid var(--border);
      border-top: none;
      border-radius: 0 0 18px 18px;
      background: rgba(12, 16, 24, 0.7);
      backdrop-filter: blur(8px);
      box-shadow: var(--shadow);
    }
    .brand {
      color: var(--ink);
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    .brand.active-brand {
      text-shadow: 0 0 20px rgba(255, 255, 255, 0.28);
    }
    .menu-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .menu-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 14px;
      padding: 8px 12px;
      border-radius: 10px;
      border: 1px solid transparent;
      transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
    }
    .menu-links a:hover {
      color: var(--ink);
      border-color: var(--border);
      background: rgba(255, 255, 255, 0.06);
    }
    .menu-links a.active {
      color: var(--ink);
      border-color: var(--border);
      background: rgba(255, 255, 255, 0.14);
    }
    .nav-actions {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    header {
      padding: 120px clamp(18px, 4vw, 40px) 24px;
      display: grid;
      gap: 18px;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.06);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 12px;
    }
    h1 {
      margin: 0;
      font-family: "Playfair Display", serif;
      font-size: clamp(42px, 6vw, 68px);
      letter-spacing: -0.03em;
      line-height: 1.05;
      text-shadow: 0 12px 40px rgba(0,0,0,0.45);
    }
    .lead {
      max-width: 720px;
      font-size: 18px;
      color: var(--muted);
      line-height: 1.6;
    }
    .hero {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 18px;
      margin-top: 10px;
    }
    .hero-card {
      position: relative;
      padding: 22px;
      border-radius: 18px;
      border: 1px solid var(--border);
      background: linear-gradient(140deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
      overflow: hidden;
      backdrop-filter: blur(4px);
      box-shadow: var(--shadow);
      isolation: isolate;
    }
    .hero-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 40%),
                  radial-gradient(circle at 80% 80%, rgba(255,122,76,0.22), transparent 42%);
      mix-blend-mode: screen;
      z-index: 0;
    }
    .hero-card h3 {
      margin: 0 0 8px;
      font-size: 20px;
      position: relative;
      z-index: 1;
    }
    .hero-card p {
      margin: 0 0 14px;
      color: var(--muted);
      position: relative;
      z-index: 1;
    }
    .cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      border-radius: 12px;
      background: linear-gradient(120deg, var(--accent), #ffb36b);
      color: #0f0f0f;
      font-weight: 600;
      text-decoration: none;
      border: 0;
      cursor: pointer;
      box-shadow: 0 15px 40px rgba(255,122,76,0.35);
      transition: transform 180ms ease, box-shadow 180ms ease;
      position: relative;
      z-index: 1;
    }
    .cta:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(255,122,76,0.4); }
    .layout {
      max-width: 1200px;
      width: 100%;
      margin: 14px auto 40px;
      padding: 0 clamp(18px, 4vw, 40px);
      display: grid;
      grid-template-columns: 1fr;
      gap: 26px;
    }
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 16px;
    }
    .section-header h2 {
      margin: 0;
      font-size: 26px;
      letter-spacing: -0.01em;
    }
    .pill {
      padding: 8px 14px;
      border-radius: 10px;
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 13px;
      letter-spacing: 0.04em;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }
    .product-grid-catalog {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: -4px;
    }
    .filter-chip {
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.04);
      color: var(--muted);
      font: inherit;
      cursor: pointer;
      transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
    }
    .filter-chip:hover,
    .filter-chip.active {
      color: var(--ink);
      border-color: rgba(255,255,255,0.22);
      background: rgba(255,255,255,0.1);
    }
    .card {
      border: 1px solid var(--border);
      border-radius: 16px;
      background: var(--card);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 160ms ease, border-color 160ms ease;
    }
    .card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.25); }
    .img {
      height: 190px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }
    .img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.45));
    }
    .product-image {
      height: 260px;
      background-color: rgba(255,255,255,0.04);
    }
    .product-card .meta {
      gap: 12px;
    }
    .product-topline {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      font-size: 12px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .product-type {
      opacity: 0.9;
    }
    .product-stock {
      color: var(--accent-2);
    }
.product-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}
.product-empty-state {
  grid-column: 1 / -1;
}
.meta {
  padding: 16px 16px 18px;
  display: grid;
  gap: 10px;
}
    .title {
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--muted);
      font-size: 14px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 12px;
      background: rgba(124, 247, 212, 0.12);
      color: #8bf7da;
      font-size: 13px;
      border: 1px solid rgba(124, 247, 212, 0.35);
    }
    .tag-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .tag {
      padding: 6px 10px;
      border-radius: 10px;
      border: 1px dashed var(--border);
      color: var(--muted);
      font-size: 13px;
    }
    footer {
      width: 100%;
      margin-top: auto;
      padding: 0 clamp(18px, 4vw, 40px);
      color: var(--muted);
    }
    .footer-shell {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 34px clamp(18px, 4vw, 40px) 0;
      border-top: 1px solid var(--border);
      border-left: 1px solid var(--border);
      border-right: 1px solid var(--border);
      border-radius: 28px 28px 0 0;
      background: rgba(12, 16, 24, 0.7);
      backdrop-filter: blur(8px);
      box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.18);
    }
    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }
    .footer-section {
      padding-bottom: 28px;
    }
    .footer-section strong {
      display: block;
      margin-bottom: 12px;
      color: var(--ink);
    }
    .footer-section p {
      margin: 0 0 10px;
      line-height: 1.6;
    }
    .footer-links {
      display: grid;
      gap: 10px;
    }
    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      transition: color 160ms ease;
    }
    .footer-links a:hover {
      color: var(--ink);
    }
    .footer-note {
      max-width: 1200px;
      margin: 0 auto;
      padding: 18px 0 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 13px;
      color: var(--muted);
      opacity: 0.85;
    }
    @media (max-width: 760px) {
      .top-nav {
        width: calc(100% - 24px);
        padding: 10px 14px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px 12px;
        border-radius: 0 0 16px 16px;
      }
      .brand {
        font-size: 15px;
        order: 1;
      }
      .menu-links {
        order: 3;
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
      }
      .menu-links a {
        flex: 0 0 auto;
        text-align: center;
        white-space: nowrap;
      }
      .nav-actions {
        order: 2;
        width: auto;
        margin-left: auto;
        justify-content: flex-end;
        gap: 8px;
        flex-wrap: nowrap;
      }
      .cart-button {
        width: auto;
        padding: 9px 11px;
      }
      .lang-switch {
        width: auto;
      }
      .lang-menu {
        min-width: 180px;
        width: auto;
      }
      .cart-button > span[data-i18n="cart.label"] {
        display: none;
      }
      .lang-toggle {
        width: auto;
      }
      header {
        padding-top: 126px;
        gap: 14px;
      }
      h1 {
        font-size: clamp(34px, 10vw, 48px);
      }
      .lead {
        font-size: 16px;
      }
      .hero,
      .product-grid,
      .contact-info-grid,
      .product-detail-shell,
      .product-related-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .hero-card,
      .card,
      .product-toolbar,
      .footer-shell {
        border-radius: 18px;
      }
      .section-header,
      .pagination,
      .cart-page-header,
      .cart-page-footer {
        flex-direction: column;
        align-items: flex-start;
      }
      .section-header h2 {
        font-size: 22px;
      }
      .filter-bar-header {
        margin-bottom: 14px;
      }
      .filter-bar,
      .product-card-actions,
      .product-detail-actions,
      .social-row,
      .pagination-buttons {
        width: 100%;
      }
      .filter-chip,
      .page-button,
      .ghost-button,
      .cta {
        width: 100%;
        justify-content: center;
      }
      .product-grid {
        gap: 16px;
      }
      .product-grid-catalog {
        grid-template-columns: 1fr;
      }
      .product-image,
      .img {
        height: 180px;
      }
      .product-gallery-main {
        min-height: 280px;
      }
      .product-gallery-thumbs {
        gap: 10px;
      }
      .product-thumb-image {
        height: 86px;
      }
      .product-specs-grid {
        grid-template-columns: 1fr;
      }
      .product-card-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .product-toolbar {
        padding: 14px;
        gap: 12px;
      }
      .toolbar-field input,
      .toolbar-field select {
        padding: 12px;
      }
      .contact-info-grid {
        grid-template-columns: 1fr;
      }
      .contact-form-card {
        grid-column: auto;
      }
      .footer-shell {
        padding-top: 28px;
        border-radius: 22px 22px 0 0;
      }
      .footer-grid {
        gap: 18px;
      }
      .footer-note {
        padding-top: 14px;
      }
    }
    @media (min-width: 761px) and (max-width: 1080px) {
      .product-grid-catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    .contact-grid {
      align-items: stretch;
    }
.contact-card {
  min-height: 100%;
}
.contact-info-card {
  grid-column: 1 / -1;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.contact-line {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
    }
.contact-copy {
  max-width: none;
  font-size: 15px;
  margin: 0;
}
.social-card {
  gap: 8px;
}
.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-form-card {
  grid-column: 1 / -1;
}
.contact-form-meta {
  gap: 18px;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-field {
  display: grid;
  gap: 8px;
}
.contact-field span {
  color: var(--muted);
  font-size: 14px;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  outline: none;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(205, 211, 219, 0.7);
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}
.social-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.social-icon:hover {
  transform: translateY(-2px);
  opacity: 0.82;
}
.social-icon img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}
.social-icon-youtube img {
  width: 38px;
  height: 38px;
}

.contact-form-card {
  grid-column: 1 / -1;
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field span:first-child {
  font-size: 14px;
  color: var(--ink);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-field textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(247, 246, 243, 0.45);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(255, 122, 76, 0.65);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(255, 122, 76, 0.12);
}

.contact-field input[aria-invalid="true"],
.contact-field textarea[aria-invalid="true"] {
  border-color: rgba(255, 128, 128, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 128, 128, 0.1);
}

.field-error {
  min-height: 18px;
  font-size: 13px;
  color: #ffb0b0;
}

.form-status {
  display: none;
  border-radius: 14px;
  padding: 14px 16px;
  line-height: 1.6;
  font-size: 14px;
}

.form-status:not(:empty) {
  display: block;
}

.form-status-success {
  background: rgba(124, 247, 212, 0.12);
  border: 1px solid rgba(124, 247, 212, 0.35);
  color: #8bf7da;
}

.form-status-error {
  background: rgba(255, 122, 122, 0.12);
  border: 1px solid rgba(255, 122, 122, 0.28);
  color: #ffc3c3;
}

.contact-submit {
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.contact-submit[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.filter-bar-header {
  justify-content: center;
  margin-bottom: 22px;
}

.pagination {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.pagination-summary {
  color: var(--muted);
  font-size: 14px;
}

.pagination-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-button {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.page-button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.page-button.active {
  background: linear-gradient(135deg, var(--accent), #f5e8d3);
  color: #141820;
  border-color: transparent;
}

.page-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}





.product-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.product-card-link .card {
  height: 100%;
}

.back-link {
  color: var(--muted);
  text-decoration: none;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.back-link:hover {
  color: var(--ink);
}

.product-detail-header {
  gap: 14px;
}

.product-detail-layout {
  gap: 30px;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.product-gallery {
  padding: 18px;
  background: linear-gradient(140deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.product-gallery-main {
  min-height: 520px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.04);
}

.product-gallery-thumbs {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-thumb {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.product-thumb.is-active {
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.product-thumb-image {
  display: block;
  height: 110px;
  background-size: cover;
  background-position: center;
}

.product-detail-card {
  background: linear-gradient(140deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.product-detail-meta {
  gap: 16px;
}

.product-detail-price-row {
  align-items: center;
}

.product-detail-price {
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-spec {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  display: grid;
  gap: 6px;
}

.product-spec span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.product-spec strong {
  font-size: 14px;
  color: var(--ink);
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.ghost-button:hover {
  background: rgba(255,255,255,0.08);
}

.product-detail-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.product-related {
  display: grid;
  gap: 20px;
}

.product-related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-detail-empty {
  max-width: 520px;
}

@media (max-width: 980px) {
  .product-detail-shell {
    grid-template-columns: 1fr;
  }

  .product-gallery-main {
    min-height: 420px;
  }

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

    @media (max-width: 760px) {
      .product-gallery-main {
        min-height: 320px;
      }

      .product-gallery-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .product-specs-grid {
        grid-template-columns: 1fr;
      }
      .contact-form-card {
        grid-column: auto;
      }
      .product-detail-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
      .product-detail-price {
        font-size: 28px;
      }
    }

.product-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}

.toolbar-field {
  display: grid;
  gap: 8px;
}

.toolbar-field span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.toolbar-field input,
.toolbar-field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(15, 23, 32, 0.72);
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
  outline: none;
}

.toolbar-field input::placeholder {
  color: rgba(205, 211, 219, 0.7);
}

.toolbar-field input:focus,
.toolbar-field select:focus {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.toolbar-actions {
  display: flex;
  justify-content: flex-end;
}

.toolbar-reset {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .product-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .toolbar-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

    @media (max-width: 760px) {
      .product-toolbar {
        grid-template-columns: 1fr;
      }

      .toolbar-actions {
        grid-column: auto;
        justify-content: flex-start;
      }

      .toolbar-reset {
        width: 100%;
      }
    }

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--ink);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.cart-button:hover,
.cart-button.active {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.cart-button-icon {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.cart-badge {
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f5e8d3);
  color: #141820;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.cart-badge.is-empty {
  opacity: 0.75;
}

.cart-page-layout {
  max-width: 980px;
}

.cart-page-card {
  padding: clamp(18px, 3vw, 28px);
  display: grid;
  gap: 22px;
}

.cart-page-header,
.cart-page-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.cart-page-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.cart-item-thumb {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.cart-item-body {
  min-width: 0;
}

.cart-item-title {
  font-weight: 600;
}

.cart-item-meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.cart-quantity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.cart-quantity button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--ink);
  cursor: pointer;
}

.cart-quantity span {
  min-width: 18px;
  text-align: center;
  font-weight: 600;
}

.cart-item-remove {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
}

.cart-item-remove:hover {
  color: var(--ink);
}

.cart-empty {
  color: var(--muted);
  font-size: 14px;
  padding: 16px 0;
}

.cart-page-total {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.cart-page-total strong {
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #f5e8d3);
  color: #141820;
}

.product-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.product-card-image-link,
.product-card-title-link,
.product-view-button {
  color: inherit;
  text-decoration: none;
}

.product-card-image-link {
  display: block;
}

.product-card-title-link {
  display: inline-flex;
  font-weight: 600;
  letter-spacing: -0.01em;
}

    @media (max-width: 760px) {
      .cart-page-header,
      .cart-page-footer {
        align-items: flex-start;
        flex-direction: column;
      }

      .cart-item {
        grid-template-columns: 58px minmax(0, 1fr);
        width: 100%;
      }

      .cart-item-remove {
        grid-column: 1 / -1;
        width: fit-content;
      }
    }

.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
  justify-content: flex-end;
}

.lang-toggle {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.08);
}

.lang-toggle-flag {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.lang-toggle-caret {
  color: var(--muted);
  font-size: 12px;
}

.lang-switch.is-open .lang-toggle {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}

.lang-switch.is-open .lang-toggle-caret {
  color: var(--ink);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(12, 16, 24, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
}

.lang-menu[hidden] {
  display: none;
}

.lang-option {
  width: 100%;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.03);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 12px;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.lang-option:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.lang-option.active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}

.lang-option-flag {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.lang-option-label {
  color: var(--ink);
}

    @media (max-width: 760px) {
      .lang-switch {
        width: auto;
        margin-left: 0;
        justify-content: flex-end;
        padding-top: 6px;
      }

      .lang-menu {
        right: 0;
        left: auto;
      }
    }
