:root {
  --blue-950: #0b2038;
  --blue-900: #0d315c;
  --blue-700: #0876dd;
  --blue-600: #1491ff;
  --blue-100: #e8f3ff;
  --blue-50: #f5faff;
  --mint: #64c7bd;
  --green: #18a058;
  --ink: #142338;
  --muted: #6f7d8f;
  --line: #d8e6f5;
  --page: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(13, 49, 92, 0.14);
  --premium-shadow: 0 28px 70px rgba(8, 27, 48, 0.18);
  --aqua: #30c4d8;
  --gold: #f4b84a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@view-transition {
  navigation: auto;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, #f5f9ff 420px, var(--page) 100%);
  animation: accordPageIn 420ms ease both;
}

body.layer-open {
  overflow: hidden;
}

body.layer-open .ai-widget {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

body.layer-open .mobile-contact-bar {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(11, 32, 56, 0.06);
  backdrop-filter: blur(16px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(48, 196, 216, 0.62), transparent);
}

.header-main,
.header-tools,
.mobile-nav-row,
.hero-layout,
.promo-grid,
.home-catalog-preview,
.premium-story,
.trust-strip,
.featured-showroom,
.catalog-hero,
.catalog-layout,
.footer-grid,
.footer-bottom {
  width: min(1280px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.header-main {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-logo,
.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-950));
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(8, 118, 221, 0.24);
}

.brand-logo-img {
  width: 190px;
  height: 62px;
  display: block;
  object-fit: contain;
  padding: 8px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(9, 71, 125, 0.12);
  box-shadow: 0 16px 32px rgba(11, 32, 56, 0.14);
  filter: none;
}

.brand strong {
  display: block;
  color: var(--blue-950);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.desktop-nav > a,
.desktop-nav .nav-mega-wrap > a,
.nav-links a {
  padding: 11px 14px;
  border-radius: 8px;
  color: #52627a;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.desktop-nav > a:hover,
.desktop-nav .nav-mega-wrap:hover > a,
.desktop-nav .nav-mega-wrap:focus-within > a,
.nav-links a:hover {
  color: var(--blue-700);
  background: var(--blue-100);
}

.nav-mega-wrap {
  position: relative;
}

.nav-mega-wrap::after {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  top: 100%;
  height: 18px;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  z-index: 55;
  width: min(860px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(216, 230, 245, 0.9);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 32px 80px rgba(8, 27, 48, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  visibility: hidden;
  backdrop-filter: blur(18px);
}

.nav-mega-wrap:hover .mega-menu,
.nav-mega-wrap:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.mega-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -9px;
  width: 18px;
  height: 18px;
  border-left: 1px solid rgba(216, 230, 245, 0.9);
  border-top: 1px solid rgba(216, 230, 245, 0.9);
  background: rgba(255, 255, 255, 0.97);
  transform: translateX(-50%) rotate(45deg);
}

.mega-intro {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 22px;
  border-radius: 14px;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(7, 25, 44, 0.9), rgba(10, 76, 132, 0.68)),
    url("assets/products/accord-bath/aquarius-s60.jpg") center / cover;
}

.mega-intro span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-intro strong {
  display: block;
  margin-top: 42px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.mega-intro p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

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

.mega-link,
.mega-feature {
  position: relative;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 10px 22px rgba(11, 32, 56, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mega-link:hover,
.mega-feature:hover {
  border-color: rgba(20, 145, 255, 0.42);
  box-shadow: 0 18px 34px rgba(11, 61, 108, 0.12);
  transform: translateY(-2px);
}

.mega-link span,
.mega-feature span {
  color: var(--blue-950);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
}

.mega-link small,
.mega-feature small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.mega-link-strong {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 118, 221, 0.94), rgba(11, 32, 56, 0.94)),
    url("assets/products/accord-bath/elegance-50.jpg") center / cover;
}

.mega-link-strong span,
.mega-link-strong small {
  color: var(--white);
}

.mega-feature {
  grid-column: 2;
  min-height: 88px;
  border-color: rgba(100, 199, 189, 0.5);
  background:
    linear-gradient(120deg, rgba(232, 243, 255, 0.98), rgba(255, 255, 255, 0.95)),
    radial-gradient(circle at 90% 30%, rgba(100, 199, 189, 0.26), transparent 34%);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: var(--blue-950);
  font-weight: 900;
}

.callback-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--mint);
  border-radius: 999px;
  color: #12877f;
  font-size: 0.9rem;
}

.header-tools {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
}

.catalog-pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--mint);
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(100, 199, 189, 0.24);
}

.catalog-pill::before {
  content: "";
  width: 18px;
  height: 12px;
  background:
    linear-gradient(var(--white), var(--white)) 0 0 / 18px 2px no-repeat,
    linear-gradient(var(--white), var(--white)) 0 5px / 18px 2px no-repeat,
    linear-gradient(var(--white), var(--white)) 0 10px / 18px 2px no-repeat;
}

.header-search {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #eef8f8;
}

.header-search input {
  min-width: 0;
  border: 0;
  outline: none;
  padding: 0 20px;
  color: var(--ink);
  background: transparent;
  font-size: 1rem;
}

.header-search button {
  min-width: 92px;
  border: 0;
  color: var(--white);
  background: var(--blue-700);
  font-weight: 900;
  cursor: pointer;
}

.tool-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-icon {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-950);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.cart-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.cart-header-btn span:first-child {
  white-space: nowrap;
}

.cart-count {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--green);
  background: var(--white);
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-950);
}

.mobile-nav-row {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #edf3fa;
}

.nav-links {
  display: none;
  gap: 8px;
}

.language-switcher {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.lang-btn {
  min-width: 44px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--blue-900);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.lang-btn.active {
  color: var(--white);
  background: var(--blue-700);
}

.hero-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.side-catalog {
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(216, 230, 245, 0.82);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--premium-shadow);
}

.side-catalog h2 {
  margin: 0;
  padding: 22px 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  font-size: 1.2rem;
}

.side-catalog a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid #edf3fa;
  color: var(--blue-950);
  font-weight: 900;
}

.side-catalog a:hover {
  color: var(--blue-700);
  background: var(--blue-50);
}

.side-catalog a.side-sub {
  min-height: 40px;
  padding-left: 36px;
  color: #5f7188;
  background: #f8fbff;
  font-size: 0.9rem;
}

.hero-slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--blue-950);
  box-shadow: var(--premium-shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(7, 20, 35, 0.82) 0%, rgba(7, 20, 35, 0.58) 42%, rgba(7, 20, 35, 0.12) 100%), var(--slide-image);
  background-size: cover, var(--slide-size, auto 215%);
  background-position: center, var(--slide-position, center top);
  background-repeat: no-repeat;
  transition: opacity 0.35s ease;
}

.hero-brand-background {
  --slide-size: cover;
  --slide-position: center center;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-copy-block {
  width: min(780px, calc(100% - 130px));
  padding: 64px 0 58px 58px;
  color: var(--white);
}

.discount-pill {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 26px;
  padding: 0 16px;
  border-radius: 999px;
  color: #1f2a38;
  background: linear-gradient(135deg, #ffe5a6, var(--gold));
  font-size: 0.88rem;
  font-weight: 900;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy-block .eyebrow {
  color: #9bd5ff;
}

.hero-copy-block h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.75rem, 5vw, 5.15rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.hero-copy-block p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: #f1f8ff;
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #eff8ff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 900;
}

.button-primary {
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 16px 28px rgba(8, 118, 221, 0.26);
}

.button-glass {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-slider-controls {
  position: absolute;
  right: 34px;
  top: 50%;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 14px;
  transform: translateY(-50%);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.6rem;
  cursor: pointer;
}

.hero-dots {
  display: grid;
  gap: 12px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.promo-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border-radius: 12px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.promo-card:hover,
.visual-category:hover,
.bath-type-card:hover,
.showroom-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--premium-shadow);
}

.promo-card span {
  font-weight: 900;
}

.promo-card strong {
  max-width: 430px;
  margin-top: 8px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.promo-blue {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-950));
}

.promo-photo {
  background-image: linear-gradient(180deg, rgba(11, 32, 56, 0.08), rgba(11, 32, 56, 0.84)), url("assets/accord-bg-light.jpg");
  background-position: center, center 46%;
}

.promo-light {
  background-image: linear-gradient(180deg, transparent, rgba(11, 32, 56, 0.82)), url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=900&q=82");
}

.home-catalog-preview {
  padding: 62px 0 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.trust-strip article {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(216, 230, 245, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(13, 49, 92, 0.08);
}

.trust-strip span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--aqua);
  font-weight: 900;
}

.trust-strip h3 {
  margin: 0 0 8px;
  color: var(--blue-950);
  font-size: 1.15rem;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.center-heading {
  text-align: center;
}

.section-heading h2,
.premium-story h2,
.catalog-sidebar h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0;
}

.visual-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.visual-category {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 22px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.visual-category::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 32, 56, 0.82));
}

.visual-category span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 900;
}

.category-bath {
  background-image: url("assets/products/accord-bath/elegance-50.jpg");
}

.category-faucet {
  background-image: url("https://images.unsplash.com/photo-1585704032915-c3400ca199e7?auto=format&fit=crop&w=700&q=86");
}

.category-toilet {
  background-image: url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=700&q=86");
}

.bath-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.bath-type-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 20px;
  border-radius: 12px;
  color: var(--white);
  background-size: cover;
  background-position: center top;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bath-type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 32, 56, 0.05), rgba(11, 32, 56, 0.86));
}

.bath-type-card span,
.bath-type-card strong {
  position: relative;
  z-index: 1;
}

.bath-type-card span {
  font-weight: 900;
}

.bath-type-card strong {
  margin-top: 6px;
  font-size: 1.22rem;
}

.type-rectangular {
  background-image: url("assets/products/accord-bath/elegance-90.jpg");
}

.type-corner {
  background-image: url("assets/products/accord-bath/aquarius-s40.jpg");
}

.type-asymmetric {
  background-image: url("assets/products/accord-bath/comfort-maxima-i7.jpg");
}

.type-trays {
  background-image: url("assets/products/accord-bath/tray-mini-80.jpg");
}

.premium-story {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  margin-bottom: 78px;
  padding: 34px;
  border-radius: 14px;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(11, 32, 56, 0.9), rgba(11, 32, 56, 0.38)), url("assets/accord-bg-light.jpg");
  background-size: cover;
  background-position: center, center 42%;
  box-shadow: var(--shadow);
}

.featured-showroom {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: end;
  padding: 42px 0 12px;
}

.featured-showroom .section-heading p:not(.section-kicker) {
  max-width: 510px;
  color: var(--muted);
  line-height: 1.65;
}

.showroom-cards {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.showroom-card {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 24px;
  background: var(--blue-950);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.showroom-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(8, 24, 42, 0.82));
}

.showroom-wide {
  grid-row: span 2;
  min-height: 516px;
}

.showroom-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.showroom-card span {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.premium-story h2 {
  color: var(--white);
}

.premium-story p:not(.section-kicker) {
  max-width: 600px;
  color: #eaf6ff;
  line-height: 1.65;
}

.catalog-hero {
  margin-top: 28px;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 58px;
  border-radius: 28px;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(7, 20, 35, 0.88), rgba(7, 20, 35, 0.34)), url("assets/accord-bg-dark.jpg");
  background-size: cover, cover;
  background-position: center, center center;
  background-repeat: no-repeat;
  box-shadow: var(--premium-shadow);
}

.catalog-hero-inner {
  max-width: 780px;
}

.catalog-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.05;
}

.catalog-hero p:not(.eyebrow) {
  max-width: 660px;
  color: #eaf6ff;
  line-height: 1.65;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 24px;
  margin-top: 28px;
  margin-bottom: 78px;
}

.catalog-sidebar {
  align-self: start;
  position: sticky;
  top: 176px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--premium-shadow);
}

.filter-group {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid #edf3fa;
}

.filter-group h3 {
  margin: 0 0 2px;
  color: var(--blue-950);
  font-size: 0.95rem;
}

.filter-btn {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-900);
  background: var(--white);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.result-count {
  color: var(--muted);
  font-weight: 900;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 448px;
  overflow: hidden;
  border: 1px solid rgba(191, 166, 108, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(8, 27, 48, 0.1);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover,
.product-card:focus-visible {
  outline: 0;
  transform: translateY(-4px);
  border-color: rgba(190, 138, 55, 0.46);
  box-shadow: 0 24px 54px rgba(8, 27, 48, 0.16);
}

.product-photo {
  position: relative;
  display: grid;
  height: 268px;
  padding: 14px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(244, 184, 74, 0.14), transparent 34%),
    linear-gradient(180deg, #101824, #f8fafc 62%, #ffffff);
}

.product-photo img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.25s ease;
}

.product-card:hover .product-photo img {
  transform: scale(1.02);
}

.product-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 12px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(8, 14, 22, 0.76);
  box-shadow: 0 10px 24px rgba(8, 14, 22, 0.2);
  font-size: 0.72rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.product-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.product-category,
.product-type,
.product-size {
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-category {
  color: var(--blue-700);
  background: var(--blue-100);
}

.product-type {
  color: #12877f;
  background: #e9f9f7;
}

.product-size {
  color: var(--blue-950);
  background: #edf3fa;
}

.product-card h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.18rem;
}

.product-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

.product-card-foot {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.product-actions {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 10px;
}

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

.price {
  color: var(--blue-950);
  font-size: 1.28rem;
  font-weight: 900;
}

.cart-btn {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-700);
  font-weight: 900;
  cursor: pointer;
}

.detail-link {
  min-height: 38px;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-700);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.product-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 75;
  display: none;
  padding: clamp(8px, 1.4vw, 18px);
  overflow: auto;
  overscroll-behavior: contain;
  background: rgba(11, 32, 56, 0.58);
  backdrop-filter: blur(10px);
}

.product-detail-modal.open {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  animation: accordOverlayFade 220ms ease both;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: clamp(12px, 2.2vw, 28px);
  overflow: auto;
  overscroll-behavior: contain;
  background: rgba(5, 17, 31, 0.62);
  backdrop-filter: blur(14px);
}

.lead-modal.open {
  display: grid;
  align-items: center;
  justify-items: center;
  animation: accordOverlayFade 220ms ease both;
}

.product-detail-modal.open .product-detail-panel,
.lead-modal.open .lead-panel {
  animation: accordModalRise 280ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes accordOverlayFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes accordModalRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes accordPageIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes accordImageReveal {
  from {
    opacity: 0;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lead-panel {
  position: relative;
  width: min(860px, calc(100vw - 32px));
  min-height: min(560px, calc(100dvh - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  color: var(--white);
  background: #071321;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42);
}

.lead-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 16, 30, 0.94) 0%, rgba(4, 16, 30, 0.82) 42%, rgba(4, 16, 30, 0.3) 100%),
    url("assets/accord-bg-dark.jpg") center center / cover;
}

.lead-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 36%),
    radial-gradient(circle at 84% 18%, rgba(100, 199, 189, 0.28), transparent 28%);
  pointer-events: none;
}

.lead-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.lead-content {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  padding: 58px;
}

.lead-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-content h2 {
  margin: 22px 0 14px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead-content p {
  margin: 0;
  max-width: 470px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.6;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  outline: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-form input {
  min-height: 52px;
  padding: 0 16px;
}

.lead-form textarea {
  min-height: 104px;
  resize: vertical;
  padding: 14px 16px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(100, 199, 189, 0.72);
  box-shadow: 0 0 0 4px rgba(100, 199, 189, 0.14);
}

.lead-actions {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10px;
}

.lead-later {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.lead-form .form-status {
  min-height: 22px;
  color: #dff9ff;
}

.product-detail-panel {
  position: relative;
  width: min(1520px, calc(100vw - 24px));
  height: min(940px, calc(100dvh - 32px));
  max-height: calc(100dvh - 32px);
  overflow: hidden;
  border: 1px solid rgba(191, 166, 108, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(8, 14, 22, 0.34);
}

#product-detail {
  height: 100%;
  max-height: 100%;
  overflow: auto;
}

.product-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(clamp(360px, 34vw, 500px), 0.72fr);
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.detail-image-wrap {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: start;
  gap: 12px;
  padding: 12px;
  overflow: hidden;
  contain: layout paint;
  background:
    radial-gradient(circle at 50% 6%, rgba(244, 184, 74, 0.18), transparent 30%),
    linear-gradient(180deg, #111a26, #f8fbff 62%, #ffffff);
  min-width: 0;
}

.detail-main-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  height: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(216, 230, 245, 0.78);
  border-radius: 8px;
  background: var(--white);
}

.detail-main-image > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  animation: accordImageReveal 280ms ease both;
}

.detail-main-image > img.detail-product-image {
  padding: 8px;
  background: #ffffff;
}

.detail-main-image > img.detail-poster-image {
  padding: 0;
  background: #ffffff;
}

.brochure-slide {
  position: relative;
  width: 100%;
  min-height: 640px;
  overflow: hidden;
  border-radius: 12px;
  color: #161f2d;
  background: #ffffff;
}

.brochure-slide h3 {
  margin: 0;
  color: #3b168f;
  font-size: clamp(1.65rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brochure-slide p {
  margin: 0;
}

.brochure-slide img {
  display: block;
  max-width: 100%;
}

.brochure-page {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #ffffff;
  background: #3b168f;
  font-weight: 900;
}

.brochure-kicker {
  color: #3b168f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brochure-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 2px solid #4b1da4;
  border-radius: 10px;
  color: #4b1da4;
  font-weight: 900;
}

.brochure-hero-slide {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(340px, 1.1fr);
  align-items: end;
  gap: 16px;
  padding: 34px 34px 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 38%, rgba(255, 255, 255, 0.66) 68%, rgba(255, 255, 255, 0.14)),
    url("assets/products/accord-bath/aquarius-s60.jpg") center right / cover;
}

.brochure-brand {
  position: absolute;
  left: 28px;
  top: 24px;
  width: 190px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(16, 22, 36, 0.1);
}

.brochure-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: 70px;
}

.brochure-hero-copy > p {
  margin-top: 10px;
  color: #171925;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.brochure-benefits {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.brochure-benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
}

.brochure-benefits strong,
.brochure-comfort-grid strong,
.brochure-quality-grid strong {
  display: block;
  color: #3b168f;
  font-size: 0.88rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.brochure-benefits span,
.brochure-comfort-grid p,
.brochure-quality-grid p {
  display: block;
  margin-top: 5px;
  color: #3a4050;
  font-size: 0.82rem;
  line-height: 1.45;
}

.brochure-hero-product {
  position: relative;
  z-index: 2;
  align-self: end;
  filter: drop-shadow(0 26px 40px rgba(34, 26, 64, 0.2));
}

.brochure-hero-product img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.brochure-badge {
  position: absolute;
  top: 28px;
  right: 92px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 108px;
  height: 128px;
  padding: 16px 12px;
  clip-path: polygon(50% 0, 96% 17%, 91% 75%, 50% 100%, 9% 75%, 4% 17%);
  color: #3b168f;
  background: rgba(255, 255, 255, 0.94);
  border: 4px solid #4b1da4;
  text-align: center;
  box-shadow: 0 14px 28px rgba(34, 18, 75, 0.18);
}

.brochure-badge strong {
  display: block;
  font-size: 2.55rem;
  line-height: 0.9;
}

.brochure-badge span {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brochure-volume {
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 3;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #4b1da4, #2d106f);
  font-weight: 900;
}

.brochure-size-slide {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: 20px;
  align-items: center;
  padding: 36px;
  background:
    radial-gradient(circle at 88% 16%, rgba(75, 29, 164, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8f9fd);
}

.dimension-sketch {
  position: relative;
  min-height: 260px;
  margin: 22px 0;
  border: 1px solid rgba(75, 29, 164, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f4f1fb);
}

.dimension-shape {
  position: absolute;
  left: 18%;
  top: 22%;
  width: 60%;
  height: 52%;
  border: 3px solid rgba(75, 29, 164, 0.55);
  border-radius: 42% 58% 54% 46% / 42% 38% 62% 58%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 18px rgba(75, 29, 164, 0.04);
}

.dimension-top,
.dimension-side {
  position: absolute;
  color: #3b168f;
  font-weight: 900;
}

.dimension-top {
  left: 26%;
  top: 18px;
}

.dimension-side {
  right: 18px;
  top: 45%;
  transform: rotate(90deg);
}

.brochure-spec-table {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(75, 29, 164, 0.14);
}

.brochure-spec-table span {
  color: #3b168f;
  font-weight: 800;
}

.brochure-spec-table strong {
  color: #111827;
}

.brochure-product-float {
  display: grid;
  place-items: center;
  min-height: 430px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.1);
}

.brochure-product-float img {
  width: 92%;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(18, 24, 40, 0.13));
}

.brochure-quality-slide {
  padding: 30px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(14, 11, 9, 0.84), rgba(14, 11, 9, 0.88)),
    url("assets/products/accord-bath/comfort-maxima-i8.jpg") center / cover;
}

.brochure-quality-head h3 {
  color: #ffffff;
}

.brochure-quality-head .brochure-kicker {
  color: #ffffff;
}

.brochure-quality-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.brochure-quality-grid article {
  overflow: hidden;
  min-height: 190px;
  padding: 0 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.brochure-quality-grid img {
  width: 100%;
  height: 108px;
  object-fit: cover;
}

.brochure-quality-grid strong,
.brochure-quality-grid p {
  margin-left: 14px;
  margin-right: 14px;
}

.brochure-quality-product {
  position: absolute;
  left: 16%;
  right: 6%;
  bottom: 24px;
  z-index: 1;
  display: grid;
  place-items: end;
}

.brochure-quality-product img {
  width: min(620px, 80%);
  max-height: 290px;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.42));
}

.brochure-warranty-slide {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 18px;
  padding: 38px;
  background: linear-gradient(180deg, #ffffff, #f8f9fd);
}

.brochure-warranty-copy p {
  margin-top: 18px;
  color: #4b5563;
  line-height: 1.6;
}

.warranty-shield {
  display: grid;
  place-items: center;
  width: 138px;
  height: 160px;
  margin: 30px 0 0;
  padding: 18px;
  clip-path: polygon(50% 0, 96% 17%, 91% 75%, 50% 100%, 9% 75%, 4% 17%);
  color: #3b168f;
  background: #ffffff;
  border: 4px solid #4b1da4;
  text-align: center;
  box-shadow: 0 18px 42px rgba(75, 29, 164, 0.16);
}

.warranty-shield strong {
  font-size: 3rem;
  line-height: 0.9;
}

.warranty-shield span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brochure-warranty-product img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(16, 24, 40, 0.14));
}

.brochure-bottom-features {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(75, 29, 164, 0.12);
}

.brochure-bottom-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3b168f;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brochure-comfort-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.52fr);
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: 34px 34px 24px;
  background:
    radial-gradient(circle at 86% 24%, rgba(75, 29, 164, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8f9fd);
}

.brochure-comfort-slide h3 {
  grid-column: 1 / -1;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
}

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

.brochure-comfort-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
}

.brochure-comfort-product {
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 62px rgba(16, 24, 40, 0.08);
}

.brochure-comfort-product img {
  width: 95%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(16, 24, 40, 0.12));
}

.brochure-service-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #4b1da4, #25105d);
}

.brochure-service-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
  text-align: center;
}

.brochure-thumb {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 8px 6px;
  color: #3b168f;
  background: linear-gradient(180deg, #ffffff, #f3efff);
  text-align: center;
}

.brochure-thumb strong {
  font-size: 1.15rem;
  line-height: 1;
}

.brochure-thumb small {
  max-width: 100%;
  color: #5f4b91;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(8, 14, 22, 0.78);
  box-shadow: 0 16px 34px rgba(8, 14, 22, 0.24);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.detail-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 6px;
}

.detail-thumb {
  flex: 0 0 94px;
  height: 74px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.detail-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(190, 138, 55, 0.42);
}

.detail-thumb.active {
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(190, 138, 55, 0.22);
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 3px;
  background: #ffffff;
}

.detail-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: auto;
  padding: 40px;
  border-left: 1px solid rgba(216, 230, 245, 0.84);
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.detail-copy h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
}

.detail-assurance {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 24px;
}

.detail-assurance span {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--blue-950);
  background: #fafdff;
  font-size: 0.88rem;
  font-weight: 900;
}

.detail-description {
  margin: 18px 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.detail-price {
  display: block;
  margin-bottom: 24px;
  color: var(--blue-700);
  font-size: 1.45rem;
}

.detail-copy h3 {
  margin: 0 0 14px;
  color: var(--blue-950);
}

.detail-spec-grid {
  display: grid;
  gap: 10px;
}

.detail-spec {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-50);
}

.detail-spec span {
  color: var(--muted);
  font-weight: 800;
}

.detail-spec strong {
  color: var(--blue-950);
  text-align: right;
}

.detail-add-btn {
  width: 100%;
  margin-top: auto;
}

.footer {
  color: #d7e9fb;
  background: var(--blue-950);
}

.mobile-contact-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(216, 230, 245, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 52px rgba(8, 27, 48, 0.22);
  backdrop-filter: blur(16px);
}

.mobile-contact-bar a,
.mobile-contact-bar button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  color: var(--blue-950);
  background: var(--blue-100);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.mobile-contact-bar button {
  color: var(--white);
  background: var(--green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
}

.footer .brand {
  color: var(--white);
}

.footer .brand-logo-img {
  width: 180px;
  height: 58px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.footer p {
  max-width: 430px;
  line-height: 1.65;
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.footer a,
.footer span {
  display: block;
  margin: 10px 0;
  color: #d7e9fb;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ai-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  font-family: inherit;
  transition: transform 180ms ease;
}

.ai-launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 70px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #0b74de 0%, #3e168c 100%);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(12, 92, 166, 0.28);
  font-weight: 800;
}

.ai-launcher svg,
.ai-composer button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ai-panel {
  position: absolute;
  right: 0;
  bottom: 66px;
  display: grid;
  grid-template-rows: auto auto minmax(220px, 1fr) auto;
  width: min(380px, calc(100vw - 28px));
  height: min(620px, calc(100vh - 120px));
  overflow: hidden;
  border: 1px solid rgba(9, 85, 150, 0.14);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(16, 35, 56, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ai-widget.open .ai-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ai-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, #0b74de 0%, #3e168c 100%);
}

.ai-panel-header div {
  display: grid;
  gap: 2px;
}

.ai-panel-header strong {
  color: #ffffff;
  font-size: 1rem;
}

.ai-panel-header span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.ai-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.ai-quick-actions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.ai-quick-actions button {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  padding: 7px 10px;
  font-size: 0.84rem;
}

.ai-quick-actions button:hover,
.ai-close:hover {
  border-color: rgba(11, 116, 222, 0.42);
  color: var(--blue-700);
}

.ai-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  overflow-y: auto;
  padding: 14px 12px;
  background: #f7fafc;
}

.ai-message {
  display: flex;
  max-width: 84%;
}

.ai-message div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 9px 11px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.ai-message.user {
  align-self: flex-end;
}

.ai-message.user div {
  border-color: rgba(11, 116, 222, 0.18);
  background: #e9f3ff;
}

.ai-message.assistant {
  align-self: flex-start;
}

.ai-typing div {
  display: inline-flex;
  gap: 5px;
}

.ai-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: aiTyping 1.1s infinite ease-in-out;
}

.ai-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.ai-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes aiTyping {
  0%,
  80%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.ai-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 11px 12px 12px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.ai-composer textarea {
  width: 100%;
  max-height: 110px;
  resize: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  outline: none;
  color: var(--ink);
  line-height: 1.35;
}

.ai-composer textarea:focus {
  border-color: rgba(214, 33, 45, 0.48);
  box-shadow: 0 0 0 3px rgba(214, 33, 45, 0.1);
}

.ai-composer button {
  display: grid;
  place-items: center;
  align-self: end;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
}

.cart-drawer,
.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  overflow: hidden;
  background: rgba(11, 32, 56, 0.48);
  backdrop-filter: blur(9px);
}

.cart-drawer.open,
.modal.open {
  display: block;
  animation: accordOverlayFade 220ms ease both;
}

.cart-panel,
.modal-card {
  position: absolute;
  right: 0;
  top: 0;
  width: min(520px, 100%);
  height: 100%;
  overflow: auto;
  padding: 30px;
  background: var(--white);
  box-shadow: -24px 0 54px rgba(11, 32, 56, 0.26);
}

.cart-panel {
  display: flex;
  flex-direction: column;
  max-height: 100dvh;
}

.cart-drawer.open .cart-panel {
  animation: accordCartSlide 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.modal.open .modal-card {
  animation: accordModalCenter 240ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes accordCartSlide {
  from {
    opacity: 0;
    transform: translateX(22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes accordModalCenter {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 16px)) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.modal-card {
  left: 50%;
  right: auto;
  top: 50%;
  width: min(520px, calc(100% - 28px));
  height: auto;
  max-height: calc(100% - 28px);
  border-radius: 14px;
  transform: translate(-50%, -50%);
}

.cart-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.cart-topline h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.9rem;
}

.icon-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-50);
  font-weight: 900;
  cursor: pointer;
}

.cart-items {
  display: grid;
  gap: 12px;
  max-height: min(30dvh, 260px);
  overflow: auto;
  padding-right: 3px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--blue-50);
}

.cart-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.remove-btn {
  border: 0;
  color: #b42318;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.cart-empty {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: var(--blue-50);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 1.2rem;
}

.request-form {
  display: grid;
  gap: 13px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.request-form h3 {
  margin: 8px 0 0;
  color: var(--blue-950);
}

.request-note {
  margin: -4px 0 2px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font-size: 1rem;
}

.request-form textarea {
  min-height: 92px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue-700);
  font-weight: 900;
}

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(19, 116, 214, 0.08), transparent 36%),
    var(--blue-50);
}

.admin-topbar,
.admin-shell {
  width: min(100% - 44px, 1180px);
  margin: 0 auto;
}

.admin-topbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-site-link,
.admin-logout {
  color: var(--blue-900);
  border-color: var(--line);
  background: var(--white);
}

.admin-shell {
  padding: 28px 0 60px;
}

.admin-login-card,
.admin-dashboard {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-login-card {
  width: min(100%, 520px);
  margin: 46px auto;
  padding: 34px;
}

.admin-login-card h1,
.admin-heading h1 {
  margin: 0;
  color: var(--blue-950);
}

.admin-login-card p {
  color: var(--muted);
  line-height: 1.6;
}

.admin-login-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.admin-login-form input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 1rem;
}

.admin-dashboard {
  padding: 28px;
}

.admin-dashboard[hidden],
.admin-login-card[hidden] {
  display: none;
}

.admin-heading,
.admin-request-head,
.admin-request-foot,
.admin-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.admin-stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--blue-50);
}

.admin-stat span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
}

.admin-stat strong {
  color: var(--blue-950);
  font-size: 1.7rem;
}

.admin-request-list {
  display: grid;
  gap: 14px;
}

.admin-request-card,
.admin-empty {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.admin-request-card {
  padding: 18px;
}

.admin-empty {
  padding: 24px;
  color: var(--muted);
}

.admin-request-id {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-weight: 900;
}

.admin-request-card h2 {
  margin: 0 0 4px;
  color: var(--blue-950);
  font-size: 1.2rem;
}

.admin-request-card a {
  color: var(--blue-700);
  font-weight: 900;
}

.status-badge {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.status-new {
  color: #0f5132;
  background: #d1f5df;
}

.status-progress {
  color: #854d0e;
  background: #fef3c7;
}

.status-done {
  color: #1d4ed8;
  background: #dbeafe;
}

.admin-products {
  display: grid;
  gap: 7px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
}

.admin-products li {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--blue-50);
}

.admin-comment {
  margin: 12px 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-request-foot {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.admin-request-foot strong {
  color: var(--blue-950);
  font-size: 1.2rem;
}

.admin-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.admin-status-actions button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-900);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.form-status.error {
  color: #b42318;
}

@media (min-width: 1061px) {
  .nav-links {
    display: none !important;
  }

  .mobile-nav-row {
    min-height: 0;
    justify-content: flex-end;
    padding-bottom: 10px;
    border-top: 0;
    margin-top: -8px;
  }
}

@media (max-width: 1060px) {
  .header-main,
  .header-tools,
  .mobile-nav-row,
  .hero-layout,
  .promo-grid,
  .home-catalog-preview,
  .premium-story,
  .trust-strip,
  .featured-showroom,
  .catalog-hero,
  .catalog-layout,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, 1280px);
  }

  .header-main {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .header-tools {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav-row {
    position: relative;
    min-height: 58px;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 58px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero-layout,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .side-catalog {
    display: none;
  }

  .hero-slider {
    min-height: 560px;
  }

  .visual-category-grid,
  .bath-type-grid,
  .trust-strip,
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-showroom {
    grid-template-columns: 1fr;
  }

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

  .catalog-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-sidebar h2,
  .filter-group {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .header-main,
  .header-tools,
  .mobile-nav-row,
  .hero-layout,
  .promo-grid,
  .home-catalog-preview,
  .premium-story,
  .trust-strip,
  .featured-showroom,
  .catalog-hero,
  .catalog-layout,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 20px, 1280px);
  }

  .header-main {
    min-height: 72px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .brand-logo-img {
    width: 150px;
    height: 50px;
    padding: 6px 9px;
    border-radius: 12px;
  }

  .brand small {
    display: none;
  }

  .header-tools {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding-bottom: 12px;
  }

  .catalog-pill {
    min-height: 44px;
    padding: 0 16px;
  }

  .header-search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .tool-buttons {
    justify-content: flex-end;
  }

  .tool-icon {
    min-height: 40px;
    padding: 0 10px;
  }

  .admin-topbar,
  .admin-shell {
    width: min(100% - 20px, 1180px);
  }

  .admin-topbar,
  .admin-heading,
  .admin-request-head,
  .admin-request-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-login-card,
  .admin-dashboard {
    padding: 20px;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    margin-top: 16px;
  }

  .hero-slider {
    min-height: 690px;
    border-radius: 12px;
  }

  .hero-brand-background {
    --slide-position: 34% center;
  }

  .hero-copy-block {
    width: calc(100% - 56px);
    padding: 34px 0 118px 22px;
  }

  .discount-pill {
    margin-bottom: 18px;
  }

  .hero-copy-block h1 {
    font-size: 1.95rem;
    line-height: 1.08;
  }

  .hero-copy-block p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 270px;
  }

  .hero-slider-controls {
    right: 12px;
  }

  .hero-proof {
    display: none;
  }

  .promo-grid,
  .visual-category-grid,
  .bath-type-grid,
  .trust-strip,
  .product-grid,
  .catalog-sidebar,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .showroom-cards {
    grid-template-columns: 1fr;
  }

  .showroom-wide {
    grid-row: auto;
    min-height: 280px;
  }

  .promo-card,
  .visual-category,
  .bath-type-card {
    min-height: 190px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .product-photo {
    height: 236px;
    padding: 8px;
  }

  .premium-story {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
    background-position: center, 34% center;
  }

  .catalog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-hero {
    min-height: 420px;
    padding: 34px 22px;
    border-radius: 18px;
    background-position: center, 34% center;
  }

  .mobile-contact-bar {
    display: grid;
  }

  body {
    padding-bottom: 78px;
  }

  .cart-panel,
  .modal-card {
    width: 100%;
    padding: 20px;
  }

  .cart-panel {
    height: 100dvh;
  }

  .cart-items {
    max-height: 22dvh;
  }

  .request-form {
    gap: 10px;
    margin-top: 18px;
  }

  .request-form input,
  .request-form textarea {
    padding: 12px 13px;
  }

  .request-form textarea {
    min-height: 78px;
  }

  .lead-modal {
    padding: 8px;
  }

  .lead-panel {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    min-height: auto;
    border-radius: 18px;
  }

  .lead-panel::before {
    background:
      linear-gradient(180deg, rgba(4, 16, 30, 0.92) 0%, rgba(4, 16, 30, 0.82) 58%, rgba(4, 16, 30, 0.64) 100%),
      url("assets/accord-bg-dark.jpg") center center / cover;
  }

  .lead-content {
    width: 100%;
    padding: 84px 22px 24px;
  }

  .lead-content h2 {
    font-size: 2rem;
  }

  .lead-actions {
    grid-template-columns: 1fr;
  }

  .lead-actions .button {
    width: 100%;
  }

  .product-detail-modal {
    padding: 8px;
  }

  .product-detail-panel {
    width: calc(100vw - 16px);
    height: auto;
    max-height: calc(100dvh - 16px);
    border-radius: 12px;
  }

  #product-detail {
    height: auto;
    max-height: calc(100dvh - 16px);
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .detail-image-wrap {
    min-height: 0;
  }

  .detail-main-image {
    min-height: 0;
    height: min(42dvh, 330px);
    aspect-ratio: 16 / 10;
  }

  .detail-main-image > img {
    height: 100%;
    max-height: none;
  }

  .brochure-slide {
    min-height: 520px;
  }

  .brochure-hero-slide,
  .brochure-size-slide,
  .brochure-warranty-slide,
  .brochure-comfort-slide {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .brochure-brand {
    left: 18px;
    top: 18px;
    width: 145px;
  }

  .brochure-hero-copy {
    padding-top: 72px;
  }

  .brochure-benefits {
    gap: 10px;
  }

  .brochure-benefits article {
    gap: 9px;
  }

  .brochure-benefits span,
  .brochure-comfort-grid p,
  .brochure-quality-grid p {
    font-size: 0.78rem;
  }

  .brochure-hero-product img,
  .brochure-product-float img,
  .brochure-warranty-product img,
  .brochure-comfort-product img {
    max-height: 230px;
  }

  .brochure-badge {
    right: 58px;
    width: 82px;
    height: 98px;
  }

  .brochure-badge strong {
    font-size: 2rem;
  }

  .brochure-badge span {
    font-size: 0.55rem;
  }

  .brochure-volume {
    right: 18px;
    bottom: 18px;
    min-height: 46px;
    font-size: 0.82rem;
  }

  .dimension-sketch {
    min-height: 190px;
  }

  .brochure-product-float {
    min-height: 250px;
  }

  .brochure-quality-slide {
    padding: 22px;
  }

  .brochure-quality-grid,
  .brochure-comfort-grid,
  .brochure-bottom-features,
  .brochure-service-strip {
    grid-template-columns: 1fr;
  }

  .brochure-quality-grid {
    gap: 10px;
  }

  .brochure-quality-grid article {
    min-height: 0;
  }

  .brochure-quality-grid img {
    height: 78px;
  }

  .brochure-quality-product {
    display: none;
  }

  .brochure-warranty-slide {
    padding-bottom: 174px;
  }

  .brochure-bottom-features {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .warranty-shield {
    width: 104px;
    height: 122px;
    margin-top: 18px;
  }

  .warranty-shield strong {
    font-size: 2.2rem;
  }

  .brochure-comfort-slide {
    grid-template-rows: auto auto auto auto;
  }

  .brochure-service-strip span {
    min-height: 50px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .detail-thumb {
    flex-basis: 78px;
    height: 62px;
  }

  .detail-copy {
    height: auto;
    max-height: none;
    padding: 24px;
  }

  .detail-add-btn {
    margin-top: 24px;
  }

  .modal-card {
    min-height: 100%;
    border-radius: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .ai-widget {
    right: 10px;
    bottom: 88px;
  }

  .ai-launcher {
    width: 60px;
    height: 48px;
  }

  .ai-panel {
    right: 0;
    bottom: 60px;
    width: calc(100vw - 20px);
    height: min(560px, calc(100vh - 166px));
  }
}
