:root {
  --container: 1200px;
  --text: #1b1a17;
  --muted: #68625a;
  --soft: #f7f5f0;
  --line: #e7e1d7;
  --green: #5f8c70;
  --dark: #11100d;
  --warm: #c8a77a;
  --shadow: 0 16px 42px rgba(43, 34, 21, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fdfcf9;
  font-family: Arial, Helvetica, sans-serif;
}

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

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

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

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

.narrow {
  width: min(1000px, calc(100% - 48px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 68px;
  background: #fff;
  border-bottom: 1px solid rgba(231, 225, 215, 0.9);
  box-shadow: 0 6px 24px rgba(42, 35, 24, 0.04);
}

.nav-wrap {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  order: 1;
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: #14120f;
}

.mobile-nav-toggle {
  order: 4;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: #14120f;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-nav-toggle::before {
  content: "";
  width: 16px;
  height: 12px;
  background:
    linear-gradient(#14120f, #14120f) left top / 100% 2px no-repeat,
    linear-gradient(#14120f, #14120f) left center / 100% 2px no-repeat,
    linear-gradient(#14120f, #14120f) left bottom / 100% 2px no-repeat;
}

.site-header.mobile-nav-open .mobile-nav-toggle::before {
  height: 16px;
  background:
    linear-gradient(#14120f, #14120f) center / 100% 2px no-repeat,
    linear-gradient(#14120f, #14120f) center / 100% 2px no-repeat;
  transform: rotate(45deg);
}

.site-header.mobile-nav-open .mobile-nav-toggle::after {
  content: "";
  width: 16px;
  height: 2px;
  margin-left: -24px;
  background: #14120f;
  transform: rotate(-45deg);
}

.main-nav {
  order: 2;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #2a2722;
}

.main-nav a {
  position: relative;
  padding: 27px 0 25px;
}

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

.main-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--warm);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover::before {
  transform: scaleX(1);
}

.nav-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #222;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 210px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(43, 34, 21, 0.12);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  white-space: nowrap;
}

.dropdown-menu a::before {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--soft);
}

.search-btn {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.search-btn::before {
  content: "";
  position: absolute;
  inset: 3px 5px 5px 3px;
  border: 2px solid #111;
  border-radius: 50%;
}

.search-btn::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 3px;
  width: 7px;
  height: 2px;
  background: #111;
  transform: rotate(45deg);
  transform-origin: center;
}

.language-switcher {
  order: 3;
  position: relative;
  flex: 0 0 auto;
  margin-left: 0;
}

.gtranslate-language-switcher {
  min-width: 126px;
}

.language-select {
  min-width: 168px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 7px 32px 7px 10px;
  background-color: #fff;
  color: #111;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.google-translate-host {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

body {
  top: 0 !important;
}

iframe.skiptranslate,
.goog-te-banner-frame {
  display: none !important;
}

.gtranslate_wrapper {
  min-height: 68px;
  display: flex;
  align-items: center;
}

.gtranslate_wrapper .gt_switcher {
  width: 100%;
  font: inherit;
}

.gtranslate_wrapper .gt_switcher_wrapper {
  position: static !important;
  z-index: auto !important;
}

.gtranslate_wrapper .gt_selected {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
}

.gtranslate_wrapper .gt_selected a {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: #111;
  font-size: 12px;
  font-weight: 800;
}

.gtranslate_wrapper .gt_option {
  border: 1px solid var(--line);
  border-top: 0;
  background: #fff;
  box-shadow: 0 12px 26px rgba(43, 34, 21, 0.12);
}

.gtranslate_wrapper .gt_option a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: #222;
  font-size: 12px;
  font-weight: 700;
}

.gtranslate_wrapper .gt_option a:hover {
  background: var(--soft);
}

.gt_selector,
.gtranslate_wrapper select {
  max-width: 160px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 7px 26px 7px 8px;
  background-color: #fff;
  color: #111;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.gtranslate_wrapper a {
  padding: 0;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 86px 18px 24px;
}

.search-modal.open {
  display: flex;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 15, 0.56);
}

.search-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(720px, calc(100vh - 112px));
  overflow: auto;
  padding: 28px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.search-dialog h2 {
  margin: 0 38px 18px 0;
  text-align: left;
  font-size: 24px;
}

.search-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border: 0;
  background: #f4f0e8;
  cursor: pointer;
}

.search-close::before,
.search-close::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 13px;
  width: 17px;
  height: 2px;
  background: #171511;
}

.search-close::before {
  transform: rotate(45deg);
}

.search-close::after {
  transform: rotate(-45deg);
}

.site-search-form {
  margin: 0 0 18px;
}

.search-field {
  display: block;
}

.search-field span {
  display: block;
  margin-bottom: 7px;
  color: #61584c;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.search-field input:focus {
  border-color: #8c7a62;
  box-shadow: 0 0 0 3px rgba(140, 122, 98, 0.14);
}

.search-results {
  display: grid;
  gap: 10px;
}

.search-result {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fdfbf7;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.search-result:hover {
  border-color: #b7a98f;
  background: #fff;
}

.search-result strong {
  color: #191612;
  font-size: 14px;
}

.search-result span,
.search-empty {
  margin: 0;
  color: #6a6258;
  font-size: 12px;
  line-height: 1.55;
}

.hero {
  min-height: 540px;
  background-color: #191713;
  background-image: url("../images/home-hero.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero {
  min-height: 270px;
  background-color: #191713;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-hero {
  background-image: url("../images/about-hero.webp");
}

.products-hero {
  background-image: url("../images/products-hero.webp");
}

.velvet-hero {
  background-image: url("../images/products-velvet.webp");
  background-position: center 42%;
}

.hotel-hero {
  background-image: url("../images/products-hotel.webp");
  background-position: center;
}

.outdoor-hero {
  background-image: url("../images/products-outdoor.webp");
  background-position: center;
}

.shower-hero {
  background-image: url("../images/products-shower.webp");
  background-position: center;
}

.page-hero-overlay {
  min-height: 270px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, rgba(12, 11, 9, 0.68), rgba(12, 11, 9, 0.34), rgba(12, 11, 9, 0.62));
}

.page-hero h1 {
  margin: 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.hero-overlay {
  min-height: 540px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.58), rgba(9, 8, 7, 0.34) 48%, rgba(9, 8, 7, 0.56)),
    rgba(0, 0, 0, 0.12);
}

.hero-content {
  text-align: center;
  color: #fff;
  padding-top: 18px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: #f2dcb8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0 auto 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 700;
}

.hero p {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-proof-band {
  background: #15130f;
  color: #fff;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-proof-grid div {
  min-height: 106px;
  padding: 24px 20px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof-grid strong,
.hero-proof-grid span {
  display: block;
}

.hero-proof-grid strong {
  margin-bottom: 8px;
  color: #f2dcb8;
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-proof-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 24px;
  border: 1px solid #111;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.13);
}

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

.btn-light {
  color: var(--dark);
  background: #fff;
  border-color: #fff;
}

.btn-outline {
  background: #fff;
  border-color: #b9aa94;
  color: #1b1a17;
}

.pill {
  min-width: 94px;
  min-height: 28px;
  border-radius: 999px;
}

.section {
  padding: 62px 0 66px;
}

.section-soft {
  background: var(--soft);
}

h2 {
  margin: 0 0 34px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 700;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto -4px;
}

.partner-card {
  min-height: 190px;
  padding: 28px 26px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(231, 225, 215, 0.9);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.round-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: #edf5ee;
  border: 2px solid #d4e8d8;
  position: relative;
}

.round-icon::before,
.line-icon::before,
.flat-icon::before {
  content: "";
  position: absolute;
  border: 3px solid var(--green);
}

.icon-store::before {
  width: 22px;
  height: 16px;
  left: 14px;
  top: 21px;
  border-top: 0;
}

.icon-store::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 14px;
  width: 26px;
  height: 10px;
  border: 3px solid var(--green);
  border-radius: 6px 6px 0 0;
}

.icon-project::before {
  width: 24px;
  height: 24px;
  left: 13px;
  top: 16px;
}

.icon-project::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 4px;
  height: 16px;
  background: var(--green);
  box-shadow: 10px 0 0 var(--green);
}

.icon-truck::before {
  width: 25px;
  height: 16px;
  left: 10px;
  top: 21px;
}

.icon-truck::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 36px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 18px 0 0 var(--green);
}

.partner-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.factory-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.support-panel,
.stats-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(231, 225, 215, 0.9);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.support-panel {
  padding: 24px 28px 20px;
}

.support-panel article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  min-height: 93px;
}

.line-icon {
  display: block;
  width: 44px;
  height: 44px;
  position: relative;
}

.icon-curtain::before {
  inset: 6px 8px 7px;
  border-top: 4px solid var(--green);
  border-left-width: 2px;
  border-right-width: 2px;
}

.icon-gear::before {
  width: 24px;
  height: 24px;
  left: 8px;
  top: 8px;
  border-radius: 50%;
}

.icon-doc::before {
  width: 23px;
  height: 29px;
  left: 9px;
  top: 6px;
}

.support-panel h3 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 800;
}

.support-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.cert-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.cert-row span {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9eadf;
  border-radius: 3px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}

.stats-panel img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e5e5e5;
}

.stats-grid div {
  min-height: 96px;
  padding: 22px 12px 10px;
  text-align: center;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.stats-grid div:nth-child(3n) {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #154f3c;
  font-size: 14px;
  font-weight: 900;
}

.stats-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 38px;
}

.category-card {
  position: relative;
  min-height: 450px;
  padding: 0 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background-color: #191713;
  background-image: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.68)), url("../images/curtain-categories.webp");
  background-repeat: no-repeat;
  background-size: 300% 200%, 300% 200%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(43, 34, 21, 0.11);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(43, 34, 21, 0.16);
}

.crop-1 { background-position: center, left top; }
.crop-2 { background-position: center, center top; }
.crop-3 { background-position: center, right top; }
.crop-4 { background-position: center, left bottom; }
.crop-5 { background-position: center, center bottom; }
.crop-6 { background-position: center, right bottom; }

.category-card span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 800;
}

.category-card small {
  margin-top: 10px;
  font-size: 9px;
  font-weight: 900;
}

.sample-cta {
  padding: 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(37, 35, 29, 0.72), rgba(37, 35, 29, 0.42)), url("../images/sample-banner.webp") center / cover no-repeat;
}

.cta-row {
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-row h2 {
  margin: 0;
  text-align: left;
  font-size: 29px;
  max-width: 650px;
}

.section-intro {
  max-width: 760px;
  margin: -18px auto 32px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  line-height: 1.65;
}

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

.custom-grid article {
  min-height: 116px;
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  border: 1px solid rgba(231, 225, 215, 0.95);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(43, 34, 21, 0.05);
}

.flat-icon {
  width: 74px;
  height: 74px;
  position: relative;
}

.flat-icon::before {
  border-color: #050505;
}

.layers::before {
  width: 28px;
  height: 22px;
  left: 22px;
  top: 25px;
  transform: skewY(-18deg);
}

.ruler::before {
  width: 30px;
  height: 12px;
  left: 21px;
  top: 30px;
  transform: rotate(-24deg);
}

.lines::before {
  width: 28px;
  height: 0;
  left: 22px;
  top: 28px;
  border-width: 3px 0 0;
  box-shadow: 0 11px 0 #050505, 0 22px 0 #050505;
}

.flame::before {
  width: 18px;
  height: 28px;
  left: 27px;
  top: 22px;
  border-radius: 60% 40% 60% 40%;
  transform: rotate(32deg);
}

.tag::before {
  width: 28px;
  height: 22px;
  left: 22px;
  top: 25px;
  transform: rotate(45deg);
}

.swatch::before {
  width: 30px;
  height: 28px;
  left: 22px;
  top: 24px;
  border-color: #aaa;
}

.custom-grid h3 {
  margin: 0 0 5px;
  text-align: left;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.custom-grid p {
  margin: 0;
  padding-right: 16px;
  color: var(--muted);
  text-align: left;
  font-size: 12px;
  line-height: 1.45;
}

.sub-title {
  margin-top: 40px;
}

.details-carousel {
  position: relative;
}

.carousel-window {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.32s ease;
}

.carousel-slide {
  min-width: 100%;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.detail-thumb {
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-size: 400% 100%;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(43, 34, 21, 0.1);
}

.detail-1,
.detail-2,
.detail-3,
.detail-4 {
  background-image: url("../images/custom-details-sewing.webp");
}

.pack-1,
.pack-2,
.pack-3,
.pack-4 {
  background-image: url("../images/custom-details-packaging.webp");
}

.detail-1 { background-position: left center; }
.detail-2 { background-position: 33.333% center; }
.detail-3 { background-position: 66.666% center; }
.detail-4 { background-position: right center; }
.pack-1 { background-position: left center; }
.pack-2 { background-position: 33.333% center; }
.pack-3 { background-position: 66.666% center; }
.pack-4 { background-position: right center; }

.carousel-arrow {
  position: absolute;
  top: calc(50% - 18px);
  z-index: 2;
  width: 36px;
  height: 54px;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.carousel-arrow::before {
  content: "";
  position: absolute;
  top: 17px;
  width: 18px;
  height: 18px;
  border-top: 4px solid rgba(255, 255, 255, 0.78);
  border-left: 4px solid rgba(255, 255, 255, 0.78);
}

.carousel-prev {
  left: -4px;
}

.carousel-next {
  right: -4px;
}

.carousel-prev::before {
  left: 13px;
  transform: rotate(-45deg);
}

.carousel-next::before {
  right: 13px;
  transform: rotate(135deg);
}

.slider-dots {
  margin: 22px auto 30px;
  text-align: center;
}

.slider-dots button {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 4px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d1d1d1;
  cursor: pointer;
}

.slider-dots button.active {
  background: #111;
}

.process {
  padding-top: 18px;
}

.process h2,
.faq-section h2 {
  text-align: left;
}

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

.process-card {
  min-height: 154px;
  padding: 28px 26px;
  color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)), url("../images/process-bg.webp");
  background-repeat: no-repeat;
  background-size: 300% 100%, 300% 100%;
  border-radius: 4px;
  overflow: hidden;
}

.process-1 { background-position: center, left center; }
.process-2 { background-position: center, center center; }
.process-3 { background-position: center, right center; }

.process-card h3 {
  margin: 0 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.15;
}

.process-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.faq-section {
  background: #f6f6f6;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 485px;
  gap: 68px;
  align-items: start;
}

.faq-list {
  padding-top: 34px;
}

details {
  margin-bottom: 8px;
  border: 1px solid rgba(231, 225, 215, 0.95);
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

summary {
  min-height: 48px;
  padding: 17px 42px 14px 22px;
  list-style: none;
  position: relative;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

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

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 14px;
  color: #6b6b6b;
  font-size: 16px;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.quote-btn {
  margin-top: 34px;
}

.faq-image {
  width: 100%;
  height: 475px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.about-intro {
  background: #fff;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 105px;
  align-items: center;
}

.about-copy h2 {
  margin: 0;
  max-width: 420px;
  text-align: left;
  font-size: 28px;
}

.title-line {
  display: block;
  width: 235px;
  height: 1px;
  margin: 26px 0 32px;
  background: #7c756b;
}

.about-copy p,
.story-grid p,
.inside-grid p,
.support-custom p,
.closing-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.about-split img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section-heading-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.section-heading-line::before,
.section-heading-line::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
  align-items: center;
}

.story-grid img {
  width: 100%;
  height: 345px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.support-list {
  padding-left: 50px;
}

.support-list p {
  margin-top: 0;
}

.support-list ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.85;
}

.manufacture-section {
  background: #fff;
}

.about-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 18px;
  margin-bottom: 28px;
}

.about-product {
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px;
  color: #fff;
  background-color: #191713;
  background-image: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.58)), url("../images/curtain-categories.webp");
  background-repeat: no-repeat;
  background-size: 300% 200%, 300% 200%;
  box-shadow: 0 12px 26px rgba(43, 34, 21, 0.1);
}

.about-product span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 800;
}

.product-1 { background-position: center, left top; }
.product-2 { background-position: center, center top; }
.product-3 { background-position: center, center bottom; }
.product-4 { background-position: center, left bottom; }
.product-5 { background-position: center, right top; }
.product-6 { background-position: center, right bottom; }

.inside-section {
  padding-top: 42px;
}

.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.inside-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.profile-section {
  background: #fff;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 12px;
}

.profile-table th,
.profile-table td {
  padding: 16px 18px;
  border: 1px solid #dedbd5;
  text-align: left;
}

.profile-table th {
  color: #111;
  background: #faf8f3;
  font-weight: 900;
}

.profile-table td:first-child {
  width: 32%;
  font-weight: 800;
}

.cert-section {
  background: #fdfcf9;
  padding-top: 24px;
}

.cert-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 28px;
}

.cert-badges div {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe9dd;
  border-radius: 50%;
  color: #244f38;
  background: #fff;
  box-shadow: 0 10px 24px rgba(43, 34, 21, 0.06);
}

.cert-badges strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.cert-badges span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.support-custom {
  padding-top: 20px;
  text-align: center;
}

.support-custom p {
  max-width: 920px;
  margin: -12px auto 24px;
}

.support-actions {
  align-items: center;
}

.closing-note {
  margin: 36px 0 20px;
}

.product-intro {
  background: #fff;
}

.product-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.buyer-path-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 3px solid #15130f;
  color: #3c3832;
  background: #f6f2eb;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.product-catalog {
  padding-top: 32px;
  background: #fdfcf9;
}

.product-block {
  margin-top: 42px;
}

.product-block h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.product-block-intro {
  width: min(760px, 100%);
  margin: -6px 0 20px;
  color: #5f5a52;
  font-size: 14px;
  line-height: 1.7;
}

.buyer-faq {
  background: #fff;
}

.buyer-faq h2 {
  margin: 0 0 24px;
  text-align: left;
}

.buyer-faq .faq-list {
  padding-top: 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.catalog-grid article,
.outdoor-grid article {
  text-align: center;
}

.catalog-thumb {
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 24px rgba(43, 34, 21, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.catalog-grid article,
.outdoor-grid article {
  transition: transform 0.22s ease;
}

.catalog-grid article:hover .catalog-thumb,
.outdoor-grid article:hover .catalog-thumb {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 20px 42px rgba(43, 34, 21, 0.2);
  filter: saturate(1.04);
}

.catalog-grid p {
  min-height: 34px;
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: var(--text);
}

.thumb-blackout-1,
.thumb-blackout-2,
.thumb-blackout-3,
.thumb-blackout-4 { background-image: url("../images/products-blackout.webp"); background-size: 400% 100%; }
.thumb-blackout-1 { background-position: left center; }
.thumb-blackout-2 { background-position: 33.333% center; }
.thumb-blackout-3 { background-position: 66.666% center; }
.thumb-blackout-4 { background-position: right center; }
.thumb-sheer-1,
.thumb-sheer-2,
.thumb-sheer-3,
.thumb-sheer-4 { background-image: url("../images/products-sheer.webp"); background-size: 400% 100%; }
.thumb-sheer-1 { background-position: left center; }
.thumb-sheer-2 { background-position: 33.333% center; }
.thumb-sheer-3 { background-position: 66.666% center; }
.thumb-sheer-4 { background-position: right center; }
.thumb-linen-1,
.thumb-linen-2,
.thumb-linen-3,
.thumb-linen-4 { background-image: url("../images/products-linen.webp"); background-size: 400% 100%; }
.thumb-linen-1 { background-position: left center; }
.thumb-linen-2 { background-position: 33.333% center; }
.thumb-linen-3 { background-position: 66.666% center; }
.thumb-linen-4 { background-position: right center; }
.thumb-velvet-1,
.thumb-velvet-2,
.thumb-velvet-3,
.thumb-velvet-4 { background-image: url("../images/products-velvet.webp"); background-size: 400% 100%; }
.thumb-velvet-1 { background-position: left center; }
.thumb-velvet-2 { background-position: 33.333% center; }
.thumb-velvet-3 { background-position: 66.666% center; }
.thumb-velvet-4 { background-position: right center; }
.thumb-hotel-1,
.thumb-hotel-2,
.thumb-hotel-3,
.thumb-hotel-4 { background-image: url("../images/products-hotel.webp"); background-size: 400% 100%; }
.thumb-hotel-1 { background-position: left center; }
.thumb-hotel-2 { background-position: 33.333% center; }
.thumb-hotel-3 { background-position: 66.666% center; }
.thumb-hotel-4 { background-position: right center; }
.thumb-shower-1,
.thumb-shower-2,
.thumb-shower-3,
.thumb-shower-4 { background-image: url("../images/products-shower.webp"); background-size: 400% 100%; }
.thumb-shower-1 { background-position: left center; }
.thumb-shower-2 { background-position: 33.333% center; }
.thumb-shower-3 { background-position: 66.666% center; }
.thumb-shower-4 { background-position: right center; }

.outdoor-block {
  margin-bottom: 10px;
}

.outdoor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 20px;
}

.outdoor-grid h4 {
  margin: 0 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.outdoor-grid p {
  max-width: 260px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.thumb-outdoor-1,
.thumb-outdoor-2,
.thumb-outdoor-3 { background-image: url("../images/products-outdoor.webp"); background-size: 300% 100%; }
.thumb-outdoor-1 { background-position: left center; }
.thumb-outdoor-2 { background-position: center center; }
.thumb-outdoor-3 { background-position: right center; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.solution-thumb {
  aspect-ratio: 1 / 1;
  background-image: url("../images/products-solutions.webp");
  background-repeat: no-repeat;
  background-size: 400% 100%;
  box-shadow: 0 10px 24px rgba(43, 34, 21, 0.08);
}

.solution-1 { background-position: left center; }
.solution-2 { background-position: 33.333% center; }
.solution-3 { background-position: 66.666% center; }
.solution-4 { background-position: right center; }

.why-products {
  background: #fff;
}

.why-products h2 {
  text-align: left;
}

.why-products ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.product-contact {
  padding: 72px 0;
  background: linear-gradient(90deg, rgba(250, 248, 241, 0.9), rgba(250, 248, 241, 0.78)), url("../images/products-contact-bg.webp") center / cover no-repeat;
}

.contact-page {
  min-height: 560px;
  display: flex;
  align-items: center;
}

.guide-hero {
  min-height: 320px;
}

.heading-guide-hero {
  background-image: url("../images/guide-heading-styles.webp");
}

.oem-guide-hero {
  background-image: url("../images/guide-oem-support.webp");
}

.sample-guide-hero {
  background-image: url("../images/guide-sample-support.webp");
}

.guide-article {
  background: #fff;
}

.guide-article .container.narrow {
  max-width: 980px;
}

.guide-article h2 {
  text-align: left;
}

.guide-article h3 {
  margin: 28px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.guide-article p,
.guide-article li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.guide-visual {
  min-height: 310px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.guide-img-heading { background-image: url("../images/guide-heading-styles.webp"); }
.guide-img-oem { background-image: url("../images/guide-oem-support.webp"); }
.guide-img-sample { background-image: url("../images/guide-sample-support.webp"); }

.sample-page {
  background: #fff;
}

.sample-page .container.narrow {
  max-width: 980px;
}

.sample-page h2 {
  margin: 28px 0 18px;
  text-align: left;
}

.sample-lead {
  max-width: 930px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.sample-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 30px;
}

.sample-card-grid article {
  text-align: left;
}

.sample-card-image {
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 24px rgba(43, 34, 21, 0.08);
}

.sample-card-grid h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 12px;
  font-size: 24px;
}

.sample-card-grid p {
  color: #111;
  font-size: 16px;
  line-height: 1.35;
}

.sample-color-cards {
  background-image: url("../images/sample-color-cards.webp");
}

.sample-fabric-swatches {
  background-image: url("../images/sample-fabric-swatches.webp");
}

.sample-finished-curtains {
  background-image: url("../images/sample-finished-curtain-samples.webp");
}

.sample-step,
.sample-step-grid,
.sample-text-block {
  margin-top: 38px;
}

.sample-step-grid {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 56px;
  align-items: center;
}

.sample-page h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.sample-page p,
.sample-page li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.sample-page ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.sample-wide-image,
.sample-packaging-image,
.sample-related-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.sample-wide-image {
  min-height: 285px;
  margin-top: 18px;
}

.sample-step-grid .sample-wide-image {
  margin-top: 0;
}

.sample-consultation { background-image: url("../images/sample-consultation.webp"); }
.sample-fabric-options { background-image: url("../images/sample-fabric-options.webp"); }
.sample-heading-options { background-image: url("../images/sample-heading-options.webp"); }
.sample-production-delivery { background-image: url("../images/sample-production-delivery.webp"); }

.sample-link-list {
  columns: 2;
  max-width: 430px;
}

.sample-link-list a {
  color: #16485a;
  font-weight: 800;
}

.sample-packaging-image {
  width: min(560px, 100%);
  min-height: 330px;
  margin: 22px auto 36px;
  background-image: url("../images/sample-packaging-options.webp");
}

.sample-cert-section {
  margin: 38px 0;
  text-align: center;
}

.sample-cert-section h2 {
  text-align: center;
}

.sample-cert-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 22px;
}

.sample-cert-row span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 24px;
  font-weight: 900;
}

.sample-cert-row span:nth-child(3),
.sample-cert-row span:nth-child(4) {
  width: 62px;
  height: 62px;
  justify-self: center;
  border: 3px solid #74b89a;
  border-radius: 50%;
  color: #167353;
  font-size: 12px;
  line-height: 1.1;
}

.sample-quote-box {
  max-width: 720px;
  margin: 34px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 26px rgba(43, 34, 21, 0.08);
}

.sample-quote-box h2 {
  margin-top: 0;
}

.sample-quote-box .inline-contact-form {
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.sample-share {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.sample-share a {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #2f78bd;
  font-size: 9px;
  font-weight: 900;
}

.sample-related-section h2 {
  margin-bottom: 30px;
}

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

.sample-related-grid article {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 26px rgba(43, 34, 21, 0.06);
}

.sample-related-grid a {
  display: block;
  color: inherit;
}

.sample-related-image {
  min-height: 185px;
  box-shadow: none;
}

.sample-related-grid h3,
.sample-related-grid p,
.sample-related-grid span {
  margin-left: 16px;
  margin-right: 16px;
}

.sample-related-grid h3 {
  margin-top: 16px;
  font-size: 15px;
}

.sample-related-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.sample-related-grid span {
  display: block;
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.rel-sheer { background-image: url("../images/products-sheer.webp"); }
.rel-sewing { background-image: url("../images/factory-sewing.webp"); }
.rel-heading { background-image: url("../images/guide-heading-styles.webp"); }
.rel-room-1 { background-image: url("../images/sheer-intro.webp"); }
.rel-room-2 { background-image: url("../images/products-velvet.webp"); }
.rel-room-3 { background-image: url("../images/blackout-intro.webp"); }

.guide-crop-1 { background-position: left center; }
.guide-crop-2 { background-position: center center; }
.guide-crop-3 { background-position: right center; }
.guide-crop-top { background-position: center top; }
.guide-crop-bottom { background-position: center bottom; }

.guide-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.guide-info-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fdfcf9;
}

.guide-info-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 17px;
}

.guide-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.guide-step span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d9edf4;
  color: #16485a;
  font-weight: 900;
}

.guide-form-panel {
  max-width: 720px;
  margin: 36px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 26px rgba(43, 34, 21, 0.08);
}

.guide-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guide-related-grid article {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 26px rgba(43, 34, 21, 0.06);
}

.guide-related-grid .guide-visual {
  min-height: 180px;
  box-shadow: none;
}

.guide-related-grid div:last-child {
  padding: 16px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 80px;
  align-items: center;
}

.contact-panel h2 {
  text-align: left;
}

.contact-panel p {
  max-width: 430px;
  color: #2a2722;
  font-size: 13px;
  line-height: 1.7;
}

.inline-contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.inline-contact-form label {
  display: grid;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
}

.inline-contact-form .full {
  grid-column: 1 / -1;
}

.inline-contact-form input,
.inline-contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 10px 12px;
  background: #fff;
  font: inherit;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-note,
.quote-note {
  display: block;
  margin-top: 12px;
  color: #5f574c;
  font-size: 12px;
  line-height: 1.45;
}

.blackout-options {
  background: #fdfcf9;
  padding-top: 34px;
}

.feature-grid {
  display: grid;
  gap: 18px;
}

.feature-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid article {
  text-align: center;
}

.feature-thumb,
.best-thumb {
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 24px rgba(43, 34, 21, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.feature-grid article:hover .feature-thumb,
.best-grid article:hover .best-thumb {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 20px 42px rgba(43, 34, 21, 0.2);
  filter: saturate(1.04);
}

.feature-grid h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.feature-grid.compact h3 {
  font-size: 15px;
}

.bo-construction-1,
.bo-construction-2,
.bo-construction-3,
.bo-construction-4 {
  background-image: url("../images/blackout-construction.webp");
  background-size: 400% 100%;
}

.bo-construction-1 { background-position: left center; }
.bo-construction-2 { background-position: 33.333% center; }
.bo-construction-3 { background-position: 66.666% center; }
.bo-construction-4 { background-position: right center; }

.bo-fabric-1,
.bo-fabric-2,
.bo-fabric-3,
.bo-fabric-4 {
  background-image: url("../images/blackout-fabrics.webp");
  background-size: 400% 100%;
}

.bo-fabric-1 { background-position: left center; }
.bo-fabric-2 { background-position: 33.333% center; }
.bo-fabric-3 { background-position: 66.666% center; }
.bo-fabric-4 { background-position: right center; }

.best-selling {
  background: #fff;
}

.best-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 18px;
}

.best-grid article {
  text-align: center;
}

.best-grid p {
  min-height: 34px;
  margin: 0;
  color: var(--text);
  font-size: 11px;
  line-height: 1.35;
}

.bo-p1-1,
.bo-p1-2,
.bo-p1-3,
.bo-p1-4 {
  background-image: url("../images/blackout-products-1.webp");
  background-size: 400% 100%;
}

.bo-p2-1,
.bo-p2-2,
.bo-p2-3,
.bo-p2-4 {
  background-image: url("../images/blackout-products-2.webp");
  background-size: 400% 100%;
}

.bo-p3-1,
.bo-p3-2,
.bo-p3-3,
.bo-p3-4 {
  background-image: url("../images/blackout-products-3.webp");
  background-size: 400% 100%;
}

.bo-p1-1,
.bo-p2-1,
.bo-p3-1 { background-position: left center; }
.bo-p1-2,
.bo-p2-2,
.bo-p3-2 { background-position: 33.333% center; }
.bo-p1-3,
.bo-p2-3,
.bo-p3-3 { background-position: 66.666% center; }
.bo-p1-4,
.bo-p2-4,
.bo-p3-4 { background-position: right center; }

.intro-thumb {
  width: 100%;
  min-height: 330px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.velvet-options {
  background: #fdfcf9;
  padding-top: 34px;
}

.velvet-options .btn {
  margin-top: 22px;
}

.vt-product-1,
.vt-product-2,
.vt-product-3,
.vt-product-4,
.vt-option-1,
.vt-option-2,
.vt-option-3,
.vt-p1-1,
.vt-p1-2,
.vt-p1-3,
.vt-p1-4 {
  background-image: url("../images/products-velvet.webp");
  background-size: 400% 100%;
}

.vt-product-1,
.vt-option-1,
.vt-p1-1 { background-position: left center; }
.vt-product-2,
.vt-option-2,
.vt-p1-2 { background-position: 33.333% center; }
.vt-product-3,
.vt-option-3,
.vt-p1-3 { background-position: 66.666% center; }
.vt-product-4,
.vt-p1-4 { background-position: right center; }

.vt-p2-1,
.vt-p2-2,
.vt-p2-3,
.vt-p2-4 {
  background-image: url("../images/blackout-products-3.webp");
  background-size: 400% 100%;
}

.vt-p3-1,
.vt-p3-2,
.vt-p3-3,
.vt-p3-4 {
  background-image: url("../images/blackout-products-2.webp");
  background-size: 400% 100%;
}

.vt-p2-1,
.vt-p3-1 { background-position: left center; }
.vt-p2-2,
.vt-p3-2 { background-position: 33.333% center; }
.vt-p2-3,
.vt-p3-3 { background-position: 66.666% center; }
.vt-p2-4,
.vt-p3-4 { background-position: right center; }

.velvet-sample {
  background-image: linear-gradient(90deg, rgba(37, 35, 29, 0.74), rgba(37, 35, 29, 0.38)), url("../images/products-velvet.webp");
  background-position: center;
  background-size: cover;
}

.velvet-custom-thumb {
  min-height: 330px;
  background-image: url("../images/custom-details.webp");
  background-position: center;
  background-size: cover;
}

.product-more-btn {
  margin-top: 22px;
}

.align-right-btn {
  display: flex;
  width: fit-content;
  margin-top: 24px;
  margin-left: auto;
}

.case-image {
  min-height: 330px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.section-copy {
  max-width: 920px;
  margin: -12px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.shower-types h3,
.heading-section h3 {
  margin: 18px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.shower-mini-grid {
  margin-bottom: 42px;
}

.hotel-img-1,
.hotel-img-2,
.hotel-img-3,
.hotel-img-4,
.hotel-case-1,
.hotel-case-2 {
  background-image: url("../images/products-hotel.webp");
  background-size: 400% 100%;
}

.hotel-img-1,
.hotel-case-1 { background-position: left center; }
.hotel-img-2,
.hotel-case-2 { background-position: 33.333% center; }
.hotel-img-3 { background-position: 66.666% center; }
.hotel-img-4 { background-position: right center; }

.hotel-bk-1,
.hotel-bk-2,
.hotel-bk-3,
.hotel-bk-4 {
  background-image: url("../images/blackout-products-2.webp");
  background-size: 400% 100%;
}

.hotel-bk-5,
.hotel-bk-6,
.hotel-bk-7,
.hotel-bk-8 {
  background-image: url("../images/blackout-products-3.webp");
  background-size: 400% 100%;
}

.hotel-bk-1,
.hotel-bk-5 { background-position: left center; }
.hotel-bk-2,
.hotel-bk-6 { background-position: 33.333% center; }
.hotel-bk-3,
.hotel-bk-7 { background-position: 66.666% center; }
.hotel-bk-4,
.hotel-bk-8 { background-position: right center; }

.hotel-sheer-1,
.hotel-sheer-2,
.hotel-sheer-3,
.hotel-sheer-4 {
  background-image: url("../images/sheer-products-1.webp");
  background-size: 400% 100%;
}

.hotel-sheer-1 { background-position: left center; }
.hotel-sheer-2 { background-position: 33.333% center; }
.hotel-sheer-3 { background-position: 66.666% center; }
.hotel-sheer-4 { background-position: right center; }

.hotel-custom-thumb {
  min-height: 330px;
  background-image: url("../images/custom-details-sewing.webp");
  background-position: center;
  background-size: cover;
}

.outdoor-page-section {
  background: #fff;
}

.outdoor-img-1,
.outdoor-type-1,
.outdoor-type-2,
.outdoor-type-3 {
  background-image: url("../images/products-outdoor.webp");
  background-size: 300% 100%;
}

.outdoor-img-1,
.outdoor-type-1 { background-position: left center; }
.outdoor-type-2 { background-position: center center; }
.outdoor-type-3 { background-position: right center; }

.outdoor-custom-thumb {
  min-height: 330px;
  background-image: url("../images/custom-details.webp");
  background-position: center;
  background-size: cover;
}

.outdoor-head-1,
.outdoor-head-2,
.outdoor-head-3,
.outdoor-head-4 {
  background-image: url("../images/custom-details-sewing.webp");
  background-size: 400% 100%;
}

.outdoor-head-1 { background-position: left center; }
.outdoor-head-2 { background-position: 33.333% center; }
.outdoor-head-3 { background-position: 66.666% center; }
.outdoor-head-4 { background-position: right center; }

.shower-img-1,
.shower-fabric-1,
.shower-fabric-2,
.shower-fabric-3,
.shower-fabric-4,
.shower-rec-1,
.shower-rec-2,
.shower-rec-3,
.shower-rec-4 {
  background-image: url("../images/products-shower.webp");
  background-size: 400% 100%;
}

.shower-img-1,
.shower-fabric-1,
.shower-rec-1 { background-position: left center; }
.shower-fabric-2,
.shower-rec-2 { background-position: 33.333% center; }
.shower-fabric-3,
.shower-rec-3 { background-position: 66.666% center; }
.shower-fabric-4,
.shower-rec-4 { background-position: right center; }

.shower-fabric-5,
.shower-fabric-6,
.shower-fabric-7,
.shower-fabric-8,
.shower-peva-1,
.shower-peva-2,
.shower-peva-3,
.shower-peva-4 {
  background-image: url("../images/products-shower.webp");
  background-size: 400% 100%;
}

.shower-fabric-5,
.shower-peva-1 { background-position: left center; }
.shower-fabric-6,
.shower-peva-2 { background-position: 33.333% center; }
.shower-fabric-7,
.shower-peva-3 { background-position: 66.666% center; }
.shower-fabric-8,
.shower-peva-4 { background-position: right center; }

.shower-waffle,
.shower-case {
  background-image: url("../images/products-shower.webp");
  background-size: 400% 100%;
}

.shower-waffle { background-position: 66.666% center; }
.shower-case { background-position: right center; }

.pagination {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.pagination span {
  color: var(--text);
  font-weight: 900;
}

.blackout-sample {
  background-image: linear-gradient(90deg, rgba(37, 35, 29, 0.72), rgba(37, 35, 29, 0.36)), url("../images/products-blackout.webp");
}

.flexible-section {
  background: #fdfcf9;
}

.flexible-section p,
.flexible-section li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.flexible-section ul {
  margin: 0 0 28px;
  padding-left: 22px;
}

.flexible-section .solution-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
}

.bo-flex-1 { background-image: url("../images/blackout-fabrics.webp"); background-position: 33.333% center; }
.bo-flex-2 { background-image: url("../images/blackout-construction.webp"); background-position: 66.666% center; }
.bo-flex-3 { background-image: url("../images/products-solutions.webp"); background-position: right center; }

.sheer-content {
  background: #fdfcf9;
  padding-top: 34px;
}

.sheer-option-thumb {
  aspect-ratio: 1 / 1;
  background-image: url("../images/sheer-linen-options.webp");
  background-repeat: no-repeat;
  background-size: 300% 100%;
  box-shadow: var(--shadow);
}

.feature-thumb.sheer-linen-1,
.feature-thumb.sheer-linen-2,
.feature-thumb.sheer-linen-3 {
  background-image: url("../images/sheer-linen-options.webp");
  background-size: 300% 100%;
}

.sheer-linen-1 { background-position: left center; }
.sheer-linen-2 { background-position: center center; }
.sheer-linen-3 { background-position: right center; }

.sheer-detail-1,
.sheer-detail-2,
.sheer-detail-3 {
  background-image: url("../images/sheer-details.webp");
  background-size: 300% 100%;
}

.sheer-detail-1 { background-position: left center; }
.sheer-detail-2 { background-position: center center; }
.sheer-detail-3 { background-position: right center; }

.sh-p1-1,
.sh-p1-2,
.sh-p1-3,
.sh-p1-4 {
  background-image: url("../images/sheer-products-1.webp");
  background-size: 400% 100%;
}

.sh-p2-1,
.sh-p2-2,
.sh-p2-3,
.sh-p2-4 {
  background-image: url("../images/sheer-products-2.webp");
  background-size: 400% 100%;
}

.sh-p3-1,
.sh-p3-2,
.sh-p3-3,
.sh-p3-4 {
  background-image: url("../images/sheer-products-3.webp");
  background-size: 400% 100%;
}

.sh-p1-1,
.sh-p2-1,
.sh-p3-1 { background-position: left center; }
.sh-p1-2,
.sh-p2-2,
.sh-p3-2 { background-position: 33.333% center; }
.sh-p1-3,
.sh-p2-3,
.sh-p3-3 { background-position: 66.666% center; }
.sh-p1-4,
.sh-p2-4,
.sh-p3-4 { background-position: right center; }

.heading-section {
  background: #fff;
}

.heading-section p,
.sheer-content p,
.sheer-content li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.sheer-content ul {
  margin: 0;
  padding-left: 20px;
}

.client-cases {
  background: #fff;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 64px;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.case-grid.reverse {
  grid-template-columns: 430px 1fr;
}

.case-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.case-grid h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.case-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  position: relative;
  padding: 60px 0 54px;
  color: #fff;
  background: #070705;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 54px;
  padding-bottom: 46px;
  border-bottom: 1px solid #4b4b4b;
}

.site-footer h2 {
  margin: 0 0 10px;
  text-align: left;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.site-footer h3 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 900;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 11px;
  color: #fff;
  font-size: 12px;
  line-height: 1.45;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.socials a {
  width: 20px;
  height: 20px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  font-size: 9px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 30;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #23c15f;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 9px;
  top: 8px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 8px;
  width: 9px;
  height: 9px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-15deg);
}

.whatsapp-panel {
  position: fixed;
  right: 18px;
  bottom: 64px;
  z-index: 55;
  width: min(360px, calc(100% - 28px));
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.whatsapp-panel.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.whatsapp-panel-header {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 20px 22px;
  color: #fff;
  background: #28b946;
}

.whatsapp-panel-icon,
.whatsapp-contact-icon,
.whatsapp-contact-mark {
  position: relative;
  border-radius: 50%;
}

.whatsapp-panel-icon {
  width: 38px;
  height: 38px;
  border: 3px solid #fff;
}

.whatsapp-panel-icon::after,
.whatsapp-contact-icon::after,
.whatsapp-contact-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 4px;
  bottom: -3px;
  border-left: 5px solid currentColor;
  border-bottom: 5px solid currentColor;
  transform: rotate(-15deg);
}

.whatsapp-panel h2 {
  margin: 0 0 6px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.whatsapp-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.whatsapp-panel-body {
  padding: 18px;
}

.whatsapp-reply-note {
  margin: 0 0 16px;
  color: #a8aeb9;
  font-size: 13px;
  font-weight: 700;
}

.whatsapp-contact-card {
  display: grid;
  grid-template-columns: 52px 1fr 24px;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-left: 2px solid #23c15f;
  background: #f3f5f7;
}

.whatsapp-contact-icon {
  width: 46px;
  height: 46px;
  color: #fff;
  background: #64ce72;
}

.whatsapp-contact-icon::before {
  content: "";
  position: absolute;
  inset: 11px 12px 12px 10px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.whatsapp-contact-card strong {
  display: block;
  color: #4a4f58;
  font-size: 16px;
  line-height: 1.1;
}

.whatsapp-contact-card span {
  display: block;
  margin-top: 3px;
  color: #8a9098;
  font-size: 12px;
}

.whatsapp-contact-mark {
  width: 21px;
  height: 21px;
  color: #23c15f;
  border: 2px solid #23c15f;
}

.whatsapp-contact-mark::after {
  width: 5px;
  height: 5px;
  left: 1px;
  bottom: -2px;
  border-left-width: 3px;
  border-bottom-width: 3px;
}

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

.whatsapp-panel-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.whatsapp-panel-close::before,
.whatsapp-panel-close::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 13px;
  width: 14px;
  height: 2px;
  background: #fff;
}

.whatsapp-panel-close::before {
  transform: rotate(45deg);
}

.whatsapp-panel-close::after {
  transform: rotate(-45deg);
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.quote-modal.open {
  display: flex;
}

.quote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 12, 10, 0.58);
}

.quote-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 34px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.quote-dialog h2 {
  margin-bottom: 10px;
}

.quote-dialog p {
  margin: 0 0 14px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}

.quote-direct-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 10px;
}

.quote-direct-links a {
  min-width: 0;
  min-height: 52px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 4px;
  color: #fff;
  background: #15130f;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.quote-direct-links a:first-child {
  background: #23c15f;
}

.quote-direct-links small,
.quote-direct-links span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.quote-routing-note {
  display: block;
  margin: 0 0 20px;
  color: #6b6258;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
}

.quote-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quote-close::before,
.quote-close::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 13px;
  width: 17px;
  height: 2px;
  background: #111;
}

.quote-close::before {
  transform: rotate(45deg);
}

.quote-close::after {
  transform: rotate(-45deg);
}

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

.quote-form label {
  display: grid;
  gap: 7px;
  color: #211f1a;
  font-size: 12px;
  font-weight: 800;
}

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

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 13px;
  color: var(--text);
  background: #fdfcf9;
  font: inherit;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(200, 167, 122, 0.32);
  border-color: var(--warm);
}

.quote-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.seo-intent-section {
  background: #f7f4ef;
  border-top: 1px solid rgba(44, 39, 35, 0.08);
  border-bottom: 1px solid rgba(44, 39, 35, 0.08);
}

.seo-intent-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.seo-intent-copy .eyebrow {
  color: var(--accent);
}

.seo-intent-copy h2 {
  margin: 10px 0 14px;
}

.seo-intent-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.seo-query-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.seo-query-list article {
  background: #fff;
  border: 1px solid rgba(44, 39, 35, 0.1);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(44, 39, 35, 0.05);
}

.seo-query-list h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.keyword-taxonomy-section .seo-query-list h3 a {
  color: inherit;
  text-decoration: none;
}

.keyword-taxonomy-section .seo-query-list h3 a:hover {
  color: var(--accent);
}

.seo-query-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.seo-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.seo-link-row a {
  border: 1px solid rgba(44, 39, 35, 0.16);
  border-radius: 999px;
  color: var(--dark);
  font-size: 14px;
  padding: 8px 14px;
}

.seo-link-row a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.supplier-signals-section {
  background: #fff;
}

.section-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supplier-signals-section h2 {
  width: min(760px, 100%);
  margin: 10px 0 14px;
}

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

.supplier-signal-grid article {
  min-height: 226px;
  border: 1px solid rgba(44, 39, 35, 0.12);
  border-radius: 8px;
  padding: 22px;
  background: #fbfaf7;
}

.supplier-signal-grid strong {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.supplier-signal-grid h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.35;
}

.supplier-signal-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.supplier-link-row {
  margin-top: 26px;
}

.sample-signals-panel {
  margin: 38px 0 44px;
}

@media (max-width: 900px) {
  .brand {
    font-size: 24px;
  }

  .main-nav {
    gap: 12px;
    font-size: 10px;
  }

  .hero,
  .hero-overlay {
    min-height: 420px;
  }

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

  .hero-proof-grid div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-proof-grid div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .partner-grid,
  .factory-grid,
  .seo-intent-grid,
  .category-grid,
  .custom-grid,
  .catalog-grid,
  .outdoor-grid,
  .solution-grid,
  .feature-grid.four,
  .feature-grid.three,
  .best-grid,
  .case-grid,
  .case-grid.reverse,
  .contact-panel,
  .process-grid,
  .faq-grid,
  .footer-grid,
  .about-split,
  .story-grid,
  .about-product-grid,
  .inside-grid,
  .guide-info-grid,
  .guide-related-grid,
  .sample-card-grid,
  .sample-step-grid,
  .sample-cert-row,
  .sample-related-grid,
  .cert-badges {
    grid-template-columns: 1fr;
  }

  .seo-query-list {
    grid-template-columns: 1fr;
  }

  .supplier-signal-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 380px;
  }

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

  .cta-row {
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .faq-image {
    height: auto;
  }

  .support-list {
    padding-left: 0;
  }

  .about-split,
  .story-grid,
  .inside-grid {
    gap: 30px;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--container));
  }

  .hero h1 {
    font-size: 28px;
  }

  .page-hero h1 {
    max-width: 340px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.12;
  }

  .hero p {
    font-size: 15px;
  }

  .products-hero,
  .products-hero .page-hero-overlay,
  .oem-guide-hero,
  .oem-guide-hero .page-hero-overlay {
    min-height: 205px;
  }

  .product-intro,
  .oem-intro-section {
    padding-top: 34px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .product-intro-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 44px;
  }

  .product-intro-actions .btn {
    width: 100%;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-grid div {
    min-height: 0;
    padding: 18px 4px 18px;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-proof-grid div:first-child {
    border-top: 0;
  }

  .hero-proof-grid div:last-child,
  .hero-proof-grid div:nth-child(2) {
    border-right: 0;
  }

  .support-panel article,
  .custom-grid article {
    grid-template-columns: 58px 1fr;
  }

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

  .category-card {
    min-height: 330px;
  }

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

  .quote-dialog {
    padding: 28px 20px;
  }
}

.oem-intro-section,
.oem-info-section,
.oem-customize-section,
.oem-inquiry-section {
  background: #fff;
}

.oem-intro-grid {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 92px;
  align-items: center;
}

.oem-intro-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: none;
}

.oem-copy h2,
.oem-inquiry-section h2 {
  margin: 0;
  text-align: left;
}

.oem-copy p,
.oem-custom-block p,
.oem-inquiry-section p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.oem-copy .btn {
  min-height: 32px;
  padding: 0 20px;
}

.oem-info-section {
  padding-top: 20px;
}

.oem-info-section h2,
.oem-customize-section h2 {
  margin-bottom: 34px;
  text-align: center;
}

.oem-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.oem-info-grid article {
  min-height: 86px;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  border: 1px solid #ece8df;
  background: #fff;
}

.oem-info-grid h3 {
  margin: 0 0 5px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.oem-info-grid p {
  margin: 0;
  color: #332f29;
  text-align: center;
  font-size: 11px;
  line-height: 1.35;
}

.oem-info-icon {
  width: 64px;
  height: 64px;
  position: relative;
  display: block;
}

.oem-info-icon::before,
.oem-info-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-clock::before {
  inset: 20px;
  border: 4px solid #050505;
  border-radius: 50%;
}

.icon-clock::after {
  left: 31px;
  top: 25px;
  width: 10px;
  height: 12px;
  border-left: 3px solid #050505;
  border-bottom: 3px solid #050505;
}

.icon-calendar::before {
  left: 20px;
  top: 21px;
  width: 24px;
  height: 23px;
  border: 3px solid #050505;
}

.icon-calendar::after {
  left: 24px;
  top: 17px;
  width: 4px;
  height: 9px;
  background: #050505;
  box-shadow: 12px 0 0 #050505, -4px 10px 0 #050505, 4px 10px 0 #050505, 12px 10px 0 #050505;
}

.icon-layers-small::before {
  left: 20px;
  top: 19px;
  width: 24px;
  height: 18px;
  border: 3px solid #aab2b8;
  transform: skewY(-20deg);
}

.icon-layers-small::after {
  left: 18px;
  top: 38px;
  width: 28px;
  height: 3px;
  background: #aab2b8;
  box-shadow: 0 6px 0 #aab2b8;
}

.icon-tools::before {
  left: 19px;
  top: 18px;
  width: 28px;
  height: 8px;
  background: #050505;
  transform: rotate(-45deg);
}

.icon-tools::after {
  left: 22px;
  top: 20px;
  width: 8px;
  height: 28px;
  background: #050505;
  transform: rotate(45deg);
  box-shadow: 15px 1px 0 #050505;
}

.icon-box-small::before {
  left: 19px;
  top: 24px;
  width: 27px;
  height: 22px;
  background: #050505;
}

.icon-box-small::after {
  left: 22px;
  top: 17px;
  width: 21px;
  height: 10px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #050505;
}

.icon-shield-small::before {
  left: 21px;
  top: 17px;
  width: 22px;
  height: 28px;
  border: 3px solid #aab2b8;
  border-radius: 0 0 12px 12px;
}

.oem-process {
  padding-top: 46px;
}

.oem-process-step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 0 18px;
  position: relative;
}

.oem-process-step::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #c6dee8;
}

.oem-process-step:first-of-type::before {
  top: 27px;
}

.oem-process-step:last-of-type::before {
  bottom: calc(100% - 27px);
}

.oem-process-step span {
  z-index: 1;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #b9d9e7;
  color: #173d4c;
  font-weight: 900;
}

.oem-process-step h3,
.oem-custom-block h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.oem-process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.oem-customize-section {
  padding-top: 34px;
}

.oem-custom-block {
  padding: 30px 0 18px;
}

.oem-gallery {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.oem-gallery-four {
  grid-template-columns: repeat(4, 1fr);
}

.oem-gallery-three {
  grid-template-columns: repeat(3, 1fr);
}

.oem-panel {
  aspect-ratio: 1 / 1;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.oem-fabric-gallery .oem-panel {
  background-image: url("../images/oem-custom-fabrics.webp");
  background-size: 400% 100%;
}

.oem-detail-gallery .oem-panel {
  position: relative;
  background-image: url("../images/oem-custom-detailing.webp");
  background-size: 300% 100%;
}

.oem-heading-gallery .oem-panel {
  background-image: url("../images/oem-heading-styles.webp");
  background-size: 400% 100%;
}

.oem-gallery .panel-1,
.oem-treatment-1 {
  background-position: left center;
}

.oem-gallery-three .panel-2 {
  background-position: center center;
}

.oem-gallery-three .panel-3 {
  background-position: right center;
}

.oem-gallery-four .panel-2,
.oem-treatment-2 {
  background-position: 33.333% center;
}

.oem-gallery-four .panel-3,
.oem-treatment-3 {
  background-position: 66.666% center;
}

.oem-gallery-four .panel-4,
.oem-treatment-4 {
  background-position: right center;
}

.oem-detail-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 800;
}

.oem-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.oem-actions .btn {
  min-height: 34px;
  padding: 0 18px;
  font-size: 10px;
}

.oem-detail-gallery {
  margin-bottom: 38px;
}

.oem-treatment-block {
  padding-left: 24px;
  padding-right: 24px;
  background: #f3f7fb;
}

.oem-treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 34px;
  margin-top: 22px;
}

.oem-treatment-grid article {
  display: grid;
  grid-template-columns: 176px 1fr;
  min-height: 132px;
  background: #fff;
}

.oem-treatment-image {
  min-height: 132px;
  background-image: url("../images/oem-functional-treatments.webp");
  background-repeat: no-repeat;
  background-size: 400% 100%;
}

.oem-treatment-grid div:last-child {
  padding: 24px 22px;
}

.oem-treatment-grid h4 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.oem-treatment-grid p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.oem-packaging-image {
  width: min(620px, 100%);
  margin: 28px auto 0;
  object-fit: contain;
}

.oem-inquiry-section {
  padding-top: 34px;
}

.oem-inquiry-section .oem-actions {
  margin-top: 26px;
}

@media (max-width: 900px) {
  .oem-intro-grid,
  .oem-info-grid,
  .oem-gallery-four,
  .oem-gallery-three,
  .oem-treatment-grid {
    grid-template-columns: 1fr;
  }

  .oem-intro-grid {
    gap: 32px;
  }

  .oem-treatment-grid article {
    grid-template-columns: 1fr;
  }

  .oem-treatment-image {
    min-height: 220px;
  }
}

.shower-page-hero {
  background-image: url("../images/shower-page-hero.webp");
  background-position: center;
}

.shower-page-intro,
.shower-page-types,
.shower-page-case,
.shower-page-recommended,
.shower-page-why {
  background: #fff;
}

.shower-page-intro-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 95px;
  align-items: center;
}

.shower-page-intro h2,
.shower-page-case h2,
.shower-page-why h2 {
  margin: 0;
  text-align: left;
}

.shower-page-intro p,
.shower-page-block p,
.shower-page-case p,
.shower-page-contact p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.shower-page-intro img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.shower-page-intro .btn,
.shower-page-product-row .btn,
.shower-page-case .btn {
  min-height: 34px;
  padding: 0 18px;
  font-size: 10px;
}

.shower-page-types {
  padding-top: 24px;
}

.shower-page-types h2,
.shower-page-recommended h2 {
  margin-bottom: 20px;
  text-align: left;
}

.shower-page-block {
  margin-top: 18px;
  padding-bottom: 26px;
}

.shower-page-block h3,
.shower-page-product-row h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.shower-page-grid,
.shower-page-peva-grid,
.shower-page-recommended-grid {
  display: grid;
  gap: 14px;
}

.shower-page-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.shower-page-grid div,
.shower-page-peva-grid div,
.shower-page-recommended-grid div {
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
}

.shower-page-fabric-grid div {
  background-image: url("../images/shower-page-fabric-grid.webp");
  background-size: 400% 200%;
}

.shower-page-grid .tile-1 { background-position: left top; }
.shower-page-grid .tile-2 { background-position: 33.333% top; }
.shower-page-grid .tile-3 { background-position: 66.666% top; }
.shower-page-grid .tile-4 { background-position: right top; }
.shower-page-grid .tile-5 { background-position: left bottom; }
.shower-page-grid .tile-6 { background-position: 33.333% bottom; }
.shower-page-grid .tile-7 { background-position: 66.666% bottom; }
.shower-page-grid .tile-8 { background-position: right bottom; }

.shower-page-product-row {
  display: grid;
  grid-template-columns: 485px 1fr;
  gap: 58px;
  align-items: center;
  margin-top: 18px;
}

.shower-page-product-row img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.shower-page-product-row ul,
.shower-page-why ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: #222;
  font-size: 13px;
  line-height: 1.72;
}

.shower-page-peva-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.shower-page-peva-grid div {
  background-image: url("../images/shower-page-peva-grid.webp");
  background-size: 400% 100%;
}

.shower-page-peva-grid .tile-1,
.shower-page-recommended-grid .tile-1 {
  background-position: left center;
}

.shower-page-peva-grid .tile-2,
.shower-page-recommended-grid .tile-2 {
  background-position: 33.333% center;
}

.shower-page-peva-grid .tile-3,
.shower-page-recommended-grid .tile-3 {
  background-position: 66.666% center;
}

.shower-page-peva-grid .tile-4,
.shower-page-recommended-grid .tile-4 {
  background-position: right center;
}

.shower-page-case-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px;
  align-items: center;
  margin-top: 30px;
}

.shower-page-case-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.shower-page-recommended h2 {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
}

.shower-page-recommended-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

.shower-page-recommended-grid div {
  background-image: url("../images/shower-page-recommended.webp");
  background-size: 400% 100%;
}

.shower-page-recommended-grid p {
  min-height: 38px;
  margin: 10px 0 0;
  color: #111;
  text-align: center;
  font-size: 11px;
  line-height: 1.35;
}

.shower-page-why {
  background: #f6f6f6;
}

.shower-page-why h2 {
  margin-bottom: 34px;
  text-align: center;
}

.shower-page-why-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 86px;
  align-items: center;
}

.shower-page-why-grid img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.shower-page-contact {
  padding: 64px 0;
  background: linear-gradient(90deg, rgba(237, 234, 219, 0.62), rgba(237, 234, 219, 0.42)), url("../images/products-contact-bg.webp") center / cover no-repeat;
}

.shower-page-contact .contact-panel {
  grid-template-columns: 1fr 500px;
  gap: 72px;
}

.shower-page-contact-card {
  max-width: 470px;
  padding: 28px 34px;
  background: rgba(255, 255, 255, 0.68);
}

.shower-page-contact-card h2 {
  margin-bottom: 18px;
  text-align: left;
}

.shower-page-contact .inline-contact-form {
  background: rgba(255, 255, 255, 0.86);
}

.shower-page-contact .inline-contact-form p {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  color: #222;
}

@media (max-width: 900px) {
  .shower-page-intro-grid,
  .shower-page-product-row,
  .shower-page-case-grid,
  .shower-page-why-grid,
  .shower-page-contact .contact-panel,
  .shower-page-grid,
  .shower-page-peva-grid,
  .shower-page-recommended-grid {
    grid-template-columns: 1fr;
  }

  .shower-page-intro-grid,
  .shower-page-product-row,
  .shower-page-case-grid,
  .shower-page-why-grid {
    gap: 32px;
  }
}

.outdoor-page-hero {
  background-image: url("../images/outdoor-page-hero.webp");
  background-position: center;
}

.hotel-page-hero {
  background-image: url("../images/hotel-page-hero.webp");
  background-position: center;
}

.product-page-intro,
.outdoor-page-products,
.product-page-support,
.outdoor-page-headings,
.hotel-page-blackout,
.hotel-page-sheer,
.hotel-page-cases {
  background: #fff;
}

.product-page-intro-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 92px;
  align-items: center;
}

.product-page-intro h2,
.product-page-support h2,
.product-page-why h2,
.hotel-page-cases h2 {
  margin: 0;
  text-align: left;
}

.product-page-intro p,
.product-page-support p,
.outdoor-page-type-grid p,
.hotel-case-grid p,
.product-page-contact p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.product-page-intro img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.product-page-intro .btn,
.product-page-support .btn,
.hotel-case-grid .btn {
  min-height: 34px;
  padding: 0 18px;
  font-size: 10px;
}

.outdoor-page-products h2,
.outdoor-page-headings h2,
.hotel-page-blackout h2,
.hotel-page-sheer h2 {
  margin-bottom: 34px;
  text-align: center;
}

.outdoor-page-type-grid,
.outdoor-heading-grid,
.hotel-product-grid,
.hotel-sheer-grid {
  display: grid;
  gap: 18px;
}

.outdoor-page-type-grid {
  grid-template-columns: repeat(3, 1fr);
}

.outdoor-page-type-grid article,
.outdoor-heading-grid article,
.hotel-product-grid article,
.hotel-sheer-grid article {
  text-align: center;
}

.outdoor-page-type-grid h3,
.outdoor-heading-grid h3 {
  margin: 10px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.outdoor-type-img,
.outdoor-heading-grid div,
.hotel-product-grid div,
.hotel-sheer-grid div {
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
}

.outdoor-type-img {
  background-image: url("../images/outdoor-page-types.webp");
  background-size: 300% 100%;
}

.outdoor-type-img.tile-1,
.outdoor-heading-grid .tile-1,
.hotel-sheer-grid .tile-1 {
  background-position: left center;
}

.outdoor-type-img.tile-2,
.outdoor-heading-grid .tile-2,
.hotel-sheer-grid .tile-2 {
  background-position: center center;
}

.outdoor-type-img.tile-3,
.hotel-sheer-grid .tile-3 {
  background-position: right center;
}

.product-page-split {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 72px;
  align-items: center;
}

.product-page-split img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-page-split h3,
.hotel-case-grid h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.product-page-split ul,
.product-page-why ul {
  margin: 18px 0 22px;
  padding-left: 20px;
  color: #222;
  font-size: 13px;
  line-height: 1.75;
}

.outdoor-heading-grid {
  grid-template-columns: repeat(4, 1fr);
}

.outdoor-heading-grid div {
  background-image: url("../images/outdoor-page-headings.webp");
  background-size: 400% 100%;
}

.outdoor-heading-grid .tile-2 {
  background-position: 33.333% center;
}

.outdoor-heading-grid .tile-3 {
  background-position: 66.666% center;
}

.outdoor-heading-grid .tile-4,
.hotel-sheer-grid .tile-4 {
  background-position: right center;
}

.product-page-why {
  background: #f6f6f6;
}

.product-page-why h2 {
  margin-bottom: 34px;
  text-align: center;
}

.product-page-why-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 86px;
  align-items: center;
}

.product-page-why-grid img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.product-page-contact {
  padding: 64px 0;
  background: linear-gradient(90deg, rgba(237, 234, 219, 0.62), rgba(237, 234, 219, 0.42)), url("../images/products-contact-bg.webp") center / cover no-repeat;
}

.product-page-contact .contact-panel {
  grid-template-columns: 1fr 500px;
  gap: 72px;
}

.product-page-contact-card {
  max-width: 470px;
  padding: 28px 34px;
  background: rgba(255, 255, 255, 0.68);
}

.product-page-contact-card h2 {
  margin-bottom: 18px;
  text-align: left;
}

.product-page-contact .inline-contact-form {
  background: rgba(255, 255, 255, 0.86);
}

.product-page-contact .inline-contact-form p {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  color: #222;
}

.hotel-product-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 18px;
}

.hotel-product-grid div {
  background-image: url("../images/hotel-page-blackout-grid.webp");
  background-size: 400% 200%;
}

.hotel-product-grid .tile-1 { background-position: left top; }
.hotel-product-grid .tile-2 { background-position: 33.333% top; }
.hotel-product-grid .tile-3 { background-position: 66.666% top; }
.hotel-product-grid .tile-4 { background-position: right top; }
.hotel-product-grid .tile-5 { background-position: left bottom; }
.hotel-product-grid .tile-6 { background-position: 33.333% bottom; }
.hotel-product-grid .tile-7 { background-position: 66.666% bottom; }
.hotel-product-grid .tile-8 { background-position: right bottom; }

.hotel-product-grid p,
.hotel-sheer-grid p {
  min-height: 38px;
  margin: 10px 0 0;
  color: #111;
  text-align: center;
  font-size: 11px;
  line-height: 1.35;
}

.hotel-page-sheer {
  background: #f6f6f6;
}

.hotel-sheer-grid {
  grid-template-columns: repeat(4, 1fr);
}

.hotel-sheer-grid div {
  background-image: url("../images/hotel-page-sheer-grid.webp");
  background-size: 400% 100%;
}

.hotel-sheer-grid .tile-2 {
  background-position: 33.333% center;
}

.hotel-sheer-grid .tile-3 {
  background-position: 66.666% center;
}

.hotel-page-cases h2 {
  margin-bottom: 34px;
  text-align: center;
}

.hotel-case-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 70px;
  align-items: center;
  margin-bottom: 70px;
}

.hotel-case-grid.reverse {
  grid-template-columns: 420px 1fr;
  margin-bottom: 0;
}

.hotel-case-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 900px) {
  .product-page-intro-grid,
  .outdoor-page-type-grid,
  .product-page-split,
  .outdoor-heading-grid,
  .product-page-why-grid,
  .product-page-contact .contact-panel,
  .hotel-product-grid,
  .hotel-sheer-grid,
  .hotel-case-grid,
  .hotel-case-grid.reverse {
    grid-template-columns: 1fr;
  }

  .product-page-intro-grid,
  .product-page-split,
  .product-page-why-grid,
  .hotel-case-grid {
    gap: 32px;
  }
}

.heading-page-hero {
  min-height: 290px;
  background: url("../images/heading-page-hero.webp") center / cover no-repeat;
}

.heading-page-hero-overlay {
  min-height: 290px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, rgba(12, 11, 9, 0.68), rgba(12, 11, 9, 0.3), rgba(12, 11, 9, 0.64));
}

.heading-page-hero h1 {
  max-width: 780px;
  margin: 0 auto 10px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.22;
}

.heading-page-hero p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
}

.heading-page-article {
  background: #fff;
  padding-top: 26px;
}

.heading-page-narrow {
  width: min(900px, calc(100% - 48px));
}

.heading-page-article p,
.heading-page-article li {
  color: #423e37;
  font-size: 13px;
  line-height: 1.74;
}

.heading-style-block {
  margin-top: 28px;
}

.heading-style-block h2 {
  margin: 0 0 14px;
  text-align: left;
  font-size: 22px;
}

.heading-style-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 34px;
  align-items: start;
  margin: 18px 0 10px;
}

.heading-style-image,
.heading-inline-gallery div,
.heading-related-grid div {
  background-repeat: no-repeat;
  background-position: center;
}

.heading-style-image {
  aspect-ratio: 1 / 1;
  background-size: cover;
}

.heading-main-style {
  background-image: url("../images/heading-page-styles.webp");
  background-size: 300% 200%;
}

.heading-main-style.style-1 { background-position: left top; }
.heading-main-style.style-2 { background-position: center top; }
.heading-main-style.style-3 { background-position: right top; }
.heading-main-style.style-4 { background-position: left bottom; }
.heading-main-style.style-5 { background-position: center bottom; }
.heading-main-style.style-6 { background-position: right bottom; }

.heading-advantage {
  padding: 18px 22px;
  background: #f7f5f0;
  border-left: 4px solid #d0ad78;
}

.heading-advantage h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.heading-advantage ul {
  margin: 0 0 10px;
  padding-left: 18px;
}

.heading-advantage p {
  margin: 0;
}

.heading-inline-gallery {
  display: grid;
  gap: 28px;
  margin: 22px 0 18px;
}

.heading-tab-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.heading-tab-gallery div {
  aspect-ratio: 1 / 1;
  background-image: url("../images/heading-page-tabs.webp");
  background-size: 300% 100%;
}

.heading-tab-gallery .tile-1 { background-position: left center; }
.heading-tab-gallery .tile-2 { background-position: center center; }
.heading-tab-gallery .tile-3 { background-position: right center; }

.heading-pleat-gallery {
  width: min(560px, 100%);
  grid-template-columns: repeat(2, 1fr);
  margin-left: auto;
}

.heading-pleat-gallery div {
  aspect-ratio: 1 / 1;
  background-image: url("../images/heading-page-pleat-details.webp");
  background-size: 200% 100%;
}

.heading-pleat-gallery .tile-1 { background-position: left center; }
.heading-pleat-gallery .tile-2 { background-position: right center; }

.heading-two-col {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 48px;
  align-items: center;
}

.heading-partner .heading-two-col {
  grid-template-columns: 290px 1fr;
}

.heading-two-col img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.heading-quote-panel {
  max-width: 720px;
  margin: 38px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 26px rgba(43, 34, 21, 0.08);
}

.heading-quote-panel h2 {
  margin: 0 0 18px;
  text-align: left;
  font-size: 24px;
}

.heading-quote-panel .inline-contact-form {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.heading-related-section {
  background: #fdfcf9;
}

.heading-related-section h2 {
  text-align: center;
}

/* Service landing/article pages */
.service-article-page {
  background: #fff;
}

.service-article {
  width: min(760px, calc(100% - 42px));
  margin: 0 auto;
  padding: 44px 0 42px;
  color: #202020;
}

.service-article h1,
.service-article h2,
.service-private h1,
.service-private h2,
.service-private h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.service-article h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.service-article .lead {
  margin: 0 0 42px;
  color: #666;
  font-size: 16px;
  line-height: 1.65;
}

.ai-search-brief {
  border: 1px solid rgba(20, 54, 70, 0.14);
  border-left: 4px solid var(--accent);
  background: #f7fbfa;
  color: var(--text);
  margin: 28px 0 34px;
  padding: 22px 24px;
}

.ai-search-brief h2 {
  color: var(--text);
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  font-size: 18px;
}

.ai-search-brief p {
  color: var(--muted);
  margin: 0 0 14px;
}

.ai-search-brief ul {
  margin: 0;
  padding-left: 18px;
}

.ai-search-brief li {
  color: var(--muted);
  margin-bottom: 8px;
}

@media (min-width: 621px) and (max-width: 900px) {
  body.mobile-nav-active {
    overflow: hidden;
  }

  .site-header {
    height: auto;
  }

  .site-header.mobile-nav-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 65;
    background: #fff;
    box-shadow: 0 16px 34px rgba(43, 34, 21, 0.12);
    overflow: hidden;
  }

  .nav-wrap {
    min-height: 68px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(118px, auto) auto;
    gap: 0 14px;
    align-items: center;
  }

  .site-header.mobile-nav-open .nav-wrap {
    height: 100vh;
    height: 100dvh;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
    overflow: hidden;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .language-switcher {
    margin: 0;
    justify-self: end;
  }

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

  .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    display: block;
    overflow: hidden;
    border-top: 0 solid transparent;
    background: #fff;
    font-size: 13px;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.24s ease, margin-top 0.24s ease, border-color 0.24s ease;
  }

  .site-header.mobile-nav-open .main-nav {
    height: calc(100vh - 86px);
    height: calc(100dvh - 86px);
    max-height: none;
    margin-top: 12px;
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    border-top: 1px solid var(--line);
    visibility: visible;
    pointer-events: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav > a,
  .nav-dropdown > a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(231, 225, 215, 0.72);
  }

  .dropdown-menu a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(231, 225, 215, 0.58);
  }

  .main-nav a::before {
    display: none;
  }

  .nav-dropdown {
    display: block;
  }

  .nav-dropdown > a::after {
    float: right;
    margin-top: 5px;
    margin-right: 2px;
    transition: transform 0.18s ease;
  }

  .nav-dropdown.dropdown-open > a::after {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0 0 0 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
    transition: max-height 0.2s ease;
  }

  .nav-dropdown.dropdown-open .dropdown-menu {
    max-height: 360px;
  }

  .search-btn {
    margin: 12px 0;
  }
}

.service-article h2 {
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d8d8d8;
  font-size: 23px;
  line-height: 1.18;
}

.service-article h3 {
  margin: 20px 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.service-article p,
.service-article li {
  color: #252525;
  font-size: 14px;
  line-height: 1.7;
}

.service-article ul,
.service-article ol {
  margin: 10px 0 0;
  padding-left: 18px;
}

.service-article li {
  margin-bottom: 8px;
}

.service-article strong {
  font-weight: 800;
}

.service-article a.text-link {
  display: inline-block;
  margin-top: 8px;
  color: #0570d4;
  font-size: 14px;
}

.service-note-box {
  margin: 14px 0 34px;
  padding: 22px 24px;
  border-left: 3px solid #0b73d9;
  background: #f2f7fd;
}

.service-note-box h3 {
  margin-top: 0;
  color: #0b73d9;
  font-size: 18px;
}

.service-note-box em {
  display: block;
  margin-top: 12px;
  color: #777;
  font-size: 13px;
  line-height: 1.6;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.service-cert-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: min(820px, calc(100% - 42px));
  margin: 10px auto 44px;
  text-align: center;
}

.service-cert-row article {
  min-width: 0;
}

.cert-mark {
  width: 84px;
  height: 54px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f6fbf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.05;
  border: 2px solid #d8e6f3;
  border-radius: 50%;
  background: #fff;
}

.service-cert-row h3 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.service-cert-row p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.service-image-strip {
  width: min(760px, calc(100% - 42px));
  height: 220px;
  margin: 22px auto 10px;
  background-position: center;
  background-size: cover;
}

.quality-strip {
  background-image: url("../images/service-quality-guarantee.webp");
}

.cert-strip {
  background-image: url("../images/service-certifications-compliance.webp");
}

.private-hero {
  min-height: 180px;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.2)),
    url("../images/service-private-label-collage.webp") center 34% / cover no-repeat;
}

.private-hero h1 {
  width: min(1000px, calc(100% - 42px));
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.service-private {
  background: #fff;
  color: #1d1b18;
}

.private-section {
  padding: 66px 0;
}

.private-section.soft {
  background: #f7f7f7;
}

.private-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 84px;
}

.private-intro h2,
.private-section h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 24px;
}

.private-intro h2 {
  text-align: left;
}

.private-intro p,
.private-section p,
.private-section li {
  font-size: 13px;
  line-height: 1.75;
}

.private-product-shot {
  aspect-ratio: 1 / 1;
  background: url("../images/service-private-label-collage.webp") center / cover no-repeat;
}

.private-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  width: min(860px, calc(100% - 42px));
  margin: 28px auto 0;
}

.private-info-grid article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #e6e6e6;
}

.private-info-grid span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-weight: 800;
}

.private-info-grid h3 {
  margin: 0 0 3px;
  font-size: 13px;
}

.private-info-grid p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.private-content {
  width: min(860px, calc(100% - 42px));
  margin: 0 auto;
}

.private-block {
  margin-top: 44px;
}

.private-block h3 {
  margin: 0 0 16px;
  font-size: 15px;
}

.private-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.private-image-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.private-image-grid div,
.private-card-image {
  min-height: 146px;
  background-image: url("../images/service-private-label-collage.webp");
  background-size: 210%;
  background-repeat: no-repeat;
}

.private-image-grid.two div {
  min-height: 310px;
  background-size: 145%;
}

.img-pos-1 { background-position: 12% 18%; }
.img-pos-2 { background-position: 42% 20%; }
.img-pos-3 { background-position: 70% 20%; }
.img-pos-4 { background-position: 92% 34%; }
.img-pos-5 { background-position: 14% 74%; }
.img-pos-6 { background-position: 42% 74%; }
.img-pos-7 { background-position: 68% 76%; }
.img-pos-8 { background-position: 92% 76%; }

.private-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: min(860px, calc(100% - 42px));
  margin: 34px auto 0;
}

.private-audience-grid article {
  padding: 24px 24px 28px;
  border: 1px solid #e8e8e8;
  background: #fff;
  text-align: center;
}

.private-card-image {
  height: 205px;
  margin-bottom: 18px;
  background-size: cover;
}

.private-audience-grid h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.private-policy,
.private-cta {
  text-align: center;
}

.private-policy ul {
  display: inline-block;
  margin: 18px auto;
  padding-left: 0;
  list-style: none;
  text-align: left;
}

.private-faq {
  width: min(860px, calc(100% - 42px));
  margin: 24px auto 0;
  border-top: 1px solid #dcdcdc;
}

.private-faq details {
  border-bottom: 1px solid #dcdcdc;
  background: #fff;
}

.private-faq summary {
  padding: 12px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.private-faq p {
  margin: 0;
  padding: 0 14px 16px;
}

.private-cta {
  padding: 62px 0;
  color: #fff;
  background: #050505;
}

.private-cta p {
  color: #f2f2f2;
}

.private-cta .btn {
  min-width: 116px;
  margin: 7px;
  border-color: #fff;
}

.private-cta .btn-outline {
  color: #fff;
}

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

.heading-related-grid article {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(43, 34, 21, 0.07);
}

.heading-related-grid a {
  display: block;
}

.heading-related-grid div {
  aspect-ratio: 4 / 3;
  background-image: url("../images/heading-page-related.webp");
  background-size: 300% 200%;
}

.heading-related-grid .tile-1 { background-position: left top; }
.heading-related-grid .tile-2 { background-position: center top; }
.heading-related-grid .tile-3 { background-position: right top; }
.heading-related-grid .tile-4 { background-position: left bottom; }
.heading-related-grid .tile-5 { background-position: center bottom; }
.heading-related-grid .tile-6 { background-position: right bottom; }

.heading-related-grid h3,
.heading-related-grid p,
.heading-related-grid span {
  display: block;
  padding: 0 16px;
}

.heading-related-grid h3 {
  margin: 16px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.35;
}

.heading-related-grid p {
  min-height: 58px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.heading-related-grid span {
  margin: 18px 0;
  color: #111;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .heading-style-row,
  .heading-tab-gallery,
  .heading-pleat-gallery,
  .heading-two-col,
  .heading-partner .heading-two-col,
  .heading-related-grid {
    grid-template-columns: 1fr;
  }

  .heading-pleat-gallery {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .service-cert-row,
  .private-intro,
  .private-info-grid,
  .private-image-grid,
  .private-image-grid.two,
  .private-audience-grid {
    grid-template-columns: 1fr;
  }

  .private-intro {
    gap: 32px;
  }

  .private-section {
    padding: 46px 0;
  }

  .private-image-grid div,
  .private-image-grid.two div {
    min-height: 220px;
    background-size: cover;
  }
}

@media (max-width: 620px) {
  .service-article {
    width: min(100% - 28px, 680px);
    padding-top: 34px;
  }

  .service-article h1 {
    margin-bottom: 16px;
    font-size: 27px;
    line-height: 1.22;
  }

  .service-article h2 {
    font-size: 20px;
    line-height: 1.28;
  }

  .blog-article-meta {
    margin-bottom: 24px;
    font-size: 11px;
    line-height: 1.55;
  }

  .service-note-box {
    padding: 18px;
  }

  .service-cert-row,
  .private-content,
  .private-info-grid,
  .private-audience-grid {
    width: min(100% - 28px, 860px);
  }

  .service-image-strip {
    width: min(100% - 28px, 760px);
    height: 170px;
  }

  .private-hero {
    min-height: 150px;
  }

  .private-hero h1,
  .private-intro h2,
  .private-section h2 {
    font-size: 22px;
  }
}

/* 1440px guide pages */
.guide-1440 {
  background: #fff;
}

.guide-frame {
  width: min(1440px, 100%);
  margin: 0 auto;
  background: #fff;
}

.guide-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.guide-hero-wide {
  min-height: 276px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-color: #191713;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.guide-blog-hero {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)),
    url("../images/guides-blog-collage.webp");
  background-position: center 26%;
}

.guide-faq-hero {
  min-height: 320px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.46)),
    url("../images/guides-faq-window.webp");
}

.guide-blackout-hero {
  min-height: 190px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43)),
    url("../images/guides-blackout-manufacturer.webp");
  background-position: center 24%;
}

.guide-best-hero {
  min-height: 276px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    url("../images/guides-best-selling-curtains.webp");
  background-position: center 15%;
}

.guide-hero-wide h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.1;
}

.guide-hero-wide p {
  margin: 24px 0 0;
  font-size: 15px;
  font-weight: 700;
}

.guide-hero-wide .hero-line {
  width: 36px;
  height: 2px;
  margin: 16px auto 0;
  background: #fff;
}

.blog-grid-section {
  padding: 64px 0 78px;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.blog-card {
  min-height: 462px;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
  height: 213px;
  background-image: url("../images/guides-blog-collage.webp");
  background-size: 300% 300%;
  background-repeat: no-repeat;
}

.blog-img-1 { background-position: 0% 0%; }
.blog-img-2 { background-position: 50% 0%; }
.blog-img-3 { background-position: 100% 0%; }
.blog-img-4 { background-position: 0% 50%; }
.blog-img-5 { background-position: 50% 50%; }
.blog-img-6 { background-position: 100% 50%; }
.blog-img-7 { background-position: 0% 100%; }
.blog-img-8 { background-position: 50% 100%; }
.blog-img-9 { background-position: 100% 100%; }
.blog-img-source,
.blog-img-blackout-dimout,
.blog-img-factory-check,
.blog-img-sample-moq,
.blog-img-private-label-guide,
.blog-img-hotel-procurement,
.blog-img-hot-humid-fabric,
.blog-img-supplier-comparison,
.blog-img-sheer-supplier,
.blog-img-curtain-spec-sheet {
  background-size: cover;
}

.blog-img-source {
  background-image: url("../images/about-inside-factory.webp");
  background-position: center;
}

.blog-img-blackout-dimout {
  background-image: url("../images/blackout-construction.webp");
  background-position: center;
}

.blog-img-factory-check {
  background-image: url("../images/about-factory-exterior.webp");
  background-position: center;
}

.blog-img-sample-moq {
  background-image: url("../images/sample-fabric-swatches.webp");
  background-position: center;
}

.blog-img-private-label-guide {
  background-image: url("../images/custom-details-packaging.webp");
  background-position: center;
}

.blog-img-hotel-procurement {
  background-image: url("../images/hotel-page-hero.webp");
  background-position: center;
}

.blog-img-hot-humid-fabric {
  background-image: url("../images/outdoor-page-custom.webp");
  background-position: center;
}

.blog-img-supplier-comparison {
  background-image: url("../images/sample-production-delivery.webp");
  background-position: center;
}

.blog-img-sheer-supplier {
  background-image: url("../images/sheer-linen-options.webp");
  background-position: center;
}

.blog-img-curtain-spec-sheet {
  background-image: url("../images/sample-heading-options.webp");
  background-position: center;
}

.blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 24px 0;
}

.blog-card h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.04;
}

.blog-card p {
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 1.45;
}

.blog-card .read-more {
  margin-top: auto;
  padding-top: 22px;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card-date {
  margin-top: 28px;
  padding: 14px 24px;
  color: #aaa;
  font-size: 12px;
  border-top: 1px solid #eee;
}

.blog-pagination {
  margin-top: 24px;
  text-align: center;
  color: #111;
  font-size: 16px;
  letter-spacing: 0;
}

.blog-empty-state {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 58px 48px;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e2db;
}

.blog-empty-state .eyebrow {
  margin: 0 0 14px;
  color: #8f6c3e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.blog-empty-state h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.18;
}

.blog-empty-state > p:not(.eyebrow) {
  margin: 20px auto 0;
  max-width: 600px;
  color: #666;
  font-size: 15px;
  line-height: 1.65;
}

.blog-empty-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.blog-article-meta {
  margin: 0 0 30px;
  color: #8a8178;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.blog-article-image {
  width: min(760px, calc(100% - 42px));
  height: 300px;
  margin: 6px auto 22px;
  background-position: center;
  background-size: cover;
}

.blog-article-image.source-guide {
  background-image: url("../images/about-inside-factory.webp");
}

.blog-article-image.blackout-guide {
  background-image: url("../images/blackout-construction.webp");
}

.blog-article-image.factory-check-guide {
  background-image: url("../images/about-factory-exterior.webp");
}

.blog-article-image.sample-moq-guide {
  background-image: url("../images/sample-fabric-swatches.webp");
}

.blog-article-image.private-label-guide {
  background-image: url("../images/custom-details-packaging.webp");
}

.blog-article-image.hotel-procurement-guide {
  background-image: url("../images/hotel-page-hero.webp");
}

.blog-article-image.hot-humid-fabric-guide {
  background-image: url("../images/outdoor-page-custom.webp");
}

.blog-article-image.supplier-comparison-guide {
  background-image: url("../images/sample-production-delivery.webp");
}

.blog-article-image.sheer-supplier-guide {
  background-image: url("../images/sheer-linen-options.webp");
}

.blog-article-image.curtain-spec-sheet-guide {
  background-image: url("../images/sample-heading-options.webp");
}

.faq-intro {
  padding: 94px 0 78px;
  text-align: center;
}

.faq-intro h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

.faq-intro > p {
  width: min(760px, 100%);
  margin: 0 auto 36px;
  font-size: 16px;
  line-height: 1.45;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}

.faq-item {
  margin-bottom: 14px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: #f5f6f8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
}

.faq-question::after {
  content: "+";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: "o";
  font-size: 12px;
}

.faq-answer {
  padding: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.guide-contact-band {
  padding: 82px 0;
  background:
    linear-gradient(rgba(246, 242, 223, 0.24), rgba(246, 242, 223, 0.24)),
    url("../images/guides-faq-window.webp") center / cover no-repeat;
}

.guide-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.guide-contact-info h2 {
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.guide-contact-info address {
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
}

.guide-contact-form {
  padding: 0;
}

.guide-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.guide-contact-form label {
  display: block;
  font-size: 14px;
}

.guide-contact-form input,
.guide-contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #a9a9a9;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
}

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

.guide-contact-form button {
  width: 100%;
  margin-top: 14px;
  border: 0;
  background: #050505;
}

.blackout-guide-section {
  padding: 44px 0;
}

.blackout-guide-section.soft {
  background: #f7f7f7;
}

.blackout-guide-section h2 {
  margin: 0 0 24px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.blackout-intro-grid,
.blackout-case-row,
.blackout-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.blackout-guide-section p,
.blackout-guide-section li {
  font-size: 13px;
  line-height: 1.7;
}

.blackout-image {
  min-height: 248px;
  background-image: url("../images/guides-blackout-manufacturer.webp");
  background-size: 220%;
  background-repeat: no-repeat;
}

.blackout-main-img { background-position: 100% 2%; }
.blackout-case-img-1 { background-position: 65% 60%; }
.blackout-case-img-2 { background-position: 8% 72%; }
.blackout-why-img { background-position: 92% 82%; }

.option-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.option-card-img {
  height: 142px;
  background-image: url("../images/guides-blackout-manufacturer.webp");
  background-size: 400% 300%;
  background-repeat: no-repeat;
}

.opt-1 { background-position: 0% 0%; }
.opt-2 { background-position: 33% 0%; }
.opt-3 { background-position: 66% 0%; }
.opt-4 { background-position: 100% 0%; }
.opt-5 { background-position: 0% 46%; }
.opt-6 { background-position: 33% 46%; }
.opt-7 { background-position: 66% 46%; }
.opt-8 { background-position: 100% 46%; }

.option-grid-4 h3 {
  margin: 12px 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.option-grid-4 p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.best-blackout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 18px;
  text-align: center;
}

.best-blackout-grid .option-card-img {
  height: 142px;
  background-size: 400% 400%;
}

.best-blackout-grid h3 {
  margin: 9px 0 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.sample-banner {
  min-height: 116px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.1)),
    url("../images/guides-blackout-manufacturer.webp") center 64% / cover no-repeat;
  color: #fff;
}

.sample-banner .guide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sample-banner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.customization-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.customization-grid .blackout-image {
  min-height: 185px;
}

.blackout-case-row {
  padding: 36px 0;
  border-top: 1px solid #e1e1e1;
}

.blackout-case-row h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.best-selling-guide {
  padding: 72px 0;
}

.best-selling-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: center;
  margin-bottom: 0;
}

.best-selling-intro h2,
.best-selling-guide h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.15;
}

.best-selling-intro p,
.best-selling-guide p,
.best-selling-guide li {
  font-size: 14px;
  line-height: 1.78;
}

.best-selling-main-image {
  min-height: 378px;
  background: url("../images/guides-best-selling-curtains.webp") 8% 8% / 255% no-repeat;
}

.best-picks-section {
  padding-top: 12px;
}

.best-picks-section h2,
.best-reasons-section h2 {
  text-align: center;
}

.best-picks-section > .guide-inner > p,
.best-reasons-section > .guide-inner > p {
  width: min(660px, 100%);
  margin: 0 auto 34px;
  text-align: center;
  color: #555;
}

.best-pick-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(1020px, 100%);
  margin: 0 auto;
}

.best-pick-gallery a {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  min-height: 318px;
  background-color: #191713;
  background-image: url("../images/guides-best-selling-curtains.webp");
  background-size: 300% 300%;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.best-pick-gallery a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.55));
}

.best-pick-gallery span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 8px 10px;
  background: rgba(21, 19, 15, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.best-pick-1 { background-position: 0% 0%; }
.best-pick-2 { background-position: 50% 0%; }
.best-pick-3 { background-position: 100% 0%; }
.best-pick-4 { background-position: 0% 50%; }
.best-pick-5 { background-position: 50% 50%; }
.best-pick-6 { background-position: 100% 50%; }
.best-pick-7 { background-position: 0% 100%; }
.best-pick-8 { background-position: 50% 100%; }
.best-pick-9 { background-position: 100% 100%; }

.best-reasons-section {
  padding-top: 20px;
}

.hot-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: min(980px, 100%);
  margin: 42px auto 0;
}

.hot-support-grid article {
  min-height: 302px;
  padding: 40px 28px 34px;
  text-align: center;
  background: #fffdfb;
  border: 1px solid #e8ded4;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(43, 34, 21, 0.06);
}

.hot-support-grid h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.1;
}

.hot-reason-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a89684;
  border-radius: 50%;
  background: #f1ebe5;
  font-size: 28px;
  font-weight: 700;
}

.hot-support-grid article::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin: 18px auto 0;
  background: #cdb79c;
}

.best-help-card {
  width: min(980px, 100%);
  margin: 68px auto 0;
  padding: 46px 42px;
  text-align: center;
  border: 1px solid #eadfd5;
  border-radius: 12px;
  background: #fffdfb;
  box-shadow: 0 12px 34px rgba(43, 34, 21, 0.06);
}

.best-help-card h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.best-help-card p {
  width: min(720px, 100%);
  margin: 0 auto 24px;
  color: #666;
}

@media (max-width: 900px) {
  .blog-card-grid,
  .faq-columns,
  .guide-contact-grid,
  .blackout-intro-grid,
  .blackout-case-row,
  .blackout-why-grid,
  .best-selling-intro,
  .option-grid-4,
  .best-blackout-grid,
  .customization-grid,
  .best-pick-gallery,
  .hot-support-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    min-height: 0;
  }

  .sample-banner .guide-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .guide-inner {
    width: min(100% - 28px, 1200px);
  }

  .guide-hero-wide h1,
  .faq-intro h2 {
    font-size: 25px;
  }

  .blog-grid-section {
    padding: 46px 0 64px;
  }

  .blog-empty-state {
    padding: 38px 22px;
  }

  .blog-empty-state h2 {
    font-size: 24px;
  }

  .blog-article-image {
    width: min(100% - 28px, 760px);
    height: 210px;
  }

  .blog-img-source {
    background-image: url("../images/about-inside-factory-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-blackout-dimout {
    background-image: url("../images/blackout-construction-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-factory-check {
    background-image: url("../images/about-factory-exterior-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-sample-moq {
    background-image: url("../images/sample-fabric-swatches-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-sheer-supplier {
    background-image: url("../images/sheer-linen-options-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-curtain-spec-sheet {
    background-image: url("../images/sample-heading-options-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-private-label-guide {
    background-image: url("../images/custom-details-packaging-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-hotel-procurement {
    background-image: url("../images/hotel-page-hero-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-hot-humid-fabric {
    background-image: url("../images/outdoor-page-custom-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-supplier-comparison {
    background-image: url("../images/sample-production-delivery-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-sheer-supplier {
    background-image: url("../images/sheer-linen-options-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-curtain-spec-sheet {
    background-image: url("../images/sample-heading-options-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-private-label-guide {
    background-image: url("../images/custom-details-packaging-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-hotel-procurement {
    background-image: url("../images/hotel-page-hero-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-article-image.source-guide {
    background-image: url("../images/about-inside-factory-mobile.webp");
  }

  .blog-article-image.blackout-guide {
    background-image: url("../images/blackout-construction-mobile.webp");
  }

  .blog-article-image.factory-check-guide {
    background-image: url("../images/about-factory-exterior-mobile.webp");
  }

  .blog-article-image.sample-moq-guide {
    background-image: url("../images/sample-fabric-swatches-mobile.webp");
  }

  .blog-article-image.hot-humid-fabric-guide {
    background-image: url("../images/outdoor-page-custom-mobile.webp");
  }

  .blog-article-image.supplier-comparison-guide {
    background-image: url("../images/sample-production-delivery-mobile.webp");
  }

  .blog-article-image.sheer-supplier-guide {
    background-image: url("../images/sheer-linen-options-mobile.webp");
  }

  .blog-article-image.curtain-spec-sheet-guide {
    background-image: url("../images/sample-heading-options-mobile.webp");
  }

  .blog-article-image.private-label-guide {
    background-image: url("../images/custom-details-packaging-mobile.webp");
  }

  .blog-article-image.hotel-procurement-guide {
    background-image: url("../images/hotel-page-hero-mobile.webp");
  }

  .blog-empty-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .guide-contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }

  body.mobile-nav-active {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    height: auto;
  }

  .site-header.mobile-nav-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 65;
    background: #fff;
    box-shadow: 0 16px 34px rgba(43, 34, 21, 0.12);
    overflow: hidden;
  }

  .nav-wrap {
    min-height: 62px;
    padding: 12px 0;
    display: grid;
    grid-template-columns: minmax(88px, 1fr) minmax(94px, 112px) auto;
    gap: 0 8px;
    align-items: center;
  }

  .site-header.mobile-nav-open .nav-wrap {
    height: 100vh;
    height: 100dvh;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
    overflow: hidden;
  }

  .brand {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    font-size: 20px;
    line-height: 0.95;
    overflow-wrap: anywhere;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    margin-left: 0;
    margin-top: 0;
    display: block;
    overflow: hidden;
    border-top: 0 solid transparent;
    background: #fff;
    font-size: 13px;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.24s ease, margin-top 0.24s ease, border-color 0.24s ease;
  }

  .site-header.mobile-nav-open .main-nav {
    height: calc(100vh - 86px);
    height: calc(100dvh - 86px);
    max-height: none;
    margin-top: 12px;
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    border-top: 1px solid var(--line);
    visibility: visible;
    pointer-events: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav > a,
  .nav-dropdown > a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(231, 225, 215, 0.72);
  }

  .dropdown-menu a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(231, 225, 215, 0.58);
  }

  .main-nav a::before {
    display: none;
  }

  .nav-dropdown {
    display: block;
  }

  .nav-dropdown > a::after {
    float: right;
    margin-top: 5px;
    margin-right: 2px;
    transition: transform 0.18s ease;
  }

  .nav-dropdown.dropdown-open > a::after {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0 0 0 16px;
    border: 0;
    border-bottom: 0 solid rgba(231, 225, 215, 0.72);
    box-shadow: none;
    background: #fbfaf7;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: none;
    transition: max-height 0.24s ease, opacity 0.18s ease, visibility 0.18s ease, border-width 0.18s ease;
  }

  .nav-dropdown.dropdown-open .dropdown-menu {
    max-height: 360px;
    border-bottom-width: 1px;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown:hover .dropdown-menu {
    transform: none;
  }

  .dropdown-menu a {
    color: #4a453d;
    white-space: normal;
  }

  .dropdown-menu a:last-child {
    border-bottom: 0;
  }

  .language-switcher {
    display: block;
    justify-self: end;
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 0;
  }

  .gtranslate-language-switcher {
    min-width: 0;
  }

  .language-select {
    width: 100%;
    min-width: 0;
    max-width: 112px;
    min-height: 36px;
    padding: 7px 24px 7px 8px;
    font-size: 11px;
  }

  .gtranslate_wrapper {
    min-height: 0;
    padding: 0;
    border-bottom: 0;
  }

  .gtranslate_wrapper .gt_switcher {
    width: 100%;
  }

  .gtranslate_wrapper .gt_selected a {
    max-width: 112px;
    min-height: 36px;
    overflow: hidden;
    padding: 7px 8px;
    font-size: 11px;
    white-space: nowrap;
  }

  .gtranslate_wrapper .gt_option {
    max-height: 260px;
    overflow-y: auto;
    box-shadow: none;
  }

  .gtranslate_wrapper .gt_option a {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 13px;
  }

  .gt_selector,
  .gtranslate_wrapper select {
    width: 100%;
    max-width: none;
  }

  .search-btn {
    display: none;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: max(6px, env(safe-area-inset-bottom, 0px));
    z-index: 58;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: min(280px, calc(100% - 24px));
    transform: translateX(-50%);
  }

  body.mobile-nav-active .mobile-contact-bar {
    display: none;
  }

  .mobile-contact-bar a {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    border-radius: 4px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }

  .mobile-contact-bar a::before {
    content: "";
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
  }

  .mobile-contact-whatsapp {
    background: #23c15f;
  }

  .mobile-contact-whatsapp::before {
    width: 17px;
    height: 17px;
    border: 2px solid #fff;
    border-radius: 50%;
  }

  .mobile-contact-whatsapp::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: -18px;
    margin-bottom: -16px;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    transform: rotate(-16deg);
  }

  .mobile-contact-email {
    background: #15130f;
  }

  .mobile-contact-email::before {
    width: 18px;
    height: 13px;
    border: 2px solid #fff;
    border-radius: 2px;
    background:
      linear-gradient(135deg, transparent 47%, #fff 50%, transparent 53%) left top / 50% 100% no-repeat,
      linear-gradient(45deg, transparent 47%, #fff 50%, transparent 53%) right top / 50% 100% no-repeat;
  }

  .whatsapp-panel {
    display: none;
  }
}

@media (max-width: 360px) {
  .brand {
    font-size: 18px;
  }

  .nav-wrap {
    gap: 0 8px;
  }

  .mobile-nav-toggle {
    padding: 9px 10px;
  }
}


@media (max-width: 620px) {
  /* Mobile WebP background overrides */
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
  }

  .hero {
    background-image: url("../images/home-hero-mobile.webp");
  }

  .about-hero {
    background-image: url("../images/about-hero-mobile.webp");
  }

  .products-hero {
    background-image: url("../images/products-hero-mobile.webp");
  }

  .velvet-hero {
    background-image: url("../images/products-velvet-mobile.webp");
  }

  .hotel-hero {
    background-image: url("../images/products-hotel-mobile.webp");
  }

  .outdoor-hero {
    background-image: url("../images/products-outdoor-mobile.webp");
  }

  .shower-hero {
    background-image: url("../images/products-shower-mobile.webp");
  }

  .category-card {
    background-image: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.68)), url("../images/curtain-categories-mobile.webp");
  }

  .sample-cta {
    background: linear-gradient(90deg, rgba(37, 35, 29, 0.72), rgba(37, 35, 29, 0.42)), url("../images/sample-banner-mobile.webp") center / cover no-repeat;
  }

  .detail-1,
.detail-2,
.detail-3,
.detail-4 {
    background-image: url("../images/custom-details-sewing-mobile.webp");
  }

  .pack-1,
.pack-2,
.pack-3,
.pack-4 {
    background-image: url("../images/custom-details-packaging-mobile.webp");
  }

  .process-card {
    background-image: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)), url("../images/process-bg-mobile.webp");
  }

  .about-product {
    background-image: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.58)), url("../images/curtain-categories-mobile.webp");
  }

  .thumb-blackout-1,
.thumb-blackout-2,
.thumb-blackout-3,
.thumb-blackout-4 {
    background-image: url("../images/products-blackout.webp");
  }

  .thumb-sheer-1,
.thumb-sheer-2,
.thumb-sheer-3,
.thumb-sheer-4 {
    background-image: url("../images/products-sheer.webp");
  }

  .thumb-linen-1,
.thumb-linen-2,
.thumb-linen-3,
.thumb-linen-4 {
    background-image: url("../images/products-linen.webp");
  }

  .thumb-velvet-1,
.thumb-velvet-2,
.thumb-velvet-3,
.thumb-velvet-4 {
    background-image: url("../images/products-velvet.webp");
  }

  .thumb-hotel-1,
.thumb-hotel-2,
.thumb-hotel-3,
.thumb-hotel-4 {
    background-image: url("../images/products-hotel.webp");
  }

  .thumb-shower-1,
.thumb-shower-2,
.thumb-shower-3,
.thumb-shower-4 {
    background-image: url("../images/products-shower.webp");
  }

  .thumb-outdoor-1,
.thumb-outdoor-2,
.thumb-outdoor-3 {
    background-image: url("../images/products-outdoor.webp");
  }

  .solution-thumb {
    background-image: url("../images/products-solutions.webp");
  }

  .product-contact {
    background: linear-gradient(90deg, rgba(250, 248, 241, 0.92), rgba(250, 248, 241, 0.82)), url("../images/products-contact-bg-mobile.webp") center / cover no-repeat;
  }

  .heading-guide-hero {
    background-image: url("../images/guide-heading-styles-mobile.webp");
  }

  .oem-guide-hero {
    background-image: url("../images/guide-oem-support-mobile.webp");
  }

  .sample-guide-hero {
    background-image: url("../images/guide-sample-support-mobile.webp");
  }

  .guide-img-heading {
    background-image: url("../images/guide-heading-styles-mobile.webp");
  }

  .guide-img-oem {
    background-image: url("../images/guide-oem-support-mobile.webp");
  }

  .guide-img-sample {
    background-image: url("../images/guide-sample-support-mobile.webp");
  }

  .sample-color-cards {
    background-image: url("../images/sample-color-cards-mobile.webp");
  }

  .sample-fabric-swatches {
    background-image: url("../images/sample-fabric-swatches-mobile.webp");
  }

  .sample-finished-curtains {
    background-image: url("../images/sample-finished-curtain-samples-mobile.webp");
  }

  .sample-consultation {
    background-image: url("../images/sample-consultation-mobile.webp");
  }

  .sample-fabric-options {
    background-image: url("../images/sample-fabric-options-mobile.webp");
  }

  .sample-heading-options {
    background-image: url("../images/sample-heading-options-mobile.webp");
  }

  .sample-production-delivery {
    background-image: url("../images/sample-production-delivery-mobile.webp");
  }

  .sample-packaging-image {
    background-image: url("../images/sample-packaging-options-mobile.webp");
  }

  .rel-sheer {
    background-image: url("../images/products-sheer.webp");
  }

  .rel-sewing {
    background-image: url("../images/factory-sewing-mobile.webp");
  }

  .rel-heading {
    background-image: url("../images/guide-heading-styles-mobile.webp");
  }

  .rel-room-1 {
    background-image: url("../images/sheer-intro-mobile.webp");
  }

  .rel-room-2 {
    background-image: url("../images/products-velvet.webp");
  }

  .rel-room-3 {
    background-image: url("../images/blackout-intro-mobile.webp");
  }

  .bo-construction-1,
.bo-construction-2,
.bo-construction-3,
.bo-construction-4 {
    background-image: url("../images/blackout-construction-mobile.webp");
  }

  .bo-fabric-1,
.bo-fabric-2,
.bo-fabric-3,
.bo-fabric-4 {
    background-image: url("../images/blackout-fabrics-mobile.webp");
  }

  .bo-p1-1,
.bo-p1-2,
.bo-p1-3,
.bo-p1-4 {
    background-image: url("../images/blackout-products-1.webp");
  }

  .bo-p2-1,
.bo-p2-2,
.bo-p2-3,
.bo-p2-4 {
    background-image: url("../images/blackout-products-2.webp");
  }

  .bo-p3-1,
.bo-p3-2,
.bo-p3-3,
.bo-p3-4 {
    background-image: url("../images/blackout-products-3.webp");
  }

  .vt-product-1,
.vt-product-2,
.vt-product-3,
.vt-product-4,
.vt-option-1,
.vt-option-2,
.vt-option-3,
.vt-p1-1,
.vt-p1-2,
.vt-p1-3,
.vt-p1-4 {
    background-image: url("../images/products-velvet.webp");
  }

  .vt-p2-1,
.vt-p2-2,
.vt-p2-3,
.vt-p2-4 {
    background-image: url("../images/blackout-products-3.webp");
  }

  .vt-p3-1,
.vt-p3-2,
.vt-p3-3,
.vt-p3-4 {
    background-image: url("../images/blackout-products-2.webp");
  }

  .velvet-sample {
    background-image: linear-gradient(90deg, rgba(37, 35, 29, 0.74), rgba(37, 35, 29, 0.38)), url("../images/products-velvet.webp");
  }

  .velvet-custom-thumb {
    background-image: url("../images/custom-details-mobile.webp");
  }

  .hotel-img-1,
.hotel-img-2,
.hotel-img-3,
.hotel-img-4,
.hotel-case-1,
.hotel-case-2 {
    background-image: url("../images/products-hotel.webp");
  }

  .hotel-bk-1,
.hotel-bk-2,
.hotel-bk-3,
.hotel-bk-4 {
    background-image: url("../images/blackout-products-2.webp");
  }

  .hotel-bk-5,
.hotel-bk-6,
.hotel-bk-7,
.hotel-bk-8 {
    background-image: url("../images/blackout-products-3.webp");
  }

  .hotel-sheer-1,
.hotel-sheer-2,
.hotel-sheer-3,
.hotel-sheer-4 {
    background-image: url("../images/sheer-products-1.webp");
  }

  .hotel-custom-thumb {
    background-image: url("../images/custom-details-sewing-mobile.webp");
  }

  .outdoor-img-1,
.outdoor-type-1,
.outdoor-type-2,
.outdoor-type-3 {
    background-image: url("../images/products-outdoor.webp");
  }

  .outdoor-custom-thumb {
    background-image: url("../images/custom-details-mobile.webp");
  }

  .outdoor-head-1,
.outdoor-head-2,
.outdoor-head-3,
.outdoor-head-4 {
    background-image: url("../images/custom-details-sewing-mobile.webp");
  }

  .shower-img-1,
.shower-fabric-1,
.shower-fabric-2,
.shower-fabric-3,
.shower-fabric-4,
.shower-rec-1,
.shower-rec-2,
.shower-rec-3,
.shower-rec-4 {
    background-image: url("../images/products-shower.webp");
  }

  .shower-fabric-5,
.shower-fabric-6,
.shower-fabric-7,
.shower-fabric-8,
.shower-peva-1,
.shower-peva-2,
.shower-peva-3,
.shower-peva-4 {
    background-image: url("../images/products-shower.webp");
  }

  .shower-waffle,
.shower-case {
    background-image: url("../images/products-shower.webp");
  }

  .blackout-sample {
    background-image: linear-gradient(90deg, rgba(37, 35, 29, 0.72), rgba(37, 35, 29, 0.36)), url("../images/products-blackout.webp");
  }

  .bo-flex-1 {
    background-image: url("../images/blackout-fabrics-mobile.webp");
  }

  .bo-flex-2 {
    background-image: url("../images/blackout-construction-mobile.webp");
  }

  .bo-flex-3 {
    background-image: url("../images/products-solutions.webp");
  }

  .sheer-option-thumb {
    background-image: url("../images/sheer-linen-options-mobile.webp");
  }

  .feature-thumb.sheer-linen-1,
.feature-thumb.sheer-linen-2,
.feature-thumb.sheer-linen-3 {
    background-image: url("../images/sheer-linen-options-mobile.webp");
  }

  .sheer-detail-1,
.sheer-detail-2,
.sheer-detail-3 {
    background-image: url("../images/sheer-details-mobile.webp");
  }

  .sh-p1-1,
.sh-p1-2,
.sh-p1-3,
.sh-p1-4 {
    background-image: url("../images/sheer-products-1.webp");
  }

  .sh-p2-1,
.sh-p2-2,
.sh-p2-3,
.sh-p2-4 {
    background-image: url("../images/sheer-products-2.webp");
  }

  .sh-p3-1,
.sh-p3-2,
.sh-p3-3,
.sh-p3-4 {
    background-image: url("../images/sheer-products-3.webp");
  }

  .oem-fabric-gallery .oem-panel {
    background-image: url("../images/oem-custom-fabrics-mobile.webp");
  }

  .oem-detail-gallery .oem-panel {
    background-image: url("../images/oem-custom-detailing-mobile.webp");
  }

  .oem-heading-gallery .oem-panel {
    background-image: url("../images/oem-heading-styles-mobile.webp");
  }

  .oem-treatment-image {
    background-image: url("../images/oem-functional-treatments-mobile.webp");
  }

  .shower-page-hero {
    background-image: url("../images/shower-page-hero-mobile.webp");
  }

  .shower-page-fabric-grid div {
    background-image: url("../images/shower-page-fabric-grid-mobile.webp");
  }

  .shower-page-peva-grid div {
    background-image: url("../images/shower-page-peva-grid-mobile.webp");
  }

  .shower-page-recommended-grid div {
    background-image: url("../images/shower-page-recommended-mobile.webp");
  }

  .shower-page-contact {
    background: linear-gradient(90deg, rgba(237, 234, 219, 0.62), rgba(237, 234, 219, 0.42)), url("../images/products-contact-bg-mobile.webp") center / cover no-repeat;
  }

  .outdoor-page-hero {
    background-image: url("../images/outdoor-page-hero-mobile.webp");
  }

  .hotel-page-hero {
    background-image: url("../images/hotel-page-hero-mobile.webp");
  }

  .outdoor-type-img {
    background-image: url("../images/outdoor-page-types-mobile.webp");
  }

  .outdoor-heading-grid div {
    background-image: url("../images/outdoor-page-headings-mobile.webp");
  }

  .product-page-contact {
    background: linear-gradient(90deg, rgba(237, 234, 219, 0.62), rgba(237, 234, 219, 0.42)), url("../images/products-contact-bg-mobile.webp") center / cover no-repeat;
  }

  .hotel-product-grid div {
    background-image: url("../images/hotel-page-blackout-grid-mobile.webp");
  }

  .hotel-sheer-grid div {
    background-image: url("../images/hotel-page-sheer-grid-mobile.webp");
  }

  .heading-page-hero {
    background: url("../images/heading-page-hero-mobile.webp") center / cover no-repeat;
  }

  .heading-main-style {
    background-image: url("../images/heading-page-styles-mobile.webp");
  }

  .heading-tab-gallery div {
    background-image: url("../images/heading-page-tabs-mobile.webp");
  }

  .heading-pleat-gallery div {
    background-image: url("../images/heading-page-pleat-details-mobile.webp");
  }

  .quality-strip {
    background-image: url("../images/service-quality-guarantee-mobile.webp");
  }

  .cert-strip {
    background-image: url("../images/service-certifications-compliance-mobile.webp");
  }

  .private-hero {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.2)),
    url("../images/service-private-label-collage-mobile.webp") center 34% / cover no-repeat;
  }

  .private-product-shot {
    background: url("../images/service-private-label-collage-mobile.webp") center / cover no-repeat;
  }

  .private-image-grid div,
.private-card-image {
    background-image: url("../images/service-private-label-collage-mobile.webp");
  }

  .heading-related-grid div {
    background-image: url("../images/heading-page-related-mobile.webp");
  }

  .guide-blog-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)),
    url("../images/guides-blog-collage-mobile.webp");
  }

  .guide-faq-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.46)),
    url("../images/guides-faq-window-mobile.webp");
  }

  .guide-blackout-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43)),
    url("../images/guides-blackout-manufacturer-mobile.webp");
  }

  .guide-best-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    url("../images/guides-best-selling-curtains-mobile.webp");
  }

  .blog-card-image {
    background-image: url("../images/guides-blog-collage-mobile.webp");
  }

  .blog-img-source {
    background-image: url("../images/about-inside-factory-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-blackout-dimout {
    background-image: url("../images/blackout-construction-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-factory-check {
    background-image: url("../images/about-factory-exterior-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .blog-img-sample-moq {
    background-image: url("../images/sample-fabric-swatches-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .guide-contact-band {
    background: linear-gradient(rgba(246, 242, 223, 0.24), rgba(246, 242, 223, 0.24)),
    url("../images/guides-faq-window-mobile.webp") center / cover no-repeat;
  }

  .blackout-image {
    background-image: url("../images/guides-blackout-manufacturer-mobile.webp");
  }

  .option-card-img {
    background-image: url("../images/guides-blackout-manufacturer-mobile.webp");
  }

  .sample-banner {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.1)),
    url("../images/guides-blackout-manufacturer-mobile.webp") center 64% / cover no-repeat;
  }

  .best-selling-main-image {
    background: url("../images/guides-best-selling-curtains-mobile.webp") 8% 8% / 255% no-repeat;
  }

  .best-pick-gallery a {
    background-image: url("../images/guides-best-selling-curtains-mobile.webp");
  }
}
