:root {
  --bg: oklch(98% 0.004 240);
  --surface: #fff;
  --fg: oklch(20% 0.02 240);
  --muted: oklch(50% 0.018 240);
  --border: oklch(90% 0.006 240);
  --accent: oklch(56% 0.12 170);
  --accent-dark: oklch(46% 0.12 170);
  --accent-soft: oklch(96% 0.03 170);
  --warn: #b35a00;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  --r: 18px;
  --maxw: 1280px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, "Segoe UI",
    Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--fg);
}
h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
h3 {
  font-size: 1.25rem;
}
a {
  color: var(--accent-dark);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
.narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 22px;
}
.text-center {
  text-align: center;
}
.acc {
  color: var(--accent-dark);
}
.muted {
  color: var(--muted);
}
.lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0.6rem 0 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}
.btn-secondary {
  background: var(--surface);
  color: var(--fg);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  text-decoration: none;
}
.btn.block {
  width: 100%;
}
.btn.big {
  padding: 16px 34px;
  font-size: 1.1rem;
}

.section {
  padding: 64px 0;
}
.section.pt0 {
  padding-top: 0;
}
.section.alt {
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 36px;
}
.section-title.left {
  text-align: left;
}
.section-sub {
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1.08rem;
}
.section-sub.left {
  text-align: left;
  margin-left: 0;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.link-more {
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 500;
}
.skip-link:focus {
  left: 0;
}
.ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ic svg {
  width: 22px;
  height: 22px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}
.logo {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
  white-space: nowrap;
}
.logo span {
  color: var(--accent);
}
.logo.light {
  color: #fff;
}
.logo.light span {
  color: #7dd3c0;
}
#main-nav {
  display: flex;
  gap: 24px;
  margin-right: auto;
  margin-left: 18px;
}
#main-nav a {
  color: var(--fg);
  font-weight: 500;
}
#main-nav a:hover {
  color: var(--accent-dark);
  text-decoration: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  width: 230px;
}
.search .ic {
  color: var(--muted);
}
.search input {
  border: none;
  background: transparent;
  font-size: 1rem;
  width: 100%;
  outline: none;
}
.icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--fg);
  border-radius: 50%;
  display: inline-flex;
}
.icon-btn:hover {
  background: var(--bg);
}
.cart-btn .cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
  padding: 8px;
}
.nav-toggle svg {
  width: 28px;
  height: 28px;
}

.hero {
  padding: 54px 0 30px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 26px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.trust-bar {
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 16px 28px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}
.trust-item .ic {
  color: var(--accent);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.category-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    border-color 0.15s;
  color: var(--fg);
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
  text-decoration: none;
}
.category-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.category-icon svg {
  width: 32px;
  height: 32px;
}
.category-card h3 {
  margin-bottom: 6px;
}
.category-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 18px;
}
.category-card .btn {
  width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card.hidden {
  display: none;
}
.product-image {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--accent-soft);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-image img {
  transform: scale(1.04);
}
.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-cat {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.product-name {
  font-size: 1.05rem;
  line-height: 1.3;
}
.product-name a {
  color: var(--fg);
}
.product-name a:hover {
  color: var(--accent-dark);
  text-decoration: none;
}
.product-sub {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
}
.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}
.product-price {
  font-size: 1.3rem;
  font-weight: 800;
}
.product-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}
.add-btn {
  padding: 10px 16px;
  font-size: 0.95rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 9px 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  font-size: 0.98rem;
  cursor: pointer;
  color: var(--fg);
  transition: all 0.15s;
}
.filter-btn:hover {
  border-color: var(--accent);
}
.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.empty-note {
  text-align: center;
  color: var(--muted);
  padding: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.video-grid.single {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 560px;
}
.video-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: transform 0.15s;
  color: var(--fg);
}
.video-card:hover {
  transform: scale(1.015);
  text-decoration: none;
}
.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 40, 60, 0.18);
}
.video-play .ic {
  width: 62px;
  height: 62px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-dark);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.video-play svg {
  width: 30px;
  height: 30px;
}
.video-info {
  padding: 16px;
}
.video-info h4 {
  margin-bottom: 4px;
}
.video-info p {
  color: var(--muted);
  font-size: 0.92rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  text-align: center;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 14px;
}
.step p {
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
}
.testimonial blockquote {
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.testimonial figcaption {
  color: var(--muted);
  font-size: 0.95rem;
}
.testimonial figcaption strong {
  color: var(--fg);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  text-align: left;
}
.delivery-grid h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--accent-dark);
}
.ticks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}
.ticks li .ic {
  color: var(--accent);
  flex: none;
}
.ticks.col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 14px 0 20px;
}
.crumbs {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.crumbs a {
  color: var(--muted);
}
.crumbs span {
  margin: 0 6px;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.site-footer {
  background: var(--fg);
  color: #fff;
  padding: 54px 0 26px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 34px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 14px;
  font-size: 0.96rem;
  max-width: 280px;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
  font-size: 0.96rem;
}
.contact-line a {
  color: rgba(255, 255, 255, 0.78);
}
.contact-line .ic {
  color: #7dd3c0;
}
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-list a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}
.pay-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 14px;
}
.pay-note .ic {
  color: #7dd3c0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}
.pay-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pay-list .ic {
  color: #7dd3c0;
}

.drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: min(420px, 92vw);
  height: 100%;
  background: var(--surface);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.18);
  z-index: 300;
  transition: right 0.3s;
  display: flex;
  flex-direction: column;
}
.drawer.open {
  right: 0;
}
.drawer-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.drawer-header h3 {
  font-size: 1.3rem;
}
.drawer-body {
  flex: 1;
  overflow: auto;
  padding: 16px 20px;
}
.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item .ci-img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--accent-soft);
  object-fit: cover;
  flex: none;
}
.cart-item .ci-info {
  flex: 1;
  min-width: 0;
}
.cart-item .ci-name {
  font-weight: 600;
  line-height: 1.25;
}
.cart-item .ci-meta {
  color: var(--muted);
  font-size: 0.85rem;
}
.cart-item .ci-right {
  text-align: right;
}
.cart-item .ci-price {
  font-weight: 700;
}
.cart-item .ci-rm {
  background: none;
  border: none;
  color: var(--warn);
  font-size: 0.82rem;
  cursor: pointer;
  margin-top: 4px;
}
.drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.15rem;
}
.drawer-footer .btn + .btn {
  margin-top: 10px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 400;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.active {
  display: flex;
}
.modal-content {
  background: var(--surface);
  border-radius: 22px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow: auto;
}
.modal-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-body {
  padding: 22px;
}
.video-player {
  background: #111;
  border-radius: 14px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9aa;
  margin-bottom: 18px;
  position: relative;
  text-align: center;
  padding: 20px;
}
.play-mark {
  width: 74px;
  height: 74px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-dark);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.play-mark svg {
  width: 34px;
  height: 34px;
}
.video-desc {
  color: #bbc;
}
.video-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  padding: 16px 18px;
  display: none;
  gap: 16px;
  align-items: center;
  z-index: 250;
  flex-wrap: wrap;
}
.cookie-banner.show {
  display: flex;
}
.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.96rem;
  color: var(--fg);
}
.cookie-text strong {
  display: block;
  margin-bottom: 2px;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions .btn {
  padding: 10px 18px;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  margin-top: 14px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  color: var(--fg);
  transition: border-color 0.15s;
}
.contact-card:hover {
  border-color: var(--accent);
  text-decoration: none;
}
.contact-card .ci {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.contact-card .ci svg {
  width: 24px;
  height: 24px;
}
.contact-card .ct {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 700;
}
.contact-card .cv {
  font-size: 1.1rem;
  font-weight: 700;
}
.contact-card .ch {
  color: var(--muted);
  font-size: 0.9rem;
}
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.96rem;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-mini {
  font-size: 0.85rem;
  color: var(--muted);
}
.form-err {
  color: var(--warn);
  font-weight: 600;
}
.form-success {
  padding: 30px 0;
  text-align: center;
}
.form-success h3 {
  margin-bottom: 8px;
}

.legal h1 {
  margin-bottom: 6px;
}
.legal h2 {
  font-size: 1.25rem;
  margin: 26px 0 8px;
}
.legal p,
.legal li {
  color: var(--fg);
  margin-bottom: 8px;
}
.legal ul {
  padding-left: 20px;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: start;
}
.product-detail-media img {
  width: 100%;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  aspect-ratio: 1/1;
  object-fit: cover;
}
.product-detail-info .product-cat {
  margin-bottom: 8px;
}
.product-detail-info h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.big-price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 14px;
}
.detail-actions {
  margin: 18px 0;
}
.detail-ticks {
  margin-top: 6px;
}
.page-head h1 {
  margin-top: 6px;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    order: 3;
  }
  #main-nav {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 6px 0;
    transform: translateY(-130%);
    transition: transform 0.25s;
    z-index: 99;
  }
  #main-nav.open {
    transform: translateY(0);
  }
  #main-nav a {
    padding: 14px 22px;
    border-top: 1px solid var(--border);
  }
  .search {
    display: none;
  }
  .header-actions {
    margin-left: auto;
    order: 2;
  }
  .logo {
    order: 1;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 17px;
  }
  .section {
    padding: 46px 0;
  }
  .trust-bar {
    gap: 18px;
    padding: 14px 18px;
  }
  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .ticks.col2 {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 34px 0 18px;
  }
  .hero-cta .btn {
    flex: 1;
  }
}
.hidden {
  display: none !important;
}

.hero-copy,
.hero-media,
.product-detail-info,
.product-detail-media {
  min-width: 0;
}
h1,
h2,
h3,
h4 {
  overflow-wrap: anywhere;
}
.product-name,
.ci-name,
.btn,
.product-name a {
  word-break: break-word;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 20px;
}
.faq-item summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  color: var(--accent-dark);
  font-size: 1.5rem;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 0 14px;
  color: var(--muted);
}
.faq-more {
  margin-top: 10px;
  color: var(--muted);
}
.imprint {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.imprint li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.imprint strong {
  display: inline-block;
  min-width: 220px;
  color: var(--fg);
}
.imprint-line {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  margin-top: 8px;
}
.about-img {
  width: 100%;
  border-radius: var(--r);
  margin: 18px 0 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
@media (max-width: 640px) {
  .imprint strong {
    display: block;
    min-width: 0;
  }
}
