﻿:root {
  --red: #4f91b8;
  --deep: #18191d;
  --ink: #25272d;
  --muted: #666b75;
  --line: #e6e0d8;
  --paper: #eef6fa;
  --white: #ffffff;
  --gold: #bd8f51;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  zoom: 1;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  display: none;
  justify-content: space-between;
  gap: 20px;
  padding: 9px clamp(18px, 4vw, 58px);
  background: var(--deep);
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.7vw, 34px);
  min-height: 76px;
  padding: 8px clamp(18px, 1.8vw, 28px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(12px);
}

.header-brand-group {
  display: flex;
  align-items: center;
  gap: clamp(10px, .82vw, 13px);
  flex: 0 0 auto;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(153px, 10.66vw, 189px);
  margin-right: -8px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.brand-divider {
  width: 2px;
  height: 43px;
  background: #1f67b1;
}

.brand-tagline {
  display: grid;
  gap: 4px;
  max-width: clamp(215px, 18vw, 335px);
  margin: 0;
  color: #262a31;
  font-size: clamp(11px, .78vw, 13.5px);
  line-height: 1.25;
  white-space: nowrap;
}

.brand-tagline span {
  display: block;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

.nav {
  --language-divider-gap: clamp(18px, 1.7vw, 34px);
  display: grid;
  grid-template-columns: repeat(6, max-content) max-content;
  flex: 1 1 auto;
  align-items: center;
  justify-items: center;
  justify-content: space-between;
  column-gap: var(--language-divider-gap);
  margin-left: clamp(18px, 1.7vw, 34px);
  min-width: 0;
  color: var(--deep);
  font-family: "Trebuchet MS", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 1.06vw, 19px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a {
  padding: 8px 0;
  white-space: nowrap;
}

.nav > a,
.nav-product,
.nav-about,
.language-menu {
  width: auto;
}

.nav > a,
.nav-product > a,
.nav-about > a,
.language-trigger {
  justify-content: center;
  text-align: center;
}

.nav-product,
.nav-about {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-product > a,
.nav-about > a {
  display: inline-flex;
}

.product-dropdown,
.about-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) minmax(170px, .9fr) minmax(170px, .9fr);
  gap: 18px;
  width: min(760px, 92vw);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 48px rgba(24, 25, 29, .16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease;
}

.all-products-dropdown {
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  width: min(560px, 92vw);
}

.about-dropdown {
  grid-template-columns: minmax(190px, 1fr);
  gap: 8px;
  width: min(250px, 88vw);
}

.about-dropdown a {
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--deep);
  font-size: 13px;
  line-height: 1.2;
  text-transform: none;
}

.product-dropdown > a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--deep);
  font-size: 13px;
  line-height: 1.2;
  text-transform: none;
}

.product-dropdown > a:hover,
.product-dropdown > a:focus,
.about-dropdown a:hover,
.about-dropdown a:focus {
  background: var(--red);
  color: var(--white);
}

.nav-product:hover .product-dropdown,
.nav-product:focus-within .product-dropdown,
.nav-about:hover .about-dropdown,
.nav-about:focus-within .about-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-product.product-menu-closed .product-dropdown {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
}

.nav-product.product-menu-open .product-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

html.product-touch-navigating .nav-product .product-dropdown {
  opacity: 0 !important;
  pointer-events: none !important;
}

.dropdown-group {
  display: grid;
  align-content: start;
  gap: 7px;
}

.dropdown-group strong {
  padding: 0 0 7px;
  border-bottom: 2px solid var(--red);
  color: var(--red);
  font-size: 15px;
  text-transform: uppercase;
}

.dropdown-group a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--deep);
  font-size: 13px;
  line-height: 1.2;
  text-transform: none;
}

.dropdown-group a:hover,
.dropdown-group a:focus {
  background: var(--red);
  color: var(--white);
}


@media (hover: none), (pointer: coarse) {
  .nav-product:hover .product-dropdown,
  .nav-product:focus-within .product-dropdown,
  .nav-about:hover .about-dropdown,
  .nav-about:focus-within .about-dropdown {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
  }

  .nav-product.product-menu-open .product-dropdown {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0);
  }

  .nav-product.product-menu-closed .product-dropdown,
  html.product-touch-navigating .nav-product .product-dropdown {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, 10px) !important;
  }
}

.language-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding-left: 0;
}

.language-menu::before {
  position: absolute;
  left: var(--language-divider-left, calc(-1 * var(--language-divider-gap) / 2));
  top: 50%;
  width: 1px;
  height: 42px;
  background: rgba(31, 103, 177, .48);
  content: "";
  transform: translateY(-50%);
}

.language-menu::after {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 29;
  width: 154px;
  height: 8px;
  content: "";
}

.language-trigger {
  min-height: 34px;
  padding: 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--deep);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}

.language-menu:hover .language-trigger,
.language-menu:focus-within .language-trigger {
  color: var(--red);
  transform: translateY(-2px);
}

.language-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 196px;
  padding: 8px;
  border: 1px solid rgba(24, 25, 29, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 40px rgba(20, 28, 42, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(.98);
  transform-origin: top right;
  transition: opacity .18s ease, transform .18s ease;
}

.language-menu:hover .language-panel,
.language-menu:focus-within .language-panel,
.language-menu.language-menu-open .language-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.language-menu.language-closed .language-panel {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(.98);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px clamp(18px, 3vw, 40px);
  border-bottom: 1px solid rgba(230, 224, 216, .72);
  background: rgba(255, 255, 255, .94);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.breadcrumb a {
  color: var(--red);
  font-weight: 700;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  color: var(--deep);
}

.breadcrumb span:last-child {
  color: var(--deep);
}

.breadcrumb-separator {
  color: rgba(24, 25, 29, .35);
}

html[lang="en"] .nav,
html[lang="de"] .nav,
html[lang="fr"] .nav,
html[lang="it"] .nav,
html[lang="es"] .nav {
  --language-divider-gap: clamp(14px, 1.35vw, 27px);
  column-gap: clamp(14px, 1.35vw, 27px);
  font-size: clamp(14px, .96vw, 17px);
}

html[lang="de"] .brand-tagline,
html[lang="fr"] .brand-tagline,
html[lang="it"] .brand-tagline,
html[lang="es"] .brand-tagline {
  max-width: clamp(200px, 17vw, 310px);
  font-size: clamp(10.5px, .72vw, 12.5px);
}

@media (max-width: 1500px) {
  .site-header {
    min-height: 76px;
    gap: clamp(12px, 1.2vw, 22px);
    padding-right: 18px;
    padding-left: 18px;
  }

  .nav {
    --language-divider-gap: clamp(10px, 1.05vw, 18px);
    column-gap: clamp(10px, 1.05vw, 18px);
    margin-left: clamp(10px, 1.05vw, 18px);
    font-size: clamp(13.5px, .92vw, 16.5px);
  }

  .brand {
    width: clamp(145px, 10.1vw, 172px);
    margin-right: -7px;
  }

  .brand-tagline {
    max-width: clamp(190px, 17vw, 285px);
    font-size: clamp(10.5px, .72vw, 12px);
  }
}

@media (max-width: 1320px) {
  .brand-tagline {
    display: grid;
    max-width: clamp(168px, 16vw, 240px);
    font-size: clamp(9.5px, .76vw, 11.5px);
    line-height: 1.2;
  }

  .brand-divider {
    display: block;
    height: 34px;
  }

  .nav {
    --language-divider-gap: clamp(6px, .86vw, 14px);
    column-gap: clamp(6px, .86vw, 14px);
    margin-left: clamp(10px, 1.4vw, 22px);
    font-size: clamp(12px, .88vw, 14px);
  }
}


.nav a:hover,
.nav a:focus {
  color: #1f67b1;
}

.language-trigger:hover,
.language-trigger:focus {
  color: var(--red);
}

.search-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-link svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.language-switch {
  display: none;
  overflow: hidden;
  border: 1px solid var(--line);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 42px;
  min-height: 28px;
  padding: 0 8px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.lang-btn::before {
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 16px;
  border: 1px solid rgba(24, 25, 29, .16);
  border-radius: 2px;
  background-color: #f5f5f5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
  content: "";
}

.lang-btn[data-lang="en"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Crect width='60' height='36' fill='%23012169'/%3E%3Cpath d='M0 0l60 36M60 0L0 36' stroke='%23fff' stroke-width='8'/%3E%3Cpath d='M0 0l60 36M60 0L0 36' stroke='%23c8102e' stroke-width='4'/%3E%3Cpath d='M30 0v36M0 18h60' stroke='%23fff' stroke-width='12'/%3E%3Cpath d='M30 0v36M0 18h60' stroke='%23c8102e' stroke-width='7'/%3E%3C/svg%3E");
}

.lang-btn[data-lang="es"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Crect width='60' height='40' fill='%23c60b1e'/%3E%3Crect y='10' width='60' height='20' fill='%23ffc400'/%3E%3C/svg%3E");
}








.lang-btn:hover,
.lang-btn:focus {
  color: var(--red);
  background: rgba(79, 145, 184, .10);
  transform: translateX(2px);
}

.lang-btn.active {
  background: rgba(79, 145, 184, .12);
  color: var(--red);
}


.lang-btn[data-lang="de"]::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2040'%3E%3Crect%20width='60'%20height='40'%20fill='%23000'/%3E%3Crect%20y='13.33'%20width='60'%20height='13.34'%20fill='%23dd0000'/%3E%3Crect%20y='26.67'%20width='60'%20height='13.33'%20fill='%23ffce00'/%3E%3C/svg%3E");
}

.lang-btn[data-lang="fr"]::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2040'%3E%3Crect%20width='20'%20height='40'%20fill='%230055a4'/%3E%3Crect%20x='20'%20width='20'%20height='40'%20fill='%23fff'/%3E%3Crect%20x='40'%20width='20'%20height='40'%20fill='%23ef4135'/%3E%3C/svg%3E");
}

.lang-btn[data-lang="it"]::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2040'%3E%3Crect%20width='20'%20height='40'%20fill='%23009246'/%3E%3Crect%20x='20'%20width='20'%20height='40'%20fill='%23fff'/%3E%3Crect%20x='40'%20width='20'%20height='40'%20fill='%23ce2b37'/%3E%3C/svg%3E");
}

.lang-btn[data-lang="ar"]::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2040'%3E%3Crect%20width='60'%20height='40'%20fill='%23006633'/%3E%3Crect%20y='26.67'%20width='60'%20height='13.33'%20fill='%23000'/%3E%3Crect%20y='13.33'%20width='60'%20height='13.34'%20fill='%23fff'/%3E%3Crect%20width='18'%20height='40'%20fill='%23ce1126'/%3E%3C/svg%3E");
}

.lang-btn[data-lang="pt"]::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2040'%3E%3Crect%20width='24'%20height='40'%20fill='%23046a38'/%3E%3Crect%20x='24'%20width='36'%20height='40'%20fill='%23da291c'/%3E%3Ccircle%20cx='24'%20cy='20'%20r='7'%20fill='%23ffcd00'/%3E%3C/svg%3E");
}

.lang-btn[data-lang="ru"]::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2040'%3E%3Crect%20width='60'%20height='13.33'%20fill='%23fff'/%3E%3Crect%20y='13.33'%20width='60'%20height='13.34'%20fill='%230039a6'/%3E%3Crect%20y='26.67'%20width='60'%20height='13.33'%20fill='%23d52b1e'/%3E%3C/svg%3E");
}

.social-share {
  position: fixed;
  right: 18px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 20;
  display: grid;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.social-share p {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: var(--white);
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.social svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: .8;
  stroke-linejoin: round;
}

.social.fb {
  background: #3b5998;
  color: var(--white);
}

.social.ig {
  background: #e4405f;
  color: var(--white);
}

.social.pin {
  background: #bd081c;
  color: var(--white);
}

.social.tk {
  background: #000000;
  color: var(--white);
}

.social.yt {
  background: #ff0000;
  color: var(--white);
}

.social.x {
  background: #111111;
  color: var(--white);
}

.social.wechat {
  background: #07c160;
  color: var(--white);
}

.social.messenger {
  background: #0084ff;
  color: var(--white);
}

.social.telegram {
  background: #229ed9;
  color: var(--white);
}

.social.wa {
  background: #25d366;
  color: var(--white);
}

.social.mail {
  background: var(--gold);
  color: var(--white);
}

.social.phone {
  background: var(--red);
  color: var(--white);
}

.social.plus {
  background: var(--red);
  color: var(--white);
}

.social.plus svg {
  stroke-width: 1.8;
}

.social.inactive {
  opacity: .68;
}

.hero {
  position: relative;
  display: block;
  min-height: calc(100vh - 116px);
  color: var(--white);
  background: var(--deep);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease;
}

.hero-slide.active {
  opacity: .56;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 25, 29, .92), rgba(24, 25, 29, .64), rgba(24, 25, 29, .92));
  content: "";
}

.hero-copy,
.hero-stats {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 116px);
  padding: clamp(64px, 10vw, 126px) clamp(22px, 6vw, 76px);
}

.hero-dots {
  position: absolute;
  left: clamp(22px, 6vw, 76px);
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 38px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--red);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d9f0f8;
}

h1,
h2,
h3,
p,
summary {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.04;
  text-wrap: balance;
}

.hero-title-balanced {
  display: grid;
  width: min(820px, 100%);
  gap: .03em;
  text-align: left;
}

.hero-title-balanced .hero-title-row {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  background: none;
}

h2 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.eyebrow + h2 {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.22;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--red);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transform: translateY(0);
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.btn.primary {
  background: var(--red);
  color: var(--white);
}

.btn.secondary {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.btn:hover,
.btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
}

.btn.primary:hover,
.btn.primary:focus {
  background: #356f94;
  border-color: #356f94;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #fbfdff;
  border-color: var(--white);
  color: var(--red);
}

.hero-stats {
  align-self: end;
  display: grid;
  gap: 6px;
  margin: 0 clamp(18px, 4vw, 52px) clamp(26px, 5vw, 64px) 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(24, 25, 29, .72);
}

.hero-stats strong {
  color: var(--white);
  font-size: 18px;
}

.hero-stats span {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .72);
}

.section {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 4vw, 58px);
}

.section.muted {
  background: var(--paper);
}

.section-title {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-title.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-title .eyebrow + h2 {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
}

.why-title-block {
  max-width: 1180px;
  margin-bottom: 48px;
}

.why-title-block .eyebrow {
  margin-bottom: 18px;
  color: var(--red);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.why-title-block h2 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--deep);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.title-line {
  display: block;
  width: 78px;
  height: 3px;
  margin-top: 18px;
  background: var(--red);
}

.product-layout {
  display: grid;
  gap: 24px;
}

.product-grid-width {
  width: min(100%, 1180px);
  margin-right: auto;
  margin-left: auto;
}

.product-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
}

.product-group > h3 {
  flex: 0 0 auto;
  min-width: 108px;
  margin: 0;
  color: var(--red);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.category-menu {
  flex: 1 1 auto;
  display: grid;
  gap: 18px;
  border: 0;
  background: var(--white);
  padding: 0;
}

.box-menu {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.display-menu {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.accessory-menu {
  width: min(100%, 760px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 8px 12px;
  border: 0;
  border-radius: 0;
  color: var(--deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  background: transparent;
  transition: color .2s ease, transform .2s ease;
  will-change: transform;
}

@keyframes category-word-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-7px);
  }
  72% {
    transform: translateY(-3px);
  }
}

.box-menu a {
  justify-content: center;
  text-align: center;
}

.box-menu a:nth-child(4),
.box-menu a:nth-child(5) {
  font-size: 14px;
}

.category-menu a:hover,
.category-menu a:focus,
.category-menu a.active {
  color: var(--red);
  background: transparent;
  animation: category-word-bounce .42s ease both;
  outline: none;
}

.product-grid,
.advantage-grid,
.factory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.accessory-grid {
  width: min(100%, 1180px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.factory-grid article,
.advantage-grid article,
.certificate-row article {
  border: 1px solid var(--line);
  background: var(--white);
}

.product-card {
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(79, 145, 184, .72);
  box-shadow: 0 18px 38px rgba(79, 145, 184, .16);
  transform: translateY(-3px);
}

.product-image-link,
.why-image-link {
  display: block;
  overflow: hidden;
}

.product-image-link {
  background: var(--white);
}

.product-card h3 a {
  transition: color .18s ease;
}

.product-card h3 a:hover,
.product-card h3 a:focus {
  color: var(--red);
}

.factory-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
}

.product-card h3,
.product-card p,
.factory-grid h3 {
  padding-right: 22px;
  padding-left: 22px;
}

.product-card h3,
.factory-grid h3 {
  margin-top: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.product-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.gallery-shell {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 70px 24px 90px;
}

.gallery-category-nav {
  position: sticky;
  top: 84px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 34px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 36px rgba(24, 25, 29, .08);
  backdrop-filter: blur(10px);
}

.gallery-category-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  transition: background .2s ease, color .2s ease;
}

.gallery-category-nav a:hover,
.gallery-category-nav a:focus,
.gallery-category-nav a.active {
  background: var(--red);
  color: var(--white);
}

.gallery-category {
  display: none;
}

.gallery-category[hidden] {
  display: none !important;
}

.gallery-category.active {
  display: block;
}

.gallery-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.gallery-heading h2 {
  margin: 6px 0 10px;
  color: var(--deep);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

.gallery-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.gallery-subcategory {
  margin-top: 34px;
}

.gallery-subcategory h3 {
  margin: 0 0 16px;
  color: var(--deep);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.gallery-empty {
  margin: 0;
  color: var(--muted);
}

.subcategory-card {
  text-decoration: none;
}

.subcategory-card span {
  display: grid;
  gap: 4px;
}

.subcategory-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.subcategory-card-empty {
  cursor: default;
}

.subcategory-card-empty:hover,
.subcategory-card-empty:focus {
  transform: none;
  border-color: var(--line);
  box-shadow: none;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  color: var(--deep);
  cursor: pointer;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.gallery-card:hover,
.gallery-card:focus {
  transform: translateY(-4px);
  border-color: rgba(79, 145, 184, .72);
  box-shadow: 0 18px 38px rgba(79, 145, 184, .18);
  outline: none;
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.product-solution-page .gallery-card span,
.single-gallery-shell .gallery-card span {
  display: none;
}

#watch-box .gallery-card span {
  display: none;
}

#gift-box .gallery-card span,
#liquor-food-box .gallery-card span,
#paper-bag .gallery-card span {
  display: none;
}


.gallery-card span {
  min-height: 54px;
  padding: 14px 14px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  word-break: break-word;
}

#watch-display .gallery-card img {
  object-fit: contain;
  object-position: center;
  padding: clamp(6px, 1.2vw, 14px);
  background: var(--white);
}

#jewelry-display .gallery-card {
  border-radius: 0;
}

#jewelry-display .gallery-card img {
  object-fit: contain;
  object-position: center;
  padding: clamp(8px, 1.5vw, 18px);
  border-radius: 0;
  background: var(--white);
}


.gallery-card[hidden],
.gallery-pagination[hidden] {
  display: none;
}

.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.gallery-pagination button {
  min-width: 96px;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: var(--deep);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.gallery-pagination button:disabled {
  opacity: .35;
  cursor: default;
}

.gallery-page-status {
  min-width: 92px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 34px;
  background: rgba(10, 10, 12, .82);
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal img {
  max-width: min(96vw, 1180px);
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.gallery-modal p {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 16px;
  text-align: center;
}

.gallery-modal-nav {
  position: fixed;
  top: 50%;
  z-index: 52;
  display: none;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  outline: 2px solid rgba(24, 25, 29, .22);
  background: rgba(31, 103, 177, .94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .42);
  color: #fff;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .55);
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.gallery-modal.has-carousel .gallery-modal-nav {
  display: grid;
  place-items: center;
}

.gallery-modal-prev {
  left: clamp(18px, 4vw, 56px);
}

.gallery-modal-next {
  right: clamp(18px, 4vw, 56px);
}

.gallery-modal-nav:hover,
.gallery-modal-nav:focus {
  background: var(--red);
  border-color: rgba(255, 255, 255, .96);
  outline-color: rgba(24, 25, 29, .34);
}

.gallery-modal-bars {
  position: fixed;
  left: 50%;
  bottom: clamp(22px, 5vh, 46px);
  z-index: 32;
  display: none;
  gap: 8px;
  transform: translateX(-50%);
}

.gallery-modal.has-carousel .gallery-modal-bars {
  display: flex;
}

.gallery-modal-bars button {
  width: 38px;
  height: 5px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  background: rgba(24, 25, 29, .42);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .22);
  cursor: pointer;
}

.gallery-modal-bars button.active {
  background: var(--red);
}

.gallery-modal-quote {
  z-index: 54;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 12px;
  padding: 0 24px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  background: #1f67b1;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .34);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.gallery-modal-quote:hover,
.gallery-modal-quote:focus {
  background: var(--red);
  outline: 2px solid rgba(255, 255, 255, .8);
  outline-offset: 3px;
}

.gallery-modal-thumbs {
  position: fixed;
  left: clamp(72px, 8vw, 140px);
  top: 50%;
  z-index: 32;
  display: none;
  width: 82px;
  max-height: min(74vh, 620px);
  transform: translateY(-50%);
  overflow-y: auto;
  padding: 8px;
  border-radius: 8px;
  background: rgba(8, 17, 28, .62);
  backdrop-filter: blur(12px);
  gap: 8px;
}

.gallery-modal.has-carousel .gallery-modal-thumbs {
  display: grid;
}

.gallery-modal-thumbs button {
  width: 66px;
  height: 66px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
}

.gallery-modal-thumbs button.active {
  border-color: var(--red);
}

.gallery-modal-thumbs img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.gallery-modal-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--deep);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.coin-model-page {
  display: grid;
  gap: 26px;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 72px) clamp(40px, 6vw, 72px);
  background: var(--paper);
}

.coin-model-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.coin-model-heading h1 {
  margin: 6px 0 8px;
  color: var(--deep);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.coin-model-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.coin-model-heading .btn.secondary {
  flex: 0 0 auto;
  background: var(--deep);
  color: var(--white);
}

.coin-model-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  gap: 18px;
  align-items: stretch;
  min-height: min(680px, calc(100vh - 210px));
}

.coin-model-stage {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--white);
  border: 1px solid rgba(24, 25, 29, .08);
}

.coin-model-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  opacity: 0;
  transition: opacity .22s ease;
}

.coin-model-slide.active {
  opacity: 1;
}

.coin-model-controls {
  display: grid;
  grid-template-rows: 64px 1fr 64px;
  align-items: center;
  justify-items: center;
  gap: 14px;
  background: var(--deep);
  padding: 16px 12px;
}

.coin-model-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.coin-model-arrow:hover,
.coin-model-arrow:focus {
  background: var(--red);
  border-color: var(--red);
}

.coin-model-bars {
  display: grid;
  align-content: center;
  gap: 10px;
  width: 100%;
}

.coin-model-bar {
  width: 42px;
  height: 4px;
  margin: 0 auto;
  border: 0;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
}

.coin-model-bar.active {
  background: var(--red);
}

.advantage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advantage-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  overflow: hidden;
  padding: 0 24px 26px;
  background: var(--deep);
  color: var(--white);
}

.advantage-grid article::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(180deg, rgba(12, 27, 43, 0), rgba(12, 27, 43, .84));
  z-index: 0;
}

.advantage-grid .why-image-link {
  position: absolute;
  inset: 0;
}

.advantage-grid img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  opacity: .78;
  filter: blur(4px);
  transform: scale(1.04);
  transition: transform .35s ease, opacity .35s ease, filter .35s ease;
}

.advantage-grid article:hover img {
  transform: scale(1.08);
  opacity: .48;
  filter: blur(5px);
}

.advantage-grid h3,
.advantage-grid p {
  position: relative;
  z-index: 1;
}

.advantage-grid h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.18;
}

.advantage-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  line-height: 1.55;
}

.factory-grid p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  min-height: 620px;
  align-items: stretch;
  background: var(--deep);
  color: var(--white);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 106px) clamp(22px, 6vw, 76px);
}

.split-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-solution-page .split-section {
  grid-template-columns: minmax(0, 920px);
  min-height: 0;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: clamp(30px, 4.2vw, 56px) clamp(18px, 4vw, 58px);
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
  color: var(--ink);
  text-align: center;
}

.product-solution-page .split-copy {
  justify-content: center;
  align-items: center;
  max-width: 820px;
  padding: 0;
}

.product-solution-page .split-copy .eyebrow {
  color: var(--red);
}

.product-solution-page .split-copy h2 {
  max-width: 760px;
  color: var(--deep);
  margin-bottom: 14px;
}

.product-solution-page .split-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 18px);
  margin-bottom: 0;
}

.product-solution-page .split-section > img {
  display: none;
}

#about .split-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding: clamp(30px, 5vw, 70px) clamp(20px, 4vw, 58px);
}

#about .youtube-poster-link {
  position: relative;
  display: block;
  width: min(100%, 690px);
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
}

#about .youtube-poster-link img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

#who-we-are {
  align-items: center;
}

.about-intro-media {
  display: grid;
  align-self: center;
  gap: 14px;
  width: min(100%, 680px);
  padding: clamp(24px, 4vw, 54px) clamp(20px, 4vw, 54px);
}

.about-intro-main,
.about-intro-mini img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .28);
}

.about-intro-main {
  aspect-ratio: 16 / 10;
}

.about-intro-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-intro-mini img {
  aspect-ratio: 4 / 3;
}

.split-media iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.youtube-poster-link {
  position: relative;
  display: block;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  background: var(--deep);
}

.youtube-poster-link img {
  display: block;
  width: 100%;
  min-height: 420px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: .88;
  transition: transform .25s ease, opacity .25s ease;
}

.youtube-poster-link::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 26, 32, .24), rgba(28, 26, 32, .08));
  content: "";
}

.youtube-poster-link:hover img,
.youtube-poster-link:focus img {
  transform: scale(1.035);
  opacity: .96;
}

.youtube-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, background .2s ease;
}

.youtube-play-button::before {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid rgba(24, 25, 29, .88);
  content: "";
}

.youtube-poster-link:hover .youtube-play-button,
.youtube-poster-link:focus .youtube-play-button {
  background: rgba(255, 255, 255, .94);
  transform: translate(-50%, -50%) scale(1.08);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: ">";
  font-weight: 900;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 820px);
  margin-top: 30px;
}

.about-metrics span {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 92px;
  gap: 6px;
  padding: 16px 12px 15px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 14px 28px rgba(0, 0, 0, .16);
  text-align: center;
  overflow: hidden;
}

.about-metrics span::before {
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.about-metrics strong {
  color: var(--white);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  letter-spacing: 0;
}

.about-metrics small {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.video-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.video-poster {
  position: relative;
  min-height: 360px;
  background: var(--deep);
}

.video-poster img,
.video-poster iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  object-fit: cover;
  opacity: .84;
}

.play-link {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.factory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#why-choose-us .factory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.factory-grid h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 18px 18px 22px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(79, 145, 184, .18);
  text-align: center;
}

.certificate-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.certificate-row article {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 18px;
  border: 0;
  background: transparent;
  text-align: center;
  overflow: visible;
}

.certificate-row article::before {
  display: block;
  width: 100%;
  height: 0;
  content: "";
}

.certificate-row strong {
  color: var(--red);
  font-size: 28px;
}

.certificate-row span {
  color: var(--muted);
}

.certificate-row img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: transparent;
  border-radius: 6px;
  filter: drop-shadow(0 12px 24px rgba(28, 26, 32, .12));
  transition: transform .28s ease, filter .28s ease;
}

.certificate-row .certificate-tall img {
  width: 72%;
  margin: 0 auto;
  object-fit: fill;
}

.certificate-row article:hover img {
  transform: translateY(-8px) scale(1.025);
  filter: drop-shadow(0 24px 42px rgba(28, 26, 32, .2));
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

details {
  border: 0;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(28, 26, 32, .08);
  overflow: hidden;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e7f2f8;
  color: var(--red);
  content: "+";
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  background: var(--red);
  color: var(--white);
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 8vw, 106px) clamp(18px, 4vw, 58px);
  background: var(--paper);
}

.page-hero {
  position: relative;
  padding: clamp(74px, 12vw, 132px) clamp(18px, 4vw, 58px);
  color: var(--white);
  background: var(--deep);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: url("https://www.jewelrypackagingfactory.com/upload/2023-11/09/jewelrypackagingbox.jpg") center / cover;
  opacity: .38;
  content: "";
}

.contact-hero::before {
  background-image: url("./contact-images/contact-hero-jewelry-box-set.png");
  background-position: center;
  opacity: .5;
}

.contact-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 26, 32, .78), rgba(28, 26, 32, .38) 48%, rgba(28, 26, 32, .08));
  content: "";
}

.blog-hero::before {
  background-image: url("./hero-images/hero-jewelry-watch-boxes.png");
  background-position: center;
  opacity: .42;
}

.page-hero > * {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.contact-hero .eyebrow {
  margin-bottom: 18px;
  color: var(--red);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 900;
  letter-spacing: .03em;
}

.contact-hero h1 {
  max-width: 760px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.14;
}

.contact-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 18px;
}

.product-detail-hero::before {
  background-image: url("./hero-images/hero-jewelry-watch-boxes.png");
  opacity: .42;
}

.why-detail-hero::before {
  background-image: url("./why-images/production-range.png");
  opacity: .38;
}

.detail-list {
  display: grid;
  gap: 28px;
  padding: clamp(46px, 6vw, 86px) clamp(18px, 4vw, 58px);
  background: var(--paper);
}

.detail-item {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(24, 25, 29, .08);
  scroll-margin-top: 132px;
}

.detail-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.wide-detail img {
  aspect-ratio: 16 / 10;
}

.detail-item h2 {
  margin: 0 0 14px;
  color: var(--deep);
  font-size: clamp(28px, 4vw, 56px);
}

.detail-item p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.map-card {
  display: grid;
  grid-template-rows: auto 360px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.map-info {
  min-height: 118px;
  padding: 22px 24px;
}

.map-info h3 {
  margin: 0 0 8px;
  color: var(--deep);
  font-size: 20px;
  text-transform: uppercase;
}

.map-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.blog-section {
  background: var(--white);
}

.blog-list {
  display: grid;
  gap: 22px;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(240px, 34%) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.blog-card:hover,
.blog-card:focus-within {
  border-color: rgba(79, 145, 184, .72);
  box-shadow: 0 18px 38px rgba(79, 145, 184, .16);
  transform: translateY(-3px);
}

.blog-card-media {
  display: block;
  min-height: 190px;
  overflow: hidden;
  background: var(--paper);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  object-position: center;
}

.blog-card-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.blog-card h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.16;
}

.blog-card h2 a:hover,
.blog-card h2 a:focus {
  color: var(--red);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--red);
  color: var(--red);
  font-weight: 800;
  transition: background .18s ease, color .18s ease;
}

.blog-read-more:hover,
.blog-read-more:focus {
  background: var(--red);
  color: var(--white);
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
}

.blog-pagination a,
.blog-pagination span,
.blog-pagination label {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: var(--white);
}

.blog-pagination a.active,
.blog-pagination a:hover,
.blog-pagination a:focus {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.blog-pagination select {
  width: auto;
  min-width: 58px;
  margin-left: 4px;
  padding: 3px 6px;
  font-size: 14px;
}

.blog-article {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--white);
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 800;
}

.blog-back-link:hover,
.blog-back-link:focus {
  color: var(--red);
}

.blog-article-heading {
  max-width: none;
  margin-bottom: 22px;
}

.blog-article-heading h1 {
  margin: 0 0 16px;
  color: var(--deep);
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.08;
}

.blog-article-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
}

.blog-article-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 10px 0 34px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background: var(--paper);
}

.blog-article-body {
  display: grid;
  gap: 18px;
  max-width: none;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.blog-article-body p {
  margin: 0;
}

.social-hero::before {
  background: url("./hero-images/hero-jewelry-display.png") center / cover;
}

.social-links-section {
  background: var(--paper);
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 34px;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.social-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  min-height: 112px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--deep);
  font-weight: 400;
  text-align: center;
}

.social-link-card .social {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
}

.social-link-card strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.social-link-card small {
  margin-top: -8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  word-break: break-word;
}

.contact-section > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-details p {
  display: grid;
  grid-template-columns: 24px minmax(82px, auto) minmax(0, 1fr);
  align-items: start;
  gap: 12px 8px;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f3e7e5;
  color: var(--red);
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-details strong {
  min-width: 82px;
  color: var(--red);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.quote-form label,
.quote-form span {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 13px 12px;
}

textarea {
  resize: vertical;
}

.footer {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(520px, 1.7fr) minmax(180px, .72fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 22px;
  padding: 10px 10px 9px clamp(20px, 4.5vw, 68px);
  border-top: 0;
  background: #17171c;
  color: rgba(255, 255, 255, .72);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

.footer-logo {
  grid-column: 1;
  grid-row: 1 / 3;
  display: block;
  width: min(110px, 100%);
  height: auto;
  align-self: center;
  transform: translateX(-5mm);
}

.footer span:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
  text-align: center;
}

.beian-link {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  color: rgba(255, 255, 255, .58);
  font-size: 11.5px;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: default;
}

@media (max-width: 1200px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-brand-group {
    width: 100%;
    flex-basis: 100%;
    min-width: 0;
  }

  .nav {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: space-between;
    --language-divider-gap: 10px;
    gap: var(--language-divider-gap);
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .product-dropdown {
    left: 0;
    transform: translateY(10px);
  }

  .nav-product:hover .product-dropdown,
  .nav-product:focus-within .product-dropdown {
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-brand-group {
    width: 100%;
    gap: 15px;
  }

  .brand {
    width: 125px;
  }

  .brand-divider {
    height: 44px;
  }

  .brand-tagline {
    font-size: 13px;
  }

  .nav {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: center;
    --language-divider-gap: 10px;
    gap: var(--language-divider-gap);
    font-size: 14px;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .product-dropdown {
    left: 0;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    transform: translateY(10px);
  }

  .nav-product:hover .product-dropdown,
  .nav-product:focus-within .product-dropdown {
    transform: translateY(0);
  }

  .hero,
  .product-layout,
  .split-section,
  .video-card,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-solution-page .split-section {
    grid-template-columns: 1fr;
    padding: 30px 22px 38px;
    text-align: center;
  }

  #about .split-media,
  .about-intro-media {
    min-height: 0;
    padding: 28px 22px 42px;
  }

  .footer {
    grid-template-columns: minmax(110px, .55fr) minmax(0, 1fr) minmax(110px, .55fr);
    grid-template-rows: auto auto;
    justify-items: center;
    text-align: center;
    gap: 2px 14px;
    padding-top: 10px;
    padding-bottom: 9px;
  }

  .footer span:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    text-align: center;
    font-size: 13px;
    line-height: 1.22;
  }

  .beian-link {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
    text-align: center;
    font-size: 11px;
    line-height: 1.22;
  }

  .map-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin: 0 22px 34px;
  }

  .product-grid,
  .advantage-grid,
  .factory-grid,
  .certificate-row,
  .product-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  #why-choose-us .factory-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .gallery-category-nav {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 62px;
  }

  .topbar,
  .footer,
  .contact-details p {
    flex-direction: column;
  }

  .contact-details p {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .contact-details strong,
  .contact-details p > span:last-child {
    grid-column: 2;
  }

  .footer {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    padding: 12px 16px 11px;
    text-align: center;
  }

  .footer-logo {
    grid-column: 1;
    grid-row: auto;
    width: 96px;
    transform: none;
  }

  .footer span:nth-child(2) {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    max-width: min(100%, 340px);
    font-size: 12px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
  }

  .beian-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    max-width: min(100%, 340px);
    font-size: 10.5px;
    line-height: 1.35;
    text-align: center;
  }

  .site-header {
    gap: 8px;
    padding: 8px 12px;
  }

  .header-brand-group {
    width: 100%;
    gap: 9px;
  }

  .brand {
    width: clamp(118px, 34vw, 142px);
    margin-right: -5px;
  }

  .brand-divider {
    height: 34px;
  }

  .brand-tagline {
    font-size: 11px;
    max-width: min(52vw, 260px);
    white-space: normal;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    --language-divider-gap: 8px;
    gap: 6px var(--language-divider-gap);
    margin-left: 0;
    font-size: 11px;
    line-height: 1.15;
    overflow-x: visible;
    overflow-y: visible;
    white-space: nowrap;
  }

  html[lang="en"] .nav,
  html[lang="de"] .nav,
  html[lang="fr"] .nav,
  html[lang="it"] .nav,
  html[lang="es"] .nav {
    column-gap: var(--language-divider-gap);
    font-size: 11px;
  }

  .nav > a,
  .nav-product,
  .nav-about,
  .language-menu {
    width: auto;
    flex: 0 1 auto;
    min-width: 0;
  }

  .nav-product,
  .nav-about {
    position: static;
  }

  .product-dropdown {
    position: fixed;
    top: var(--mobile-header-dropdown-top, 124px);
    left: 16px;
    right: 16px;
    z-index: 80;
    width: auto;
    max-height: calc(100vh - var(--mobile-header-dropdown-top, 124px) - 18px);
    overflow-y: auto;
    grid-template-columns: 1fr;
    transform: translateY(8px);
  }

  .nav-product.product-menu-open .product-dropdown {
    transform: translateY(0) !important;
  }

  .nav-product.product-menu-closed .product-dropdown,
  html.product-touch-navigating .nav-product .product-dropdown {
    transform: translateY(8px) !important;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 7px;
    width: auto;
    border-radius: 5px;
    text-align: center;
  }

  .language-menu {
    padding-left: 0;
    border-left: 0;
  }

  .language-menu::before {
    display: block;
    height: 30px;
    background: rgba(31, 103, 177, .45);
  }

  html[lang="ar"] .language-menu {
    padding-left: var(--language-divider-gap);
    border-left: 1px solid rgba(31, 103, 177, .5);
  }

  html[lang="ar"] .language-menu::before {
    display: none;
  }

  .language-trigger {
    min-height: 32px;
    width: auto;
    padding: 0 7px 0 var(--language-divider-gap);
    font-size: inherit;
  }

  .language-panel {
    position: fixed;
    top: var(--mobile-header-dropdown-top, 124px);
    right: 16px;
    left: auto;
    z-index: 90;
    min-width: 160px;
    transform-origin: top right;
  }

  .product-group {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .product-group > h3 {
    min-width: 0;
  }

  .box-menu,
  .display-menu {
    width: 100%;
    gap: 8px;
  }

  .box-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .box-menu a:nth-child(1) {
    order: 1;
  }

  .box-menu a:nth-child(2) {
    order: 2;
  }

  .box-menu a:nth-child(3) {
    order: 3;
  }

  .box-menu a:nth-child(6) {
    order: 4;
  }

  .box-menu a:nth-child(4) {
    order: 5;
  }

  .box-menu a:nth-child(5) {
    order: 6;
  }

  .display-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .accessory-menu {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .category-menu a {
    min-height: 42px;
    padding: 8px 6px;
    font-size: 12px;
    line-height: 1.2;
    white-space: normal;
  }

  .box-menu a:nth-child(4),
  .box-menu a:nth-child(5) {
    font-size: 11.5px;
  }

  .display-menu a {
    min-height: 40px;
    font-size: 11.5px;
  }

  .product-solution-page .split-section {
    padding: 26px 16px 32px;
  }

  .social-share {
    left: auto;
    right: 10px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    grid-template-columns: 46px;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: transparent;
  }

  .social-share p {
    margin: 0 8px 0 0;
  }

  .hero-copy,
  .section,
  .split-copy,
  .contact-section,
  .detail-list {
    padding-left: 16px;
    padding-right: 16px;
  }

  #about .split-media,
  .about-intro-media {
    padding: 20px 16px 34px;
  }

  #about .youtube-poster-link,
  .about-intro-main {
    aspect-ratio: 4 / 3;
  }

  .about-intro-mini {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 40px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.08;
  }

  h2 {
    font-size: 24px;
  }

  .why-title-block h2 {
    font-size: 28px;
  }

  .product-grid,
  .advantage-grid,
  .factory-grid,
  .faq-list,
  .certificate-row,
  .detail-item,
  .blog-card,
  .product-gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-metrics {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .about-metrics span {
    min-height: 76px;
    padding: 14px 12px 13px;
  }

  #why-choose-us .factory-grid {
    grid-template-columns: 1fr;
  }

  .blog-article {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .blog-article-heading h1 {
    font-size: 32px;
  }

  .blog-article-image {
    aspect-ratio: 4 / 3;
    margin-bottom: 24px;
  }

  .blog-article-body {
    font-size: 16px;
    line-height: 1.68;
  }

  .gallery-shell {
    padding: 44px 16px 70px;
  }

  .coin-model-page {
    padding: 24px 16px 44px;
  }

  .coin-model-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .coin-model-heading .btn.secondary {
    width: fit-content;
  }

  .coin-model-carousel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .coin-model-stage {
    min-height: 62vh;
  }

  .coin-model-controls {
    grid-template-columns: 54px 1fr 54px;
    grid-template-rows: auto;
    padding: 12px;
  }

  .coin-model-bars {
    grid-auto-flow: column;
    justify-content: center;
  }

  .gallery-category-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
  }

  .gallery-category-nav a {
    min-height: 38px;
    font-size: 13px;
  }

  .gallery-heading h2 {
    font-size: 32px;
  }

  .gallery-modal {
    padding: 18px;
  }

  .gallery-modal img {
    max-height: 68vh;
  }

  .gallery-modal.has-carousel .gallery-modal-thumbs {
    display: none;
  }

  .faq-list {
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .social-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}








@media (max-width: 1200px) and (hover: none), (max-width: 1200px) and (pointer: coarse) {
  .nav-product.product-menu-open .product-dropdown {
    transform: translateY(0) !important;
  }

  .nav-product.product-menu-closed .product-dropdown,
  html.product-touch-navigating .nav-product .product-dropdown {
    transform: translateY(10px) !important;
  }
}

@media (max-width: 900px) {
  .gallery-modal.has-carousel .gallery-modal-thumbs {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .gallery-modal.has-carousel .gallery-modal-nav {
    display: grid;
  }

  .gallery-modal-nav {
    top: 50%;
    width: 58px;
    height: 58px;
    background: rgba(31, 103, 177, .96);
    border-color: rgba(255, 255, 255, .96);
    outline: 2px solid rgba(24, 25, 29, .28);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .46);
    font-size: 44px;
    z-index: 58;
  }

  .gallery-modal-prev {
    left: max(8px, env(safe-area-inset-left));
  }

  .gallery-modal-next {
    right: max(8px, env(safe-area-inset-right));
  }

  .gallery-modal-bars {
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 47;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(24, 25, 29, .28);
    backdrop-filter: blur(8px);
  }

  .gallery-modal-bars button {
    width: 30px;
    height: 6px;
  }

  .gallery-modal-quote {
    min-height: 44px;
    margin-top: 10px;
    padding: 0 18px;
    font-size: 13px;
  }
}

.soon-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(28px, 6vw, 72px);
  background: linear-gradient(135deg, #f7f4ef 0%, #ffffff 48%, #eef3f8 100%);
}

.soon-panel {
  width: min(100%, 620px);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(24, 25, 29, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 45px rgba(24, 25, 29, .08);
  text-align: center;
}

.soon-logo {
  width: clamp(150px, 34vw, 240px);
  height: auto;
  margin: 0 auto 24px;
}

.soon-panel h1 {
  margin: 8px 0 14px;
  color: var(--deep);
  font-size: clamp(38px, 6vw, 70px);
}

.soon-panel p:not(.eyebrow) {
  margin: 0 auto 28px;
  max-width: 440px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.jewellery-box-subcategory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.jewellery-box-subcategory-card {
  min-width: 0;
}

.jewellery-box-subcategory-card h3 {
  font-size: 18px;
}

@media (max-width: 900px) {
  .jewellery-box-subcategory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .jewellery-box-subcategory-grid {
    grid-template-columns: 1fr;
  }
}

.cookie-consent-banner {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 22px);
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 14px;
  align-items: center;
  width: min(600px, calc(100vw - 24px));
  padding: 14px 15px;
  border: 1px solid rgba(77, 147, 187, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 14px 34px rgba(24, 25, 29, .16);
}

.cookie-consent-banner[hidden] {
  display: none;
}

.cookie-consent-copy h2 {
  margin: 0 0 4px;
  color: var(--deep);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.cookie-consent-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
}

.cookie-consent-actions button,
.cookie-settings-link {
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-consent-actions button {
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid rgba(77, 147, 187, .38);
  background: #fff;
  color: var(--deep);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.cookie-consent-actions .cookie-consent-accept {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 18px rgba(79, 145, 184, .24);
}

.cookie-settings-link {
  grid-column: 3;
  grid-row: 1 / 3;
  justify-self: end;
  align-self: center;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  color: #fff;
}

@media (max-width: 760px) {
  .cookie-consent-banner {
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 13px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent-actions button {
    min-width: 0;
    padding: 0 12px;
  }
}
