:root {
  --bg: #020617;
  --bg-alt: #0f172a;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.9);
  --line: rgba(167, 139, 250, 0.2);
  --text: #e5e7eb;
  --muted: #b8bfd3;
  --heading: #f8faff;
  --shadow-soft: 0 18px 55px rgba(2, 6, 23, 0.42);
  --shadow-card: 0 20px 40px rgba(2, 6, 23, 0.32);
  --primary-gradient: linear-gradient(135deg, #0f172a 0%, #7c3aed 58%, #a78bfa 100%);
  --secondary-gradient: linear-gradient(135deg, #1e293b 0%, #7c3aed 55%, #a78bfa 100%);
  --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  --shop-action-gradient: linear-gradient(135deg, #0f766e 0%, #14b8a6 55%, #5eead4 100%);
  --shop-category-gradient: linear-gradient(135deg, #1d4ed8 0%, #2563eb 48%, #60a5fa 100%);
  --shop-link-green: #08b7ad;
  --shop-link-green-hover: #069b93;
  --surface-gradient: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(9, 14, 29, 0.78));
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --nav-height: 84px;
  --page-gutter: 10px;
  --page-max-width: 1280px;
}

.contact-form__status {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.product-grid-empty {
  grid-column: 1 / -1;
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.75rem;
}

.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(31, 138, 112, 0.22), transparent 30%),
    radial-gradient(circle at top right, rgba(246, 170, 28, 0.18), transparent 26%),
    #07111f;
  color: #f8fafc;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.admin-shell {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.admin-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.admin-login-card {
  width: min(100%, 460px);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-login-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.admin-login-form label {
  display: grid;
  gap: 0.45rem;
}

.admin-login-form input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 17, 31, 0.72);
  color: #f8fafc;
  padding: 0.9rem 1rem;
  font: inherit;
}

.admin-hero,
.admin-form-card,
.admin-table-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.75rem;
}

.admin-hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-alert {
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  font-weight: 600;
}

.admin-alert--success {
  background: rgba(31, 138, 112, 0.2);
  border: 1px solid rgba(31, 138, 112, 0.45);
}

.admin-alert--error {
  background: rgba(220, 38, 38, 0.16);
  border: 1px solid rgba(248, 113, 113, 0.48);
}

.admin-grid {
  display: grid;
  gap: 1.5rem;
}

.admin-form-card,
.admin-table-card {
  padding: 1.5rem;
}

.admin-card__header {
  margin-bottom: 1.25rem;
}

.admin-form {
  display: grid;
  gap: 1rem;
}

.admin-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.admin-form label,
.admin-checkbox {
  display: grid;
  gap: 0.45rem;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 17, 31, 0.72);
  color: #f8fafc;
  padding: 0.9rem 1rem;
  font: inherit;
}

.admin-form textarea {
  resize: vertical;
}

.admin-checkbox {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.7rem;
}

.admin-checkbox input {
  width: auto;
}

.admin-actions,
.admin-table__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-sm {
  padding: 0.65rem 0.95rem;
  font-size: 0.85rem;
}

.btn-danger {
  background: #dc2626;
  color: #fff;
}

.admin-image-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
}

.admin-image-strip img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.admin-image-card,
.admin-stat-card {
  display: grid;
  gap: 0.8rem;
}

.admin-image-card {
  padding: 0.85rem;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-image-card__body {
  display: grid;
  gap: 0.2rem;
}

.admin-image-card__body strong {
  color: #f8fafc;
}

.admin-image-card__body span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  word-break: break-word;
}

.admin-image-card__form {
  display: grid;
  gap: 0.6rem;
}

.admin-image-card__form input[type="file"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 17, 31, 0.85);
  color: #f8fafc;
  overflow: hidden;
}

.admin-image-card__form .btn,
.admin-image-card > form .btn,
.btn-disabled {
  width: 100%;
  justify-content: center;
}

.admin-image-card__placeholder {
  min-height: 140px;
  border-radius: 18px;
  border: 1px dashed rgba(167, 139, 250, 0.34);
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.12), rgba(15, 23, 42, 0.4)),
    rgba(7, 17, 31, 0.72);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.admin-image-card__placeholder span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.admin-image-manager {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-card__header--compact {
  margin-bottom: 1rem;
}

.btn-disabled,
.btn-disabled:hover {
  background: rgba(148, 163, 184, 0.26);
  color: rgba(255, 255, 255, 0.66);
  box-shadow: none;
  cursor: not-allowed;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-stat-card {
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-stat-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-stat-card strong {
  color: #ffffff;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.admin-table-wrap {
  overflow-x: auto;
  max-height: 70vh;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.admin-product-search {
  margin-bottom: 1.25rem;
}

.admin-product-search .shop-search__controls {
  margin-top: 0;
}

.admin-product-search .shop-search__meta {
  margin-bottom: 0;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 0.95rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(7, 17, 31, 0.98);
}

@media (max-width: 900px) {
  .admin-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-form__grid {
    grid-template-columns: 1fr;
  }

  .admin-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .admin-shell {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .admin-hero,
  .admin-form-card,
  .admin-table-card,
  .admin-login-card {
    padding: 1rem;
    border-radius: 20px;
  }

  .admin-card__header {
    margin-bottom: 0.9rem;
  }

  .admin-card__header .eyebrow {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 0.68rem;
  }

  .admin-card__header h2 {
    margin: 0.55rem 0 0;
    font-size: clamp(1.2rem, 6vw, 1.5rem);
    line-height: 1.15;
  }

  .admin-form {
    gap: 0.8rem;
  }

  .admin-form__grid {
    gap: 0.75rem;
  }

  .admin-form label,
  .admin-checkbox {
    gap: 0.35rem;
  }

  .admin-form label span,
  .admin-checkbox span {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .admin-form input,
  .admin-form select,
  .admin-form textarea,
  .admin-login-form input {
    border-radius: 12px;
    padding: 0.72rem 0.82rem;
    font-size: 0.9rem;
  }

  .admin-form textarea {
    min-height: 110px;
  }

  .admin-image-strip {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .admin-image-strip img {
    width: 100%;
    height: 160px;
    border-radius: 14px;
  }

  .admin-image-card__placeholder {
    min-height: 160px;
    border-radius: 14px;
  }

  .admin-stats-grid {
    grid-template-columns: 1fr;
  }

  .admin-actions .btn,
  .admin-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

* {
  box-sizing: border-box;
}

html {
  background: #020617;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background-color: #020617;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(167, 139, 250, 0.16), transparent 24%),
    linear-gradient(180deg, #020617 0%, #081122 48%, #020617 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

body[data-page="privacy-policy"],
body[data-page="terms-and-conditions"],
body[data-page="cookie-policy"],
body[data-page="refund-and-return-policy"] {
  color: #111827;
  background: #ffffff;
}

body[data-page="privacy-policy"] .site-header,
body[data-page="terms-and-conditions"] .site-header,
body[data-page="cookie-policy"] .site-header,
body[data-page="refund-and-return-policy"] .site-header {
  background: var(--surface-gradient);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(167, 139, 250, 0.18);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
}

body[data-page="privacy-policy"] .social-link,
body[data-page="terms-and-conditions"] .social-link,
body[data-page="cookie-policy"] .social-link,
body[data-page="refund-and-return-policy"] .social-link,
body[data-page="privacy-policy"] .footer-link-grid a,
body[data-page="terms-and-conditions"] .footer-link-grid a,
body[data-page="cookie-policy"] .footer-link-grid a,
body[data-page="refund-and-return-policy"] .footer-link-grid a {
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}

body[data-page="privacy-policy"] .social-link:hover,
body[data-page="terms-and-conditions"] .social-link:hover,
body[data-page="cookie-policy"] .social-link:hover,
body[data-page="refund-and-return-policy"] .social-link:hover,
body[data-page="privacy-policy"] .footer-link-grid a:hover,
body[data-page="terms-and-conditions"] .footer-link-grid a:hover,
body[data-page="cookie-policy"] .footer-link-grid a:hover,
body[data-page="refund-and-return-policy"] .footer-link-grid a:hover {
  background: #000000;
  color: #ffffff;
}

body[data-page="privacy-policy"] .brand-text strong,
body[data-page="terms-and-conditions"] .brand-text strong,
body[data-page="cookie-policy"] .brand-text strong,
body[data-page="refund-and-return-policy"] .brand-text strong,
body[data-page="privacy-policy"] .brand-text span,
body[data-page="terms-and-conditions"] .brand-text span,
body[data-page="cookie-policy"] .brand-text span,
body[data-page="refund-and-return-policy"] .brand-text span,
body[data-page="privacy-policy"] .footer-brand p,
body[data-page="terms-and-conditions"] .footer-brand p,
body[data-page="cookie-policy"] .footer-brand p,
body[data-page="refund-and-return-policy"] .footer-brand p,
body[data-page="privacy-policy"] .footer-links-column h3,
body[data-page="terms-and-conditions"] .footer-links-column h3,
body[data-page="cookie-policy"] .footer-links-column h3,
body[data-page="refund-and-return-policy"] .footer-links-column h3 {
  color: #000000;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
}

.page-wrap {
  width: min(var(--page-max-width), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.glass-panel,
.product-card,
.strip-card,
.page-banner {
  background: var(--surface-gradient);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(167, 139, 250, 0.18);
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(var(--page-max-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  min-height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 23px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--primary-gradient);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18), 0 10px 24px rgba(124, 58, 237, 0.34);
  position: relative;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-mark::after {
  inset: auto 10px 10px auto;
  width: 16px;
  height: 16px;
  background: rgba(167, 139, 250, 0.82);
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.72);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong,
.section-heading h2,
.hero h1,
.page-banner h1,
.strip-heading h2 {
  font-family: "Syne", sans-serif;
  color: var(--heading);
}

.brand-text strong {
  font-size: 1.4rem;
  line-height: 1;
}

.brand-text span {
  font-size: 0.9rem;
  color: var(--muted);
  display: block;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(39, 51, 75, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.language-toggle__button {
  min-width: 58px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #9aa8c4;
  font: 700 0.98rem/1 "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-toggle__button.is-active {
  background: rgba(75, 88, 116, 0.95);
  color: #f8faff;
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.22);
}

.language-toggle__button:hover {
  color: #f8faff;
}

.site-nav a,
.mobile-nav a {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--heading);
  background: rgba(167, 139, 250, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 18px rgba(124, 58, 237, 0.18);
}

body[data-page="home"] .site-nav a[href="shop.html"],
body[data-page="home"] .mobile-nav a[href="shop.html"] {
  color: #ffffff;
  background: var(--shop-link-green);
  box-shadow: 0 12px 24px rgba(8, 183, 173, 0.28);
}

body[data-page="home"] .site-nav a[href="shop.html"]:hover,
body[data-page="home"] .mobile-nav a[href="shop.html"]:hover {
  color: #ffffff;
  background: var(--shop-link-green-hover);
  box-shadow: 0 14px 28px rgba(8, 183, 173, 0.34);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown__caret {
  font-size: 0.7rem;
  transition: transform 220ms ease;
}

.nav-dropdown:hover .nav-dropdown__caret,
.nav-dropdown:focus-within .nav-dropdown__caret,
.nav-dropdown.is-open .nav-dropdown__caret {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(8, 17, 34, 0.96);
  border: 1px solid rgba(167, 139, 250, 0.18);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 25;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__link {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--text);
}

.nav-dropdown__link:hover,
.nav-dropdown__link.is-active {
  background: rgba(167, 139, 250, 0.14);
  color: var(--heading);
}

.menu-toggle,
.menu-close,
.product-modal__close {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--primary-gradient);
  color: white;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(107, 124, 255, 0.24);
}

.menu-toggle {
  display: none;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  content: "";
  position: relative;
}

.menu-toggle span::before {
  top: -6px;
  position: absolute;
}

.menu-toggle span::after {
  top: 6px;
  position: absolute;
}

.hero {
  position: relative;
  padding: 34px 0 10px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(124, 58, 237, 0.18), transparent 32%),
    radial-gradient(circle at 85% 24%, rgba(167, 139, 250, 0.12), transparent 28%);
  pointer-events: none;
}

.hero-reel {
  display: none;
}

.hero-reel__track {
  display: flex;
  width: max-content;
  gap: 18px;
}

.hero-reel__item {
  width: 220px;
  height: 220px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(167, 139, 250, 0.22);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.36);
  flex: 0 0 auto;
}

.hero-reel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 30px;
  min-height: calc(100vh - 120px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 32px 6px 32px 10px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
  margin: 14px 0 18px;
  letter-spacing: -0.05em;
}

.hero-copy h1 .hero-typing-box {
  display: inline-grid;
  min-height: 1.9em;
  align-items: start;
}

.hero-copy h1 .hero-typing-box::before,
.hero-copy h1 [data-hero-typing-heading] {
  grid-area: 1 / 1;
}

.hero-copy h1 .hero-typing-box::before {
  content: attr(data-typing-sizer);
  visibility: hidden;
  white-space: normal;
  pointer-events: none;
}

.hero-copy h1 [data-hero-typing-heading] {
  display: inline-block;
  min-height: 1.9em;
  white-space: normal;
}

.hero-copy h1 [data-hero-typing-heading]::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.12em;
  vertical-align: -0.08em;
  background: currentColor;
  animation: heroTypingCaret 0.85s steps(1) infinite;
}

@keyframes heroTypingCaret {
  0%, 49% {
    opacity: 1;
  }

  50%, 100% {
    opacity: 0;
  }
}

.hero-copy p,
.section-heading p,
.page-banner p,
.company-card p,
.contact-copy p,
.company-meta p,
.product-details p,
.product-card p,
.meta-list,
.product-meta {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.section-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.section-actions--center {
  justify-content: center;
}

.eyebrow,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.24);
  color: #ddd6fe;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.machine-highlight {
  padding: 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.machine-highlight__media {
  position: relative;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: rgba(2, 6, 23, 0.75);
}

.machine-highlight__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 520ms ease, transform 520ms ease;
}

.machine-highlight__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.machine-highlight__count {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.visual-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 18px;
}

.visual-footer p {
  margin: 0 0 6px;
  color: var(--muted);
}

.mini-chip {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(167, 139, 250, 0.14);
  color: var(--heading);
}

.btn {
  position: relative;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0.7;
}

.btn:hover {
  transform: none;
}

.btn-primary {
  background: var(--primary-gradient);
  box-shadow: 0 18px 30px rgba(124, 58, 237, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e293b 0%, #8b5cf6 52%, #c4b5fd 100%);
  box-shadow: 0 20px 38px rgba(124, 58, 237, 0.34);
}

.btn-secondary {
  background: var(--secondary-gradient);
  box-shadow: 0 18px 30px rgba(167, 139, 250, 0.22);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #0f172a 0%, #7c3aed 45%, #c4b5fd 100%);
  box-shadow: 0 20px 38px rgba(167, 139, 250, 0.32);
}

.see-more-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #ddd6fe;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, opacity 220ms ease;
}

.see-more-button:hover {
  color: #ffffff;
}

.see-more-button[style*="display: none"] {
  opacity: 0;
}

.section-block {
  padding: 52px 0;
}

.section-alt {
  position: relative;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 26px;
}

/* 🔍 Search Box */
.shop-hero {
  display: grid;
  grid-template-columns: 1fr;
}

.shop-hero__copy {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 680px;
}

.shop-search {
  position: relative;
  width: 100%;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(8, 20, 26, 0.96), rgba(7, 14, 30, 0.92));
  border: 1px solid rgba(167, 139, 250, 0.18);
  box-shadow: var(--shadow-card);
}

.shop-search__intro h1 {
  margin: 12px 0 0;
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 0.94;
}

.shop-search__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px;
  margin-top: 24px;
  align-items: start;
}

.shop-search__field {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

/* Input */
.shop-search__input {
  flex: 1;
  height: 44px;
  font-size: 0.85rem;
  border-radius: 14px;
}

  .shop-hero__copy {
    margin-top: 0;
    order: 2;
  }

.shop-search__input:focus {
  border-color: rgba(167, 139, 250, 0.52);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.12);
  transform: translateY(-1px);
}

.shop-search__button {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 20px;
  background: var(--shop-action-gradient);
  color: #ffecec;
  font-weight: 800;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.shop-search__button:hover {
  box-shadow: 0 16px 28px rgba(20, 184, 166, 0.22);
}

.shop-categories-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 16px;
  border: 0;
  border-radius: 20px;
  background: var(--shop-category-gradient);
  color: #eff6ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.shop-categories-button:hover {
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.28);
}

.shop-category-dropdown {
  position: relative;
}

.shop-category-dropdown__caret {
  font-size: 0.72rem;
  transition: transform 220ms ease;
}

.shop-category-dropdown.is-open .shop-category-dropdown__caret {
  transform: rotate(180deg);
}

.shop-category-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  max-height: 320px;
  overflow-y: auto;
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(7, 14, 30, 0.98);
  border: 1px solid rgba(167, 139, 250, 0.18);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.46);
  z-index: 12;
}

.shop-category-dropdown__menu[hidden] {
  display: none !important;
}

.shop-category-option {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 16px;
  background: rgba(167, 139, 250, 0.08);
  color: var(--heading);
  text-align: left;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}

.shop-category-option:hover,
.shop-category-option.is-active {
  background: rgba(167, 139, 250, 0.16);
  transform: translateX(3px);
}

.shop-search__meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.shop-search__suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(7, 14, 30, 0.98);
  border: 1px solid rgba(167, 139, 250, 0.18);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.46);
  z-index: 8;
}

.shop-search__suggestions[hidden] {
  display: none !important;
}

.search-suggestion {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 16px;
  background: rgba(167, 139, 250, 0.08);
  color: var(--heading);
  text-align: left;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}

.search-suggestion:hover {
  background: rgba(167, 139, 250, 0.16);
  transform: translateX(3px);
}

.section-heading h2,
.strip-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 10px 0 10px;
  line-height: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  border-radius: 28px;
  padding: 18px;
  overflow: visible;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: border-color 260ms ease;
  isolation: isolate;
}

.product-card.has-open-comment {
  z-index: 30;
}

.product-clickable {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 18px;
  background: rgba(15, 23, 42, 0.88);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(239, 68, 68, 0.95));
  color: #fff7ed;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.22);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.product-media-trigger {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.product-image-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease, filter 220ms ease;
}

.product-image-wrap:hover {
  box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.28);
}

.product-image-wrap:hover img,
.product-media-trigger:hover img {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.product-actions-row {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.product-quick-action {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.quick-icon-button,
.quick-icon-count {
  border: 0;
  background: rgba(10, 16, 30, 0.82);
}

.quick-icon-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 1.32rem;
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.22);
}

.quick-icon-button:hover {
  background: rgba(18, 27, 50, 0.92);
}

.quick-icon-button.is-liked {
  color: #ff6b81;
  background: rgba(190, 24, 93, 0.24);
  box-shadow: 0 10px 18px rgba(190, 24, 93, 0.22);
}

.quick-icon-count {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  background: transparent;
  box-shadow: none;
}

.product-comment-panel {
  position: absolute;
  top: 104px;
  right: 18px;
  width: min(290px, calc(100% - 36px));
  padding: 12px;
  border-radius: 16px;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(15, 23, 42, 0.08);
  z-index: 40;
  transform-origin: top right;
  animation: comment-pop 180ms ease;
}

.product-comment-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: #111111;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-comment-panel__close {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #111111;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
}

.product-comment-panel__list {
  max-height: 155px;
  overflow-y: auto;
  display: grid;
  gap: 8px;
  padding-right: 4px;
}

.product-comment-panel__empty {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.5;
}

.product-comment-entry {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.product-comment-entry:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-comment-entry strong {
  display: block;
  margin-bottom: 3px;
  color: #111111;
  font-size: 0.74rem;
  font-weight: 600;
}

.product-comment-entry p {
  margin: 0;
  color: #111111;
  font-size: 0.74rem;
  line-height: 1.45;
  word-break: break-word;
}

.product-comment-form {
  display: grid;
  gap: 7px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.product-comment-form input,
.product-comment-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  background: #ffffff;
  color: #111111;
  padding: 9px 11px;
  font-size: 0.75rem;
  outline: none;
}

.product-comment-form input::placeholder,
.product-comment-form textarea::placeholder {
  color: #6b7280;
}

.product-comment-form input:focus,
.product-comment-form textarea:focus {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.product-comment-form textarea {
  resize: none;
  min-height: 68px;
}

.product-comment-form button {
  border: 0;
  border-radius: 12px;
  background: #111111;
  color: #ffffff;
  min-height: 32px;
  padding: 0 14px;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
}

@keyframes comment-pop {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(-6px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.product-card h3,
.product-modal__content h2,
.company-card h3,
.contact-copy h3,
.company-meta h3 {
  margin: 0 0 10px;
  color: var(--heading);
}

.product-meta {
  display: grid;
  gap: 10px;
  margin: 6px 0 18px;
  font-size: 0.92rem;
}

.product-category-pill {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 2px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-row {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  min-width: 0;
}

.meta-row span:first-child {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

.product-card .product-clickable > h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: -0.02em;
  max-height: calc(2 * 1.4em);
  overflow: hidden;
}

.product-card .product-clickable > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55em;
  max-height: calc(2 * 1.55em);
  overflow: hidden;
}

.product-card .meta-row span:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}

.product-card .product-meta .meta-row:first-child span:last-child {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 500;
}

.ghost-button {
  display: flex;
  justify-content: center;
}

.ghost-button .btn {
  width: auto;
}

.company-section {
  position: relative;
}

.company-showcase {
  position: relative;
  display: flex;
  align-items: center;
  gap: 44px;
}

.company-showcase__media,
.company-showcase__content {
  position: relative;
  z-index: 1;
}

.company-showcase__media {
  flex: 0 0 48%;
  min-height: 460px;
  border-radius: 30px;
  overflow: hidden;
  background: transparent;
}

.company-showcase__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(167, 139, 250, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.14) 0%, rgba(15, 23, 42, 0) 40%);
  z-index: 1;
  pointer-events: none;
}

.company-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.company-showcase__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.company-showcase__pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.company-showcase__content h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.company-showcase__content p {
  margin: 0;
  max-width: 640px;
  color: rgba(229, 231, 235, 0.76);
  font-size: 1rem;
  line-height: 1.75;
}

.company-showcase__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.company-showcase__video {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--heading);
  font-size: 1.02rem;
  font-weight: 700;
}

.company-showcase__video-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
  font-size: 1.1rem;
}

.product-modal__content::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.product-modal__content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.8), rgba(167, 139, 250, 0.8));
  border-radius: 99px;
}

.dual-strip .strip-card {
  border-radius: 34px;
  padding: 28px;
}

.map-card,
.contact-card,
.footer-shell {
  padding: 0;
}

.map-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.map-frame {
  overflow: hidden;
  border-radius: 24px;
  min-height: 360px;
  box-shadow: var(--shadow-card);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.company-meta,
.contact-copy,
.contact-form {
  border-radius: 24px;
  padding: 24px;
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.meta-list li + li {
  margin-top: 10px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--heading);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(167, 139, 250, 0.16);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.74);
  padding: 14px 16px;
  color: var(--text);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.12);
}

.info-ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.info-ticks span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.12);
  color: var(--heading);
}

.page-banner,
.inner-page {
  padding-top: 28px;
}

.page-banner {
  padding: 52px 28px;
  border-radius: 34px;
  min-height: calc(100vh - 170px);
  display: grid;
  align-content: center;
}

body[data-page="shop"] .page-banner {
  padding: 10px 0 0;
  min-height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-banner h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  margin: 14px 0 10px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.contact-hero__copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.contact-hero__copy p,
.contact-form-panel__header p,
.contact-sidebar__card p,
.contact-map-strip__content p,
.contact-point p {
  margin: 0;
  color: rgba(229, 231, 235, 0.76);
  line-height: 1.75;
}

.contact-hero__panel,
.contact-sidebar__card,
.contact-map-strip__content {
  border-radius: 30px;
  padding: 28px;
}

.contact-hero__panel {
  display: grid;
  align-content: start;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(94, 234, 212, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(8, 17, 34, 0.98), rgba(11, 22, 41, 0.94));
}

.contact-hero__panel h2,
.contact-form-panel__header h2,
.contact-map-strip__content h2,
.contact-sidebar__card h3 {
  margin: 0;
  color: var(--heading);
  font-family: "Syne", sans-serif;
}

.contact-hero__panel h2,
.contact-form-panel__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.contact-hero__steps {
  display: grid;
  gap: 14px;
}

.contact-hero__steps article,
.contact-map-strip__stats article {
  border-radius: 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero__steps strong,
.contact-map-strip__stats strong {
  display: block;
  margin-bottom: 8px;
  color: #5eead4;
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
}

.contact-hero__steps p,
.contact-map-strip__stats span {
  margin: 0;
  color: rgba(229, 231, 235, 0.72);
  line-height: 1.6;
}

.contact-highlights {
  padding-top: 26px;
}

.contact-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-point {
  padding: 24px;
}

.contact-point span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #5eead4;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-point h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.contact-layout__main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.contact-form-panel {
  padding: 30px;
  border-radius: 34px;
}

.contact-form-panel__header {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.contact-form-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-sidebar {
  display: grid;
  gap: 22px;
}

.contact-sidebar__card {
  display: grid;
  gap: 14px;
}

.contact-sidebar__card--accent {
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(8, 17, 34, 0.94));
}

.contact-map-strip__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.contact-map-strip .map-frame {
  min-height: 100%;
}

.contact-map-strip__content {
  display: grid;
  gap: 16px;
}

.contact-map-strip__stats {
  display: grid;
  gap: 14px;
}

.policy-page {
  width: min(var(--page-max-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 24px auto 48px;
}

.policy-page__hero {
  padding: 12px 0 8px;
}

.policy-page__hero .eyebrow {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.policy-page__hero h1 {
  margin: 14px 0 12px;
  color: #111111;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
}

.policy-page__hero p {
  margin: 0;
  max-width: 780px;
  color: var(--muted);
  line-height: 1.75;
}

.policy-doc {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.policy-section {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.policy-section h2 {
  margin: 0 0 12px;
  color: #111827;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.policy-section p,
.policy-section li {
  color: #475569;
  line-height: 1.8;
}

.policy-section ul {
  margin: 0;
  padding-left: 22px;
}

.policy-contact {
  display: grid;
  gap: 10px;
}

.policy-contact strong {
  color: #111827;
}

.about-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.about-hero__copy,
.about-hero__panel {
  position: relative;
  z-index: 1;
}

.about-hero__copy {
  max-width: 760px;
}

.about-hero__panel {
  align-self: center;
  padding: 28px;
  border-radius: 28px;
}

.about-hero__panel h2 {
  margin: 16px 0 18px;
  font-family: "Syne", sans-serif;
  color: var(--heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.about-story__grid,
.about-value-grid,
.about-metrics__grid,
.about-timeline__grid {
  display: grid;
  gap: 20px;
}

.about-story__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: stretch;
}

.about-story__feature {
  overflow: hidden;
  border-radius: 30px;
}

.about-story__feature img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.about-story__content {
  padding: 24px;
}

.about-story__content h3,
.about-step h3 {
  margin: 0 0 10px;
  color: var(--heading);
}

.about-story__content p,
.about-step p,
.about-metric span {
  color: var(--muted);
  line-height: 1.7;
}

.about-story__stack {
  display: grid;
  gap: 18px;
}

.about-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-metrics .strip-card {
  border-radius: 34px;
  padding: 28px;
}

.about-metrics__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-metric {
  padding: 24px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(167, 139, 250, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow-card);
}

.about-metric strong {
  display: block;
  margin-bottom: 10px;
  color: var(--heading);
  font-family: "Syne", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.about-timeline__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-step {
  position: relative;
  padding: 24px;
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(167, 139, 250, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow-card);
}

.about-step span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.18);
  color: #ddd6fe;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.about-owner__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 44px;
  align-items: stretch;
}

.about-owner__details {
  display: grid;
  align-content: center;
  gap: 18px;
}

.about-owner__details h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
}

.about-owner__details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-owner__info {
  display: grid;
  gap: 10px;
}

.about-owner__info p {
  margin: 0;
  color: rgba(229, 231, 235, 0.78);
  line-height: 1.8;
}

.about-owner__info strong {
  color: var(--heading);
}

.about-owner__media {
  display: grid;
  align-items: center;
}

.about-owner__image-wrap {
  overflow: hidden;
  border-radius: 28px;
  min-height: 100%;
  display: grid;
  place-items: center;
}

.about-owner__image-wrap img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 26px;
}

.site-footer {
  width: min(var(--page-max-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 26px auto 10px;
  padding: 0 0 12px;
}

.footer-shell {
  padding: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand p,
.footer-links p {
  color: var(--muted);
  max-width: 560px;
}

.footer-links {
  width: 100%;
}

.footer-links-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.footer-links-column {
  display: grid;
  gap: 16px;
}

.footer-links-column h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  color: var(--heading);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.social-row,
.footer-link-grid {
  display: flex;
  gap: 4px;
}

.social-row {
  flex-wrap: wrap;
}

.footer-link-grid {
  flex-direction: column;
  align-items: flex-start;
}

.footer-link-grid a.is-active {
  color: var(--heading);
}

.social-link {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 20px rgba(2, 6, 23, 0.22);
  color: var(--heading);
  transition: 220ms ease;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link__icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 6px;
}

.social-link:hover {
  transform: translateY(-3px);
  background: var(--accent-gradient);
  color: #020617;
}

.footer-link-grid a {
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  transition: color 220ms ease;
}

.footer-link-grid a:hover {
  color: var(--heading);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(167, 139, 250, 0.14);
  color: var(--muted);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.46);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-panel {
  margin-left: auto;
  width: min(100%, 380px);
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(8, 17, 34, 0.96));
  box-shadow: -22px 0 60px rgba(2, 6, 23, 0.38);
  padding: 22px;
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.2, 1, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.menu-overlay.is-open .menu-panel {
  transform: translateX(0);
}

.menu-close {
  margin-left: auto;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  padding-top: 38px;
}

.mobile-nav a {
  font-size: 1.4rem;
  padding: 16px 18px;
  text-align: center;
  justify-content: center;
}

.mobile-nav-group {
  display: grid;
  gap: 10px;
}

.mobile-nav-group__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border: 0;
  border-radius: 24px;
  background: rgba(167, 139, 250, 0.08);
  color: var(--muted);
  font-size: 1.4rem;
  text-align: center;
  cursor: pointer;
  transition: 220ms ease;
  position: relative;
}

.mobile-nav-group__trigger:hover,
.mobile-nav-group__trigger.is-active {
  color: var(--heading);
  background: rgba(167, 139, 250, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 18px rgba(124, 58, 237, 0.18);
}

.mobile-nav-group__caret {
  font-size: 0.9rem;
  transition: transform 220ms ease;
  position: absolute;
  right: 18px;
}

.mobile-nav-group.is-open .mobile-nav-group__caret {
  transform: rotate(180deg);
}

.mobile-nav-group__panel {
  display: none;
  margin-left: 18px;
  padding-left: 14px;
  border-left: 2px solid rgba(167, 139, 250, 0.18);
}

.mobile-nav-group.is-open .mobile-nav-group__panel {
  display: grid;
  gap: 8px;
}

.mobile-nav-group__link {
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-nav-group__link:hover,
.mobile-nav-group__link.is-active {
  color: var(--heading);
  background: rgba(167, 139, 250, 0.12);
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 58;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(14px);
}

.search-overlay__panel {
  position: relative;
  width: min(1180px, calc(100% - (var(--page-gutter) * 2)));
  margin: 22px auto;
  max-height: calc(100vh - 44px);
  border-radius: 32px;
  padding: 28px;
  overflow: hidden;
}

.search-overlay__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--primary-gradient);
  color: white;
  cursor: pointer;
}

.search-overlay__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding-right: 68px;
  margin-bottom: 24px;
}

.search-overlay__header h2,
.search-empty h3 {
  margin: 10px 0 8px;
  color: var(--heading);
  font-family: "Syne", sans-serif;
}

.search-overlay__header p,
.search-empty p {
  color: var(--muted);
  margin: 0;
}

.search-overlay__body {
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  padding-right: 6px;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.search-empty {
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  border-radius: 28px;
  border: 1px dashed rgba(167, 139, 250, 0.24);
  background: rgba(167, 139, 250, 0.05);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.comment-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.comment-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.notice-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.notice-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(12px);
}

.comment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.68);
  backdrop-filter: blur(12px);
}

.notice-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(12px);
}

.product-modal__panel {
  position: relative;
  width: min(1160px, calc(100% - (var(--page-gutter) * 2)));
  height: min(92vh, 920px);
  margin: 22px auto;
  border-radius: 32px;
  padding: 22px;
  overflow: hidden;
}

.comment-modal__panel {
  position: relative;
  width: min(820px, calc(100% - (var(--page-gutter) * 2)));
  margin: 5vh auto;
  border-radius: 30px;
  padding: 28px;
  overflow: hidden;
}

.notice-popup__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 32px 28px;
  border-radius: 28px;
  text-align: center;
}

.product-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
}

.comment-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.16);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.notice-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.16);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.notice-popup__panel h2 {
  margin: 0.65rem 0 0.85rem;
}

.notice-popup__panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.product-modal__scroll {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 26px;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

.product-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  min-height: 100%;
  align-items: start;
}

.product-modal__gallery {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  gap: 18px;
  align-self: start;
}

.product-modal__main {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-card);
}

.product-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.thumb-button {
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  opacity: 0.72;
  transition: transform 220ms ease, opacity 220ms ease;
}

.thumb-button.is-active,
.thumb-button:hover {
  opacity: 1;
}

.thumb-button img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.product-modal__content {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(8, 17, 34, 0.96) 100%);
  border: 1px solid rgba(167, 139, 250, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 0.93rem;
}

.comment-modal__content {
  display: grid;
  gap: 22px;
}

.comment-modal__header {
  display: grid;
  gap: 10px;
  padding-right: 40px;
}

.comment-modal__header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.comment-modal__header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.comment-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.comment-modal__list {
  display: grid;
  gap: 14px;
  max-height: 58vh;
  overflow: auto;
  padding-right: 8px;
}

.comment-empty-state,
.comment-entry,
.comment-form {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.comment-empty-state {
  padding: 22px;
  min-height: 180px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.comment-empty-state h3,
.comment-entry p {
  margin: 0;
}

.comment-empty-state h3,
.comment-entry__meta strong {
  color: #fff;
}

.comment-empty-state p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.comment-entry {
  padding: 18px 20px;
  display: grid;
  gap: 10px;
}

.comment-entry__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.comment-entry__meta span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  white-space: nowrap;
}

.comment-entry p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  word-break: break-word;
}

.comment-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.comment-form label {
  display: grid;
  gap: 8px;
}

.comment-form label span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.66);
  color: #fff;
  padding: 14px 16px;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: rgba(167, 139, 250, 0.42);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.12);
}

.comment-form textarea {
  resize: vertical;
  min-height: 120px;
}

.comment-form__footer {
  display: grid;
  gap: 14px;
}

.comment-form__status {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.5;
  font-size: 0.9rem;
}

.product-details {
  display: grid;
  gap: 20px;
}

.product-details h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.product-details > p {
  margin: 0;
  font-size: 0.92rem;
}

.product-detail-list {
  display: grid;
  gap: 12px;
}

.detail-item {
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(167, 139, 250, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.detail-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

.detail-item span {
  font-size: 0.87rem;
  line-height: 1.65;
}

.detail-note {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.66rem;
  color: rgba(229, 231, 235, 0.62);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.product-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-cta:hover {
  transform: translateY(-2px);
}

.product-cta--order {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 18px 30px rgba(124, 58, 237, 0.22);
}

.product-cta--whatsapp {
  justify-content: flex-start;
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
  border: 1px solid rgba(20, 120, 56, 0.18);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(37, 211, 102, 0.28);
  font-size: 1rem;
  font-weight: 800;
}

.product-cta--whatsapp img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.floating-whatsapp {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 55;
  display: grid;
  justify-items: start;
  gap: 12px;
}

.floating-whatsapp__hello {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 0 6px;
  font-family: "Syne", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  animation: floatingHelloBlink 5s infinite;
}

.floating-whatsapp__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 22px 34px rgba(37, 211, 102, 0.28);
  cursor: pointer;
}

.floating-whatsapp__icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.floating-whatsapp__icon svg {
  width: 20px;
  height: 20px;
}

.floating-whatsapp__panel {
  width: min(340px, calc(100vw - 36px));
  padding: 18px;
  border-radius: 24px;
}

.floating-whatsapp__panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.floating-whatsapp__panel-header .eyebrow {
  margin-bottom: 10px;
}

.floating-whatsapp__panel-header h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  color: var(--heading);
  font-size: 1.3rem;
}

.floating-whatsapp__close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
}

.floating-whatsapp__form {
  display: grid;
  gap: 14px;
}

.floating-whatsapp__form label {
  display: grid;
  gap: 8px;
}

.floating-whatsapp__form label span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.floating-whatsapp__form textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.74);
  color: #ffffff;
  padding: 14px 16px;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.floating-whatsapp__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.floating-whatsapp__form textarea:focus {
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.14);
}

.floating-whatsapp__form .btn {
  width: 100%;
  justify-content: center;
}

@keyframes floatingHelloBlink {
  0%, 8%, 100% {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(0 0 0 rgba(167, 139, 250, 0));
  }

  4% {
    opacity: 0.18;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.3));
  }
}

.product-modal__scroll::-webkit-scrollbar {
  width: 8px;
}

.product-modal__scroll::-webkit-scrollbar-thumb {
  background: rgba(167, 139, 250, 0.34);
  border-radius: 999px;
}

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 1;
  transform: none;
  transition: none;
}

.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1199px) {
  .product-modal__panel {
    width: min(1024px, calc(100% - (var(--page-gutter) * 2)));
    height: min(90vh, 860px);
  }

  .comment-modal__panel {
    width: min(760px, calc(100% - (var(--page-gutter) * 2)));
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .nav-inner {
    gap: 12px;
  }

  .nav-actions {
    gap: 8px;
  }

  .language-toggle__button {
    min-width: 48px;
    height: 38px;
    font-size: 0.92rem;
  }

  .hero-grid,
  .map-grid,
  .contact-grid,
  .contact-hero,
  .contact-layout__main,
  .contact-map-strip__grid,
  .footer-grid,
  .product-modal__body,
  .comment-modal__body,
  .about-hero,
  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-inline: 4px;
  }

  .footer-links-layout {
    gap: 24px;
  }

  .company-showcase {
    flex-direction: column;
    gap: 26px;
  }

  .company-showcase__media {
    width: 100%;
    flex-basis: auto;
    min-height: 340px;
  }

  .company-showcase__content {
    width: 100%;
  }

  .hero-visual {
    order: -1;
  }

  .machine-highlight__media {
    height: 320px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-highlights__grid,
  .contact-form-panel__grid {
    grid-template-columns: 1fr;
  }

  .about-value-grid,
  .about-metrics__grid,
  .about-timeline__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-hero {
    grid-template-columns: 1fr;
  }

  .search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-modal__panel {
    margin: 10px auto;
    height: min(94vh, 820px);
  }

  .comment-modal__panel {
    margin: 16px auto;
    padding: 24px;
  }

  .product-modal__scroll {
    padding-top: 32px;
  }

  .product-modal__gallery {
    grid-template-rows: auto auto;
  }

  .product-modal__main {
    max-height: 340px;
  }

  .product-modal__content {
    padding: 18px;
  }

  .search-overlay__header {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
  }

}

@media (max-width: 640px) {
  .page-wrap,
  .site-header,
  .site-footer,
  .product-modal__panel,
  .comment-modal__panel {
    width: calc(100% - (var(--page-gutter) * 2));
  }

  .page-wrap,
  .site-header,
  .site-footer {
    margin-inline: auto;
  }

  .site-header {
    top: 0;
    margin-top: 0;
  }

  .nav-inner {
    padding-inline: 0;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-text strong {
    font-size: 1.08rem;
  }

  .brand-text span {
    font-size: 0.68rem;
  }

  .nav-actions {
    gap: 6px;
    flex: 0 0 auto;
  }

  .language-toggle {
    padding: 3px;
  }

  .language-toggle__button {
    min-width: 42px;
    height: 34px;
    font-size: 0.84rem;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-grid {
    min-height: auto;
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .footer-shell {
    padding: 24px 20px;
  }

  .footer-links-layout {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .footer-links-column {
    gap: 12px;
  }

  .footer-links-column h3 {
    font-size: clamp(1.05rem, 5.8vw, 1.45rem);
  }

  .contact-hero,
  .contact-form-panel,
  .contact-hero__panel,
  .contact-sidebar__card,
  .contact-map-strip__content,
  .contact-point {
    padding: 20px;
  }

  .contact-hero__panel h2,
  .contact-form-panel__header h2,
  .contact-map-strip__content h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .contact-highlights__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-owner__layout {
    grid-template-columns: 1fr;
  }

  .about-owner__media {
    order: -1;
  }

  .about-owner__details {
    text-align: center;
  }

  .about-owner__details .eyebrow {
    justify-self: center;
    text-align: center;
    white-space: nowrap;
  }

  .contact-form-panel__footer .btn {
    width: 100%;
    justify-content: center;
  }

  .product-grid {
    gap: 14px;
  }

  .product-card {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .company-showcase {
    gap: 18px;
  }

  .company-showcase__media {
    min-height: 240px;
    border-radius: 22px;
  }

  .company-showcase__pill {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .company-showcase__content h2 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .company-showcase__content p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .company-showcase__actions {
    width: 100%;
    gap: 12px;
  }

  .company-showcase__actions .btn,
  .company-showcase__video {
    width: 100%;
    justify-content: center;
  }

  .product-grid .product-card .product-clickable > p {
    display: none;
  }

  .about-hero__panel,
  .about-story__content,
  .about-metric,
  .about-step,
  .about-metrics .strip-card {
    padding: 20px;
  }

  .about-story__feature {
    border-radius: 24px;
  }

  .about-story__feature img {
    height: 220px;
  }

  .about-value-grid,
  .about-metrics__grid,
  .about-timeline__grid {
    grid-template-columns: 1fr;
  }

  .shop-search {
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .inner-page,
  .page-banner {
    padding-top: 0;
  }

  .page-banner {
    padding: 2px 0 0;
    min-height: auto;
  }

  .shop-search {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .shop-search__controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
    order: 1;
  }

 /* 🟩 Search area */
 .shop-search__field {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 1 100%;
  min-width: 0;
}
  /* Input */
.shop-search__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  font-size: 0.85rem;
  border-radius: 14px;
}


  .shop-search__suggestions {
    top: calc(100% + 8px);
  }

  .shop-search__meta {
    display: none;
  }

  .product-card {
    border-radius: 22px;
    padding: 12px;
  }

  .product-card .product-clickable > h3 {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .product-card .product-category-pill,
  .product-card .product-clickable > p {
    font-size: 0.72rem;
  }

  .product-card .product-meta {
    gap: 8px;
    margin: 4px 0 16px;
    font-size: 0.72rem;
  }

  .product-card .meta-row span:first-child,
  .product-card .meta-row span:last-child {
    font-size: 0.7rem;
  }

  .product-card .ghost-button .btn {
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .product-image-wrap img {
    height: 180px;
  }

  .product-comment-panel {
    top: 86px;
    right: 12px;
    width: min(280px, calc(100% - 24px));
  }

  .machine-highlight__media {
    height: 320px;
  }

  .page-banner,
  .map-frame,
  .company-meta,
  .contact-copy,
  .contact-form,
  .footer-shell,
  .page-banner {
    border-radius: 24px;
  }

  .product-modal__panel {
    border-radius: 24px 24px 0 0;
    min-height: 100dvh;
    margin: 0;
    width: 100%;
    height: 100dvh;
    padding: 16px 14px 14px;
  }

  .comment-modal__panel {
    border-radius: 24px 24px 0 0;
    min-height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    width: 100%;
    padding: 22px 16px;
  }

  .comment-modal__header {
    padding-right: 30px;
  }

  .comment-modal__list {
    max-height: none;
    padding-right: 0;
  }

  .about-owner__details h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .about-owner__image-wrap img {
    width: min(100%, 320px);
  }

  .search-overlay__panel {
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding: 22px 16px;
    border-radius: 24px 24px 0 0;
  }

  .search-overlay__body {
    max-height: calc(100vh - 170px);
  }

  .shop-category-dropdown {
    flex: 1 1 100%;
    width: 100%;
  }

  .product-modal__scroll {
    padding-top: 40px;
    padding-right: 0;
  }

  .product-modal__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-modal__content {
    border-radius: 22px;
    padding: 16px;
    font-size: 0.88rem;
  }

  .product-details {
    gap: 16px;
  }

  .product-modal__actions {
    position: sticky;
    bottom: 0;
    padding-top: 6px;
    background: linear-gradient(180deg, rgba(8, 17, 34, 0) 0%, rgba(8, 17, 34, 0.98) 32%);
  }

  .floating-whatsapp {
    left: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .floating-whatsapp__hello {
    min-width: 82px;
    padding: 0 4px;
    font-size: 0.76rem;
  }

  .floating-whatsapp__trigger {
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp__icon {
    width: 30px;
    height: 30px;
  }

  .floating-whatsapp__panel {
    width: min(320px, calc(100vw - 24px));
    padding: 16px;
    border-radius: 22px;
  }

  .product-cta {
    min-height: 54px;
    padding-inline: 14px;
    font-size: 0.86rem;
  }

  .thumb-button img {
    height: 74px;
  }

  .hero-reel {
    inset: 88px 0 auto;
    height: 170px;
  }

  .hero-reel__item {
    width: 150px;
    height: 150px;
    border-radius: 20px;
  }

  .search-results-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shop-search__button,
 /* 🟥 Categories button */
.shop-categories-button {
  flex: 0 0 auto;
  min-width: 96px;
  height: 44px;
  font-size: 0.72rem;
  padding: 0 12px;
  border-radius: 14px;
}

 /* Search button (VISIBLE now) */
.shop-search__button {
  display: block;
  height: 44px;
  padding: 0 14px;
  font-size: 0.75rem;
  border-radius: 14px;
  }

  .shop-categories-button {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding-inline: 14px;
    font-size: 0.74rem;
    font-weight: 700;
    border-radius: 14px;
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.18);
  }

  .shop-category-dropdown__menu {
    left: 0;
    right: 0;
    min-width: 100%;
    max-width: 100%;
  }

  .shop-category-option {
    padding: 11px 12px;
    font-size: 0.84rem;
  }

  .social-row {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 12px;
    justify-content: start;
  }

  .social-row .social-link:nth-child(3) {
    order: 4;
  }

  .social-row .social-link:nth-child(4) {
    order: 3;
  }
}
