:root {
  --bg: #f9f8f6;
  --white: #ffffff;
  --ink: #050505;
  --muted: #5f5f5f;
  --line: #dedbd6;
  --blue: #0788e8;
  --blue-dark: #006dbe;
  --green: #18d26b;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --sans: "Red Hat Display", Arial, sans-serif;
  --serif: "Trirong", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.35;
}

body.drawer-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue-dark);
  outline-offset: 2px;
}

.product-main-image img,
.catalog-card img,
.hero img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hero img {
  display: block;
  width: 100%;
}

.brand-rail img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}


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

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

button,
input {
  font: inherit;
}

.mobile-phone {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 53px;
  background: rgba(249, 248, 246, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  padding: 0 40px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 150px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.brand span span {
  color: var(--blue);
  font-weight: 700;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--blue);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a {
  line-height: 1;
}

.nav-cta,
.button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 18px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
}

.nav-cta {
  min-height: 23px;
  padding: 0 12px;
  border-radius: 4px;
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--blue-dark);
}

.phone-link {
  font-weight: 500;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
}

.icon-button,
.locale {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
}

.locale {
  width: auto;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
}

.icon-button svg,
.locale svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  background: var(--blue);
  color: var(--white);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
}

.cart-count[data-empty="true"] {
  display: none;
}

.mobile-only {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 53px);
  overflow: hidden;
}

.hero picture,
.hero img {
  width: 100%;
  height: calc(100vh - 53px);
  min-height: 680px;
}

.hero img {
  object-fit: cover;
  object-position: 38% center;
  filter: saturate(0.96) brightness(1.02);
}

.hero-panel {
  position: absolute;
  top: 14%;
  right: 5.6%;
  width: min(480px, 36vw);
  padding: 43px 48px 41px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 38px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: 48px;
}

.hero-panel p {
  margin: 24px auto 26px;
  max-width: 390px;
  font-size: 17px;
}

.button {
  text-align: center;
}

.button.small {
  min-height: 48px;
  margin-top: 18px;
  padding: 0 24px;
}

.section-heading {
  text-align: center;
  padding: 50px 20px 60px;
}

.section-heading p,
.trial-copy > p:first-child,
.appointment > div > p {
  margin: 0 0 11px;
  font-size: 16px;
  font-weight: 800;
}

.section-heading h2 {
  font-size: 35px;
}

.product-section {
  background: var(--bg);
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 0;
  overflow-x: auto;
  padding: 0 34px 104px;
  scrollbar-width: none;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.product-card {
  position: relative;
  min-width: 220px;
  padding: 0 22px;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 245px;
  object-fit: contain;
}

.product-card h3 {
  min-height: 54px;
  margin: 19px auto 6px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.12;
}

.product-card p {
  margin: 0;
  font-size: 20px;
}

.product-card .quote {
  font-weight: 700;
}

.product-card .quote a {
  color: var(--blue-dark);
  text-decoration: underline;
}

.quick-add {
  position: absolute;
  top: 3px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  min-width: 96px;
  height: 36px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.82);
  border: 0;
  border-radius: 2px;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.product-card:hover .quick-add,
.quick-add:focus-visible {
  opacity: 1;
  transform: translate(-50%, 6px);
}

.trial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 530px;
  background: var(--bg);
}

.trial-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 70px;
  text-align: center;
}

.trial-copy h2 {
  max-width: 560px;
  font-size: 43px;
}

.trial-copy p:not(:first-child) {
  max-width: 650px;
  margin: 19px auto 35px;
  font-size: 20px;
}

.trial-band > img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
}

.feature-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.feature-product > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-product article {
  padding: 48px 40px;
  background: var(--white);
}

.feature-product h3 {
  margin: 0 0 35px;
  font-size: 23px;
}

.feature-product article img {
  width: min(420px, 80%);
  height: 310px;
  margin: 0 auto;
  object-fit: contain;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 390px;
  margin-top: 18px;
}

.category-tile {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 28px;
  color: var(--white);
  background: #34302b;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
}

.category-tile span {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 27px;
  text-align: center;
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 96px 40px 60px;
}

.faq-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-image img {
  width: min(620px, 90%);
  height: auto;
}

.faq-list h2 {
  margin-bottom: 31px;
  font-size: 42px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "v";
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.15s ease;
}

details[open] summary::after {
  transform: rotate(180deg);
}

details p {
  margin: 0 0 22px;
  max-width: 640px;
  font-size: 18px;
}

.reviews {
  padding: 8px 40px 70px;
  text-align: center;
}

.reviews h2 {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 32px;
}

.review-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.review-rail article {
  min-height: 215px;
  padding: 24px 25px;
  background: #fbfbfb;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.035);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: #7c97a5;
  border-radius: 50%;
  font-weight: 700;
}

.stars {
  color: #f4c321;
  letter-spacing: 2px;
}

.trustpilot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 68px;
  font-size: 30px;
}

.trust-star {
  color: #00b67a;
  font-size: 48px;
}

.blue-stars {
  color: #0884e4;
  letter-spacing: 3px;
}

.appointment {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  padding: 74px 40px 85px;
  background: var(--white);
}

.appointment h2 {
  max-width: 500px;
  font-size: 43px;
}

.appointment > div > p:last-child {
  max-width: 480px;
  font-size: 19px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.lead-form label:nth-child(3),
.lead-form button,
.lead-form .form-message {
  grid-column: span 2;
}

.lead-form textarea {
  min-height: 96px;
  padding: 12px 17px;
  resize: vertical;
}

.lead-form .full-width {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form textarea,
.newsletter input,
.drawer-input {
  width: 100%;
  min-height: 51px;
  padding: 0 17px;
  background: #f2f0ed;
  border: 1px solid transparent;
  border-radius: 0;
  outline: none;
}

.lead-form input:focus,
.newsletter input:focus,
.drawer-input:focus {
  border-color: var(--blue);
  background: var(--white);
}

.site-footer {
  padding: 54px 40px 27px;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr 1.35fr;
  gap: 62px;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 9px;
  font-size: 19px;
}

.footer-grid > div > p:first-child {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 128px;
  margin-bottom: 22px;
}

.newsletter button {
  color: var(--white);
  background: var(--blue);
  border: 0;
  cursor: pointer;
}

.company {
  margin: 0;
  font-size: 15px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 72px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #6b6863;
  font-size: 14px;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  color: var(--white);
  background: var(--green);
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.drawer,
.drawer-backdrop {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.drawer {
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(420px, 88vw);
  padding: 34px 28px;
  background: var(--bg);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.14);
  transform: translateX(100%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.drawer-backdrop {
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.28);
  transition: opacity 0.22s ease;
}

body.drawer-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.drawer h2 {
  font-size: 34px;
}

.drawer a {
  font-size: 18px;
  font-weight: 700;
}

.drawer-close {
  align-self: flex-end;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 0;
  font-size: 33px;
  line-height: 1;
  cursor: pointer;
}

.cart-items {
  min-height: 120px;
  padding: 18px 0;
}

.cart-items p {
  margin: 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line-image {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #f3f0ea;
}

.cart-line-image--empty {
  display: block;
}

.cart-line-variant {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.cart-line-meta {
  display: grid;
  gap: 6px;
  margin-top: 6px;
  font-size: 14px;
}

.cart-qty input {
  width: 64px;
  min-height: 34px;
  margin-left: 6px;
}

.cart-remove {
  margin-top: 6px;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.cart-totals {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.cart-totals p {
  display: flex;
  justify-content: space-between;
  margin: 0 0 6px;
}

.cart-checkout-note {
  font-size: 13px;
  color: var(--muted);
}

.delivery-choice {
  display: grid;
  gap: 8px;
  border: 0;
  padding: 0;
}

.delivery-choice label {
  font-weight: 500;
}

.cart-checkout {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.cart-checkout label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.cart-checkout input {
  width: 100%;
  min-height: 45px;
  padding: 0 13px;
  border: 1px solid var(--line);
}

.form-message,
[data-checkout-message] {
  min-height: 18px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .header-inner {
    padding: 0 22px;
    gap: 18px;
  }

  .desktop-nav {
    gap: 16px;
    font-size: 13px;
  }

  .hero-panel {
    right: 4%;
    width: 430px;
  }

  .review-rail {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .mobile-phone {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    gap: 7px;
    color: var(--white);
    background: #292929;
    font-size: 14px;
  }

  .mobile-phone svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .site-header {
    top: 34px;
    height: 45px;
  }

  .header-inner {
    grid-template-columns: 28px 28px 1fr auto;
    padding: 0 15px;
    gap: 12px;
  }

  .brand {
    justify-self: center;
    min-width: 0;
    font-size: 20px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .header-actions {
    gap: 16px;
  }

  .hero {
    min-height: calc(100svh - 79px);
  }

  .hero picture,
  .hero img {
    height: calc(100svh - 79px);
    min-height: 670px;
  }

  .hero img {
    object-position: 47% center;
  }

  .hero-panel {
    top: auto;
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    padding: 26px 12px 14px;
    border-radius: 28px;
  }

  h1 {
    font-size: 37px;
  }

  .hero-panel p {
    margin: 18px auto 22px;
    font-size: 17px;
    line-height: 1.2;
  }

  .button.primary {
    min-height: 47px;
    padding: 0 18px;
    font-size: 18px;
  }

  .section-heading {
    padding: 37px 20px 38px;
  }

  .section-heading h2 {
    font-size: 29px;
  }

  .product-rail {
    grid-auto-columns: 49%;
    grid-template-columns: none;
    padding: 0 0 76px;
  }

  .product-card {
    min-width: 0;
    padding: 0 12px;
  }

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

  .product-card h3 {
    margin-top: 18px;
    font-size: 20px;
  }

  .quick-add {
    opacity: 0;
  }

  .trial-band,
  .feature-product,
  .faq-section,
  .appointment,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trial-copy {
    order: 2;
    padding: 47px 24px 52px;
  }

  .trial-copy h2,
  .appointment h2,
  .faq-list h2 {
    font-size: 34px;
  }

  .trial-band > img {
    order: 1;
    min-height: 360px;
  }

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

  .feature-product > img {
    height: 340px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .category-tile {
    min-height: 245px;
  }

  .faq-section {
    gap: 28px;
    padding: 54px 20px 44px;
  }

  .faq-image {
    order: 2;
  }

  .faq-list {
    order: 1;
  }

  summary {
    min-height: 58px;
    gap: 15px;
  }

  .reviews {
    padding: 12px 16px 52px;
  }

  .review-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 79%;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .review-rail::-webkit-scrollbar {
    display: none;
  }

  .trustpilot {
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 36px;
    font-size: 25px;
  }

  .appointment {
    gap: 28px;
    padding: 50px 20px 56px;
  }

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

  .lead-form label:nth-child(3),
  .lead-form button,
  .lead-form .form-message {
    grid-column: auto;
  }

  .site-footer {
    padding: 42px 28px 24px;
  }

  .footer-grid {
    gap: 30px;
  }

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

  .newsletter button {
    min-height: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
  }

  .whatsapp {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 430px) {
  .header-inner {
    grid-template-columns: 26px 26px 1fr 62px;
  }

  .brand {
    font-size: 19px;
    gap: 5px;
  }

  .header-actions {
    gap: 13px;
  }

  h1 {
    font-size: 36px;
  }

  .product-card h3,
  .product-card p {
    font-size: 19px;
  }
}
