: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;
}

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;
}

.top-bar {
  background: #fff;
  color: var(--ink-800);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(25, 21, 19, 0.08);
}

.top-bar .container {
  display: grid;
  grid-template-columns: 1.1fr 2.2fr 1fr;
  align-items: center;
  padding: 18px 0;
  gap: 18px;
}

.top-bar .meta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar .mini-logo {
  height: 38px;
  width: auto;
  display: block;
}

.top-bar .search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar .search input {
  width: 100%;
  background: #f1f4f7;
  border: 1px solid rgba(25, 21, 19, 0.12);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--ink-800);
  font-size: 0.9rem;
}

.top-bar .search button {
  border: none;
  background: var(--accent);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
}

.top-bar .controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

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

.top-bar .lang {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-bar {
  background: #0b0f12;
  color: #fff;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

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

.brand span {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--clay-600);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  align-items: center;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
  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%;
}

.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;
}

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

.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;
}

.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 {
  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 {
  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;
}

.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: var(--sand-100);
  border-radius: 999px;
  font-size: 0.85rem;
}

.slide .preview {
  height: 180px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(184, 79, 60, 0.15), rgba(122, 143, 129, 0.15));
  position: relative;
  overflow: hidden;
}

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

.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;
}

.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;
}

.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: 260px 1fr;
  gap: 28px;
}

.filters {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  height: fit-content;
}

.filters h3 {
  margin: 0 0 10px;
}

.filters label {
  display: block;
  margin-bottom: 6px;
}

.filters input[type="checkbox"] {
  margin-right: 8px;
}

.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;
}

.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(239, 231, 220, 0.85), rgba(239, 231, 220, 0.85)),
    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;
}

.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 .ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.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 {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  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(239, 231, 220, 0.85), rgba(239, 231, 220, 0.85)),
    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(239, 231, 220, 0.85), rgba(239, 231, 220, 0.85)),
    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(239, 231, 220, 0.85), rgba(239, 231, 220, 0.85)),
    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);
}

.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;
  }
}

.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) {
  .top-bar .container {
    grid-template-columns: 1fr;
  }

  .top-bar .controls {
    justify-content: flex-start;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 74px;
    right: 5vw;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
  }

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

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

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

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

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

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

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

  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.shop-hero {
  background: linear-gradient(120deg, rgba(239, 231, 220, 0.8), rgba(239, 231, 220, 0.8)),
    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;
}

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

.shop-hero span {
  color: var(--accent);
}

.filters h3 {
  margin: 20px 0 10px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  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));
}

.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:hover .thumb {
  transform: scale(1.04);
  filter: brightness(0.95);
}

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