/* =========
  Smilovichi Landing — warm neutral UI
  Tokens: edit in :root
========= */
:root{
  --bg: #F5F2EE;
  --card: #ffffff;
  --text: #1A1A1A;
  --muted: #6A6662;
  --border: #E3DDD6;
  --soft: #FBFAF8;
  --accent: #78583F;
  --accent-dark:#5C4432;

  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;

  --shadow: 0 18px 40px rgba(20,18,16,.10);
  --shadow-sm: 0 12px 26px rgba(20,18,16,.10);

  --container: 1200px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
html,body{overflow-x:hidden;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height:1.35;
}

img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit;}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* Typography */
.h1{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin:0 0 14px 0;
}
.h2{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  margin:0 0 10px 0;
}
.h3{
  font-weight: 600;
  font-size: 20px;
  margin:0 0 8px;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size: 16px;
  max-width: 62ch;
}
.sub{
  margin:0 0 18px;
  color:var(--muted);
}
.text{
  margin:0 0 16px;
  color:var(--muted);
}
.muted{color:var(--muted);}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 18px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 600;
  transition: transform .05s ease, background .2s ease, border .2s ease;
  user-select:none;
  cursor:pointer;
  white-space:nowrap;
  position:relative;
  z-index:2;
  pointer-events:auto;
  touch-action:manipulation;
}
.btn:active{transform: translateY(1px);}
.btn--primary{
  background: var(--accent);
  color:#fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover{background:var(--accent-dark);}
.btn--secondary{
  background:#fff;
  border-color: var(--border);
  color: var(--accent-dark);
}
.btn--secondary:hover{border-color: #d6cfc7;}
.btn--lg{padding:14px 20px; border-radius: 20px;}
.btn--sm{padding:10px 14px; border-radius: 16px; box-shadow:none;}

/* Header */
.header{
  position: sticky;
  top:0;
  z-index: 50;
  padding: 18px 0;
  transition: backdrop-filter .2s ease, background .2s ease, padding .2s ease;
}
.header.is-scrolled{
  background: rgba(245,242,238,.80);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}
.header__inner{
  display:flex;
  gap: 16px;
  align-items:center;
  justify-content:space-between;
  background: rgba(255,255,255,.85);
  border:1px solid var(--border);
  border-radius: 24px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
}
.brand__name{font-weight:700;}
.brand__meta{font-size: 12px; color:var(--muted); margin-top:2px;}

.header__nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-inline:auto;
}
.header__nav a{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 12px;
  border-radius:14px;
  color:var(--text);
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}
.header__nav a:hover{
  background:#fff;
  color:var(--accent-dark);
}

.header__right{
  display:flex;
  align-items:center;
  gap: 16px;
}
.phone{font-weight:700; font-size: 16px;}
.header__sub{font-size: 12px; color:var(--muted); margin-top:2px;}
.header__viber{
  color:inherit;
  font-weight:700;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
}
.header__viber:hover{color:var(--accent-dark);}

/* Hero */
.hero{
  padding: 20px 0 10px;
}
.hero__grid{
  background: var(--soft);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 34px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: stretch;
}
.hero__media{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid var(--border);
}
.hero__media img{height:100%; width:100%; object-fit:cover; object-position: 50% 35%;}
.hero__cta{display:flex; gap: 12px; flex-wrap:wrap; margin: 16px 0 8px;}
.hint{margin:0; color:var(--muted); font-size: 13px;}

.bullets{
  list-style:none;
  padding:0;
  margin: 18px 0 0;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  max-width: 620px;
}
.check{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display:inline-block;
  vertical-align: -3px;
  margin-right: 10px;
  background: #F0ECE8;
  border:1px solid var(--border);
  position:relative;
}
.check:after{
  content:"";
  position:absolute;
  left:5px;
  top:5px;
  width:7px; height:4px;
  border-left: 2px solid #586B60;
  border-bottom: 2px solid #586B60;
  transform: rotate(-45deg);
}


/* Desktop hero (only for large screens):
   - One single photo (no duplicated scaling)
   - Photo is visible behind text, but text stays readable
   - Mobile / tablet layout remains unchanged */
@media (min-width: 981px) and (hover: hover) and (pointer: fine){
  .hero__grid{
    position: relative;
    overflow: hidden;
    background: transparent; /* override --soft on desktop */
  }

  /* Real store photo as the ONLY background */
  .hero__grid::before{
    content:"";
    position:absolute;
    inset:0;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: 50% 40%;
    transform: scale(1.03);
    z-index: 0;
  }

  /* Light veil only to help readability (keeps the store visible) */
  .hero__grid::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(90deg,
      rgba(245,242,238,.46) 0%,
      rgba(245,242,238,.22) 46%,
      rgba(245,242,238,.06) 100%);
    pointer-events:none;
    z-index: 0;
  }

  .hero__content{
    position: relative;
    z-index: 1;

    /* Gentle glass panel (NOT heavy blur) */
    background: rgba(255,255,255,.22);
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 24px;
    padding: 18px 18px 20px;

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  /* On desktop we do NOT show a second copy of the same photo */
  .hero__media{
    display: none;
  }
}


/* Trust bar */
.trust{
  margin-top: 16px;
  background: rgba(255,255,255,.85);
  border:1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 18px 22px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position:relative;
}
.trust__title{font-weight:700;}
.trust__text{color:var(--muted); font-size: 13px; margin-top: 2px;}
.trust__note{
  position:absolute;
  right: 22px;
  bottom: 12px;
  color: var(--muted);
  font-size: 12px;
}

/* Sections */
.section{padding: 30px 0;}
.section__head{
  display:flex;
  gap: 16px;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom: 14px;
}
.note{
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* Chips */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  color: var(--text);
  cursor:pointer;
  text-decoration:none;
  position:relative;
  z-index:2;
  pointer-events:auto;
  touch-action:manipulation;
}
.chip.is-active{
  border-color: #d5c9bf;
  background: #fbfaf8;
}

/* Cards */
.cards{display:grid; gap: 18px;}
.cards--3{grid-template-columns: repeat(3, 1fr);}

.card, .price, .review{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow:hidden;
}
.card__img{width:100%; height: 160px; object-fit:cover;}
.card__body{padding: 16px 16px 18px;}

.price{padding: 18px;}
.price__top{margin-bottom: 12px;}
.price__name{font-weight:700;}
.price__value{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--accent-dark);
}
.list{list-style:none; padding:0; margin: 12px 0 16px; display:grid; gap: 10px;}
.list li{color:var(--text);}

/* Panel */
.panel{
  background: rgba(255,255,255,.85);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px;
}
.panel__cta{display:flex; gap: 12px; flex-wrap:wrap; margin-top: 16px;}

/* Steps */
.steps{display:grid; gap: 14px; margin: 16px 0;}
.steps--3{grid-template-columns: repeat(3, 1fr);}
.steps--4{grid-template-columns: repeat(4, 1fr);}
.step{
  background: var(--soft);
  border: 1px solid #eee7df;
  border-radius: var(--radius-md);
  padding: 16px;
}
.step__n{
  width: 30px; height:30px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--accent);
  color:#fff;
  font-weight:700;
  margin-bottom: 10px;
}
.step__t{font-weight:700; margin-bottom: 6px;}
.step__d{color:var(--muted); font-size: 13px;}

/* Services */
.service-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.service__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: #F0ECE8;
  flex: 0 0 42px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.service__icon img{
  width: 22px;
  height: 22px;
  display:block;
}

.service__t{font-weight:700; margin-bottom: 2px;}
.service__d{color:var(--muted); font-size: 13px;}

/* Included table */
.table{
  background: rgba(255,255,255,.85);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
}
.table__head{margin-bottom: 10px;}
.table__title{font-weight:700;}
.table__meta{color:var(--muted); font-size: 13px; margin-top: 4px;}
.table__row{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
}
.table__row:nth-child(even){background: #FBFAF8;}
.table__row strong{min-width: 130px;}
.table .btn{margin-top: 14px;}

/* Accordion */
.accordion{
  background: rgba(255,255,255,.85);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 12px;
  margin-bottom: 14px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.accordion__item{border-bottom:none;}
.accordion__btn{
  width:100%;
  text-align:left;
  padding: 14px 14px;
  background: #FBFAF8;
  border: 1px solid var(--border);
  border-radius: 18px;
  font-weight: 600;
  cursor:pointer;
  position:relative;
}
.accordion__btn::after{
  content:"";
  position:absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-60%) rotate(45deg);
  transition: transform .15s ease;
}
.accordion__item.is-open .accordion__btn::after{
  transform: translateY(-40%) rotate(-135deg);
}
.accordion__panel{
  padding: 10px 14px 16px;
  color: var(--muted);
  font-size: 13px;
  display:none;
}
.accordion__item.is-open .accordion__panel{display:block;}

/* Reviews */
.review{padding: 18px;}
.review__top{display:flex; align-items:center; justify-content:space-between; gap: 12px; margin-bottom: 10px;}
.review__name{font-weight:700;}
.stars{color: #BEA06E; letter-spacing: 1px; font-size: 14px;}
.google-reviews{
  display:grid;
  grid-template-columns: minmax(240px, .75fr) 1.4fr;
  gap: 18px;
  align-items:stretch;
}
.google-rating-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  display:grid;
  gap: 10px;
  align-content:start;
}
.google-rating-card__label{
  color:var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.google-rating-card__score{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 64px;
  line-height: .9;
  font-weight: 700;
  color: var(--accent-dark);
}
.google-rating-card__count{
  color:var(--text);
  font-weight: 700;
}
.google-review-list{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review--google .text{
  margin-bottom:0;
}

/* Contacts */
.contacts{
  background: rgba(255,255,255,.85);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contacts__phone{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
}
.contacts__line{margin-top: 10px;}
.contacts__cta{display:flex; gap: 12px; flex-wrap:wrap; margin-top: 16px;}
.contacts__map{
  border:1px solid var(--border);
  border-radius: var(--radius-md);
  overflow:hidden;
  position:relative;
  min-height: 280px;
}
.contacts__map img,
.contacts__map iframe{height:100%; width:100%; object-fit:cover; display:block; border:0;}
.map__badge{
  text-decoration:none;
  position:absolute;
  left: 14px;
  top: 14px;
  background: rgba(255,255,255,.88);
  border:1px solid var(--border);
  border-radius: 16px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
}

.map__pulse{
  position:absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(190,160,110,.95);
  transform: translate(-50%, -50%);
  pointer-events:none;
}
.map__pulse::before{
  content:"";
  position:absolute;
  inset: -18px;
  border-radius: 50%;
  background: rgba(190,160,110,.25);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse{
  0%{transform: scale(.25); opacity: .9;}
  100%{transform: scale(1); opacity: 0;}
}

/* Footer */
.footer{padding: 30px 0 110px;}
.footer__inner{
  background: rgba(255,255,255,.85);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}
.footer__links{display:flex; gap: 14px; flex-wrap:wrap;}
.footer__link{color: var(--text); font-size: 13px; text-decoration: underline;}
.footer__copy{margin-top: 12px; color: var(--muted); font-size: 12px;}
.footer__note{margin-top: 8px; color: var(--muted); font-size: 12px;}

/* Sticky mobile bar */
.stickybar{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  width: min(var(--container), calc(100% - 40px));
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 10px;
  display:none;
  gap: 10px;
  z-index: 70;
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; padding: 22px;}
  .bullets{grid-template-columns:1fr;}
  .trust{grid-template-columns: 1fr 1fr; padding-bottom: 28px;}
  .trust__note{right: 18px; bottom: 10px;}
  .cards--3{grid-template-columns: 1fr;}
  .steps--3, .steps--4{grid-template-columns: 1fr;}
  .service-grid{grid-template-columns: 1fr;}
  .contacts{grid-template-columns: 1fr;}
}

@media (max-width: 980px){
  .stickybar{display:flex;}
  .header__contacts{display:none;}
  .header__inner{
    display:grid;
    grid-template-columns:1fr auto;
    gap:10px;
    padding:10px 12px;
  }
  .header__nav{
    grid-column:1 / -1;
    order:3;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:6px;
    width:100%;
    margin:0;
  }
  .header__nav a{
    justify-content:center;
    min-height:36px;
    padding:0 8px;
    border:1px solid rgba(120,88,63,.20);
    border-radius:8px;
    background:rgba(255,255,255,.72);
    font-size:13px;
  }
}


/* SEO cluster additions */
.brand--link{color:inherit;text-decoration:none}
.section--ai{padding-top:18px}
.answer-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  padding:22px;
}
.answer-box p{font-size:17px;line-height:1.75;margin:10px 0 0}
.answer-facts{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
.answer-facts span{
  border:1px solid var(--border);
  background:#FBFAF8;
  border-radius:999px;
  padding:7px 10px;
  font-size:13px;
  color:var(--muted);
}
.section--related{padding-top:18px}
.related-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.related-card{
  display:flex;
  min-height:96px;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  padding:16px;
  color:var(--text);
  text-decoration:none;
}
.related-card span{font-weight:700;line-height:1.35}
.related-card small{color:var(--accent);font-weight:700}
@media (max-width:980px){.related-grid{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.related-grid{grid-template-columns:1fr}.answer-box{padding:18px}}

/* =========
  Design refresh — quiet premium service UI
========= */
:root{
  --bg: #F4F5F1;
  --card: #FFFFFF;
  --text: #111816;
  --muted: #5F6964;
  --border: #D8DDD6;
  --soft: #F8F9F6;
  --accent: #2F6357;
  --accent-dark: #173D35;
  --gold: #B78943;
  --wine: #873E48;

  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 8px;

  --shadow: 0 18px 44px rgba(17,24,22,.10);
  --shadow-sm: 0 10px 24px rgba(17,24,22,.08);
}

body{
  background:
    linear-gradient(180deg, #EFF2EC 0, #F6F6F3 420px, #F4F5F1 100%);
  color: var(--text);
}

.container{width:min(1180px, calc(100% - 36px));}

.h1,
.hero h1{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .96;
  max-width: 850px;
  letter-spacing: 0;
}

.hero h1{
  margin-top: 153px;
}

.home-hero-title{
  font-size: clamp(34px, 4.4vw, 64px);
  max-width: 760px;
}

.home-hero-title .hero-title-line{
  display:block;
  white-space:nowrap;
}

.h2{
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.05;
  letter-spacing: 0;
}

.h3{font-size:18px; line-height:1.25;}
.lead{font-size:18px; line-height:1.65;}
.sub,.text{line-height:1.7;}

.btn{
  border-radius: 8px;
  min-height: 46px;
  letter-spacing: 0;
}

.btn--primary{
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(47,99,87,.20);
}
.btn--primary:hover{background: var(--accent-dark);}
.btn--secondary{
  background: rgba(255,255,255,.92);
  border-color: #C9D2CA;
  color: var(--accent-dark);
}
.btn--secondary:hover{
  background:#fff;
  border-color: var(--accent);
}

.header{padding:12px 0;}
.header__inner{
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255,255,255,.92);
  border-color: rgba(216,221,214,.95);
}
.header.is-scrolled{
  background: rgba(244,245,241,.82);
}
.brand__name{font-size:15px;}
.brand__meta{color:#6E786F;}
.phone{color:var(--accent-dark);}

.hero{padding: 18px 0 6px;}
.hero__grid{
  min-height: 610px;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(90deg, rgba(12,25,22,.86) 0%, rgba(18,37,33,.72) 43%, rgba(18,37,33,.28) 100%),
    url('../img/hero.avif');
  background-size: cover;
  background-position: 50% 42%;
  color:#fff;
  box-shadow: 0 24px 70px rgba(17,24,22,.20);
  overflow:hidden;
  position:relative;
}

.hero__grid::before,
.hero__grid::after{content:none !important;}

.hero__content{
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  position:relative;
  z-index:1;
}

.hero .lead,
.hero .hint{
  color: rgba(255,255,255,.82);
}

.hero__media{display:none;}
.hero__cta{margin-top:24px;}
.hero .btn--secondary{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.32);
  color:#fff;
}
.hero .btn--secondary:hover{background: rgba(255,255,255,.18);}

.bullets{
  gap: 12px;
  max-width: 720px;
}
.bullets li{
  color: rgba(255,255,255,.88);
  line-height:1.45;
}
.check{
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.26);
}
.check:after{border-color: var(--gold);}

.trust{
  margin-top: -26px;
  z-index:2;
  border-radius:8px;
  background: rgba(255,255,255,.96);
  border-color:#E0E5DE;
}
.trust__title{color:var(--accent-dark);}

.section{padding: 38px 0;}
.section__head{align-items:center;}

.panel,
.table,
.accordion,
.contacts,
.answer-box,
.card,
.price,
.review,
.service,
.related-card,
.step{
  border-radius: 8px;
}

.panel,
.table,
.contacts{
  background: rgba(255,255,255,.92);
}

.card,
.price,
.review,
.service,
.related-card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover,
.price:hover,
.review:hover,
.service:hover,
.related-card:hover{
  transform: translateY(-2px);
  border-color: #BFCBC2;
  box-shadow: 0 16px 34px rgba(17,24,22,.12);
}

.card__img{height:176px;}
.price__value{color:var(--accent-dark);}
.service__icon{
  border-radius:8px;
  background:#EDF3EF;
  border-color:#D9E3DC;
}

.step{
  background:#F7F8F5;
  border-color:#E1E6DF;
}
.step__n{
  border-radius:8px;
  background: var(--accent-dark);
}

.chip{
  border-radius:8px;
  background:#fff;
}
.chip.is-active{
  color:#fff;
  background: var(--accent);
  border-color: var(--accent);
}

.answer-box{
  border-left: 4px solid var(--gold);
}
.answer-facts span{
  border-radius:8px;
  background:#EFF4F0;
  color:#3F524B;
}

.related-card{
  min-height:112px;
  border-top:3px solid var(--accent);
}
.related-card small{color:var(--wine);}

.catalog-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.catalog-nav a,
.catalog-tag{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  border:1px solid var(--border);
  border-radius:8px;
  background:#fff;
  padding:8px 11px;
  color:var(--accent-dark);
  font-weight:700;
  font-size:13px;
}

.catalog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.catalog-card{
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:100%;
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  box-shadow:var(--shadow-sm);
  padding:18px;
}

.catalog-card__title{
  margin:0;
  font-size:20px;
  line-height:1.2;
}

.catalog-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:auto;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.product-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  box-shadow:var(--shadow-sm);
  overflow:hidden;
}

.product-card__image{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:220px;
  background:#F8F9F6;
  border-bottom:1px solid var(--border);
}

.product-card__image img{
  width:100%;
  height:220px;
  object-fit:contain;
  padding:12px;
}

.product-card__body{
  display:flex;
  flex:1;
  flex-direction:column;
  gap:10px;
  padding:14px;
}

.product-card__name{
  margin:0;
  font-size:17px;
  line-height:1.25;
}

.product-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  color:var(--muted);
  font-size:12px;
}

.product-card__price{
  margin-top:auto;
  color:var(--accent-dark);
  font-size:20px;
  font-weight:800;
}

.product-card__note{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}

.catalog-list{
  display:grid;
  gap:10px;
}

.catalog-item{
  display:grid;
  grid-template-columns:1.2fr 2fr auto;
  gap:14px;
  align-items:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  padding:14px;
}

.catalog-item__name{
  font-weight:800;
  color:var(--text);
}

.catalog-item__desc{
  color:var(--muted);
  line-height:1.55;
}

.catalog-status{
  white-space:nowrap;
  border:1px solid #D9E3DC;
  background:#EFF4F0;
  border-radius:8px;
  padding:7px 9px;
  color:#3F524B;
  font-size:12px;
  font-weight:800;
}

.catalog-status--muted{
  background:#FBFAF8;
  border-color:var(--border);
  color:var(--muted);
}

.contacts__phone{
  color: var(--accent-dark);
  font-size: clamp(28px, 4vw, 42px);
}

.footer__inner{
  border-radius:8px;
  background:#152823;
  border-color:#152823;
  color:#fff;
}
.footer__link{color:#fff;}
.footer__copy,
.footer__note{color:rgba(255,255,255,.68);}

.stickybar{
  border-radius:8px;
  background: rgba(255,255,255,.96);
}

@media (min-width:981px){
  .hero__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width:980px){
  .container{
    width:calc(100% - 28px);
    max-width:1180px;
  }
  .hero__grid{
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(12,25,22,.88) 0%, rgba(18,37,33,.76) 100%),
      url('../img/hero.avif');
    background-size: cover;
    background-position: 50% 45%;
  }
  .trust{
    margin-top: 14px;
    grid-template-columns: 1fr 1fr;
  }
  .section__head{
    align-items:flex-start;
    flex-direction:column;
  }
  .catalog-grid{grid-template-columns:1fr 1fr;}
  .product-grid{grid-template-columns:1fr 1fr;}
  .catalog-item{grid-template-columns:1fr;}
  .catalog-status{justify-self:start;}
}

@media (max-width:560px){
  .container{
    width:calc(100% - 24px);
    max-width:1180px;
  }
  .header__inner{
    display:grid;
    grid-template-columns:1fr auto;
    gap:10px;
    padding:10px 12px;
  }
  .header__nav{
    grid-column:1 / -1;
    order:3;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:6px;
    width:100%;
    margin:0;
  }
  .header__nav a{
    justify-content:center;
    min-height:36px;
    padding:0 8px;
    border:1px solid rgba(120,88,63,.20);
    border-radius:8px;
    background:rgba(255,255,255,.72);
    font-size:13px;
  }
  .header__contacts{
    text-align:right;
  }
  .phone{
    font-size:14px;
  }
  .header__right .btn{display:none;}
  .container.hero__grid{
    width:calc(100% - 24px);
    max-width:1180px;
  }
  .hero__grid{padding:22px;}
  .hero h1{
    font-size:28px;
    line-height:1.02;
    max-width:300px;
    overflow-wrap:break-word;
    word-break:break-word;
    white-space:normal;
  }
  .home-hero-title{
    font-size:min(28px, 6.6vw);
    max-width:100%;
  }
  .home-hero-title .hero-title-line{
    white-space:nowrap;
  }
  .hero__content{min-width:0;}
  .hero .lead{max-width:300px;}
  .hero .bullets{max-width:300px;}
  .lead{font-size:16px;}
  .trust{grid-template-columns:1fr;}
  .trust__note{position:static;}
  .contacts__phone{font-size:28px;}
  .btn{width:100%;}
  .hero__cta,
  .contacts__cta,
  .panel__cta{width:100%;}
  .catalog-grid{grid-template-columns:1fr;}
  .product-grid{grid-template-columns:1fr;}
  .catalog-nav a,
  .catalog-tag{width:100%; justify-content:center;}
}

/* App-style catalog rebuilt from the Android catalog patterns */
.catalog-app{
  --app-primary:#3F6DA8;
  --app-primary-soft:#D8E6F6;
  --app-secondary:#5E8E7E;
  --app-secondary-soft:#DCEBE6;
  --app-tertiary:#B2896B;
  --app-tertiary-soft:#F1E2D7;
  --app-bg:#FAFAFA;
  --app-surface:#FFFFFF;
  --app-surface-variant:#E8EEF3;
  --app-text:#1B1B1F;
  --app-muted:#41484D;
  --app-outline:#CACFD3;
  padding:22px 0 10px;
  background:var(--app-bg);
  color:var(--app-text);
}

.catalog-app__inner{
  display:grid;
  gap:16px;
}

.catalog-app__top{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
  align-items:end;
  padding:22px;
  border:1px solid var(--app-outline);
  border-radius:8px;
  background:
    linear-gradient(135deg, rgba(216,230,246,.9), rgba(220,235,230,.76)),
    var(--app-surface);
}

.catalog-app__eyebrow{
  margin:0 0 8px;
  color:#27476D;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0;
}

.catalog-app__top h1,
.store-app-hero h1{
  margin:0 0 10px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.06;
}

.catalog-app__top p,
.store-app-hero p{
  max-width:760px;
  margin:0;
  color:var(--app-muted);
}

.catalog-app__stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(96px,1fr));
  gap:8px;
}

.catalog-app__stats span,
.store-app-hero__panel{
  display:grid;
  gap:3px;
  min-width:96px;
  padding:12px;
  border:1px solid rgba(63,109,168,.18);
  border-radius:8px;
  background:rgba(255,255,255,.82);
  color:var(--app-muted);
  font-size:12px;
  font-weight:700;
}

.catalog-app__stats strong,
.store-app-hero__panel span{
  color:var(--app-text);
  font-size:22px;
  line-height:1;
}

.catalog-toolbar{
  position:sticky;
  top:92px;
  z-index:20;
  display:grid;
  grid-template-columns:minmax(220px,1fr) 220px auto;
  gap:10px;
  align-items:end;
  padding:12px;
  border:1px solid var(--app-outline);
  border-radius:8px;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  box-shadow:0 10px 28px rgba(27,27,31,.08);
}

.catalog-search,
.catalog-select{
  display:grid;
  gap:6px;
}

.catalog-search span,
.catalog-select span{
  color:var(--app-muted);
  font-size:12px;
  font-weight:800;
}

.catalog-search input,
.catalog-select select{
  width:100%;
  min-height:46px;
  border:1px solid var(--app-outline);
  border-radius:8px;
  background:var(--app-surface);
  color:var(--app-text);
  padding:0 12px;
  font:inherit;
  font-weight:700;
}

.catalog-search input:focus,
.catalog-select select:focus{
  outline:2px solid rgba(63,109,168,.25);
  border-color:var(--app-primary);
}

.catalog-clear,
.catalog-more{
  min-height:46px;
  border:1px solid var(--app-outline);
  border-radius:8px;
  background:var(--app-surface);
  color:var(--app-primary);
  padding:0 14px;
  font:inherit;
  font-weight:800;
  cursor:pointer;
}

.catalog-segment{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  gap:4px;
  padding:4px;
  border:1px solid var(--app-outline);
  border-radius:8px;
  background:var(--app-surface-variant);
}

.catalog-segment button{
  min-height:36px;
  border:0;
  border-radius:6px;
  background:transparent;
  color:var(--app-muted);
  padding:0 14px;
  font:inherit;
  font-weight:800;
  cursor:pointer;
}

.catalog-segment button.is-active{
  background:var(--app-surface);
  color:var(--app-primary);
  box-shadow:0 1px 4px rgba(27,27,31,.08);
}

.catalog-chip-row{
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding:2px 0 8px;
  scrollbar-width:thin;
}

.catalog-chip{
  flex:0 0 auto;
  min-height:40px;
  border:1px solid var(--app-outline);
  border-radius:8px;
  background:var(--app-surface);
  color:var(--app-muted);
  padding:8px 11px;
  font:inherit;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}

.catalog-chip span{
  display:inline-flex;
  min-width:22px;
  justify-content:center;
  margin-left:6px;
  padding:2px 6px;
  border-radius:6px;
  background:var(--app-surface-variant);
  color:var(--app-muted);
}

.catalog-chip.is-active{
  border-color:rgba(63,109,168,.35);
  background:var(--app-primary-soft);
  color:#0E2A4A;
}

.catalog-chip.is-active span{
  background:rgba(255,255,255,.7);
  color:#0E2A4A;
}

.catalog-layout{
  display:grid;
  grid-template-columns:330px minmax(0,1fr);
  gap:18px;
  align-items:start;
}

.catalog-aside{
  position:sticky;
  top:174px;
  display:grid;
  gap:12px;
}

.catalog-aside__head,
.catalog-results__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.catalog-aside__head{
  color:var(--app-muted);
  font-size:13px;
  font-weight:800;
}

.catalog-category-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.catalog-category-card{
  position:relative;
  display:block;
  min-height:158px;
  overflow:hidden;
  border:0;
  border-radius:8px;
  background:var(--app-surface-variant);
  padding:0;
  color:#fff;
  text-align:left;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(27,27,31,.12);
  -webkit-touch-callout:none;
  user-select:none;
}

.catalog-category-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  pointer-events:none;
}

.catalog-category-card__shade{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.72));
}

.catalog-category-card__body{
  position:absolute;
  inset:auto 0 0;
  display:grid;
  gap:4px;
  padding:12px;
}

.catalog-category-card__body strong{
  font-size:17px;
  line-height:1.12;
}

.catalog-category-card__body small,
.catalog-category-card__kicker{
  color:rgba(255,255,255,.86);
  font-size:11px;
  font-weight:800;
}

.catalog-category-card.is-active{
  outline:3px solid var(--app-primary);
  outline-offset:2px;
}

.catalog-results{
  min-width:0;
  display:grid;
  gap:14px;
}

.catalog-results__head{
  padding:14px 16px;
  border:1px solid var(--app-outline);
  border-radius:8px;
  background:var(--app-surface);
}

.catalog-results__head h2{
  margin:0 0 3px;
  font-size:22px;
}

.catalog-results__head p{
  margin:0;
  color:var(--app-muted);
  font-size:13px;
  font-weight:800;
}

.catalog-products{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.catalog-product-card{
  display:grid;
  grid-template-rows:auto 1fr;
  min-height:100%;
  overflow:hidden;
  border:1px solid var(--app-outline);
  border-radius:8px;
  background:var(--app-surface);
  box-shadow:0 8px 18px rgba(27,27,31,.08);
}

.catalog-product-card[hidden]{
  display:none;
}

.catalog-product-card__media{
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:1/1;
  background:#F6F8F9;
  -webkit-touch-callout:none;
  user-select:none;
}

.catalog-product-card__media img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:10px;
  pointer-events:none;
}

.catalog-product-card--empty .catalog-product-card__media{
  background:linear-gradient(135deg, var(--app-primary-soft), var(--app-secondary-soft));
}

.catalog-product-card--empty .catalog-product-card__media span{
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  border-radius:8px;
  background:rgba(255,255,255,.75);
  color:var(--app-primary);
  font-size:24px;
  font-weight:900;
}

.catalog-product-card__content{
  display:flex;
  flex-direction:column;
  gap:9px;
  padding:12px;
}

.catalog-product-card__top{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  min-height:24px;
}

.catalog-product-card__category,
.catalog-product-card__sub{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  border-radius:6px;
  padding:3px 7px;
  font-size:11px;
  font-weight:800;
}

.catalog-product-card__category{
  background:var(--app-primary-soft);
  color:#0E2A4A;
}

.catalog-product-card__sub{
  background:var(--app-secondary-soft);
  color:#153A31;
}

.catalog-product-card h3{
  margin:0;
  color:var(--app-text);
  font-size:17px;
  line-height:1.24;
}

.catalog-product-card p{
  margin:0;
  color:var(--app-muted);
  font-size:13px;
  line-height:1.45;
}

.catalog-product-card__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:auto;
}

.catalog-product-card__bottom strong{
  color:var(--app-text);
  font-size:18px;
  line-height:1.1;
}

.catalog-product-card .btn{
  width:auto;
  min-height:38px;
  border-radius:8px;
  padding:9px 12px;
  box-shadow:none;
}

.catalog-empty{
  display:grid;
  gap:6px;
  place-items:center;
  min-height:180px;
  border:1px dashed var(--app-outline);
  border-radius:8px;
  background:var(--app-surface);
  color:var(--app-muted);
  text-align:center;
}

.catalog-empty strong{
  color:var(--app-text);
  font-size:20px;
}

.catalog-more{
  justify-self:center;
  min-width:220px;
}

.store-app-hero{
  padding:22px 0 10px;
  background:#FAFAFA;
}

.store-app-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 220px;
  gap:18px;
  align-items:stretch;
  padding:24px;
  border:1px solid #CACFD3;
  border-radius:8px;
  background:linear-gradient(135deg, #D8E6F6, #DCEBE6);
}

.store-app-hero__panel{
  align-content:center;
}

.store-app-hero__panel span{
  font-size:36px;
}

.store-app-hero__panel small{
  color:#41484D;
  font-weight:800;
}

/* Final agreed catalog direction: hybrid top + premium store product cards */
.catalog-hero,
.catalog-guided,
.catalog-categories,
.catalog-shop{
  --app-primary:#3F6DA8;
  --app-primary-soft:#D8E6F6;
  --app-secondary:#5E8E7E;
  --app-secondary-soft:#DCEBE6;
  --app-tertiary:#B2896B;
  --app-bg:#FAFAFA;
  --app-surface:#FFFFFF;
  --app-surface-variant:#E8EEF3;
  --app-text:#1B1B1F;
  --app-muted:#41484D;
  --app-outline:#CACFD3;
  background:var(--app-bg);
  color:var(--app-text);
}

.catalog-hero{
  padding:22px 0 10px;
}

.catalog-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:20px;
  align-items:stretch;
  padding:24px;
  border:1px solid var(--app-outline);
  border-radius:8px;
  background:linear-gradient(135deg, rgba(216,230,246,.94), rgba(220,235,230,.9));
}

.catalog-hero h1{
  margin:0 0 10px;
  font-size:clamp(32px,4vw,52px);
  line-height:1.05;
}

.catalog-hero p{
  max-width:760px;
  margin:0;
  color:var(--app-muted);
}

.catalog-hero__search{
  display:grid;
  gap:6px;
  max-width:720px;
  margin-top:18px;
}

.catalog-hero__search span{
  color:var(--app-muted);
  font-size:12px;
  font-weight:800;
}

.catalog-hero__search input{
  width:100%;
  min-height:54px;
  border:1px solid rgba(63,109,168,.28);
  border-radius:8px;
  background:rgba(255,255,255,.94);
  color:var(--app-text);
  padding:0 14px;
  font:inherit;
  font-size:16px;
  font-weight:700;
  box-shadow:0 8px 22px rgba(27,27,31,.07);
}

.catalog-hero__search input:focus{
  outline:2px solid rgba(63,109,168,.24);
  border-color:var(--app-primary);
}

.catalog-hero__stats{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
}

.catalog-hero__stats span{
  display:grid;
  gap:4px;
  align-content:center;
  min-height:76px;
  padding:14px;
  border:1px solid rgba(63,109,168,.18);
  border-radius:8px;
  background:rgba(255,255,255,.82);
  color:var(--app-muted);
  font-size:12px;
  font-weight:800;
}

.catalog-hero__stats strong{
  color:var(--app-text);
  font-size:28px;
  line-height:1;
}

.catalog-guided,
.catalog-categories,
.catalog-shop{
  padding:22px 0;
}

.catalog-guided__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.catalog-guide-card{
  display:grid;
  gap:8px;
  min-height:156px;
  padding:16px;
  border:1px solid var(--app-outline);
  border-radius:8px;
  background:var(--app-surface);
  box-shadow:0 8px 18px rgba(27,27,31,.07);
}

.catalog-guide-card span{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:8px;
  background:var(--app-primary-soft);
  color:#0E2A4A;
  font-weight:900;
}

.catalog-guide-card strong{
  color:var(--app-text);
  font-size:18px;
  line-height:1.15;
}

.catalog-guide-card small{
  color:var(--app-muted);
  line-height:1.35;
}

.catalog-guide-card em{
  align-self:end;
  color:var(--app-primary);
  font-style:normal;
  font-weight:800;
}

.catalog-category-grid--two-rows{
  grid-template-columns:repeat(6,minmax(0,1fr));
}

.catalog-category-grid--two-rows .catalog-category-card{
  min-height:190px;
}

.catalog-shop__head{
  display:grid;
  grid-template-columns:minmax(0,1fr) 230px;
  gap:16px;
  align-items:end;
  margin-bottom:14px;
}

.catalog-products--premium{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.catalog-products--premium .catalog-product-card{
  grid-template-columns:42% minmax(0,1fr);
  grid-template-rows:1fr;
  min-height:250px;
}

.catalog-products--premium .catalog-product-card__media{
  aspect-ratio:auto;
  min-height:100%;
}

.catalog-products--premium .catalog-product-card__media img{
  padding:16px;
}

.catalog-products--premium .catalog-product-card__content{
  padding:18px;
}

.catalog-products--premium .catalog-product-card h3{
  font-size:21px;
  line-height:1.18;
}

.catalog-products--premium .catalog-product-card p{
  font-size:14px;
}

.catalog-shop .catalog-results__head{
  margin:14px 0;
}

.catalog-shop .catalog-results__head h3{
  margin:0 0 3px;
  font-size:22px;
}

@media (max-width:1180px){
  .catalog-layout{
    grid-template-columns:1fr;
  }
  .catalog-aside{
    position:static;
  }
  .catalog-category-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
  .catalog-category-grid--two-rows{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
  .catalog-guided__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .catalog-products--premium{
    grid-template-columns:1fr;
  }
}

@media (max-width:980px){
  .catalog-app__top,
  .store-app-hero__grid{
    grid-template-columns:1fr;
  }
  .catalog-app__stats{
    grid-template-columns:repeat(3,1fr);
  }
  .catalog-toolbar{
    top:82px;
    grid-template-columns:1fr 1fr;
  }
  .catalog-clear{
    grid-column:1/-1;
  }
  .catalog-products{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .catalog-category-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .catalog-hero__grid,
  .catalog-shop__head{
    grid-template-columns:1fr;
  }
  .catalog-hero__stats{
    grid-template-columns:repeat(3,1fr);
  }
  .catalog-category-grid--two-rows{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width:640px){
  .catalog-app{
    padding-top:10px;
  }
  .catalog-app .container,
  .store-app-hero .container{
    width:calc(100% - 18px);
  }
  .catalog-app__top,
  .store-app-hero__grid{
    padding:16px;
  }
  .catalog-app__top h1,
  .store-app-hero h1{
    font-size:28px;
  }
  .catalog-app__stats{
    grid-template-columns:1fr 1fr 1fr;
  }
  .catalog-app__stats span{
    min-width:0;
    padding:10px 8px;
    font-size:11px;
  }
  .catalog-app__stats strong{
    font-size:18px;
  }
  .catalog-toolbar{
    position:static;
    grid-template-columns:1fr;
  }
  .catalog-segment{
    width:100%;
  }
  .catalog-segment button{
    flex:1;
  }
  .catalog-category-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .catalog-category-card{
    min-height:142px;
  }
  .catalog-products{
    grid-template-columns:1fr;
  }
  .catalog-product-card{
    grid-template-columns:104px minmax(0,1fr);
    grid-template-rows:1fr;
  }
  .catalog-product-card__media{
    aspect-ratio:auto;
    min-height:100%;
  }
  .catalog-product-card__media img{
    padding:8px;
  }
  .catalog-product-card h3{
    font-size:15px;
  }
  .catalog-product-card p{
    display:none;
  }
  .catalog-product-card__bottom{
    align-items:flex-end;
  }
  .catalog-product-card__bottom strong{
    font-size:16px;
  }
  .catalog-hero .container,
  .catalog-guided .container,
  .catalog-categories .container,
  .catalog-shop .container{
    width:calc(100% - 18px);
  }
  .catalog-hero__grid{
    padding:16px;
  }
  .catalog-hero h1{
    font-size:28px;
  }
  .catalog-hero__stats{
    grid-template-columns:1fr 1fr 1fr;
  }
  .catalog-hero__stats span{
    min-height:64px;
    padding:10px 8px;
    font-size:11px;
  }
  .catalog-hero__stats strong{
    font-size:19px;
  }
  .catalog-guided__grid,
  .catalog-category-grid--two-rows{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .catalog-guide-card{
    min-height:144px;
  }
  .catalog-category-grid--two-rows .catalog-category-card{
    min-height:150px;
  }
  .catalog-products--premium .catalog-product-card{
    grid-template-columns:118px minmax(0,1fr);
    min-height:154px;
  }
  .catalog-products--premium .catalog-product-card__content{
    padding:12px;
  }
  .catalog-products--premium .catalog-product-card h3{
    font-size:16px;
  }
  .catalog-products--premium .catalog-product-card p{
    display:none;
  }
}

/* Catalog mockup alignment: one masthead, two-row categories, premium product rows */
.catalog-mast{
  --app-primary:#2868A8;
  --app-primary-soft:#E7F0FA;
  --app-secondary:#5E8E7E;
  --app-secondary-soft:#E7F1EE;
  --app-bg:#F7F9FA;
  --app-surface:#FFFFFF;
  --app-text:#111827;
  --app-muted:#4B5563;
  --app-outline:#D7DEE6;
  padding:18px 0 12px;
  background:var(--app-bg);
  color:var(--app-text);
}
.catalog-mast__grid{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(440px,1.08fr);
  gap:18px;
  padding:0;
}
.catalog-mast__left,
.catalog-mast__right{
  min-width:0;
}
.catalog-mast .catalog-hero__grid,
.catalog-guided__panel{
  height:100%;
  border:1px solid var(--app-outline);
  border-radius:8px;
  box-shadow:0 12px 28px rgba(17,24,39,.07);
}
.catalog-mast .catalog-hero__grid{
  display:grid;
  grid-template-columns:1fr;
  align-content:start;
  gap:22px;
  padding:28px;
  background:linear-gradient(135deg,#ECF5FF 0%,#F8FBFF 62%,#E8F2EE 100%);
}
.catalog-mast .catalog-hero__stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.catalog-mast .catalog-hero__stats span{
  min-height:64px;
  border-radius:8px;
  background:rgba(255,255,255,.82);
  box-shadow:0 10px 22px rgba(17,24,39,.05);
}
.catalog-mast .catalog-hero__search input{
  min-height:58px;
  padding-inline:18px;
}
.catalog-guided__panel{
  padding:24px;
  background:linear-gradient(135deg,#F7FBF9 0%,#E6F1EE 100%);
}
.catalog-guided__panel .section__head{
  margin:0 0 14px;
}
.catalog-guided__panel .h2{
  margin:0 0 6px;
  font-family:Inter,system-ui,sans-serif;
  font-size:26px;
}
.catalog-guided__panel .sub{
  margin:0;
  font-size:14px;
}
.catalog-guided__panel .catalog-guided__grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.catalog-guided__panel .catalog-guide-card{
  min-height:196px;
  justify-items:center;
  text-align:center;
  padding:18px 14px;
  border-radius:8px;
  box-shadow:0 14px 26px rgba(17,24,39,.08);
}
.catalog-guided__panel .catalog-guide-card span{
  width:58px;
  height:58px;
  border-radius:50%;
  color:var(--app-primary);
  background:#E8F1FA;
}
.catalog-guide-card svg{
  width:30px;
  height:30px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.catalog-guided__panel .catalog-guide-card strong{
  font-size:16px;
}
.catalog-guided__panel .catalog-guide-card small{
  font-size:12px;
}
.catalog-guided__panel .catalog-guide-card em::after{
  content:"";
}
.catalog-categories{
  padding-top:10px;
}
.catalog-categories .section__head{
  margin-bottom:12px;
}
.catalog-category-grid--two-rows{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.catalog-category-grid--two-rows .catalog-category-card{
  min-height:232px;
  border-radius:8px;
  box-shadow:0 12px 24px rgba(17,24,39,.12);
}
.catalog-category-card__shade{
  background:linear-gradient(180deg,rgba(0,0,0,.02) 0%,rgba(0,0,0,.16) 42%,rgba(4,18,28,.82) 100%);
}
.catalog-category-card__body{
  gap:8px;
  padding:16px;
}
.catalog-category-card__body strong{
  order:1;
  font-size:18px;
  overflow-wrap:normal;
}
.catalog-category-card__kicker{
  order:2;
  display:flex;
  justify-content:space-between;
  gap:8px;
  color:#fff;
  font-size:12px;
}
.catalog-category-card__body small{
  display:none;
}
.catalog-shop{
  padding-top:18px;
}
.catalog-shop__head{
  align-items:center;
  padding:0;
}
.catalog-chip-row{
  gap:10px;
  padding-bottom:10px;
}
.catalog-products--premium{
  gap:20px;
}
.catalog-products--premium .catalog-product-card{
  min-height:248px;
  border-color:#DFE5EB;
  box-shadow:0 12px 24px rgba(17,24,39,.06);
}
.catalog-products--premium .catalog-product-card__media{
  background:linear-gradient(135deg,#F8FAFC,#FFFFFF);
}
.catalog-products--premium .catalog-product-card__media img{
  padding:22px;
}
.catalog-products--premium .catalog-product-card__content{
  display:grid;
  grid-template-rows:auto auto 1fr auto;
  padding:22px;
}
.catalog-products--premium .catalog-product-card__bottom strong{
  font-size:24px;
}
.catalog-products--premium .catalog-product-card .btn{
  border-radius:6px;
  background:#2868A8;
}
@media (max-width:1180px){
  .catalog-mast__grid{
    grid-template-columns:1fr;
  }
  .catalog-guided__panel .catalog-guided__grid,
  .catalog-category-grid--two-rows{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}
@media (max-width:760px){
  .google-reviews,
  .google-review-list{
    grid-template-columns:1fr;
  }
  .google-rating-card{
    padding:18px;
  }
  .google-rating-card__score{
    font-size:54px;
  }
  .catalog-mast{
    padding-top:8px;
  }
  .catalog-mast .container,
  .catalog-categories .container,
  .catalog-shop .container{
    width:calc(100% - 18px);
  }
  .catalog-mast .catalog-hero__grid,
  .catalog-guided__panel{
    padding:16px;
  }
  .catalog-mast .catalog-hero__stats{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px;
  }
  .catalog-guided__panel .catalog-guided__grid,
  .catalog-category-grid--two-rows{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .catalog-guided__panel .catalog-guide-card{
    min-height:166px;
  }
  .catalog-category-grid--two-rows .catalog-category-card{
    min-height:176px;
  }
  .catalog-products--premium .catalog-product-card,
  .catalog-product-card{
    grid-template-columns:1fr;
    grid-template-rows:auto 1fr;
    min-height:0;
  }
  .catalog-products--premium .catalog-product-card__media,
  .catalog-product-card__media{
    width:100%;
    min-height:0;
    aspect-ratio:4/3;
  }
  .catalog-products--premium .catalog-product-card__media img,
  .catalog-product-card__media img{
    width:100%;
    height:100%;
    padding:14px;
  }
  .catalog-products--premium .catalog-product-card__content,
  .catalog-product-card__content{
    padding:14px;
  }
  .catalog-products--premium .catalog-product-card h3,
  .catalog-product-card h3{
    font-size:18px;
    line-height:1.18;
  }
  .catalog-products--premium .catalog-product-card p,
  .catalog-product-card p{
    display:block;
    font-size:13px;
  }
  .catalog-products--premium .catalog-product-card__bottom,
  .catalog-product-card__bottom{
    margin-top:12px;
  }
  .catalog-products--premium .catalog-product-card__bottom strong,
  .catalog-product-card__bottom strong{
    font-size:22px;
  }
}


/* Catalog image protection: reduce selection, dragging, and long-tap saving. */
.catalog-product-card__media,
.catalog-category-card {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.catalog-product-card__media img,
.catalog-category-card img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
