

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;600;700&display=swap');

:root {
  --bg:          #f8f5ef;
  --bg-alt:      #ede9e0;
  --bg-dark:     #1a1a1a;
  --bg-mid:      #2a2520;

  --text:        #1a1a1a;
  --text-muted:  #6b6558;
  --text-light:  #f8f5ef;

  --accent:      #b5962a;
  --accent-hov:  #967d22;

  --border:      #d9d2c5;
  --white:       #ffffff;

  --r:           4px;
  --r-lg:        10px;

  --font-h:      'Noto Serif JP', serif;
  --font-b:      'Noto Sans JP', sans-serif;

  --max-w:       1160px;
  --gap:         2rem;
  --sec-py:      80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section-label {
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}
.section-title--light { color: var(--text-light); }
.section-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
}
.section-lead--light { color: rgba(248,245,239,0.72); }

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: var(--r);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hov); border-color: var(--accent-hov); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--text-light); }
.btn-outline--light {
  color: var(--text-light);
  border-color: rgba(248,245,239,0.5);
}
.btn-outline--light:hover { background: var(--text-light); color: var(--text); }

.img-placeholder {
  width: 100%;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  gap: 0.5rem;
  border: 1px dashed var(--border);
}
.img-placeholder svg { opacity: 0.4; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.site-header__logo { width: 40px; height: 40px; flex-shrink: 0; }
.site-header__name {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
}
.site-header__name span { color: var(--accent); }
.site-header__cta { flex-shrink: 0; }

.hero {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: var(--sec-py) 0;
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30 Q30 0 60 30' stroke='%23b5962a' stroke-width='0.4' fill='none' opacity='0.12'/%3E%3C/svg%3E") repeat;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.hero__title em { color: var(--accent); font-style: normal; }
.hero__sub {
  font-size: 1rem;
  color: rgba(248,245,239,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__visual { position: relative; }
.hero__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #2a2520;
  border: 1px solid rgba(181,150,42,0.25);
}
.hero__img-wrap .img-placeholder {
  height: 100%;
  background: #232120;
  border: none;
  color: rgba(248,245,239,0.3);
  font-size: 0.8rem;
}
.hero__img-wrap .img-placeholder svg { opacity: 0.18; }
.hero__numbers {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}
.hero__num { text-align: center; }
.hero__num-val {
  display: block;
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero__num-lab {
  font-size: 0.72rem;
  color: rgba(248,245,239,0.5);
  letter-spacing: 0.08em;
}

.features { padding: var(--sec-py) 0; background: var(--white); }
.features__head { margin-bottom: 3rem; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--bg-dark);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card__title {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-card__text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

.categories { padding: var(--sec-py) 0; background: var(--bg); }
.categories__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.cat-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  position: relative;
}
.cat-card__img { aspect-ratio: 4/3; overflow: hidden; }
.cat-card__img .img-placeholder { height: 100%; }
.cat-card__body { padding: 1.25rem 1.25rem 1.5rem; }
.cat-card__label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.3rem; }
.cat-card__name { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; }

.products { padding: var(--sec-py) 0; background: var(--bg-dark); }
.products__head { margin-bottom: 3rem; }
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: #232120;
  border: 1px solid rgba(181,150,42,0.18);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.product-card__img { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.product-card__img .img-placeholder {
  height: 100%;
  background: #2a2520;
  border: none;
  color: rgba(248,245,239,0.25);
  font-size: 0.75rem;
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  text-transform: uppercase;
}
.product-card__body { padding: 1.5rem; }
.product-card__cat {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.product-card__name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.product-card__desc {
  font-size: 0.82rem;
  color: rgba(248,245,239,0.5);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.product-card__price {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}
.product-card__btn {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--r);
  border: 2px solid var(--accent);
}
.product-card__btn:hover { background: var(--accent-hov); border-color: var(--accent-hov); }

.brand { padding: var(--sec-py) 0; background: var(--white); }
.brand__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.brand__img { aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; }
.brand__img .img-placeholder { height: 100%; }
.brand__content { }
.brand__quote {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
}
.brand__text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; }

.process { padding: var(--sec-py) 0; background: var(--bg-alt); }
.process__head { text-align: center; margin-bottom: 3rem; }
.process__lead { margin: 0 auto; text-align: center; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 1px);
  right: calc(12.5% + 1px);
  height: 1px;
  background: var(--border);
}
.process-step { text-align: center; padding: 0 1rem; position: relative; }
.process-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--accent);
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  border: 3px solid var(--bg-alt);
}
.process-step__title { font-family: var(--font-h); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step__text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

.quality { padding: var(--sec-py) 0; background: var(--bg-mid); color: var(--text-light); }
.quality__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.quality__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.quality__item { display: flex; gap: 1rem; align-items: flex-start; }
.quality__item-icon {
  width: 36px;
  height: 36px;
  background: rgba(181,150,42,0.18);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quality__item-icon svg { width: 18px; height: 18px; }
.quality__item-title { font-weight: 700; font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.2rem; }
.quality__item-text { font-size: 0.82rem; color: rgba(248,245,239,0.6); line-height: 1.7; }
.quality__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.quality__img { border-radius: var(--r-lg); overflow: hidden; }
.quality__img:first-child { grid-column: 1 / -1; }
.quality__img .img-placeholder { height: 200px; background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: rgba(248,245,239,0.25); }
.quality__img:first-child .img-placeholder { height: 240px; }

.testimonials { padding: var(--sec-py) 0; background: var(--white); }
.testimonials__head { text-align: center; margin-bottom: 3rem; }
.testimonials__lead { margin: 0 auto; text-align: center; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.testi-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.testi-card__star {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}
.testi-card__text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.testi-card__name { font-weight: 700; font-size: 0.88rem; }
.testi-card__role { font-size: 0.75rem; color: var(--text-muted); }

.tips { padding: var(--sec-py) 0; background: var(--bg); }
.tips__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.tips__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.tip-card__img { aspect-ratio: 16/10; overflow: hidden; }
.tip-card__img .img-placeholder { height: 100%; }
.tip-card__body { padding: 1.5rem; }
.tip-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.tip-card__title {
  font-family: var(--font-h);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
.tip-card__excerpt { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

.contacts { padding: var(--sec-py) 0; background: var(--bg-dark); color: var(--text-light); }
.contacts__head { text-align: center; margin-bottom: 3rem; }
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.contact-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(181,150,42,0.2);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
}
.contact-item__icon {
  width: 52px;
  height: 52px;
  background: rgba(181,150,42,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item__label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.contact-item__value {
  font-family: var(--font-h);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.5;
}
.contact-item__value a { color: inherit; }
.contact-item__value a:hover { color: var(--accent); }

.site-footer {
  background: #111110;
  color: rgba(248,245,239,0.55);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(181,150,42,0.15);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { }
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.footer-brand__logo img { width: 32px; height: 32px; }
.footer-brand__name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
}
.footer-brand__name span { color: var(--accent); }
.footer-brand__desc { font-size: 0.82rem; line-height: 1.8; max-width: 260px; }
.footer-col__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.8);
  margin-bottom: 1.25rem;
}
.footer-col__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col__links a { font-size: 0.85rem; color: rgba(248,245,239,0.5); }
.footer-col__links a:hover { color: var(--accent); }
.footer-col__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}
.footer-col__contact-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.footer-col__contact-val { font-size: 0.84rem; color: rgba(248,245,239,0.6); line-height: 1.5; }
.footer-col__contact-val a { color: inherit; }
.footer-col__contact-val a:hover { color: var(--accent); }
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer__copy { font-size: 0.78rem; }
.site-footer__legal { display: flex; gap: 1.5rem; }
.site-footer__legal a { font-size: 0.78rem; color: rgba(248,245,239,0.4); }
.site-footer__legal a:hover { color: var(--accent); }

.features__head,
.categories__head,
.products__head,
.process__head,
.quality__inner > :first-child,
.testimonials__head,
.tips__head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.features__grid,
.categories__grid,
.products__grid,
.process__grid,
.testimonials__grid,
.tips__grid,
.contacts__grid {
  margin-left: auto;
  margin-right: auto;
}

.process__head, .testimonials__head { text-align: center; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111110;
  border-top: 1px solid rgba(181,150,42,0.2);
  padding: 1.5rem;
  z-index: 50;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.cookie-banner.active { transform: translateY(0); }
.cookie-banner__content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.cookie-banner__text {
  color: rgba(248,245,239,0.65);
  font-size: 0.85rem;
  line-height: 1.6;
}
.cookie-banner__text a {
  color: var(--accent);
  font-weight: 500;
}
.cookie-banner__text a:hover { text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-banner__btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cookie-banner__btn-accept {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.cookie-banner__btn-accept:hover { background: var(--accent-hov); border-color: var(--accent-hov); }
.cookie-banner__btn-decline {
  background: transparent;
  color: rgba(248,245,239,0.6);
  border-color: rgba(248,245,239,0.3);
}
.cookie-banner__btn-decline:hover { background: rgba(248,245,239,0.08); border-color: rgba(248,245,239,0.5); }
.cookie-banner__btn-secondary {
  background: transparent;
  color: rgba(248,245,239,0.8);
  border-color: rgba(248,245,239,0.5);
}
.cookie-banner__btn-secondary:hover { background: rgba(248,245,239,0.1); border-color: rgba(248,245,239,0.8); }

.cookie-customizer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 51;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cookie-customizer.active {
  opacity: 1;
  visibility: visible;
}
.cookie-customizer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.cookie-customizer__modal {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
}
.cookie-customizer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cookie-customizer__header h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.cookie-customizer__close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.cookie-customizer__close:hover { color: var(--text); }
.cookie-customizer__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cookie-option {
  padding: 1rem;
  background: var(--bg-alt);
  border-radius: var(--r);
  border-left: 3px solid var(--accent);
}
.cookie-option__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.cookie-option__header h4 {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}
.cookie-option__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: var(--r);
}
.cookie-option__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.cookie-option input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle span {
  display: inline-block;
  width: 40px;
  height: 22px;
  background: #d9d2c5;
  border-radius: 11px;
  position: relative;
  transition: background 0.3s ease;
}
.cookie-toggle span::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
}
.cookie-toggle input:checked + span {
  background: var(--accent);
}
.cookie-toggle input:checked + span::after {
  left: 20px;
}
.cookie-customizer__footer {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  justify-content: flex-end;
}
.cookie-customizer__btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cookie-customizer__btn-cancel {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.cookie-customizer__btn-cancel:hover {
  background: var(--bg-alt);
  border-color: var(--text-muted);
}
.cookie-customizer__btn-save {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.cookie-customizer__btn-save:hover {
  background: var(--accent-hov);
  border-color: var(--accent-hov);
}

@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid::before { display: none; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --sec-py: 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { min-height: auto; padding: var(--sec-py) 0; }
  .hero__numbers { justify-content: center; }
  .brand__inner { grid-template-columns: 1fr; gap: 2rem; }
  .quality__inner { grid-template-columns: 1fr; gap: 2rem; }
  .quality__imgs { grid-template-columns: 1fr; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .tips__grid { grid-template-columns: 1fr; }
  .contacts__grid { grid-template-columns: 1fr; max-width: 400px; }
  .site-header__cta { display: none; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .cookie-customizer__modal {
    width: 95%;
    max-height: 90vh;
  }
}

@media (max-width: 480px) {
  .features__grid { grid-template-columns: 1fr; }
  .categories__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
}
