:root {
  --dark: #151515;
  --dark-2: #101010;
  --line: #2b2b2b;
  --white: #ffffff;
  --muted: #a8a8a8;
  --red: #ed1c24;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #171717;
  color: #111;
  scroll-behavior: smooth;
}

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

.site-header .container {
  width: calc(100% - 24px);
  max-width: none;
}

.site-header {
  background: var(--dark);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.top-bar {
  min-height: 72px;
  background: var(--dark);
  border-bottom: 1px solid var(--line);
}

.top-bar__content {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 46px;
}

.top-bar__spacer {
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 390px;
}

.top-bar__content > .contact-item:not(.contact-item--wide) {
  margin-left: auto;
  margin-right: 0;
}

.contact-item--wide {
  max-width: 470px;
  padding-left: 4px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.contact-icon--image {
  border: 0;
}

.contact-icon img {
  width: 38px;
  height: 38px;
  display: block;
}

.contact-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 2px;
}

.contact-item strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  line-height: 1.35;
}

.contact-small {
  display: block;
  color: var(--red);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  margin-top: 2px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  margin-right: 0;
}

.nav-social a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.nav-social a:hover {
  transform: translateY(-2px);
}

.nav-social img {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 7px;
}

.social-mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

.social-mark--youtube::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--white);
}

.social-mark--whatsapp {
  border-radius: 50%;
  font-size: 18px;
}

.main-nav {
  min-height: 98px;
  background: var(--dark-2);
}

.main-nav__content {
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 260px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex: 1;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links a:hover {
  transform: translateY(-2px);
}

.search-button {
  position: relative;
  width: 34px;
  height: 34px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.search-button::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.search-button::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 22px;
  width: 9px;
  height: 2px;
  background: var(--white);
  transform: rotate(45deg);
  transform-origin: left center;
}

.hero-video {
  position: relative;
  min-height: calc(100vh - 170px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #111;
}

.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.46) 50%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.08));
}

.hero-video__content {
  position: relative;
  z-index: 1;
  padding: 86px 0 96px;
  max-width: 1120px;
  text-align: center;
}

.hero-video__eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-video h1 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.hero-video h1 span {
  display: block;
  color: var(--red);
  font-size: 0.62em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.reveal,
.reveal-card {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: opacity, transform;
}

.reveal--hero {
  opacity: 1;
  transform: none;
}

.reveal.is-visible,
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card:hover {
  transform: translateY(-8px);
}

.hero-video__text {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 600;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-video__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 26px;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-video__button:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.about-section {
  position: relative;
  padding: 96px 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 18% 18%, rgba(237, 28, 36, 0.14), transparent 35%),
    url("assets/categories-background.png") center / cover no-repeat;
  color: #111;
  box-shadow: inset 0 28px 80px rgba(0, 0, 0, 0.42);
}

.about-section__content {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 58px;
  align-items: stretch;
}

.about-section__image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #151515;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.22);
}

.about-section__image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.about-section__image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.about-section__text {
  padding: 34px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.16);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-section h2 {
  margin: 0 0 24px;
  color: #111;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-section h2 span {
  display: block;
  color: var(--red);
}

.about-section p {
  margin: 0;
  color: #444;
  font-size: 17px;
  line-height: 1.85;
}

.about-section p + p {
  margin-top: 18px;
}

.categories-section {
  position: relative;
  padding: 96px 0 104px;
  background: url("assets/categories-background.png") center / cover no-repeat;
  color: var(--white);
  box-shadow: inset 0 32px 80px rgba(0, 0, 0, 0.48), inset 0 -32px 80px rgba(0, 0, 0, 0.48);
}

.categories-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.62) 100%),
    radial-gradient(circle at 16% 18%, rgba(237, 28, 36, 0.26), transparent 34%);
  pointer-events: none;
}

.categories-section .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.section-heading > p:last-child {
  margin: 18px auto 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

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

.category-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-card:hover {
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.22);
}

.category-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 30px;
}

.category-card h3 {
  margin: 0 0 14px;
  color: #111;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.category-card h3::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 14px;
  background: var(--red);
}

.category-card p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.65;
}

.category-card a {
  width: fit-content;
  margin-top: 22px;
  padding: 13px 20px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.category-card a:hover {
  background: #c9141b;
  border-color: #c9141b;
  color: var(--white);
}

.services-section {
  position: relative;
  padding: 96px 0 108px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.64)),
    radial-gradient(circle at 18% 16%, rgba(237, 28, 36, 0.14), transparent 34%),
    url("assets/categories-background.png") center / cover no-repeat;
  color: #111;
  box-shadow: inset 0 28px 80px rgba(0, 0, 0, 0.42);
}

.services-section::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -70px;
  width: 520px;
  height: 320px;
  background: rgba(237, 28, 36, 0.16);
  filter: blur(80px);
  pointer-events: none;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-heading {
  margin-bottom: 64px;
  padding: 26px 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.services-heading h2 {
  color: var(--white);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.services-heading h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin: 18px auto 0;
  background: var(--red);
}

.services-heading > p:last-child {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.service-item {
  min-height: 360px;
  padding: 42px 28px 34px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-item--featured {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.96);
  color: #111;
}

.service-item:hover {
  border-color: var(--red);
  box-shadow: 0 24px 44px rgba(237, 28, 36, 0.18);
  transform: translateY(-6px);
}

.clients-section {
  position: relative;
  padding: 100px 0 106px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 82% 16%, rgba(237, 28, 36, 0.14), transparent 34%),
    url("assets/categories-background.png") center / cover no-repeat;
  color: #111;
}

.clients-section__content {
  position: relative;
}

.clients-section__letter {
  position: absolute;
  left: 0;
  top: -48px;
  display: none;
  font-size: 310px;
  line-height: 0.82;
  font-weight: 900;
  pointer-events: none;
}

.clients-section__heading {
  position: relative;
  max-width: 720px;
  margin: 0 auto 68px;
  padding: 26px 30px 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
}

.clients-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.clients-section h2 {
  margin: 0;
  color: #111;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.13;
}

.clients-section h2 span {
  color: var(--red);
}

.clients-section__heading > p:last-child {
  margin: 22px auto 0;
  max-width: 650px;
  color: #333;
  font-size: 18px;
  line-height: 1.75;
  text-align: center;
}

.clients-section h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 28px;
  background: var(--red);
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.clients-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: clients-scroll 24s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.client-logo {
  flex: 0 0 230px;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #f7f7f7;
  color: rgba(17, 17, 17, 0.44);
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #111;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.brand-logo small {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  line-height: 1;
  text-transform: lowercase;
}

.brand-logo--tuscania {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: 1px;
}

.brand-logo--tuscania::before {
  content: "T";
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7px;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  font-size: 24px;
}

.brand-logo--pamesa {
  color: var(--red);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
}

.brand-logo--pamesa small {
  color: var(--red);
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.brand-logo--baldocer {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 700;
}

.brand-logo--baldocer small {
  width: 100%;
  padding: 3px 8px;
  background: #111;
  color: #fff;
  font-size: 11px;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.brand-logo--laufen {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 5px;
}

.brand-logo--laufen small {
  color: #555;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.brand-logo--elmolino {
  width: 120px;
  height: 86px;
  background: #b00b32;
  color: #fff;
  font-size: 22px;
  line-height: 1.05;
  transform: rotate(-35deg);
}

.brand-logo--cifre {
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.brand-logo--cifre small {
  font-size: 15px;
  letter-spacing: 9px;
}

.brand-logo--roca {
  color: #0f67ae;
  font-size: 48px;
  letter-spacing: 1px;
  text-transform: none;
}

.brand-logo--roca::after {
  content: "";
  width: 118px;
  height: 9px;
  margin-top: 8px;
  background: #0f67ae;
  transform: skewX(-20deg);
}

.brand-logo--mijares {
  color: #5a2f20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  text-transform: uppercase;
}

.client-logo:hover {
  color: var(--red);
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(237, 28, 36, 0.14);
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

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

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

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

.site-header {
  animation: headerDrop 0.8s ease both;
}

.hero-video__content {
  animation: fadeUpSoft 1s ease 0.2s both;
}

.about-section__image,
.about-section__text,
.categories-heading,
.services-heading,
.clients-section__heading,
.contact-footer__intro,
.contact-footer__infos,
.contact-footer__bottom {
  animation: fadeUpSoft 0.95s ease both;
}

.about-section__image {
  animation-delay: 0.08s;
}

.about-section__text {
  animation-delay: 0.18s;
}

.categories-heading {
  animation-delay: 0.08s;
}

.services-heading {
  animation-delay: 0.08s;
}

.clients-section__heading {
  animation-delay: 0.08s;
}

.contact-footer__intro {
  animation-delay: 0.08s;
}

.contact-footer__infos {
  animation-delay: 0.16s;
}

.contact-footer__bottom {
  animation-delay: 0.24s;
}

.category-card,
.service-item {
  animation: fadeUpSoft 0.9s ease both;
}

.category-card:nth-child(1),
.service-item:nth-child(1) {
  animation-delay: 0.08s;
}

.category-card:nth-child(2),
.service-item:nth-child(2) {
  animation-delay: 0.18s;
}

.category-card:nth-child(3),
.service-item:nth-child(3) {
  animation-delay: 0.28s;
}

.service-item:nth-child(4) {
  animation-delay: 0.38s;
}

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.contact-page {
  display: none;
  position: relative;
  padding: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.74) 100%),
    radial-gradient(circle at 13% 12%, rgba(237, 28, 36, 0.12), transparent 30%),
    url("assets/categories-background.png") center / cover no-repeat;
  color: #151515;
}

.contact-page:target {
  display: block;
}

.contact-page--standalone {
  display: block;
}

.contact-banner {
  position: relative;
  min-height: 248px;
  margin-bottom: 34px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.62) 43%, rgba(0, 0, 0, 0.58) 43%, rgba(0, 0, 0, 0.76) 100%),
    url("assets/contact-background-final.jpeg") center / cover no-repeat;
}

.contact-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 18%, rgba(237, 28, 36, 0.12), transparent 30%);
  pointer-events: none;
}

.contact-banner__content {
  position: relative;
  z-index: 1;
  min-height: 248px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-banner h1 {
  margin: 0;
  color: var(--red);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(255, 255, 255, 0.18);
}

.contact-page__stack {
  display: grid;
  gap: 26px;
  padding-bottom: 34px;
}

.contact-page__form,
.contact-page__details {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

.contact-page h2,
.contact-page h3 {
  margin: 0;
  color: #111;
  text-transform: uppercase;
}

.contact-page h2 {
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.08;
}

.contact-page h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-page p {
  margin: 10px 0 18px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

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

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 11px 14px;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 108px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.14);
}

.contact-form button {
  justify-self: start;
  min-height: 42px;
  padding: 0 20px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-form button:hover {
  background: transparent;
  color: var(--red);
  transform: translateY(-2px);
}

.contact-page__details {
  display: grid;
  gap: 18px;
}

.contact-page__details--intro {
  max-width: 980px;
}

.contact-page__block {
  padding-left: 14px;
  border-left: 4px solid var(--red);
}

.contact-page__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.contact-page__list span {
  color: #111;
  font-weight: 900;
}

.contact-stores {
  padding-bottom: 38px;
}

.contact-stores__heading {
  margin-bottom: 22px;
}

.contact-stores__heading span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.9);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-stores__heading h2 {
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  text-transform: none;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

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

.store-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
}

.store-card img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
}

.store-card:nth-child(1) img {
  object-position: 60% 48%;
}

.store-card:nth-child(2) img {
  object-position: 50% 62%;
}

.store-card:nth-child(3) img {
  object-position: 58% 42%;
}

.store-card__body {
  padding: 22px 22px 24px;
}

.store-card h3 {
  margin: 0;
  color: #111;
  font-size: 18px;
  line-height: 1.2;
}

.store-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 12px 0 14px;
  background: var(--red);
}

.store-card p {
  margin: 0 0 14px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.store-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #5e5e5e;
  font-size: 13px;
  line-height: 1.55;
}

.store-card li span {
  color: #111;
  font-weight: 900;
}

.store-card__route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 18px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.store-card__route:hover {
  background: transparent;
  color: var(--red);
  transform: translateY(-2px);
}

.about-banner {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.62)),
    url("assets/about-bathroom.jpeg") center / cover no-repeat;
  box-shadow: inset 0 0 0 9999px rgba(255, 255, 255, 0.14);
}

.about-banner h1 {
  max-width: none;
  width: 100%;
  text-align: center;
  color: var(--red);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 8px 24px rgba(255, 255, 255, 0.32);
}

.about-page-video {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-top: 4px solid rgba(255, 255, 255, 0.1);
  border-bottom: 6px solid var(--red);
  background: #101010;
}

.about-page-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.18) contrast(0.96);
}

.about-page-video__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.52) 44%, rgba(12, 12, 12, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.22));
}

.about-page-video__content {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 84px;
}

.about-page-video__content h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.02;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.about-page-video__content p {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.64);
}

.about-story {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: url("assets/contact-background-final.jpeg") center / cover no-repeat;
  color: #111;
}

.about-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.68)),
    linear-gradient(110deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 40%, rgba(0, 0, 0, 0.44) 40%, rgba(0, 0, 0, 0.64) 100%),
    radial-gradient(circle at 16% 18%, rgba(237, 28, 36, 0.08), transparent 34%);
  pointer-events: none;
  backdrop-filter: blur(2px);
}

.about-story__content {
  position: relative;
  z-index: 1;
  display: block;
  padding: 44px 42px 50px;
  border: 2px solid var(--red);
  background: rgba(237, 28, 36, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

.about-story__text h2 {
  margin: 0 0 40px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  text-align: center;
}

.about-story__text p {
  max-width: 1060px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.62;
}

.about-story__text p + p {
  margin-top: 28px;
}

.about-story__visual {
  display: none;
}

.about-story__visual img {
  width: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
}

.about-story__visual span {
  position: absolute;
  left: 28px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(44px, 7vw, 120px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2px;
}

.about-materials {
  background: #fff;
}

.about-materials__panel {
  position: relative;
  overflow: hidden;
  background: #101010;
}

.about-materials__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-materials__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.54) 45%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52));
}

.about-materials__content {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0;
}

.about-materials__content h2 {
  max-width: none;
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.04;
  white-space: nowrap;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.about-materials__content p {
  max-width: 1040px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.8;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.48);
}

.about-care {
  position: relative;
  overflow: hidden;
  padding: 82px 0 92px;
  background: url("assets/contact-background-final.jpeg") center / cover no-repeat;
  color: #111;
}

.about-care::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.7)),
    linear-gradient(110deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 38%, rgba(0, 0, 0, 0.42) 38%, rgba(0, 0, 0, 0.64) 100%),
    radial-gradient(circle at 16% 18%, rgba(237, 28, 36, 0.08), transparent 34%);
  pointer-events: none;
  backdrop-filter: blur(2px);
}

.about-care__content {
  position: relative;
  z-index: 1;
  padding: 44px 38px 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(16, 16, 16, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

.about-care__content h2 {
  margin: 0 0 44px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.04;
  text-align: center;
}

.about-care__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  align-items: start;
}

.about-care__item {
  text-align: center;
}

.about-care__icon {
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--red);
}

.about-care__icon img,
.about-care__icon svg {
  width: min(100%, 220px);
  height: 132px;
  object-fit: contain;
}

.about-care__item h3 {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
}

.about-care__item p {
  max-width: 330px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.75;
}

.contact-page__map {
  width: 100%;
  height: 300px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #eee;
}

.contact-page__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: grayscale(0.25) contrast(1.02);
}

.contact-page {
  display: none;
  position: relative;
  padding: 0 0 40px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 16% 14%, rgba(237, 28, 36, 0.08), transparent 32%),
    url("assets/contact-background-final.jpeg") center / cover fixed no-repeat;
  color: #151515;
}

.contact-page--standalone {
  display: block;
}

.contact-banner--soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.62)),
    url("assets/contact-background-final.jpeg") center / cover no-repeat;
  box-shadow: inset 0 0 0 9999px rgba(255, 255, 255, 0.14);
}

.contact-banner--soft .contact-banner__content {
  min-height: 248px;
}

.contact-banner--soft h1 {
  color: var(--red);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(255, 255, 255, 0.32);
}

.contact-page__stack {
  display: grid;
  gap: 26px;
  padding-bottom: 34px;
}

.contact-page__form,
.contact-page__details,
.store-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 16, 16, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

.contact-page__form,
.contact-page__details {
  padding: 24px;
}

.contact-page h2,
.contact-page h3,
.store-card h3 {
  color: var(--white);
}

.contact-page p,
.store-card p,
.store-card ul {
  color: rgba(255, 255, 255, 0.78);
}

.contact-page__details--intro {
  max-width: 980px;
}

.contact-page__block {
  padding-left: 14px;
  border-left: 4px solid var(--red);
}

.contact-stores {
  padding-bottom: 38px;
}

.contact-stores__heading {
  margin-bottom: 22px;
}

.contact-stores__heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  text-align: left;
  text-transform: uppercase;
}

.contact-stores__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.store-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
}

.store-card img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
}

.store-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.store-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 12px 0 14px;
  background: var(--red);
}

.store-card li span {
  color: var(--white);
  font-weight: 900;
}

.store-card__route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  align-self: center;
  padding: 0 18px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.store-card__route:hover {
  background: transparent;
  color: var(--red);
  transform: translateY(-2px);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

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

.contact-page__map {
  width: min(1120px, calc(100% - 32px));
  height: 320px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

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

@media (max-width: 560px) {
  .contact-page__map {
    width: min(100% - 22px, 1120px);
    height: 260px;
  }
}

.product-page {
  min-height: 100vh;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.74) 100%),
    radial-gradient(circle at 13% 12%, rgba(237, 28, 36, 0.12), transparent 30%),
    url("assets/categories-background.png") center / cover fixed no-repeat;
}

.product-hero {
  position: relative;
  padding: 74px 0 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58)),
    url("assets/contact-background-final.jpeg") center / cover no-repeat;
  color: var(--white);
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(237, 28, 36, 0.18), transparent 34%);
  pointer-events: none;
}

.product-hero .container {
  position: relative;
  z-index: 1;
}

.product-hero span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.product-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
}

.product-hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding-top: 74px;
  padding-bottom: 90px;
}

.product-card {
  min-height: 100%;
  animation: cardLiftIn 0.72s ease both;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  border-color: rgba(237, 28, 36, 0.55);
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.16);
}

.product-card img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 0.65s ease, filter 0.35s ease;
}

.product-card:hover img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.055);
}

.product-card:nth-child(1) img { object-position: 68% 50%; }
.product-card:nth-child(2) img { object-position: 50% 40%; }
.product-card:nth-child(3) img { object-position: 75% 52%; }
.product-card:nth-child(4) img { object-position: 60% 58%; }
.product-card:nth-child(5) img { object-position: 48% 30%; }
.product-card:nth-child(6) img { object-position: 48% 62%; }
.product-card:nth-child(7) img { object-position: 35% 42%; }
.product-card:nth-child(8) img { object-position: 78% 50%; }
.product-card:nth-child(9) img { object-position: 50% 50%; }

.product-card div {
  padding: 30px 32px 34px;
}

.product-card h2 {
  margin: 0;
  color: #111;
  font-size: 20px;
  line-height: 1.25;
}

.product-card h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin: 15px 0 17px;
  background: var(--red);
}

.product-card p {
  margin: 0;
  color: #5f6670;
  font-size: 15px;
  line-height: 1.75;
}

.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.product-card a::after {
  content: ">";
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.product-card a:hover::after {
  transform: translateX(4px);
}

.product-page--sanitaire {
  padding: 0 0 88px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.74) 100%),
    radial-gradient(circle at 13% 12%, rgba(237, 28, 36, 0.12), transparent 30%),
    url("assets/about-bathroom.jpeg") center / cover fixed no-repeat;
}

.product-page--sanitaire .product-hero {
  display: block;
  min-height: 220px;
  margin: 0 0 74px;
  padding: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.62) 43%, rgba(0, 0, 0, 0.58) 43%, rgba(0, 0, 0, 0.76) 100%),
    url("assets/about-bathroom.jpeg") center / cover no-repeat;
  color: #111;
}

.product-page--sanitaire .product-hero .container {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page--sanitaire .product-hero span,
.product-page--sanitaire .product-hero p {
  display: none;
}

.product-page--sanitaire .product-hero h1 {
  color: var(--red);
  font-size: clamp(54px, 9vw, 92px);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.product-grid--sanitaire {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

.product-grid--single {
  grid-template-columns: minmax(280px, 356px);
  justify-content: start;
  width: min(1120px, calc(100% - 32px));
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.sanitaire-card {
  border: 1px solid #e8e8e8;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.sanitaire-card img {
  height: 250px;
  filter: none;
}

.sanitaire-card div {
  min-height: 238px;
  padding: 34px 32px 36px;
}

.sanitaire-card h2 {
  font-size: 18px;
}

.sanitaire-card h2::after {
  display: none;
}

.sanitaire-card p {
  color: #6c7480;
  font-size: 15px;
  line-height: 1.75;
}

.sanitaire-card a {
  color: var(--red);
  font-size: 13px;
  text-transform: none;
}

.sanitaire-card a::after {
  color: var(--red);
}

.product-page--carrelage {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.74) 100%),
    radial-gradient(circle at 13% 12%, rgba(237, 28, 36, 0.12), transparent 30%),
    url("assets/contact-background-final.jpeg") center / cover fixed no-repeat;
}

.product-hero--carrelage {
  padding: 48px 0 116px;
  background:
    linear-gradient(180deg, rgba(15, 20, 24, 0.82), rgba(15, 20, 24, 0.48)),
    url("assets/category-carrelage.jpeg") center 42% / cover no-repeat;
}

.product-hero--carrelage .container {
  display: flex;
  justify-content: center;
}

.product-hero--carrelage h1 {
  color: var(--red);
  font-size: clamp(34px, 4vw, 48px);
  text-transform: none;
  text-align: center;
  text-shadow: 0 10px 30px rgba(255, 255, 255, 0.16);
}

.product-grid--carrelage {
  align-items: start;
  margin-top: 74px;
  margin-bottom: 92px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

.carrelage-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8e8e8;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.carrelage-card img {
  height: 250px;
  filter: none;
}

.carrelage-card div {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 262px;
  padding: 34px 32px 36px;
}

.carrelage-card h2 {
  font-size: 18px;
  line-height: 1.25;
}

.carrelage-card h2::after {
  display: none;
}

.carrelage-card p {
  flex: 1;
  color: #6c7480;
  font-size: 15px;
  line-height: 1.75;
}

.carrelage-card a {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 0 22px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.carrelage-card a::after {
  display: none;
}

.carrelage-card a:hover {
  background: #fff;
  color: var(--red);
  box-shadow: 0 12px 26px rgba(237, 28, 36, 0.18);
  transform: translateY(-2px);
}

.tiles-shop {
  min-height: 100vh;
  padding: 52px 0 90px;
  background: #f2f2f2;
}

.sanitary-products-hero {
  background: #151515;
  border-bottom: 4px solid var(--red);
}

.sanitary-products-hero .container {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sanitary-products-hero h1 {
  margin: 0;
  color: var(--red);
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.sanitary-products {
  padding: 52px 0 84px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.9) 0 36%, rgba(255, 255, 255, 0.6) 36% 52%, rgba(17, 17, 17, 0.75) 52% 100%),
    url("assets/about-bathroom.jpeg") center / cover fixed no-repeat;
}

.sanitary-products__layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  background: rgba(242, 242, 242, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  padding: 16px;
}

.sanitary-filter {
  background: #fff;
  border: 1px solid #ddd;
}

.sanitary-filter__block {
  padding: 16px 14px 18px;
  border-bottom: 1px solid #ddd;
}

.sanitary-filter__block:last-child {
  border-bottom: 0;
}

.sanitary-filter h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 18px;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.sanitary-filter h2::after {
  content: "";
  width: 10px;
  height: 2px;
  background: #111;
}

.range-filter {
  position: relative;
  height: 20px;
  margin: 12px 0 8px;
}

.range-filter__line {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  height: 5px;
  background: var(--red);
}

.range-filter__dot {
  position: absolute;
  top: 1px;
  width: 18px;
  height: 18px;
  border: 2px solid #eee;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 4px var(--red);
}

.range-filter__dot--left {
  left: 0;
}

.range-filter__dot--right {
  right: 0;
}

.sanitary-filter p {
  margin: 0 0 18px;
  color: #67727e;
  font-size: 14px;
  line-height: 1.8;
}

.sanitary-filter p strong {
  color: #666;
  text-transform: uppercase;
}

.sanitary-filter__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.sanitary-filter__actions button {
  min-height: 34px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-weight: 700;
}

.sanitary-filter__actions button:last-child {
  background: #111;
}

.sanitary-color-grid {
  display: grid;
  grid-template-columns: repeat(5, 34px);
  gap: 6px;
}

.sanitary-color-grid span {
  width: 34px;
  height: 34px;
  border: 1px solid #e5e5e5;
  background: var(--color);
}

.sanitary-products__intro {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.sanitary-products__intro p {
  max-width: 820px;
  margin: 0;
  color: #68727e;
  font-size: 15px;
  line-height: 1.75;
}

.sanitary-products__intro label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #68727e;
  font-size: 13px;
  white-space: nowrap;
}

.sanitary-products__intro select {
  width: 64px;
  height: 34px;
  border: 1px solid #d8dde3;
  background: #fff;
  color: #111;
  padding: 0 10px;
}

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

.sanitary-product-card {
  min-height: 480px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.sanitary-product-card img {
  width: 100%;
  height: 185px;
  display: block;
  object-fit: cover;
}

.sanitary-product-card div {
  padding: 20px 11px 14px;
}

.sanitary-product-card__brand {
  margin: 0 0 14px;
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sanitary-product-card__ref {
  margin: 0 0 10px;
  color: #000;
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.sanitary-product-card h2 {
  min-height: 52px;
  margin: 0 0 30px;
  color: #000;
  font-size: 15px;
  line-height: 1.35;
}

.sanitary-product-card__dims {
  margin: 0 0 10px;
  color: #66717d;
  font-size: 13px;
  line-height: 1.65;
}

.sanitary-product-card__dims strong,
.sanitary-product-card__dims span {
  display: block;
  color: #111;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sanitary-product-card__dims span {
  color: #66717d;
  font-weight: 400;
}

.sanitary-product-card__price {
  margin: 18px 0 0;
  color: #6c7480;
  font-size: 20px;
  font-weight: 900;
}

.sanitary-no-products {
  grid-column: 1 / -1;
  padding: 34px 0 140px;
}

.sanitary-no-products h2 {
  margin: 0 0 8px;
  border-left: 4px solid var(--red);
  padding-left: 14px;
  color: #202020;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 500;
}

.sanitary-no-products p {
  margin: 0;
  color: var(--red);
  font-size: 18px;
}

.tiles-shop__layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.tiles-filter {
  padding: 18px 14px 16px;
  border: 1px solid #ddd;
  background: #fff;
}

.tiles-filter__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 18px;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.tiles-filter__title::after {
  content: "";
  width: 10px;
  height: 2px;
  background: #111;
}

.tiles-filter__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tiles-filter__sizes button,
.tile-size {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #e1e1e1;
  background: #fff;
  color: #717b86;
  font: inherit;
  font-size: 12px;
}

.tiles-shop__intro {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.tiles-shop__intro p {
  max-width: 860px;
  margin: 0;
  color: #68727e;
  font-size: 15px;
  line-height: 1.75;
}

.tiles-shop__display {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #68727e;
  font-size: 13px;
  white-space: nowrap;
}

.tiles-shop__display select {
  width: 64px;
  height: 34px;
  border: 1px solid #d8dde3;
  background: #fff;
  color: #111;
  padding: 0 10px;
}

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

.tile-product {
  min-height: 502px;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  animation: cardLiftIn 0.72s ease both;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.tile-product:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
}

.tile-product img {
  width: 100%;
  height: 185px;
  display: block;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.35s ease;
}

.tile-product:hover img {
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1.055);
}

.tile-product__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 11px 12px;
}

.tile-product__brand {
  margin: 0 0 14px;
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tile-product__ref {
  margin: 0 0 10px;
  color: #000;
  font-family: "Courier New", monospace;
  font-size: 13px;
  letter-spacing: 0;
}

.tile-product h2 {
  margin: 0;
  color: #000;
  font-size: 15px;
  line-height: 1.3;
}

.tile-product__options {
  margin-top: auto;
  padding-top: 56px;
}

.tile-product__swatches {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}

.tile-swatch {
  position: relative;
  width: 38px;
  height: 38px;
  border: 2px solid #e1e1e1;
  border-radius: 50%;
  background-color: var(--swatch, #ddd);
  background-image: var(--material-photo);
  background-size: 190px 130px;
  background-position: var(--material-position, center);
  background-repeat: no-repeat;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.82),
    0 4px 10px rgba(0, 0, 0, 0.14);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tile-swatch::after {
  display: none;
}

.tile-swatch:hover {
  border-color: var(--red);
  transform: translateY(-3px) scale(1.08);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.82),
    0 9px 18px rgba(237, 28, 36, 0.22);
}

.tile-swatch:nth-child(1) { --material-position: 28% 48%; }
.tile-swatch:nth-child(2) { --material-position: 46% 54%; }
.tile-swatch:nth-child(3) { --material-position: 64% 46%; }
.tile-swatch:nth-child(4) { --material-position: 78% 58%; }
.tile-swatch:nth-child(5) { --material-position: 36% 70%; }
.tile-swatch:nth-child(6) { --material-position: 72% 30%; }

.tile-product__price {
  width: fit-content;
  margin: 28px 0 0;
  padding: 10px 16px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(237, 28, 36, 0.18);
}

@keyframes cardLiftIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-footer {
  position: relative;
  overflow: hidden;
  padding: 86px 0 34px;
  background: url("assets/contact-background-final.jpeg") center / cover no-repeat;
  color: #111;
}

.contact-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at 18% 18%, rgba(237, 28, 36, 0.07), transparent 34%);
  pointer-events: none;
  backdrop-filter: blur(2px);
}

.contact-footer__content {
  position: relative;
  z-index: 1;
}

.contact-footer__intro {
  max-width: 560px;
  margin-bottom: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.contact-footer__kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.contact-footer h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.contact-footer__intro p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.7;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.contact-footer__infos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-bottom: 72px;
}

.contact-footer__item {
  min-height: 0;
  padding: 0 0 0 18px;
  border: 0;
  border-left: 4px solid var(--red);
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.contact-footer__item span {
  display: block;
  min-width: 0;
  padding: 0;
  margin-bottom: 12px;
  border: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-footer__item strong {
  display: block;
  color: var(--white);
  font-size: 17px;
  line-height: 1.55;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.contact-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  backdrop-filter: none;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
}

.footer-brand span {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: block;
}

.footer-social .social-mark {
  width: 36px;
  height: 36px;
}

.footer-social .social-mark--youtube::before {
  border-top-width: 8px;
  border-bottom-width: 8px;
  border-left-width: 14px;
}

.footer-social .social-mark--whatsapp {
  font-size: 20px;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--red);
}

.service-icon svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item h3 {
  margin: 0;
  color: inherit;
  font-size: 30px;
  line-height: 1.22;
}

.service-item p {
  margin: 22px 0 0;
  color: #555;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.service-item--featured p {
  color: #555;
}

@media (max-width: 900px) {
  .top-bar__content {
    justify-content: flex-start;
    gap: 22px;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .top-bar__spacer {
    display: none;
  }

  .main-nav__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 18px 0;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 16px 22px;
    flex-wrap: wrap;
  }

  .search-button {
    display: none;
  }

  .nav-social {
    margin-left: 0;
  }

  .hero-video {
    min-height: 620px;
  }

  .hero-video__content {
    padding: 70px 0 80px;
  }

  .hero-video h1 {
    font-size: 40px;
  }

  .about-section {
    padding: 70px 0;
  }

  .about-section__content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-section__image img {
    min-height: 420px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

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

  .tiles-shop__layout {
    grid-template-columns: 1fr;
  }

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

  .sanitary-products__layout {
    grid-template-columns: 1fr;
  }

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

  .category-card,
  .category-card__body {
    min-height: 0;
  }

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

  .service-item {
    min-height: 300px;
  }

  .clients-section__heading {
    margin-left: 120px;
    margin-right: 0;
  }

  .client-logo {
    flex-basis: 190px;
  }

  .contact-footer__infos {
    grid-template-columns: 1fr;
  }

  .contact-stores__grid {
    grid-template-columns: 1fr;
  }

  .about-page-video {
    min-height: 500px;
  }

  .about-page-video__content {
    min-height: 500px;
    padding: 64px 0 74px;
  }

  .about-story {
    padding: 72px 0;
  }

  .about-story__content {
    grid-template-columns: 1fr;
  }

  .about-story__visual img {
    min-height: 440px;
  }

  .about-materials__content {
    min-height: 460px;
    padding: 70px 0;
  }

  .about-care {
    padding: 68px 0 76px;
  }

  .about-care__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .contact-item {
    width: 100%;
  }

  .brand img {
    width: 106px;
    height: 106px;
  }

  .nav-links {
    gap: 14px 18px;
  }

  .nav-links a {
    font-size: 12px;
  }

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

  .hero-video__overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.36));
  }

  .hero-video h1 {
    font-size: 28px;
    line-height: 1.05;
  }

  .hero-video__text {
    font-size: 16px;
  }

  .about-section {
    padding: 52px 0;
  }

  .about-section h2 {
    font-size: 28px;
  }

  .about-section p {
    font-size: 15px;
    line-height: 1.75;
  }

  .about-section__image img {
    min-height: 320px;
  }

  .categories-section {
    padding: 62px 0 70px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .category-card__body {
    padding: 24px;
  }

  .category-card h3 {
    font-size: 28px;
  }

  .product-hero {
    padding: 58px 0 56px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 48px;
    padding-bottom: 62px;
  }

  .tiles-shop {
    padding: 34px 0 58px;
  }

  .tiles-shop__intro {
    flex-direction: column;
  }

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

  .tile-product {
    min-height: 0;
  }

  .sanitary-products {
    padding: 34px 0 58px;
  }

  .sanitary-products__intro {
    flex-direction: column;
  }

  .sanitary-products__grid {
    grid-template-columns: 1fr;
  }

  .sanitary-filter__actions {
    gap: 18px;
  }

  .product-card img {
    height: 220px;
  }

  .product-card div {
    padding: 24px;
  }

  .services-section {
    padding: 64px 0 72px;
  }

  .services-heading {
    margin-bottom: 34px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-item {
    min-height: 0;
    padding: 30px 24px;
  }

  .service-item h3 {
    font-size: 26px;
  }

  .service-item p {
    font-size: 15px;
  }

  .clients-section {
    padding: 66px 0 72px;
  }

  .clients-section__letter {
    top: -22px;
    font-size: 180px;
  }

  .clients-section__heading {
    margin: 0 0 38px;
  }

  .clients-kicker {
    letter-spacing: 4px;
  }

  .clients-section h2 {
    font-size: 32px;
  }

  .clients-track {
    gap: 12px;
    animation-duration: 20s;
  }

  .client-logo {
    flex-basis: 170px;
    min-height: 84px;
  }

  .contact-page {
    padding-top: 0;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-banner {
    min-height: 200px;
    margin-bottom: 24px;
  }

  .contact-banner__content {
    min-height: 200px;
  }

  .contact-page__map {
    height: 260px;
  }

  .store-card img {
    height: 210px;
  }

  .about-page-video {
    min-height: 430px;
  }

  .about-page-video__content {
    min-height: 430px;
    padding: 56px 0 64px;
  }

  .about-page-video__content h2 {
    font-size: 34px;
  }

  .about-banner h1 {
    white-space: normal;
    font-size: 36px;
  }

  .about-page-video__content p {
    font-size: 16px;
  }

  .about-story__text h2 {
    font-size: 34px;
  }

  .about-story__text p {
    font-size: 15px;
  }

  .about-story__visual img {
    min-height: 320px;
  }

  .about-materials__grid {
    inset: -10%;
    width: 360%;
    grid-template-columns: repeat(6, minmax(180px, 1fr));
    grid-template-rows: repeat(2, minmax(180px, 1fr));
    animation-duration: 28s;
  }

  .about-materials__content {
    min-height: 420px;
    padding: 54px 0;
  }

  .about-materials__content h2 {
    font-size: 34px;
  }

  .about-materials__content p {
    font-size: 16px;
  }

  .about-care__content h2 {
    font-size: 34px;
  }

  .about-care__icon {
    height: 104px;
  }

  .about-care__icon svg {
    height: 104px;
  }

  .contact-footer {
    padding: 64px 0 28px;
  }

  .contact-footer__infos {
    margin-bottom: 44px;
  }

  .contact-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

body {
  background: #ffffff;
}

.site-header {
  background: var(--dark);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.top-bar {
  background: #ffffff;
  border-bottom: 1px solid #e7e7e7;
}

.contact-item strong,
.contact-small {
  color: #111;
}

.contact-small {
  color: var(--red);
}

.main-nav {
  background: var(--dark-2);
  border-bottom: 0;
}

.main-nav__content {
  gap: 18px;
}

.brand {
  min-width: 0;
  color: var(--white);
}

.brand img {
  width: 164px;
  height: 164px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.nav-links {
  justify-content: flex-start;
  gap: 22px;
  flex: 0 1 auto;
  margin-right: auto;
}

.nav-links a {
  color: var(--white);
}

.header-search {
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 0.25s ease, opacity 0.25s ease;
}

.header-search.is-open {
  width: 220px;
  opacity: 1;
}

.header-search__input {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-size: 14px;
}

.header-search__input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-search__input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.12);
}

.search-button {
  border-left-color: var(--line);
  color: var(--white);
}

.search-button::before {
  border-color: var(--white);
}

.search-button::after {
  background: var(--white);
}

.about-section__text {
  background: rgba(255, 255, 255, 0.94);
}

.categories-heading {
  margin-bottom: 64px;
  padding: 26px 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.categories-heading h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin: 18px auto 0;
  background: var(--red);
}

.categories-heading > p:last-child {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

.category-card__body {
  align-items: center;
  text-align: center;
}

.category-card h3::after {
  margin: 14px auto 0;
}

.services-heading h2,
.services-heading > p:last-child {
  color: var(--white);
}

.service-item {
  text-align: center;
}

.service-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
}

.service-icon img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
}

.main-nav__content {
  justify-content: center;
}

.nav-links {
  flex: 1 1 auto;
  justify-content: center;
  margin-right: 0;
}

.service-icon img,
.about-care__icon img {
  filter: none;
}

@media (max-width: 760px) {
  .about-materials__content h2 {
    white-space: normal;
  }
}

.contact-footer__bottom {
  align-items: center;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}

@media (max-width: 900px) {
  .main-nav__content {
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    margin-right: 0;
  }

  .header-search.is-open {
    width: 220px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 122px;
    height: 122px;
  }

  .header-search.is-open {
    width: 100%;
  }

  .footer-copy {
    text-align: left;
  }
}

.tile-product.is-material-ready .tile-swatch {
  background-image: var(--product-material-photo);
}

/* Sanitaire corrections */
.product-page--sanitaire .product-hero {
  position: relative;
  overflow: hidden;
  background: url("assets/about-bathroom.jpeg") center / cover no-repeat;
}

.product-page--sanitaire .product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(5px);
}

.product-page--sanitaire .product-hero .container {
  position: relative;
  z-index: 1;
}

.sanitaire-card {
  display: flex;
  flex-direction: column;
}

.sanitaire-card div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sanitaire-card p {
  flex: 1;
}

.sanitaire-card a {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 0 22px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.sanitaire-card a::after {
  display: none;
}

.sanitaire-card a:hover {
  background: #fff;
  color: var(--red);
  box-shadow: 0 12px 26px rgba(237, 28, 36, 0.18);
  transform: translateY(-2px);
}

.sanitary-product-card {
  display: flex;
  flex-direction: column;
}

.sanitary-product-card > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sanitary-product-card h2 {
  min-height: 82px;
}

.sanitary-product-card__dims {
  margin-top: auto;
}

.sanitary-product-card__price {
  width: fit-content;
  margin: 18px 0 0;
  padding: 10px 16px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(237, 28, 36, 0.18);
}

.sanitary-filter__actions button:first-child,
.range-filter__line {
  background: var(--red);
}

.range-filter__dot {
  box-shadow: inset 0 0 0 4px var(--red);
}

.sanitary-product-card.is-material-ready .tile-swatch {
  background-image: var(--product-material-photo);
}
/* Final sanitary screenshot match */
.product-page--sanitaire .product-hero {
  position: relative;
  overflow: hidden;
  background: url("assets/about-bathroom.jpeg") center / cover no-repeat !important;
}
.product-page--sanitaire .product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(5px);
}
.product-page--sanitaire .product-hero .container,
.product-page--sanitaire .product-hero h1 { position: relative; z-index: 1; }
.sanitary-products { background: linear-gradient(110deg, rgba(255,255,255,.94) 0 72%, rgba(17,17,17,.68) 72% 100%), url("assets/contact-background-final.jpeg") center / cover fixed no-repeat !important; }
.sanitary-products__layout { background: rgba(246,246,246,.9); }
.range-filter__line, .sanitary-filter__actions button:first-child { background: var(--red) !important; }
.range-filter__dot { box-shadow: inset 0 0 0 4px var(--red) !important; }
.sanitaire-card, .sanitary-product-card { display: flex; flex-direction: column; }
.sanitaire-card div, .sanitary-product-card > div { flex: 1; display: flex; flex-direction: column; }
.sanitaire-card p { flex: 1; }
.sanitaire-card a {
  width: fit-content !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 22px !important;
  padding: 0 22px !important;
  border: 2px solid var(--red) !important;
  background: var(--red) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}
.sanitaire-card a::after { display: none !important; }
.sanitary-product-card { min-height: 536px !important; background: #fff; box-shadow: 0 18px 34px rgba(0,0,0,.04); overflow: hidden; }
.sanitary-product-card img { height: 185px !important; object-fit: cover !important; object-position: center !important; background: #fff; }
.sanitary-product-card > div { padding: 20px 11px 16px !important; }
.sanitary-product-card h2 { min-height: 88px !important; margin-bottom: 28px !important; }
.sanitary-product-card__dims { margin-top: auto !important; }
.sanitary-product-card .tile-product__swatches { min-height: 42px; align-items: center; margin-top: 12px; gap: 9px; }
.sanitary-product-card .tile-swatch {
  width: 35px !important;
  height: 35px !important;
  border: 2px solid #d9d9d9 !important;
  border-radius: 50% !important;
  background-color: #fff !important;
  background-image: var(--product-material-photo) !important;
  background-size: 92px 62px !important;
  background-position: var(--material-position, center) !important;
  background-repeat: no-repeat !important;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.82), 0 4px 10px rgba(0,0,0,.16) !important;
}
.sanitary-product-card .tile-swatch:nth-child(1) { --material-position: 20% 50%; }
.sanitary-product-card .tile-swatch:nth-child(2) { --material-position: 38% 50%; }
.sanitary-product-card .tile-swatch:nth-child(3) { --material-position: 56% 50%; }
.sanitary-product-card .tile-swatch:nth-child(4) { --material-position: 74% 50%; }
.sanitary-product-card .tile-swatch:nth-child(5) { --material-position: 50% 28%; }
.sanitary-product-card .tile-swatch:nth-child(6) { --material-position: 50% 72%; }
.sanitary-product-card__price {
  width: calc(100% - 22px) !important;
  min-height: 41px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 18px 11px 0 0 !important;
  padding: 0 14px !important;
  border: 2px solid var(--red) !important;
  background: var(--red) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}
.sanitary-color-grid span { border: 1px solid #e5e5e5; }
/* Real product/catalog look for sanitary captures */
.sanitary-product-card img {
  object-fit: contain !important;
  object-position: center !important;
  background: #fff !important;
  padding: 14px !important;
}

.sanitary-product-card .tile-swatch,
.sanitary-color-grid span {
  background-image: var(--material-chip) !important;
  background-size: cover !important;
  background-position: center !important;
}

.sanitary-product-card .tile-swatch:nth-child(1),
.sanitary-color-grid span:nth-child(1) {
  --material-chip: linear-gradient(135deg, #ffffff 0%, #fafafa 45%, #e7e7e4 100%) !important;
}
.sanitary-product-card .tile-swatch:nth-child(2),
.sanitary-color-grid span:nth-child(2) {
  --material-chip: linear-gradient(135deg, #f8f8f6 0%, #eeeeec 52%, #d9dad8 100%) !important;
}
.sanitary-product-card .tile-swatch:nth-child(3),
.sanitary-color-grid span:nth-child(3) {
  --material-chip: linear-gradient(90deg, #f2f2f0 0%, #cfd2d4 46%, #ffffff 62%, #aeb1b4 100%) !important;
}
.sanitary-product-card .tile-swatch:nth-child(4),
.sanitary-color-grid span:nth-child(4) {
  --material-chip: linear-gradient(90deg, #1d1e20 0%, #4d4f51 46%, #888b8e 58%, #262729 100%) !important;
}
.sanitary-product-card .tile-swatch:nth-child(5),
.sanitary-color-grid span:nth-child(5) {
  --material-chip: linear-gradient(135deg, #dedbd3 0%, #c8c3ba 52%, #b6b0a6 100%) !important;
}
.sanitary-product-card .tile-swatch:nth-child(6),
.sanitary-color-grid span:nth-child(6) {
  --material-chip: linear-gradient(135deg, #82756d 0%, #645b55 52%, #4b423e 100%) !important;
}

.sanitary-product-card .tile-swatch {
  border: 2px solid #d4d4d4 !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65), 0 3px 8px rgba(0,0,0,.12) !important;
}
/* Keep sanitary prices on one line */
.sanitary-product-card__price,
.tile-product__price {
  width: fit-content !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  font-size: clamp(14px, 1.45vw, 18px) !important;
}

.sanitary-product-card > div {
  gap: 0 !important;
}

.sanitary-product-card {
  min-height: 600px !important;
}

.sanitary-product-card h2 {
  margin-bottom: 18px !important;
}

.sanitary-product-card .tile-product__swatches {
  margin-top: auto !important;
  margin-bottom: 12px !important;
}

.sanitary-product-card__price {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

.sanitary-product-card__whatsapp {
  width: calc(100% - 22px);
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 11px 0 0;
  padding: 0 14px;
  border: 2px solid #25d366;
  background: #25d366;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.sanitary-product-card__whatsapp:hover {
  background: #fff;
  color: #168d45;
  transform: translateY(-2px);
}

/* Final Robinetterie polish */
.sanitary-products-hero {
  overflow: hidden;
  border-bottom: 0 !important;
  background: #fff !important;
}

.sanitary-products-hero .container {
  min-height: 54px !important;
}

.sanitary-products-hero h1 {
  color: var(--red) !important;
  font-size: clamp(26px, 3.2vw, 34px) !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
}

.sanitary-products {
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.64)),
    url("assets/contact-background-final.jpeg") center / cover fixed no-repeat !important;
}

.sanitary-products__layout {
  background: rgba(8, 8, 8, 0.54) !important;
  backdrop-filter: blur(6px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28) !important;
}

.sanitary-products__intro p,
.sanitary-products__intro label {
  color: rgba(255, 255, 255, 0.86) !important;
}

.sanitary-product-card__price {
  width: 100% !important;
  min-height: 41px !important;
  box-sizing: border-box !important;
  margin: 0 0 9px !important;
  padding: 0 12px !important;
  font-size: clamp(14px, 1.25vw, 18px) !important;
}

.sanitary-product-card__whatsapp {
  width: 100% !important;
  min-height: 39px !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 10px !important;
  border-color: #1fbf62 !important;
  background: linear-gradient(180deg, #26d36d, #18ad55) !important;
  color: #fff !important;
  font-size: clamp(11px, 1vw, 13px) !important;
  letter-spacing: 0 !important;
  white-space: normal !important;
  box-shadow: 0 8px 18px rgba(24, 173, 85, 0.22) !important;
}

.sanitary-product-card__whatsapp:hover {
  background: #fff !important;
  color: #128c45 !important;
}

.product-page--robinetterie .product-hero {
  position: relative;
  background: url("assets/contact-background-final.jpeg") center / cover no-repeat !important;
}

.product-page--robinetterie {
  min-height: 650px;
  padding-bottom: 88px !important;
  background:
    linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.74)),
    url("assets/contact-background-final.jpeg") center / cover fixed no-repeat !important;
}

.product-page--robinetterie .product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: none !important;
}

.product-page--robinetterie .product-hero .container,
.product-page--robinetterie .product-hero span,
.product-page--robinetterie .product-hero h1,
.product-page--robinetterie .product-hero p {
  position: relative;
  z-index: 1;
}

.product-page--robinetterie .product-grid {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

.product-page--robinetterie .sanitaire-card {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28) !important;
}

.product-page--sanitaire-main {
  min-height: 650px;
  padding-bottom: 88px !important;
  background:
    linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.74)),
    url("assets/contact-background-final.jpeg") center / cover fixed no-repeat !important;
}

.product-page--sanitaire-main .product-hero {
  position: relative;
  background: url("assets/contact-background-final.jpeg") center / cover no-repeat !important;
}

.product-page--sanitaire-main .product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: none !important;
}

.product-page--sanitaire-main .product-hero .container,
.product-page--sanitaire-main .product-hero h1 {
  position: relative;
  z-index: 1;
}

.product-page--sanitaire-main .product-grid {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

.product-page--sanitaire-main .sanitaire-card {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28) !important;
}

.product-page--carrelage {
  min-height: 650px;
  padding-bottom: 88px !important;
  background:
    linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.74)),
    url("assets/contact-background-final.jpeg") center / cover fixed no-repeat !important;
}

.product-hero--carrelage {
  position: relative;
  background: url("assets/category-carrelage.jpeg") center 42% / cover no-repeat !important;
}

.product-hero--carrelage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72) !important;
}

.product-hero--carrelage .container,
.product-hero--carrelage h1 {
  position: relative;
  z-index: 1;
}

.product-hero--carrelage h1 {
  color: var(--red) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.product-grid--carrelage {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.carrelage-card {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28) !important;
}

/* Carrelage Mirage Ceramica material swatches */
.tile-product.is-material-ready .tile-swatch {
  background-image: var(--product-material-photo) !important;
  background-size: 120px 80px !important;
  background-position: var(--material-position, center) !important;
  background-repeat: no-repeat !important;
}
.tile-product .tile-swatch:nth-child(1) { --material-position: 20% 50%; }
.tile-product .tile-swatch:nth-child(2) { --material-position: 38% 50%; }
.tile-product .tile-swatch:nth-child(3) { --material-position: 56% 50%; }
.tile-product .tile-swatch:nth-child(4) { --material-position: 74% 50%; }
.tile-product .tile-swatch:nth-child(5) { --material-position: 50% 28%; }
.tile-product .tile-swatch:nth-child(6) { --material-position: 50% 72%; }

/* Carrelage product page: same color circles as Mirage reference */
.tile-product .tile-swatch {
  background-image: none !important;
  background-color: var(--swatch, #ddd) !important;
  background-size: auto !important;
  border: 2px solid #d8d8d8 !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), 0 3px 8px rgba(0,0,0,.12) !important;
}
.tile-product .tile-swatch::after { display: none !important; }
.tile-product:nth-child(1) .tile-swatch:nth-child(1) { --swatch:#b9b9b6 !important; }
.tile-product:nth-child(1) .tile-swatch:nth-child(2) { --swatch:#d5cdbc !important; }
.tile-product:nth-child(1) .tile-swatch:nth-child(3) { --swatch:#cfc7b8 !important; }
.tile-product:nth-child(1) .tile-swatch:nth-child(4) { --swatch:#a9a7a2 !important; }
.tile-product:nth-child(1) .tile-swatch:nth-child(5) { --swatch:#eeeeea !important; }
.tile-product:nth-child(2) .tile-swatch:nth-child(1) { --swatch:#50575b !important; }
.tile-product:nth-child(2) .tile-swatch:nth-child(2) { --swatch:#807b72 !important; }
.tile-product:nth-child(3) .tile-swatch:nth-child(1) { --swatch:#f4f4f2 !important; }
.tile-product:nth-child(3) .tile-swatch:nth-child(2) { --swatch:#e9e9e7 !important; }
.tile-product:nth-child(3) .tile-swatch:nth-child(3) { --swatch:#f8f8f6 !important; }

/* Match old Mirage carrelage product page */
.tiles-shop .tile-product__price {
  width: auto !important;
  max-width: none !important;
  margin: 56px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #6c7480 !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  box-shadow: none !important;
  white-space: nowrap !important;
}
.tiles-shop .tile-product .tile-swatch {
  width: 38px !important;
  height: 38px !important;
  border: 2px solid #d8d8d8 !important;
  border-radius: 50% !important;
  background-image: none !important;
  background-color: var(--swatch, #ddd) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75), 0 3px 8px rgba(0,0,0,.12) !important;
}
.tiles-shop .tile-product .tile-swatch::after { display: none !important; }

/* Force red framed prices on carrelage product pages */
.tiles-shop .tile-product__price,
.tile-product .tile-product__price,
p.tile-product__price {
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 41px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 28px 0 0 !important;
  padding: 0 16px !important;
  border: 2px solid var(--red) !important;
  background: var(--red) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
  box-shadow: 0 10px 20px rgba(237, 28, 36, 0.16) !important;
}

/* Final carrelage product pages: capture-style cards, red price, aligned text */
.tiles-shop .tile-product,
.products-grid .tile-product {
  display: flex !important;
  flex-direction: column !important;
  min-height: 505px !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.04) !important;
}

.tiles-shop .tile-product > img,
.products-grid .tile-product > img {
  width: 100% !important;
  height: 185px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff !important;
}

.tiles-shop .tile-product__body,
.products-grid .tile-product__body {
  min-height: 320px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 18px 18px 14px !important;
}

.tiles-shop .tile-product__brand,
.products-grid .tile-product__brand {
  margin: 0 0 14px !important;
  color: #9aa0a6 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

.tiles-shop .tile-product__ref,
.products-grid .tile-product__ref,
.tiles-shop .tile-product h2,
.products-grid .tile-product h2 {
  width: 100% !important;
  margin-left: 0 !important;
  text-align: left !important;
}

.tiles-shop .tile-product h2,
.products-grid .tile-product h2 {
  min-height: 42px !important;
  margin-bottom: 44px !important;
  color: #000 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.tiles-shop .tile-product__options,
.products-grid .tile-product__options {
  width: 100% !important;
  margin-top: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

.tiles-shop .tile-size,
.products-grid .tile-size {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 50px !important;
  height: 34px !important;
  padding: 0 10px !important;
  border: 1px solid #e6e6e6 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #6d7480 !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.tiles-shop .tile-product__swatches,
.products-grid .tile-product__swatches {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 4px !important;
  margin: 0 !important;
}

.tiles-shop .tile-product .tile-swatch,
.products-grid .tile-product .tile-swatch {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  border-radius: 50% !important;
  border: 2px solid #d8d8d8 !important;
  background-color: var(--swatch, #ddd) !important;
  background-image: radial-gradient(circle at 28% 22%, rgba(255,255,255,.42), transparent 32%), linear-gradient(135deg, rgba(255,255,255,.18), rgba(0,0,0,.10)) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.68), 0 3px 8px rgba(0,0,0,.12) !important;
}

.tiles-shop .tile-product .tile-swatch::after,
.products-grid .tile-product .tile-swatch::after {
  display: none !important;
}

.tiles-shop .tile-product__price,
.products-grid .tile-product__price,
p.tile-product__price {
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 41px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 24px 0 0 !important;
  padding: 0 16px !important;
  border: 2px solid #ed1c24 !important;
  background: #ed1c24 !important;
  color: #fff !important;
  font-size: clamp(15px, 1.35vw, 18px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
  box-shadow: 0 10px 20px rgba(237,28,36,.16) !important;
}

@media (max-width: 760px) {
  .tiles-shop .tile-product,
  .products-grid .tile-product { min-height: 480px !important; }
  .tiles-shop .tile-product > img,
  .products-grid .tile-product > img { height: 170px !important; }
  .tiles-shop .tile-product__price,
  .products-grid .tile-product__price { font-size: 15px !important; }
}

/* Final page title bands */
.product-hero,
.product-page--robinetterie .product-hero,
.product-page--sanitaire-main .product-hero,
.product-hero--carrelage,
.contact-banner,
.contact-banner--soft,
.about-banner {
  min-height: 220px !important;
  padding: 0 !important;
  margin-bottom: 34px !important;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    url("assets/contact-background-final.jpeg") center / cover no-repeat !important;
  border: 0 !important;
}

.product-hero::before,
.product-hero::after,
.product-page--robinetterie .product-hero::before,
.product-page--sanitaire-main .product-hero::before,
.product-hero--carrelage::before,
.contact-banner::after {
  display: none !important;
}

.product-hero .container,
.contact-banner__content,
.contact-banner--soft .contact-banner__content {
  min-height: 220px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-hero h1,
.product-hero--carrelage h1,
.product-page--robinetterie .product-hero h1,
.product-page--sanitaire-main .product-hero h1,
.contact-banner h1,
.contact-banner--soft h1,
.about-banner h1 {
  margin: 0 !important;
  color: var(--red) !important;
  font-size: clamp(42px, 5.4vw, 72px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
}

/* Mouse design and interaction animation */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }

  body a,
  body button,
  body input,
  body textarea,
  body select,
  .product-card,
  .category-card,
  .service-item,
  .store-card,
  .tile-product,
  .sanitary-product-card {
    cursor: none !important;
  }
}

.arena-cursor {
  --cursor-ring-x: 50vw;
  --cursor-ring-y: 50vh;
  --cursor-dot-x: 50vw;
  --cursor-dot-y: 50vh;
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.arena-cursor.is-visible {
  opacity: 1;
}

.arena-cursor__ring,
.arena-cursor__dot {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, width, height, background, border-color;
}

.arena-cursor__ring {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(237, 28, 36, 0.9);
  background: rgba(237, 28, 36, 0.08);
  box-shadow: 0 0 24px rgba(237, 28, 36, 0.22);
  transform: translate3d(calc(var(--cursor-ring-x) - 50%), calc(var(--cursor-ring-y) - 50%), 0);
  transition: width 0.22s ease, height 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.arena-cursor__dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(237, 28, 36, 0.75);
  transform: translate3d(calc(var(--cursor-dot-x) - 50%), calc(var(--cursor-dot-y) - 50%), 0);
}

.arena-cursor.is-active .arena-cursor__ring {
  width: 68px;
  height: 68px;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(237, 28, 36, 0.18);
  mix-blend-mode: difference;
}

.arena-cursor.is-active .arena-cursor__dot {
  background: var(--red);
}

.nav-links a,
.hero-video__button,
.product-card a,
.category-card a,
.store-card__route,
.contact-form button,
.tile-product__whatsapp,
.sanitary-product-card__whatsapp {
  position: relative;
  isolation: isolate;
}

.nav-links a::before,
.hero-video__button::before,
.product-card a::before,
.category-card a::before,
.store-card__route::before,
.contact-form button::before,
.tile-product__whatsapp::before,
.sanitary-product-card__whatsapp::before {
  content: "";
  position: absolute;
  inset: -7px -12px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(237, 28, 36, 0.14);
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.nav-links a:hover::before,
.hero-video__button:hover::before,
.product-card a:hover::before,
.category-card a:hover::before,
.store-card__route:hover::before,
.contact-form button:hover::before,
.tile-product__whatsapp:hover::before,
.sanitary-product-card__whatsapp:hover::before {
  opacity: 1;
  transform: scale(1);
}

.arena-motion-card {
  --mx: 50%;
  --my: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.arena-motion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(237, 28, 36, 0.22), transparent 34%),
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.28), transparent 18%);
  mix-blend-mode: multiply;
  transition: opacity 0.24s ease;
}

.arena-motion-card.is-motion-hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.24) !important;
}

.arena-motion-card.is-motion-hover::before {
  opacity: 1;
}

.arena-motion-card > * {
  position: relative;
  z-index: 3;
}

.service-item.arena-motion-card::before,
.tile-product.arena-motion-card::before,
.sanitary-product-card.arena-motion-card::before {
  mix-blend-mode: normal;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(237, 28, 36, 0.12), transparent 34%),
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.34), transparent 20%);
}

@media (prefers-reduced-motion: reduce) {
  .arena-cursor {
    display: none !important;
  }

  .arena-motion-card,
  .arena-motion-card.is-motion-hover {
    transform: none !important;
    transition: none !important;
  }
}

/* Last client polish */
.main-nav,
.main-nav__content {
  min-height: 86px !important;
}

.main-nav__content {
  gap: 14px !important;
}

.brand {
  min-width: 132px !important;
  flex: 0 0 132px !important;
}

.brand img {
  width: 108px !important;
  height: 108px !important;
  padding: 5px !important;
}

.nav-links {
  justify-content: flex-start !important;
  gap: 20px !important;
}

.nav-links a {
  font-size: 12px !important;
  font-weight: 900 !important;
}

.hero-video {
  justify-content: flex-start !important;
}

.hero-video__content {
  text-align: left !important;
  padding-left: clamp(24px, 4vw, 52px) !important;
  margin-left: 0 !important;
  transform: translateX(-22px) !important;
}

.hero-video h1 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 640px !important;
}

.hero-video h1 span {
  text-align: left !important;
}

.hero-video__text {
  margin-left: 0 !important;
}

@media (max-width: 1180px) {
  .hero-video__content {
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .hero-video__content {
    transform: none !important;
    padding-left: 0 !important;
  }
}

.tile-product__price,
.sanitary-product-card__price,
.tiles-shop .tile-product__price,
.products-grid .tile-product__price,
p.tile-product__price {
  width: auto !important;
  min-height: 0 !important;
  margin: 14px 0 8px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--red) !important;
  box-shadow: none !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
}

.tile-product__whatsapp,
.sanitary-product-card__whatsapp {
  min-height: 34px !important;
  padding: 0 10px !important;
  font-size: 12px !important;
}

.tiles-shop .tile-product,
.products-grid .tile-product {
  min-height: 440px !important;
}

.tiles-shop .tile-product > img,
.products-grid .tile-product > img,
.sanitary-product-card img {
  height: 165px !important;
}

.tiles-shop .tile-product__body,
.products-grid .tile-product__body {
  min-height: 250px !important;
  padding: 15px 16px 13px !important;
}

.tiles-shop .tile-product__brand,
.products-grid .tile-product__brand,
.sanitary-product-card__brand {
  margin-bottom: 10px !important;
  font-size: 11px !important;
}

.tiles-shop .tile-product h2,
.products-grid .tile-product h2,
.sanitary-product-card h2 {
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.tiles-shop .tile-product__options,
.products-grid .tile-product__options {
  margin-top: 12px !important;
  gap: 8px !important;
}

.sanitary-product-card {
  min-height: 480px !important;
}

.sanitary-product-card > div {
  padding: 16px 12px 13px !important;
}

.sanitary-products-hero h1 {
  font-size: 30px !important;
  font-weight: 900 !important;
}

/* Bring Media inspired motion */
.arena-mouse-glow {
  --glow-x: 50vw;
  --glow-y: 50vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  width: 420px;
  height: 420px;
  pointer-events: none;
  opacity: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(237, 28, 36, 0.20), rgba(200, 46, 180, 0.08) 38%, transparent 68%);
  filter: blur(18px);
  transform: translate3d(calc(var(--glow-x) - 50%), calc(var(--glow-y) - 50%), 0);
  transition: opacity 0.24s ease;
  mix-blend-mode: screen;
}

.arena-mouse-glow.is-visible {
  opacity: 1;
}

.hero-video {
  isolation: isolate;
  overflow: hidden;
}

.hero-video::before {
  content: "";
  position: absolute;
  inset: -16%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 28%, rgba(237, 28, 36, 0.24), transparent 24%),
    radial-gradient(circle at 72% 40%, rgba(180, 50, 210, 0.22), transparent 26%),
    radial-gradient(circle at 48% 82%, rgba(255, 255, 255, 0.10), transparent 28%);
  filter: blur(16px);
  opacity: 0.88;
  animation: bringAurora 14s ease-in-out infinite alternate;
}

.hero-video__media,
.hero-video__overlay,
.hero-video__content {
  position: relative;
}

.hero-video__media,
.hero-video__overlay {
  z-index: -1;
}

.hero-video__content {
  z-index: 1;
}

.hero-video h1 span,
.section-title span,
.services-heading h2 span {
  background: linear-gradient(92deg, #ed1c24, #ff4d8d, #b95cff, #ed1c24);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  animation: bringTextShine 5.5s ease-in-out infinite;
}

.hero-video h1 {
  animation: bringTitleFloat 7s ease-in-out infinite;
}

.hero-video__button,
.product-card a,
.category-card a,
.store-card__route,
.contact-form button,
.tile-product__whatsapp,
.sanitary-product-card__whatsapp {
  border-radius: 999px !important;
  overflow: hidden !important;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease !important;
}

.hero-video__button:hover,
.product-card a:hover,
.category-card a:hover,
.store-card__route:hover,
.contact-form button:hover,
.tile-product__whatsapp:hover,
.sanitary-product-card__whatsapp:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 18px 42px rgba(237, 28, 36, 0.28) !important;
}

.arena-motion-card {
  overflow: hidden;
}

.arena-motion-card::after {
  content: "";
  position: absolute;
  right: -26%;
  bottom: -32%;
  z-index: 2;
  width: 210px;
  height: 210px;
  pointer-events: none;
  border-radius: 46% 54% 58% 42%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(237, 28, 36, 0.30), rgba(188, 70, 210, 0.24));
  opacity: 0;
  transform: translate3d(18px, 18px, 0) rotate(0deg) scale(0.84);
  filter: blur(1px);
  transition: opacity 0.28s ease, transform 0.36s ease;
}

.arena-motion-card.is-motion-hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(-10deg) scale(1);
}

.category-card img,
.product-card img,
.store-card img,
.tile-product > img,
.sanitary-product-card img {
  transition: transform 0.7s ease, filter 0.45s ease !important;
}

.arena-motion-card.is-motion-hover img {
  transform: scale(1.055) !important;
  filter: saturate(1.12) contrast(1.05) !important;
}

.bring-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.72s ease var(--reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.2, 0.72, 0.18, 1) var(--reveal-delay, 0ms),
    filter 0.72s ease var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.bring-reveal.is-bring-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  transform: translateX(-50%) scale(0.4);
  box-shadow: 0 0 0 10px rgba(237, 28, 36, 0.12);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

@keyframes bringAurora {
  0% {
    transform: translate3d(-2%, -1%, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(3%, 2%, 0) rotate(5deg) scale(1.05);
  }
  100% {
    transform: translate3d(-1%, 4%, 0) rotate(-4deg) scale(1.08);
  }
}

@keyframes bringTextShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes bringTitleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video::before,
  .hero-video h1,
  .hero-video h1 span,
  .section-title span,
  .services-heading h2 span {
    animation: none !important;
  }

  .bring-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Restore accueil hero wording and centered menu */
.main-nav__content {
  position: relative !important;
}

.nav-links {
  justify-content: center !important;
  gap: 26px !important;
}

.hero-video__content {
  width: min(1120px, calc(100% - 32px)) !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding-left: 0 !important;
  text-align: left !important;
  transform: none !important;
}

.hero-video h1 {
  max-width: 720px !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(42px, 6vw, 76px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  text-shadow: 0 9px 28px rgba(0, 0, 0, 0.62) !important;
  opacity: 0;
  transform: translate3d(-34px, 22px, 0);
  animation: arenaHeroPhraseIn 0.95s cubic-bezier(0.2, 0.82, 0.2, 1) 0.32s forwards, arenaHeroPhraseFloat 6s ease-in-out 1.5s infinite !important;
}

.hero-video h1 span {
  display: block !important;
  margin-bottom: 14px !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: var(--red) !important;
  font-size: 0.52em !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: left !important;
  opacity: 0;
  transform: translate3d(-22px, 0, 0);
  animation: arenaHeroBrandIn 0.72s ease 0.05s forwards !important;
}

.hero-video h1::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 62%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.32) 45%, transparent 72%);
  transform: translateX(-130%);
  animation: arenaHeroShine 3.8s ease 1.15s infinite;
}

@media (max-width: 760px) {
  .hero-video h1 {
    font-size: 34px !important;
  }

  .nav-links {
    justify-content: center !important;
    gap: 14px !important;
  }
}

@keyframes arenaHeroBrandIn {
  from {
    opacity: 0;
    transform: translate3d(-22px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes arenaHeroPhraseIn {
  from {
    opacity: 0;
    transform: translate3d(-34px, 22px, 0);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes arenaHeroPhraseFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -7px, 0);
  }
}

@keyframes arenaHeroShine {
  0%,
  42% {
    transform: translateX(-130%);
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  76%,
  100% {
    transform: translateX(155%);
    opacity: 0;
  }
}

/* Keep accueil video phrase visible while animated */
.hero-video .hero-video__content h1,
.hero-video .hero-video__content h1.bring-reveal,
.hero-video .hero-video__content h1.is-bring-visible {
  position: relative !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  filter: none !important;
  transform: translate3d(0, 0, 0) !important;
  animation: arenaHeroPhraseFloat 6s ease-in-out infinite !important;
}

.hero-video .hero-video__content h1 span,
.hero-video .hero-video__content h1.bring-reveal span {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: var(--red) !important;
  animation: none !important;
}

.hero-video .hero-video__content h1::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 8px;
  width: 5px;
  height: calc(100% - 10px);
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 22px rgba(237, 28, 36, 0.42);
  animation: arenaHeroBarIn 0.8s ease both;
}

@keyframes arenaHeroBarIn {
  from {
    opacity: 0;
    transform: scaleY(0.2);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Exact accueil phrase placement under the logo */
.hero-video {
  position: relative !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.hero-video .hero-video__content {
  position: absolute !important;
  left: clamp(28px, 3.2vw, 54px) !important;
  top: clamp(145px, 22vh, 205px) !important;
  z-index: 3 !important;
  width: min(760px, calc(100% - 56px)) !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  transform: none !important;
}

.hero-video .hero-video__content h1,
.hero-video .hero-video__content h1.bring-reveal,
.hero-video .hero-video__content h1.is-bring-visible {
  display: block !important;
  width: min(760px, 100%) !important;
  max-width: 760px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: clamp(38px, 4.75vw, 60px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-transform: uppercase !important;
  visibility: visible !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.72) !important;
  animation: arenaHeroPhraseFloat 6s ease-in-out infinite !important;
}

.hero-video .hero-video__content h1 span,
.hero-video .hero-video__content h1.bring-reveal span {
  display: block !important;
  margin: 0 0 13px 0 !important;
  padding: 0 !important;
  transform: none !important;
  text-indent: 0 !important;
  color: var(--red) !important;
  font-size: clamp(24px, 3vw, 38px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-transform: uppercase !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  text-shadow: 0 7px 22px rgba(0, 0, 0, 0.7) !important;
  animation: none !important;
}

.hero-video .hero-video__content h1,
.hero-video .hero-video__content h1 span {
  text-align: left !important;
  transform-origin: left center !important;
}

.hero-video .hero-video__content h1::before {
  display: none !important;
}

@media (max-width: 760px) {
  .hero-video .hero-video__content {
    left: 20px !important;
    top: 130px !important;
    width: calc(100% - 40px) !important;
  }

  .hero-video .hero-video__content h1 {
    font-size: 34px !important;
  }

  .hero-video .hero-video__content h1 span {
    font-size: 22px !important;
  }
}
