:root {
  --sand-50: #f8f5f0;
  --sand-100: #f0e8dc;
  --sand-200: #e3d4c1;
  --sand-300: #d1bfa6;
  --clay-400: #5fc7ea;
  --clay-500: #00a6de;
  --clay-600: #007aa6;
  --ink-700: #3b342f;
  --ink-800: #2a2420;
  --ink-900: #191513;
  --sage-400: #7a8f81;
  --sage-500: #5f7566;
  --steel-400: #8b9aa6;
  --accent: #00a6de;
  --shadow: 0 24px 48px rgba(15, 20, 23, 0.12);
  --shadow-soft: 0 14px 30px rgba(15, 20, 23, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: #f4f6f8;
  color: var(--ink-800);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand span {
  font-family: "Manrope", system-ui, sans-serif;
}

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

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

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.nav-bar {
  background: #0b0f12;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 12px;
  gap: 20px;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-logo {
  height: 34px;
  width: auto;
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand small {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.65);
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.92rem;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-tools .search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-tools .search input {
  width: clamp(180px, 20vw, 280px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.88rem;
}

.header-tools .search input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.header-tools .search button {
  border: none;
  background: var(--accent);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.lang-switch .lang {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-switch .lang.active {
  background: #fff;
  color: #0b0f12;
  font-weight: 700;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow-soft);
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 10;
}

.dropdown-menu a {
  padding: 6px 4px;
  font-size: 0.9rem;
  color: var(--ink-800);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.mega {
  position: static;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  transform: none;
  width: min(1020px, calc(100vw - 24px));
  overflow: visible;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
  box-shadow: var(--shadow);
  z-index: 40;
  border: 1px solid rgba(15, 20, 23, 0.1);
}

.mega-cats {
  display: block;
  column-count: 3;
  column-gap: 18px;
  max-height: min(70vh, 560px);
  overflow: auto;
  padding-right: 6px;
}

.mega-col {
  min-width: 0;
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 14px;
}

.mega-menu h5 {
  margin: 0 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7b89;
}

.mega-root-link {
  color: #112a3a;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
}

.mega-menu a::after {
  display: none !important;
}

.mega-menu a {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-800);
  font-size: 0.95rem;
  padding-bottom: 0;
}

.mega-tree {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.mega-tree-depth-1 {
  gap: 7px;
}

.mega-tree-depth-2,
.mega-tree-depth-3,
.mega-tree-depth-4 {
  margin-top: 3px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px dashed rgba(15, 20, 23, 0.16);
}

.mega-tree-link {
  margin: 0;
  line-height: 1.25;
  border-radius: 8px;
  padding: 4px 5px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mega-tree-link:hover {
  background: rgba(0, 166, 222, 0.1);
  color: #074157;
}

.mega-tree-link-depth-1 {
  font-size: 0.9rem;
  font-weight: 600;
}

.mega-tree-link-depth-2 {
  font-size: 0.88rem;
}

.mega-tree-link-depth-3,
.mega-tree-link-depth-4 {
  font-size: 0.84rem;
  color: var(--ink-700);
}

.mega .mega-card {
  background: #ffffff;
  border: 1px solid rgba(0, 166, 222, 0.15);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 8px;
  align-self: start;
  position: sticky;
  top: 0;
}

.mega .mega-card .promo-image {
  height: 120px;
  border-radius: 12px;
  background-image: url("https://cdn.pixabay.com/photo/2024/04/10/14/03/bathroom-8688132_1280.jpg");
  background-size: cover;
  background-position: center;
}

.mega-menu::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
}

.mega .mega-card span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.mega .mega-card strong,
.mega .mega-card p {
  margin: 0;
}

.mega .mega-card p {
  color: var(--ink-800);
}

.mega .mega-card a {
  color: var(--accent);
  font-weight: 600;
}

.mega:hover .mega-menu {
  display: grid;
}

.mega.is-open .mega-menu,
.mega:focus-within .mega-menu {
  display: grid;
}

@media (max-width: 1320px) {
  .nav-links {
    gap: 12px;
    font-size: 0.88rem;
  }

  .header-tools .search input {
    width: clamp(150px, 18vw, 220px);
  }

  .mega-menu {
    width: min(920px, calc(100vw - 24px));
    grid-template-columns: 1fr;
  }

  .mega-cats {
    column-count: 2;
  }
}

@media (max-width: 1080px) {
  .nav-panel {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .header-tools {
    margin-left: 0;
  }
}

.menu-toggle {
  display: none;
  background: #fff;
  color: var(--ink-900);
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #0b0f12;
}

.hero-track {
  position: relative;
  height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  padding: 120px 0;
  z-index: 1;
  color: #fff;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  transition: opacity 0.9s ease;
}

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

.hero-slide .container {
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-track {
    height: 520px;
  }
}

@media (max-width: 600px) {
  .hero-track {
    height: 480px;
  }
}

.hero-text {
  display: grid;
  gap: 6px;
  max-width: 620px;
}

.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 166, 222, 0.22);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-slide h1 {
  font-size: clamp(2.4rem, 3.4vw, 4rem);
  margin: 0 0 12px;
}

.hero-slide strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-slide p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-slide h1,
.hero-slide strong,
.hero-slide p,
.hero-slide .cta,
.hero-slide .section-kicker {
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.hero-slide.active h1,
.hero-slide.active strong,
.hero-slide.active p,
.hero-slide.active .cta,
.hero-slide.active .section-kicker {
  transform: translateY(0);
  opacity: 1;
}

.hero-slide .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual {
  display: none;
}

.hero-controls {
  position: absolute;
  inset: 0 6vw 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

.hero-controls button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
}

.hero-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: grid;
  gap: 12px;
}

.hero-card .tag {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.hero-card .visual {
  background: linear-gradient(120deg, #e9e9e9, #f7f7f7);
  border-radius: 0;
  height: 320px;
  position: relative;
  overflow: hidden;
}

.hero-card .visual::after {
  content: "";
  position: absolute;
  inset: 18% 14% 10% 46%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px 50px 20px 20px;
  box-shadow: 0 18px 32px rgba(25, 21, 19, 0.12);
}

.hero-card .visual::before {
  content: "";
  position: absolute;
  inset: 60% 50% 12% 8%;
  background: rgba(25, 21, 19, 0.08);
  border-radius: 20px;
}

.slider {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: none;
  border: 1px solid rgba(15, 20, 23, 0.08);
  margin-top: -34px;
  position: relative;
  z-index: 5;
}

.slider-track {
  display: grid;
  gap: 16px;
}

.slider-head {
  margin-bottom: 16px;
}

.slider-head h2 {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.slider-head p {
  margin: 0;
  color: var(--ink-700);
}

.slide {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: center;
}

.slide.active {
  display: grid;
}

.slide h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.slide p {
  margin: 0 0 12px;
  color: var(--ink-700);
}

.slide .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 166, 222, 0.12);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.slide .preview {
  height: 180px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.slide .preview::after {
  content: "";
  position: absolute;
  inset: 20% 12% 20% 55%;
  background: rgba(255, 255, 255, 0.0);
  border-radius: 18px;
}

.slider .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  width: fit-content;
}

.section {
  padding: 70px 0;
}

.section h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  margin: 0 0 14px;
}

.section p.lead {
  color: var(--ink-700);
  margin: 0 0 32px;
  max-width: 640px;
}

.section .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: none !important;
}

.product-ticker {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: none;
  border: 1px solid rgba(15, 20, 23, 0.08);
  min-width: 220px;
}

.product-card .thumb {
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(0, 166, 222, 0.14), rgba(0, 166, 222, 0.03));
  margin-bottom: 14px;
}

.product-card h4 {
  margin: 0 0 6px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.category-card {
  background: #fff;
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: none;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(15, 20, 23, 0.08);
}

.category-card span {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay-600);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.news-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(15, 20, 23, 0.08);
  display: grid;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-section .news-header {
  text-align: center;
  margin-bottom: 30px;
}

.accent-line {
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 12px;
}

.accent-line.small {
  width: 36px;
  height: 3px;
  margin: 10px 0;
}

.news-card.fancy .media {
  position: relative;
}

.date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 6px 10px;
  line-height: 1.1;
  border-radius: 4px;
}

.read-more {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 600;
}

.news-card .media {
  height: 180px;
  background: linear-gradient(135deg, rgba(122, 143, 129, 0.25), rgba(139, 154, 166, 0.25));
}

.news-card .content {
  padding: 20px;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.categories-layout {
  display: grid;
  gap: 30px;
}

.categories-intro {
  text-align: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.category-tile {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 20, 23, 0.08);
  padding: 14px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.categories-grid.photo-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.category-tile.photo {
  position: relative;
  padding: 0;
  height: 220px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border: none;
}

.category-tile.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45));
}

.category-tile.photo strong {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
  margin: 0;
}

.category-tile.photo:hover {
  transform: translateY(-4px);
}

.category-tile strong {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tile-image {
  height: 110px;
  background: linear-gradient(140deg, rgba(0, 166, 222, 0.12), rgba(0, 166, 222, 0.02));
  border-radius: 12px;
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 18px 0;
}

.cta-band .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.cta-band strong {
  font-size: 1.05rem;
}

.dark-news {
  background: #0e1317;
  color: #fff;
}

.dark-news .lead {
  color: rgba(255, 255, 255, 0.65);
}

.dark-news .news-card {
  background: #ffffff;
  color: var(--ink-800);
}

.dark-projects {
  background: linear-gradient(120deg, rgba(12, 17, 20, 0.9), rgba(12, 17, 20, 0.6)),
    url("https://cdn.pixabay.com/photo/2014/07/10/17/18/shower-389273_640.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.dark-header {
  text-align: center;
  margin-bottom: 32px;
}

.dark-header .lead {
  color: rgba(255, 255, 255, 0.65);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.project-card {
  background: #fff;
  color: var(--ink-800);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 20, 23, 0.08);
}

.project-card .media {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.project-card .content {
  padding: 14px;
}

.project-card span {
  font-size: 0.8rem;
  color: var(--ink-700);
}

.dark-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.dark-actions .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.contact-band {
  background: linear-gradient(120deg, rgba(11, 15, 18, 0.92), rgba(11, 15, 18, 0.6)),
    url("https://cdn.pixabay.com/photo/2023/11/07/13/57/faucet-8372443_1280.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.contact-band .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.contact-box {
  display: grid;
  gap: 12px;
}

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-details span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 20, 23, 0.1);
  margin-bottom: 10px;
  font-family: inherit;
}

.contact-form .cta {
  width: 100%;
  justify-content: center;
}

.news-card h4 {
  margin: 0 0 10px;
}

.dual-callouts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.callout {
  background: var(--ink-900);
  color: #f8f5f0;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.callout::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(184, 79, 60, 0.25);
  top: -40px;
  right: -60px;
}

.callout.secondary {
  background: #fff;
  color: var(--ink-800);
  border: 1px solid rgba(25, 21, 19, 0.08);
}

.callout-image {
  background-image: var(--callout-bg);
  background-size: cover;
  background-position: center;
  color: inherit;
}

.callout-image.secondary {
  border: none;
}

.callout-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--callout-bg);
  opacity: 1;
  z-index: 0;
}

.callout-image > * {
  position: relative;
  z-index: 1;
}

.callout-image:not(.secondary) h3,
.callout-image:not(.secondary) p {
  color: #fff;
}

.callout-image:not(.secondary) p {
  color: rgba(255, 255, 255, 0.85);
}

.callout .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  width: fit-content;
}

.info-strip {
  background: var(--sand-100);
  border-top: 1px solid rgba(25, 21, 19, 0.08);
  border-bottom: 1px solid rgba(25, 21, 19, 0.08);
  padding: 26px 0;
}

.info-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.info-card {
  display: grid;
  gap: 6px;
}

.info-card span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay-600);
}

.footer,
.footer-dark {
  background: #1f2226;
  color: #f1f4f7;
  padding: 60px 0 30px;
}

.footer-dark * {
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.footer p {
  color: rgba(241, 244, 247, 0.7);
}

.footer-contact {
  display: grid;
  gap: 8px;
  color: rgba(241, 244, 247, 0.7);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(241, 244, 247, 0.75);
}

.footer-links a::before {
  content: \"›\";
  margin-right: 8px;
  color: var(--accent);
}

.footer-news {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-news input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
}

.footer-news button {
  width: fit-content;
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.footer-sub {
  margin-top: 18px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social span {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(241, 244, 247, 0.6);
}

.page-hero {
  padding: 60px 0 30px;
  background: linear-gradient(120deg, #fff, var(--sand-100));
}

.page-hero h1 {
  margin: 0 0 10px;
}

.products-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 28px;
}

.filters {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-radius: 22px;
  padding: 20px;
  border: 1px solid rgba(0, 166, 222, 0.16);
  box-shadow: 0 20px 44px rgba(15, 20, 23, 0.1);
  height: fit-content;
  position: sticky;
  top: 88px;
}

.product-filters-form {
  display: grid;
  gap: 14px;
}

.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(15, 20, 23, 0.08);
  padding-bottom: 12px;
}

.filters-header h2 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filters-count {
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  background: var(--accent);
}

.filters-block {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 20, 23, 0.08);
}

.filters-block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.filters h3 {
  margin: 0 0 10px;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.filter-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(15, 20, 23, 0.18);
  border-radius: 12px;
  padding: 0 12px;
  min-height: 44px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-search-wrap:focus-within {
  border-color: rgba(0, 166, 222, 0.65);
  box-shadow: 0 0 0 3px rgba(0, 166, 222, 0.14);
}

.filter-search-icon {
  color: #6f8091;
  font-size: 1rem;
}

.filter-search-wrap input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--ink-800);
  font-size: 0.94rem;
  padding: 10px 0;
}

.filter-search-wrap input::placeholder {
  color: #7b8b98;
}

.filter-group {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: none;
}

.filter-group-title {
  display: block;
  margin: 10px 0 2px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f8091;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--ink-800);
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-option:hover {
  background: rgba(0, 166, 222, 0.08);
}

.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1.5px solid #6f8294;
  background: #fff;
  display: inline-grid;
  place-content: center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-option input[type="radio"] {
  border-radius: 999px;
}

.filter-option input[type="checkbox"] {
  border-radius: 5px;
}

.filter-option input[type="radio"]::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  transform: scale(0);
  transition: transform 0.14s ease;
}

.filter-option input[type="checkbox"]::after {
  content: "";
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.14s ease;
}

.filter-option input[type="radio"]:checked,
.filter-option input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.filter-option input[type="radio"]:checked::after {
  transform: scale(1);
}

.filter-option input[type="checkbox"]:checked::after {
  transform: rotate(45deg) scale(1);
}

.filter-option input[type="radio"]:focus-visible,
.filter-option input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 166, 222, 0.2);
}

.filter-option-label {
  line-height: 1.35;
}

.filter-option:has(input:checked) {
  background: rgba(0, 166, 222, 0.14);
  color: #074157;
  border-color: rgba(0, 166, 222, 0.22);
}

.filter-option input:checked + .filter-option-label {
  font-weight: 600;
}

.filter-group .sub-filter {
  margin-left: 16px;
}

.filter-accordion {
  border: 1px solid rgba(15, 20, 23, 0.12);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.filter-accordion + .filter-accordion {
  margin-top: 10px;
}

.filter-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-accordion summary::-webkit-details-marker {
  display: none;
}

.filter-accordion summary::after {
  content: "+";
  font-size: 1rem;
  font-weight: 700;
  color: #6f8091;
}

.filter-accordion[open] summary::after {
  content: "−";
}

.filter-accordion .filter-group {
  border-top: 1px solid rgba(15, 20, 23, 0.1);
  padding: 8px 10px 10px;
}

.filters-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filters-actions .btn {
  flex: 1;
  justify-content: center;
}

.filters-actions .btn-outline {
  background: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.product-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.product-toolbar select {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(25, 21, 19, 0.12);
  background: #fff;
}

.product-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.gallery-main {
  position: relative;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 20, 23, 0.08);
  overflow: hidden;
  min-height: 360px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.gallery-main.zoomed .gallery-image {
  background-size: 160%;
}

.gallery-nav {
  position: absolute;
  inset: 12px 12px auto 12px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.gallery-nav.center {
  inset: 0 14px;
  align-items: center;
}

.gallery-nav button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: none;
  background: rgba(15, 20, 23, 0.7);
  color: #fff;
  cursor: pointer;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-thumbs .thumb {
  height: 70px;
  border-radius: 10px;
  border: 1px solid rgba(15, 20, 23, 0.08);
  background: #f1f4f7;
  cursor: pointer;
}

.gallery-thumbs .thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 166, 222, 0.2);
}

.zoom-hint {
  font-size: 0.85rem;
  color: var(--ink-700);
}

.product-info .badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 166, 222, 0.1);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-info h2 {
  margin: 0 0 8px;
}

.product-info .short {
  color: var(--ink-700);
  margin: 0 0 18px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.meta-grid span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ghost {
  background: transparent;
  border: 1px solid rgba(15, 20, 23, 0.2);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--ink-800);
  border-color: rgba(15, 20, 23, 0.25);
}

.alert {
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.alert.ok {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.alert.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.detail-tabs {
  display: none;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 20, 23, 0.1);
  background: #fff;
  cursor: pointer;
}

.tab.active {
  border-color: var(--accent);
  color: var(--accent);
}

.tab-content {
  display: none;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 20, 23, 0.08);
  padding: 20px;
}

.tab-content.active {
  display: block;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.spec-grid span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.attributes {
  margin: 0;
  padding-left: 18px;
}

.product-hero {
  background: linear-gradient(120deg, rgba(0, 166, 222, 0.22), rgba(0, 166, 222, 0.22)),
    url("https://cdn.pixabay.com/photo/2023/11/07/13/57/faucet-8372443_1280.jpg");
  background-size: cover;
  background-position: center;
}

.detail-cards {
  display: grid;
  gap: 20px;
}

.detail-card {
  background: #fff;
  border: 1px solid rgba(15, 20, 23, 0.08);
  border-radius: 16px;
  padding: 20px;
}

.detail-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.similar-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.similar-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 20, 23, 0.08);
  padding: 16px;
}

.similar-card .thumb {
  height: 120px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(0, 166, 222, 0.14), rgba(0, 166, 222, 0.03));
  margin-bottom: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  place-items: center;
  z-index: 999;
}

.lightbox.open {
  display: grid;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: grid;
  place-items: center;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  background: #fff;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-close {
  top: -10px;
  right: -10px;
}

.lightbox-prev {
  left: -50px;
}

.lightbox-next {
  right: -50px;
}

@media (max-width: 700px) {
  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

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

.doc-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 6px;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.download-folders {
  display: grid;
  gap: 18px;
}

.download-folder {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 20, 23, 0.08);
  padding: 18px;
}

.download-folder-head {
  margin-bottom: 14px;
}

.download-folder-head h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.download-folder-head p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.94rem;
}

.download-folder-empty {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px dashed rgba(15, 20, 23, 0.2);
  color: var(--ink-700);
  font-size: 0.9rem;
}

.doc-card {
  border: 1px solid rgba(15, 20, 23, 0.08);
  box-shadow: none;
  padding: 0;
  overflow: hidden;
}

.doc-media {
  height: 150px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.doc-content {
  padding: 16px;
  display: grid;
  gap: 6px;
}

.doc-content p {
  margin: 0;
  color: var(--ink-700);
}

.doc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 6px;
}

.doc-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.doc-actions button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.doc-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.doc-actions .ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.blog-list .doc-card {
  text-decoration: none;
  color: inherit;
}

.blog-list .doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.blog-hero-image {
  height: 320px;
  border-radius: 16px;
  background-image: url("https://cdn.pixabay.com/photo/2023/11/07/13/57/faucet-8372443_1280.jpg");
  background-size: cover;
  background-position: center;
  margin: 20px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.contact-card form {
  display: grid;
  gap: 12px;
}

.contact-card input,
.contact-card textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(25, 21, 19, 0.12);
  font-family: inherit;
}

.contact-card .cta {
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  width: fit-content;
  border: none;
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
  display: block;
  cursor: pointer;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 166, 222, 0.15);
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #9aa4af;
}

.map-placeholder {
  height: 220px;
  background: linear-gradient(135deg, rgba(139, 154, 166, 0.25), rgba(184, 79, 60, 0.2));
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.gallery-item {
  height: 180px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(184, 79, 60, 0.22), rgba(122, 143, 129, 0.2));
}

.gallery-hero {
  background: linear-gradient(120deg, rgba(0, 166, 222, 0.22), rgba(0, 166, 222, 0.22)),
    url("https://cdn.pixabay.com/photo/2016/11/21/18/18/tiles-1846980_1280.jpg");
  background-size: cover;
  background-position: center;
}

.gallery-section .news-header {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.gallery-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 20, 23, 0.08);
}

.gallery-card .media {
  height: 260px;
  background-size: cover;
  background-position: center;
}

.gallery-card .content {
  text-align: center;
  padding: 14px;
}

.gallery-card span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--ink-700);
}

.about-hero {
  background: linear-gradient(120deg, rgba(0, 166, 222, 0.22), rgba(0, 166, 222, 0.22)),
    url("https://cdn.pixabay.com/photo/2016/11/22/19/14/bathroom-1850821_1280.jpg");
  background-size: cover;
  background-position: center;
}

.contact-hero {
  background: linear-gradient(120deg, rgba(0, 166, 222, 0.22), rgba(0, 166, 222, 0.22)),
    url("https://cdn.pixabay.com/photo/2023/11/07/13/57/faucet-8372443_1280.jpg");
  background-size: cover;
  background-position: center;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.about-visual {
  min-height: 260px;
  border-radius: 16px;
  background: url("https://cdn.pixabay.com/photo/2016/08/16/03/21/bathroom-1597027_1280.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(15, 20, 23, 0.08);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.about-stats strong {
  font-size: 1.4rem;
  color: var(--accent);
}

.about-stats span {
  color: var(--ink-700);
  font-size: 0.9rem;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.contact-collections {
  display: grid;
  gap: 10px;
}

.contact-collections h4 {
  margin: 8px 0 4px;
  font-size: 0.95rem;
}

.contact-collections ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-700);
}

.service-request {
  margin-top: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(15, 20, 23, 0.08);
}

.service-request form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.service-request textarea,
.service-request input,
.service-request select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 20, 23, 0.12);
  font-family: inherit;
}

.service-request .full-row {
  grid-column: 1 / -1;
}

.service-request button {
  justify-self: flex-start;
}

.service-request .cta {
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

.redirect-card {
  background: #fff;
  border: 1px solid rgba(15, 20, 23, 0.08);
  border-radius: var(--radius-md);
  padding: 26px;
  display: grid;
  gap: 12px;
  text-align: center;
}

.redirect-card .actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.redirect-card .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
}

.distributors-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 30px;
  align-items: start;
}

.distributors-list {
  background: #fff;
  border: 1px solid rgba(15, 20, 23, 0.08);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.distributors-list h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.distributor-item {
  border: 1px solid rgba(15, 20, 23, 0.08);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.distributor-item span {
  color: var(--ink-700);
  font-size: 0.9rem;
}

.distributor-item.active {
  border-color: var(--accent);
  background: rgba(0, 166, 222, 0.08);
}

.distributors-map {
  background: #fff;
  border: 1px solid rgba(15, 20, 23, 0.08);
  border-radius: 16px;
  padding: 16px;
}

.map-stage {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(0, 166, 222, 0.06), rgba(0, 166, 222, 0.02)),
    url(\"https://cdn.pixabay.com/photo/2016/11/21/18/18/tiles-1846980_1280.jpg\");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.pin {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(0, 166, 222, 0.2);
}

.pin .tooltip {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--ink-800);
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 20, 23, 0.08);
  min-width: 180px;
  display: none;
  box-shadow: var(--shadow-soft);
}

.pin:hover .tooltip,
.pin.active .tooltip {
  display: grid;
  gap: 4px;
}

.map-hint {
  margin-top: 10px;
  color: var(--ink-700);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .distributors-layout {
    grid-template-columns: 1fr;
  }
}

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

.contact-card {
  border: 1px solid rgba(15, 20, 23, 0.08);
  box-shadow: none;
}

.contact-card h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}

.contact-card input,
.contact-card textarea {
  color: var(--ink-900);
  background: #fff;
}

.contact-card .cta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-collections h4 {
  margin-top: 10px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list .tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--ink-800);
  background: rgba(0, 166, 222, 0.1);
  border: 1px solid rgba(0, 166, 222, 0.2);
}

.contact-collections ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.55;
}

.contact-collections li {
  color: var(--ink-800);
}

.distributors-layout {
  margin-top: 28px;
  grid-template-columns: minmax(340px, 420px) 1fr;
  gap: 22px;
}

.distributors-list,
.distributors-map {
  border: 1px solid rgba(15, 20, 23, 0.08);
  box-shadow: none;
}

.distributors-intro {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.nearest-search {
  display: grid;
  gap: 8px;
  margin: 4px 0 8px;
}

.nearest-search label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
  font-weight: 700;
}

.nearest-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.nearest-search-input {
  position: relative;
}

.nearest-search-input::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(73, 91, 106, 0.82);
  border-radius: 50%;
  transform: translateY(-62%);
  pointer-events: none;
}

.nearest-search-input::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 27px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: rgba(73, 91, 106, 0.82);
  transform: translateY(3px) rotate(45deg);
  pointer-events: none;
}

.nearest-search input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(15, 20, 23, 0.18);
  background: linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
  padding: 10px 12px 10px 40px;
  color: var(--ink-900);
  font-size: 0.96rem;
  line-height: 1.25;
  font-family: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 1px 2px rgba(15, 20, 23, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.nearest-search input::placeholder {
  color: #7f8f9d;
}

.nearest-search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 166, 222, 0.18), 0 12px 24px rgba(15, 20, 23, 0.08);
}

.nearest-search .cta {
  border: none;
  border-radius: 10px;
  min-height: 46px;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.nearest-result {
  border-radius: 12px;
  border: 1px solid rgba(0, 166, 222, 0.35);
  background: rgba(0, 166, 222, 0.07);
  padding: 10px 12px;
  display: grid;
  gap: 4px;
}

.nearest-result strong {
  color: var(--ink-900);
}

.nearest-result span {
  font-size: 0.9rem;
  color: var(--ink-700);
}

.distributor-list-scroll {
  max-height: 430px;
  overflow: auto;
  padding-right: 4px;
  display: grid;
  gap: 10px;
}

.distributor-item {
  cursor: pointer;
}

.distributor-item strong {
  font-size: 0.96rem;
}

.distributors-map {
  padding: 14px;
}

.map-stage {
  height: 430px;
  background: linear-gradient(135deg, rgba(0, 166, 222, 0.11), rgba(0, 166, 222, 0.02)),
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.5), transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.32), transparent 38%);
  border: 1px solid rgba(15, 20, 23, 0.1);
}

.pin {
  border: none;
  padding: 0;
  appearance: none;
}

.pin.active {
  box-shadow: 0 0 0 8px rgba(0, 166, 222, 0.22);
}

.pin .tooltip {
  min-width: 170px;
  text-align: left;
}

.service-request {
  margin-top: 24px;
}

@media (max-width: 1200px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .distributors-layout {
    grid-template-columns: minmax(300px, 1fr) 1fr;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .distributors-layout {
    grid-template-columns: 1fr;
  }

  .map-stage {
    height: 320px;
  }

  .nearest-search-row {
    grid-template-columns: 1fr;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .nav-main {
    padding: 12px 0;
  }

  .nav-panel {
    display: none;
    position: absolute;
    left: 5vw;
    right: 5vw;
    top: calc(100% + 8px);
    background: #0b0f12;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px;
    z-index: 35;
  }

  .nav-panel.open {
    display: grid;
    gap: 14px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .header-tools {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .header-tools .search {
    width: 100%;
  }

  .header-tools .search input {
    width: 100%;
  }

  .lang-switch {
    align-self: flex-start;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 6px 0 0 12px;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-panel.open .dropdown-menu {
    display: flex;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 12px 0 0 12px;
    box-shadow: none;
  }

  .mega-menu::after {
    display: none;
  }

  .mega-cats {
    column-count: 1;
    column-gap: 0;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .mega-col {
    margin-bottom: 10px;
  }

  .mega:hover .mega-menu {
    display: none;
  }

  .nav-panel.open .mega-menu {
    display: grid;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
    top: auto;
  }
}

@media (max-width: 600px) {
  .slider {
    margin-top: 0;
  }

  .brand-logo {
    height: 30px;
  }

  .brand strong {
    font-size: 1rem;
  }
}
.shop-hero {
  background: linear-gradient(120deg, rgba(0, 166, 222, 0.22), rgba(0, 166, 222, 0.22)),
    url("https://cdn.pixabay.com/photo/2016/11/22/19/14/bathroom-1850821_1280.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.products-hero {
  background: linear-gradient(120deg, rgba(0, 166, 222, 0.22), rgba(0, 166, 222, 0.22)),
    url("https://cdn.pixabay.com/photo/2024/04/10/14/03/bathroom-8688132_1280.jpg");
  background-size: cover;
  background-position: center;
}

.catalogs-hero {
  background: linear-gradient(120deg, rgba(0, 166, 222, 0.22), rgba(0, 166, 222, 0.22)),
    url("https://cdn.pixabay.com/photo/2016/08/16/03/21/bathroom-1597027_1280.jpg");
  background-size: cover;
  background-position: center;
}

.technical-hero {
  background: linear-gradient(120deg, rgba(0, 166, 222, 0.22), rgba(0, 166, 222, 0.22)),
    url("https://cdn.pixabay.com/photo/2014/07/10/17/18/shower-389273_640.jpg");
  background-size: cover;
  background-position: center;
}

.blog-hero {
  background: linear-gradient(120deg, rgba(0, 166, 222, 0.22), rgba(0, 166, 222, 0.22)),
    url("https://cdn.pixabay.com/photo/2016/11/21/18/18/tiles-1846980_1280.jpg");
  background-size: cover;
  background-position: center;
}

.distributors-hero {
  background: linear-gradient(120deg, rgba(0, 166, 222, 0.22), rgba(0, 166, 222, 0.22)),
    url("https://cdn.pixabay.com/photo/2023/11/07/13/57/faucet-8372443_1280.jpg");
  background-size: cover;
  background-position: center;
}

.shop-hero.product-hero {
  background: linear-gradient(120deg, rgba(7, 24, 38, 0.64), rgba(7, 24, 38, 0.38)),
    var(--hero-bg-image, url("https://cdn.pixabay.com/photo/2023/11/07/13/57/faucet-8372443_1280.jpg"));
  background-size: cover;
  background-position: center;
}

.shop-hero.about-hero {
  background: linear-gradient(120deg, rgba(7, 24, 38, 0.62), rgba(7, 24, 38, 0.34)),
    var(--hero-bg-image, url("https://cdn.pixabay.com/photo/2016/11/22/19/14/bathroom-1850821_1280.jpg"));
  background-size: cover;
  background-position: center;
}

.shop-hero h1 {
  margin: 0 0 6px;
  color: #fff;
}

.shop-hero span {
  color: #bfeeff;
}

.shop-hero p {
  color: rgba(255, 255, 255, 0.9);
}

.filters h3 {
  margin: 0 0 10px;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.best-product {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.best-product .thumb {
  height: 60px;
  border-radius: 10px;
  background: #f1f4f7;
}

.best-product span {
  color: var(--ink-700);
  font-size: 0.85rem;
}

.shop-toolbar {
  justify-content: space-between;
  border: 1px solid rgba(15, 20, 23, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  background: #fff;
}

.view-switch {
  display: flex;
  gap: 6px;
}

.view-switch button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(15, 20, 23, 0.1);
  background: #fff;
  cursor: pointer;
}

.view-switch button.active {
  border-color: var(--accent);
  color: var(--accent);
}

.sort select {
  border-radius: 6px;
}

.shop-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.search-results-note {
  margin: 14px 0 18px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 166, 222, 0.22);
  background: rgba(0, 166, 222, 0.08);
  color: var(--ink-800);
  font-size: 0.92rem;
}

.search-results-note[hidden] {
  display: none;
}

.shop-card.is-hidden {
  display: none;
}

.shop-card {
  text-align: center;
  border: none;
}

.shop-card .thumb {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  margin-bottom: 12px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.shop-card h4 {
  margin: 0;
  font-size: 1rem;
}

.shop-card-price {
  margin: 6px 0 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.shop-card:hover .thumb {
  transform: scale(1.04);
  filter: brightness(0.95);
}

.shop-card:hover h4 {
  color: var(--accent);
}
