@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 100;
	src: url('../fonts/iransansx/woff2/IRANSansX-Thin.woff2') format('woff2');		
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 200;
	src: url('../fonts/iransansx/woff2/IRANSansX-UltraLight.woff2') format('woff2');	
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/iransansx/woff2/IRANSansX-Light.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/iransansx/woff2/IRANSansX-Medium.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/iransansx/woff2/IRANSansX-DemiBold.woff2') format('woff2');	 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 800;
	src: url('../fonts/iransansx/woff2/IRANSansX-ExtraBold.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 900;
	src: url('../fonts/iransansx/woff2/IRANSansX-Black.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 950;
	src: url('../fonts/iransansx/woff2/IRANSansX-ExtraBlack.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 1000;
	src: url('../fonts/iransansx/woff2/IRANSansX-Heavy.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: bold;
	src: url('../fonts/iransansx/woff2/IRANSansX-Bold.woff2') format('woff2');	 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: normal;
	src: url('../fonts/iransansx/woff2/IRANSansX-Regular.woff2') format('woff2');	
}

/* Golrang homepage — design system */

:root {
  --blue-deep: #1a3a8c;
  --blue-mid: #2b5bb0;
  --blue-soft: #6b87c4;
  --blue-muted: #8aa0c8;
  --red: #e31c23;
  --bg: #f4f6f8;
  --white: #ffffff;
  --text: #1a2b56;
  --text-soft: #5a6f9a;
  --border: #e4e8ef;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 8px 24px rgba(26, 58, 140, 0.08);
  --container: 1180px;
  --font: "IRANSansX", Tahoma, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-blue {
  background: var(--blue-mid);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(43, 91, 176, 0.28);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(227, 28, 35, 0.28);
}

.btn-wide {
  min-width: 180px;
  margin-top: 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(26, 58, 140, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
  direction: ltr;
}

.site-logo img {
  width: 132px;
  height: auto;
}

.nav-drawer-logo {
  display: none;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  direction: rtl;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-list a {
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 0.2rem 0;
}

.nav-list a.is-active,
.nav-list a:hover {
  color: var(--blue-mid);
}

.nav-list a.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -6px;
  height: 2px;
  background: var(--blue-mid);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  direction: ltr;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--blue-mid);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-btn:hover,
.search-toggle[aria-expanded="true"] {
  background: rgba(43, 91, 176, 0.08);
}

.header-search {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(26, 58, 140, 0.08);
  padding: 0.85rem 0 1.15rem;
}

.header-search.is-open {
  display: block;
}

.header-search-form {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  direction: rtl;
}

.header-search-form input[type="search"] {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(26, 58, 140, 0.18);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: #f7f9fc;
  outline: none;
}

.header-search-form input[type="search"]:focus {
  border-color: var(--blue-mid);
  background: var(--white);
}

.header-search-submit {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0.55rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--blue-mid);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.header-search-submit:hover {
  opacity: 0.95;
}

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

.search-results-list {
  display: grid;
  gap: 1rem;
  text-align: right;
  margin-top: 1.75rem;
}

.search-result-card {
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(26, 58, 140, 0.1);
  border-radius: 16px;
  background: var(--white);
}

.search-result-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.search-result-card h2 a {
  color: var(--blue-deep);
}

.search-result-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
}

.search-results-empty {
  margin-top: 1.25rem;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue-deep);
  margin-inline: auto;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 60, 0.45);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  padding: 1.25rem 0 0.5rem;
}

.hero .container,
.hero-container {
  width: min(100% - 2.5rem, var(--container));
  max-width: var(--container);
}

.hero-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #eceff3;
  box-shadow: none;
  line-height: 0;
}

.hero-img,
.hero-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1286 / 477;
  object-fit: cover;
}

.hero-actions {
  position: absolute;
  left: 11%;
  bottom: 20.5%;
  display: flex;
  align-items: center;
  gap: 1.55rem;
  z-index: 4;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 39px;
  padding: 0 1.35rem;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.hero-btn:active {
  transform: translateY(0);
}

.hero-btn-blue {
  background: linear-gradient(90deg, #2b4095 0%, #298ccb 100%);
}

.hero-btn-blue:hover {
  filter: brightness(1.08);
}

.hero-btn-arrow {
  display: inline-block;
  width: 8px;
  height: 10px;
  fill: #ffffff;
  flex-shrink: 0;
}

.hero-btn-red {
  background: #ec1f27;
}

.hero-btn-red:hover {
  background: #d8161e;
}

/* Shared section bits */
.section-eyebrow {
  margin: 0;
  color: var(--blue-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.section-eyebrow.with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.section-title {
  margin: 0.35rem 0 0;
  color: var(--blue-deep);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0.65rem auto 0;
  max-width: 34rem;
  color: var(--blue-soft);
  font-size: 0.95rem;
}

/* Products */
.products {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  width: 100%;
}

.products-eyebrow {
  margin: 0 0 0.35rem;
  color: #2357a6;
  font-size: 1.15rem;
  font-weight: 600;
}

.products-title {
  margin: 0 0 1.5rem;
  color: #1d367d;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.products-tabs {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.8rem;
  border: 1.5px solid #2057a6;
  border-radius: 999px;
  padding: 2.5px;
  background: var(--white);
}

.tab-link {
  background: transparent;
  border: none;
  color: #2057a6;
  font-family: var(--font);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.42rem 1.45rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-link:hover {
  background: linear-gradient(90deg, #2b3f95 0%, #298bcb 100%);
  color: var(--white);
}

.tab-link.is-active {
  background: linear-gradient(90deg, #2b3f95 0%, #298bcb 100%);
  color: var(--white);
  font-weight: 700;
}

.products-caption {
  margin: 0 0 0.75rem;
  color: #1d367d;
  font-size: 1.42rem;
  font-weight: 800;
  min-height: 2rem;
}

.product-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  min-height: 28px;
}

.badge {
  display: inline-block;
  padding: 0.24rem 0.95rem;
  font-size: 0.78rem;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.4;
}

.badge-pink {
  background: #fee2e2;
  color: #e31c23;
  border: 1px solid #fee2e2;
}

.badge-outline {
  border: 1px solid #f87171;
  color: #e31c23;
  background: var(--white);
}

.products-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0.5rem auto 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.products-track {
  position: relative;
  width: 100%;
  height: 440px;
  padding: 0;
}

.product-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  will-change: left, transform, opacity, filter;
  transition:
    left 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
}

.product-slide img {
  display: block;
  margin-inline: auto;
  object-fit: contain;
  transition: height 0.45s ease, max-width 0.45s ease, filter 0.45s ease, transform 0.45s ease;
}

.product-slide.is-center {
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 1;
  filter: none;
}

.product-slide.is-left {
  left: 16%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 1;
  filter: blur(3.5px);
  opacity: 0.8;
  cursor: pointer;
}

.product-slide.is-right {
  left: 84%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 1;
  filter: blur(3.5px);
  opacity: 0.8;
  cursor: pointer;
}

.product-slide.is-active img {
  height: 420px;
  width: auto;
  max-width: 220px;
  mix-blend-mode: multiply;
  filter: none;
}

.product-slide.is-side img {
  height: 310px;
  width: auto;
  max-width: 210px;
  mix-blend-mode: multiply;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #2057a6;
  background: var(--white);
  color: #2057a6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(32, 87, 166, 0.12);
}

.slider-arrow svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.8px;
}

.slider-prev {
  left: calc(50% - 190px);
}

.slider-next {
  right: calc(50% - 190px);
}

.slider-arrow:hover {
  background: #2057a6;
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.btn-view-product {
  background: #2057a6;
  color: var(--white);
  border-radius: 999px;
  padding: 0.7rem 2.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(32, 87, 166, 0.28);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-view-product:hover {
  background: #174586;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32, 87, 166, 0.38);
  color: var(--white);
}

.products-why-text {
  margin: 3.2rem auto 0;
  color: #246cb7;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

/* Trust */
.trust {
  padding: 4.5rem 0 2.75rem;
  background: #f7f9fb;
  text-align: center;
  position: relative;
}

.trust-eyebrow {
  margin: 0 0 0.6rem;
  color: #246cb7;
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-title {
  margin: 0 0 0.4rem;
  color: #2b3990;
  font-size: clamp(2.2rem, 3.8vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trust-sub {
  margin: 0 auto 5.5rem;
  max-width: 38rem;
  color: #3b7fc4;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
  max-width: 1040px;
  margin-inline: auto;
}

.trust-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(220, 230, 245, 0.85);
  border-radius: 22px;
  padding: 6.4rem 1.5rem 2.8rem;
  box-shadow: 0 16px 40px rgba(15, 35, 75, 0.09), 0 4px 12px rgba(15, 35, 75, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 320px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(15, 35, 75, 0.15), 0 6px 16px rgba(15, 35, 75, 0.06);
}

.trust-badge {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 135px;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(15, 35, 75, 0.1);
}

.trust-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-card-title {
  margin: 0.35rem 0 0.95rem;
  color: #2b3990;
  font-size: 1.25rem;
  font-weight: 800;
}

.trust-card-desc {
  margin: 0;
  color: #ea535a;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.85;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

/* Red Golrang bridges trust → categories, centered on the section seam */
.trust-logo {
  position: relative;
  z-index: 4;
  height: 0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
  pointer-events: none;
  line-height: 0;
}

.trust-logo img {
  width: 130px;
  height: auto;
  display: block;
  transform: translateY(-50%);
  pointer-events: auto;
}

/* Categories — match mockup «برای هر بخش از زندگی» */
.categories {
  padding: 3.35rem 0 3.4rem;
  background: #ffffff;
}

/* Same width band as .trust-grid so columns line up */
.categories-head,
.categories-grid {
  max-width: 1040px;
  margin-inline: auto;
  width: 100%;
}

.categories-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.65rem;
  /* Titles on physical left, CTA on right (matches mockup) */
  direction: ltr;
}

.categories-titles {
  text-align: left;
  direction: rtl;
}

.categories-titles .section-eyebrow.with-icon {
  color: #2a6cb6;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  /* RTL: img first in markup → flower sits to the right of the text (mockup) */
  direction: rtl;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-start;
}

.categories-titles .section-eyebrow.with-icon img,
.categories-flower {
  width: 22px;
  height: auto;
  aspect-ratio: 1371 / 930;
  flex-shrink: 0;
  display: block;
  order: 0;
}

.categories-titles .section-title {
  color: #2f3f96;
  /* Largest text in this section — bigger than eyebrow & card labels */
  font-size: clamp(2.05rem, 3.4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.3;
  margin-top: 0.4rem;
  text-align: left;
  letter-spacing: -0.02em;
}

.categories-all-btn {
  background: linear-gradient(90deg, #2a4fb8 0%, #4a86d8 100%);
  box-shadow: 0 6px 16px rgba(42, 79, 184, 0.25);
  padding: 0.42rem 1.35rem;
  min-height: 38px;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Match .trust-grid gap so card edges align */
  gap: 1.85rem;
}

.cat-card {
  /* LTR inner: title+arrow on left, product on right (mockup) */
  direction: ltr;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: #ffffff;
  border: 0;
  border-radius: 18px;
  padding: 0.75rem 0.85rem 0.75rem 1.1rem;
  min-height: 198px;
  /* Deeper soft shadow — match mockup lift */
  box-shadow:
    0 14px 36px rgba(25, 45, 95, 0.16),
    0 6px 16px rgba(25, 45, 95, 0.1),
    0 2px 6px rgba(25, 45, 95, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}

.cat-card:hover {
  box-shadow:
    0 18px 42px rgba(20, 40, 90, 0.2),
    0 8px 18px rgba(20, 40, 90, 0.12),
    0 3px 8px rgba(20, 40, 90, 0.07);
  transform: translateY(-2px);
}

.cat-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.1rem;
  flex: 1 1 auto;
  min-width: 0;
  align-self: stretch;
  padding-block: 0.45rem 0.35rem;
  /* Nudge title + arrow toward card center (away from outer edge) */
  padding-inline-start: 0.95rem;
  padding-inline-end: 0.15rem;
}

.cat-copy h3 {
  margin: 0;
  color: #4780c0;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.8;
  width: 100%;
  text-align: left;
  direction: rtl;
}

.cat-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid #7aa3d4;
  color: #4780c0;
  background: #ffffff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cat-arrow svg {
  width: 20px;
  height: 20px;
}

.cat-card img {
  width: 148px;
  height: 188px;
  object-fit: contain;
  object-position: center center;
  flex-shrink: 0;
  align-self: center;
  max-width: 55%;
}

/* Lifestyle — match mockup «احساس خوب یک خانه پاکیزه» */
.lifestyle {
  padding: 2.25rem 0 2rem;
  background: var(--white);
}

.lifestyle-eyebrow {
  text-align: left;
  color: #7a8ec4;
  font-size: 0.95rem;
  font-weight: 500;
  max-width: 1040px;
  margin: 0 auto 0.15rem;
  width: 100%;
}

.lifestyle-title {
  display: block;
  text-align: left;
  margin: 0.65rem auto 1.75rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #2b3990;
  line-height: 1.45;
  max-width: 1040px;
  width: 100%;
}

.lifestyle-title .lifestyle-title-accent,
.lifestyle-title .word-accent {
  position: relative;
  display: inline-block;
}

.lifestyle-title .title-accent {
  position: absolute;
  top: -0.42em;
  right: -0.12em;
  left: auto;
  width: clamp(18px, 1.6vw, 24px);
  height: auto;
  aspect-ratio: 1371 / 930;
  transform: none;
  margin: 0;
  pointer-events: none;
}

/* LTR grid so media = physical left, panel = physical right (mockup)
   Width matches .trust-grid / .categories-grid (1040px) */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 1rem;
  max-width: 1040px;
  margin-inline: auto;
  width: 100%;
  direction: ltr;
  align-items: stretch;
}

.lifestyle-media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #e8eef8;
  align-self: stretch;
}

.lifestyle-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 679 / 588;
  object-fit: contain;
  object-position: center;
  display: block;
}

.lifestyle-panel {
  background: #23378d;
  border-radius: 24px;
  color: var(--white);
  padding: 3.75rem 2rem 4.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  gap: 2.25rem;
  direction: rtl;
  min-height: 100%;
}

/* Golrang word: metallic lines above & below + luminous cyan-blue glow matching mockup */
.panel-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  width: 100%;
  max-width: 13.5rem;
  flex-shrink: 0;
}

.panel-logo-line {
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c8e9f 0%, #c2cfdc 25%, #ffffff 50%, #c2cfdc 75%, #7c8e9f 100%);
  border-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  flex: none;
  max-width: none;
}

/* Gradient lines framing Golrang */
.panel-logo-line--top,
.panel-logo > .panel-logo-line:first-child {
  background: linear-gradient(90deg, #7c8e9f 0%, #c2cfdc 25%, #ffffff 50%, #c2cfdc 75%, #7c8e9f 100%);
}

.panel-logo-word {
  position: relative;
  z-index: 1;
  font-family: var(--font);
  font-size: clamp(2.2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #ffffff;
  line-height: 1.1;
  padding: 0.15rem 0.5rem;
  text-shadow: 0 0 14px rgba(40, 170, 230, 0.45);
}

/* Luminous cyan glow under and behind Golrang letters matching mockup */
.panel-logo-word::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -4%;
  top: 15%;
  background: radial-gradient(ellipse 70% 55% at 50% 65%, rgba(40, 170, 230, 0.95) 0%, rgba(25, 130, 215, 0.55) 45%, rgba(35, 55, 141, 0) 80%);
  filter: blur(8px);
  border-radius: 6px;
  z-index: -1;
  pointer-events: none;
}

.panel-headline {
  margin: 0;
  font-size: clamp(1.55rem, 2.35vw, 1.95rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.panel-headline-white,
.panel-headline-red {
  display: block;
}

.panel-headline-white {
  color: #ffffff;
}

.panel-headline-red {
  color: #ff3b30;
  margin-top: 0.35rem;
}

.panel-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
  font-weight: 500;
  line-height: 1.85;
  max-width: 17.5rem;
  flex-shrink: 0;
}

/* History — full-bleed blue head + full-width visual banner */
.history {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(180deg, #1d3b8f 0%, #204fa6 45%, #2567bc 100%);
  color: var(--white);
}

.history-head {
  padding: 3rem 0 1.85rem;
  text-align: right;
}

.history-title-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.history-copy {
  flex-shrink: 0;
  text-align: right;
  padding-top: 0.05rem;
}

.history-rule {
  height: clamp(5px, 0.45vw, 6px);
  border-radius: 0;
  /* Vertically center rules with the title line */
  margin-top: calc(clamp(2.15rem, 4.8vw, 3.35rem) * 0.58);
  background: linear-gradient(180deg, #f0f4f8 0%, #cbd5e1 45%, #94a3b8 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* RTL: first child = right of title — short metallic rule to edge */
.history-rule--end {
  flex: 0 0 clamp(4.5rem, 10vw, 8.5rem);
}

/* RTL: last child = left of title — long metallic rule to left edge */
.history-rule--start {
  flex: 1 1 auto;
  min-width: 0;
}

.history-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  font-size: clamp(2.15rem, 4.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-align: right;
  direction: rtl;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.15);
}

.history-flower {
  width: clamp(28px, 2.6vw, 38px);
  height: auto;
  aspect-ratio: 1371 / 930;
  flex-shrink: 0;
  display: inline-block;
  object-fit: contain;
  align-self: center;
  transform: none;
}

.history-sub {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.92rem, 1.5vw, 1.12rem);
  font-weight: 400;
  text-align: right;
  line-height: 1.6;
}

.history-banner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.history-visual {
  width: 100%;
  max-width: none;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* Articles — match mockup «آخرین مقالات»; width band = trust/categories/lifestyle (1040px) */
.articles {
  padding: 2.5rem 0 3.5rem;
  background: var(--white);
}

.articles-title,
.articles-grid {
  max-width: 1040px;
  margin-inline: auto;
  width: 100%;
}

.articles-title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.45em;
  /* Keep margin-inline:auto so title shares 1040px band with .articles-grid */
  margin: 0 auto 1.65rem;
  color: #2b3990;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: right;
  direction: rtl;
}

.articles-title .articles-title-accent {
  position: relative;
  display: inline-block;
}

.articles-title .articles-flower {
  position: absolute;
  bottom: -0.52em;
  right: 0.05em;
  left: auto;
  width: clamp(20px, 1.8vw, 26px);
  height: auto;
  aspect-ratio: 1371 / 930;
  display: block;
  pointer-events: none;
  margin: 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.article-card {
  background: var(--white);
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 14px 36px rgba(25, 45, 95, 0.14),
    0 6px 16px rgba(25, 45, 95, 0.08),
    0 2px 6px rgba(25, 45, 95, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.article-card:hover {
  box-shadow:
    0 18px 42px rgba(20, 40, 90, 0.18),
    0 8px 18px rgba(20, 40, 90, 0.1);
  transform: translateY(-2px);
}

.article-card > img {
  width: 100%;
  aspect-ratio: 5 / 4;
  height: auto;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.article-body {
  padding: 1.15rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.article-body h3 {
  margin: 0;
  color: #2b3990;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.7;
}

.article-body p {
  margin: 0.55rem 0 0;
  color: #7a8aa8;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.85;
  flex: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.15rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.article-date {
  color: var(--red);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.article-more {
  color: #3a6bb5;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  white-space: nowrap;
}

.article-more svg {
  flex-shrink: 0;
}

/* Newsletter + Footer */
.newsletter {
  background: #eceff4;
  padding: 1.1rem 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue-deep);
  font-size: 0.92rem;
}

.newsletter-brand p {
  margin: 0;
}

.newsletter-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6aa8e0, var(--blue-deep));
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.newsletter-form input {
  min-width: min(280px, 60vw);
  height: 44px;
  border: 1px solid #d5dbe6;
  border-radius: 8px;
  padding: 0 0.9rem;
  background: var(--white);
  color: var(--text);
}

.newsletter-form .btn {
  border-radius: 8px;
  min-width: 96px;
  box-shadow: none;
}

.site-footer {
  background: var(--blue-deep);
  color: var(--white);
  padding: 2.4rem 0 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 2rem;
}

.footer-brand {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3px;
  width: 148px;
  max-width: 100%;
  padding: 0;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

.footer-logo-rule {
  display: block;
  width: 100%;
  height: 3.5px;
  border-radius: 0;
  background: linear-gradient(
    90deg,
    #7a8898 0%,
    #b8c4d2 22%,
    #ffffff 50%,
    #b8c4d2 78%,
    #7a8898 100%
  );
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.footer-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 38px;
  padding: 0.15rem 0.5rem 0.3rem;
  text-align: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #ffffff;
  background: radial-gradient(
    ellipse 65% 70% at 50% 50%,
    #259adc 0%,
    #185dc2 42%,
    #133f9c 72%,
    #0f2e7c 100%
  );
  text-shadow: none;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.15rem;
  margin-top: 1.15rem;
  width: 100%;
}

.footer-social a {
  color: #ffffff;
  opacity: 0.95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.footer-cols {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  margin-bottom: 0.45rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.9rem 0 1.1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.fallback {
  padding: 4rem 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .lifestyle-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 679 / 588;
    object-fit: contain;
  }

  .lifestyle-panel {
    padding: 3rem 1.5rem 3.25rem;
    gap: 2rem;
    min-height: 0;
    justify-content: flex-start;
  }

  .panel-headline {
    font-size: 1.4rem;
  }

  .panel-text {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-brand {
    order: -1;
    align-self: center;
  }

  .footer-logo {
    width: 148px;
    min-width: 148px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: min(300px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    border-bottom: none;
    border-left: 1px solid var(--border);
    padding: 1.5rem 1.5rem 2rem;
    display: block;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(15, 30, 60, 0.14);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-drawer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.25rem;
    padding: 0.35rem 0 1.15rem;
    border-bottom: 1px solid rgba(26, 58, 140, 0.08);
  }

  .nav-drawer-logo img {
    width: 120px;
    height: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(26, 58, 140, 0.08);
  }

  .nav-list li:last-child {
    border-bottom: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0.25rem;
    font-size: 0.95rem;
  }

  /* Kill desktop active underline in drawer (incl. page-template overrides) */
  .site-nav .nav-list > li > a:not(.nav-has-dropdown).is-active::after,
  body.nav-open .site-nav .nav-list > li > a:not(.nav-has-dropdown).is-active::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }

  .nav-has-dropdown .dropdown-chevron {
    display: none;
  }

  /* Mobile products drill-down (RTL): محصولات → ۳ دسته → محصولات هر دسته */
  .site-nav,
  .site-nav .nav-list,
  .site-nav .nav-submenu,
  .site-nav .nav-submenu-nested {
    direction: rtl;
    text-align: right;
  }

  .site-nav .nav-list a,
  .site-nav .nav-submenu a,
  .site-nav .nav-submenu-nested a {
    direction: rtl;
    text-align: right;
  }

  .site-nav .nav-item-has-children {
    position: static;
  }

  .site-nav .nav-item-has-children > .nav-has-dropdown,
  .site-nav .nav-submenu .nav-item-flyout > .nav-has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 0;
    padding-block: 0.85rem;
    padding-inline-start: 0.25rem;
    padding-inline-end: 2.75rem;
    direction: rtl;
    text-align: right;
  }

  .site-nav .nav-item-has-children > .nav-has-dropdown::before,
  .site-nav .nav-submenu .nav-item-flyout > .nav-has-dropdown::before {
    content: none;
  }

  .site-nav .nav-submenu,
  .site-nav .nav-submenu .nav-submenu-nested {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 5;
    margin: 0;
    padding: 1.15rem 1.5rem 2rem;
    min-width: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--white);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    list-style: none;
    direction: rtl;
    text-align: right;
  }

  .site-nav .nav-item-has-children.is-drill-open > .nav-submenu,
  .site-nav .nav-submenu .nav-item-flyout.is-drill-open > .nav-submenu-nested {
    display: block;
  }

  .site-nav .nav-submenu .nav-submenu-nested {
    z-index: 6;
  }

  .site-nav .nav-submenu li,
  .site-nav .nav-submenu-nested li {
    border-bottom: 1px solid rgba(26, 58, 140, 0.08);
  }

  .site-nav .nav-submenu li:last-child,
  .site-nav .nav-submenu-nested li:last-child {
    border-bottom: 0;
  }

  .site-nav .nav-submenu a,
  .site-nav .nav-submenu-nested a {
    display: block;
    width: 100%;
    padding: 0.85rem 0.25rem;
    font-size: 0.95rem;
    color: var(--blue-deep);
    background: transparent;
    white-space: normal;
    direction: rtl;
    text-align: right;
  }

  .site-nav .nav-submenu a.is-active,
  .site-nav .nav-submenu a:hover,
  .site-nav .nav-submenu-nested a.is-active,
  .site-nav .nav-submenu-nested a:hover {
    background: transparent;
    color: var(--blue-mid);
  }

  .site-nav .nav-mobile-back {
    display: list-item;
    border-bottom: 1px solid rgba(26, 58, 140, 0.08);
    margin-bottom: 0.15rem;
  }

  /* Back arrow on FAR RIGHT */
  .site-nav .nav-mobile-back-btn {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
    width: 100%;
    padding: 0.85rem 0.25rem;
    padding-inline-start: 2.75rem;
    border: 0;
    background: transparent;
    color: var(--blue-deep);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    direction: rtl;
    text-align: right;
  }

  /* Solid right-pointing triangle in full-height right column (RTL back) */
  .site-nav .nav-mobile-back-btn::before {
    content: "";
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    width: 2.5rem;
    box-sizing: border-box;
    border-inline-end: 1px solid rgba(26, 58, 140, 0.14);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 12'%3E%3Cpolygon points='0,0 10,6 0,12' fill='%231a3a8c'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px 11px;
  }

  /* Category rows: same left chevron as desktop flyout (<) — mobile only */
  .site-nav .nav-submenu .nav-item-flyout > .nav-has-dropdown {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
    padding-block: 0.85rem;
    padding-inline: 0.25rem;
    direction: rtl;
    text-align: right;
  }

  .site-nav .nav-submenu .nav-item-flyout > .nav-has-dropdown .dropdown-chevron {
    display: block !important;
    flex-shrink: 0;
    width: 10px;
    height: 6px;
    transform: rotate(90deg);
    color: var(--blue-deep);
  }

  /* Top-level محصولات: same SVG chevron as category rows — mobile only */
  .site-nav .nav-item-has-children > .nav-has-dropdown {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
    padding-block: 0.85rem;
    padding-inline: 0.25rem;
    direction: rtl;
    text-align: right;
  }

  .site-nav .nav-item-has-children > .nav-has-dropdown .dropdown-chevron {
    display: block !important;
    flex-shrink: 0;
    width: 10px;
    height: 6px;
    transform: rotate(90deg);
    color: var(--blue-deep);
  }

  .site-nav .nav-list .nav-item-has-children > a.nav-has-dropdown::after,
  body.nav-open .site-nav .nav-list .nav-item-has-children > a.nav-has-dropdown::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }

  .site-nav .nav-list .nav-submenu .nav-item-flyout > a.nav-has-dropdown::after,
  body.nav-open .site-nav .nav-list .nav-submenu .nav-item-flyout > a.nav-has-dropdown::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }

  .categories-head {
    flex-direction: column;
    align-items: flex-start;
    direction: ltr;
  }

  .categories-all-btn {
    align-self: flex-end;
  }

  .history-title-row {
    gap: 0.6rem;
  }

  .history-rule {
    height: 4.5px;
    border-radius: 0;
    margin-top: calc(clamp(1.75rem, 7vw, 2.35rem) * 0.58);
  }

  .history-rule--end {
    flex-basis: clamp(1.5rem, 6vw, 3.5rem);
  }

  .history-copy {
    transform: none;
  }

  .history-title {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    gap: 0.5rem;
  }

  .history-flower {
    width: 24px;
    height: auto;
    aspect-ratio: 1371 / 930;
    transform: none;
  }

  .history {
    border-radius: 0;
  }

  .history-head {
    padding: 1.85rem 0 1.2rem;
  }

  .history-sub {
    font-size: clamp(0.82rem, 3.4vw, 0.95rem);
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .footer-col h4 {
    white-space: normal;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 4.8rem;
    max-width: 360px;
    margin-inline: auto;
  }

  .trust-sub {
    margin-bottom: 4.8rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .hero .container,
  .hero-container {
    width: min(100% - 1.25rem, var(--container));
  }

  .products-tabs {
    max-width: 100%;
    padding: 2px;
  }

  .tab-link {
    font-size: 0.72rem;
    padding: 0.38rem 0.75rem;
    white-space: nowrap;
  }

  .btn-view-product {
    font-size: 0.8rem;
    padding: 0.62rem 1.6rem;
    white-space: nowrap;
  }

  .newsletter-form .btn.btn-red {
    font-size: 0.8rem;
    padding: 0.62rem 1rem;
    white-space: nowrap;
    min-width: 0;
  }

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

  .article-card {
    min-height: 0;
  }

  .cat-card {
    min-height: 168px;
    padding: 0.85rem 0.85rem 0.8rem 1rem;
  }

  .cat-card img {
    width: 120px;
    height: 152px;
    max-width: 48%;
  }

  .cat-copy {
    padding-inline-start: 0.75rem;
  }

  .cat-copy h3 {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .categories-titles .section-title {
    font-size: clamp(1.75rem, 6.5vw, 2.2rem);
  }

  .cat-arrow {
    width: 40px;
    height: 40px;
    border-width: 2.25px;
  }

  .cat-arrow svg {
    width: 18px;
    height: 18px;
  }

  .trust-badge {
    top: -42px;
    width: 120px;
    height: 120px;
  }

  .trust-card {
    padding-top: 5.6rem;
    min-height: 290px;
  }

  .newsletter-inner,
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input {
    min-width: 0;
  }

  .products-slider {
    margin: 0.5rem auto 2rem;
    min-height: 320px;
  }

  .products-track {
    height: 320px;
  }

  .product-slide.is-active img {
    height: 300px;
    max-width: 170px;
  }

  .product-slide.is-left {
    left: 10%;
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(0.75);
  }

  .product-slide.is-right {
    left: 90%;
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(0.75);
  }

  .product-slide.is-side img {
    height: 180px;
    max-width: 100px;
  }

  .slider-prev {
    left: 4px;
  }

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

/* ==========================================================================
   About Us Page Styles (درباره ما)
   ========================================================================== */

.about-hero {
  padding: 1.5rem 0 2.5rem;
  background: var(--bg);
}

.about-hero-frame {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(26, 58, 140, 0.1);
  background: #000;
  line-height: 0;
}

.about-hero-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.about-timeline-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.about-timeline-track {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Timeline Items */
.timeline-item {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* Split items (1346 & 1374) */
.timeline-item-split {
  background: #ffffff;
  padding: 4.5rem 0;
}

.timeline-item-split .timeline-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
}

.timeline-image-col {
  flex: 0 0 44%;
  max-width: 480px;
}

.timeline-card-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 58, 140, 0.08);
  line-height: 0;
}

.timeline-card-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

/* Banner items (1351, 1377-1380, 1386-1389, 1387, 1393, 1395-now) */
.timeline-item-banner {
  min-height: 480px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  padding: 5rem 0;
}

.timeline-item-banner .timeline-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Content Column & Body */
.timeline-content-col {
  flex: 0 0 54%;
  max-width: 580px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.timeline-marker {
  position: relative;
  flex: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  height: 24px;
}

.timeline-marker::before {
  content: "";
  position: absolute;
  top: -500px;
  bottom: -500px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #3a86ff;
  opacity: 0.35;
  z-index: 1;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a86ff;
  box-shadow: 0 0 12px rgba(58, 134, 255, 0.8), 0 0 3px #ffffff;
}

.timeline-content-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.timeline-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.timeline-heading-stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.timeline-year {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--blue-deep);
  letter-spacing: -0.5px;
  display: block;
}

.timeline-title {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--blue-deep);
  margin: 0;
}

.timeline-text {
  max-width: 520px;
}

.timeline-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #3b4d66;
  font-weight: 400;
}

/* Dark Banners */
.timeline-item-dark .timeline-year {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.timeline-item-dark .timeline-title {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.timeline-item-dark .timeline-text p {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.timeline-item-dark .timeline-marker::before {
  background: #64dfdf;
  opacity: 0.45;
}

.timeline-item-dark .timeline-dot {
  background: #64dfdf;
  box-shadow: 0 0 14px #64dfdf, 0 0 4px #ffffff;
}

/* Craft Banner (1386-1389) */
.timeline-item-craft .timeline-year {
  color: var(--blue-deep);
}

.timeline-item-craft .timeline-title {
  color: var(--blue-deep);
}

.timeline-item-craft .timeline-text p {
  color: #24334a;
}

.timeline-item-craft .timeline-marker::before {
  background: #0096c7;
  opacity: 0.4;
}

.timeline-item-craft .timeline-dot {
  background: #0096c7;
  box-shadow: 0 0 10px rgba(0, 150, 199, 0.8), 0 0 3px #ffffff;
}

/* Football Banner (1393) */
.timeline-item-football .timeline-year {
  color: var(--blue-deep);
}

.timeline-item-football .timeline-title {
  color: var(--blue-deep);
}

.timeline-item-football .timeline-text p {
  color: #24334a;
}

.timeline-item-football .timeline-marker::before {
  background: #0096c7;
  opacity: 0.4;
}

.timeline-item-football .timeline-dot {
  background: #0096c7;
  box-shadow: 0 0 10px rgba(0, 150, 199, 0.8), 0 0 3px #ffffff;
}

/* First and Last item line trimming */
.timeline-item:first-child .timeline-marker::before {
  top: 50%;
}

.timeline-item:last-child .timeline-marker::before {
  bottom: 50%;
}

/* Header & Nav Enhancements */
.nav-has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-chevron {
  transition: transform 0.2s ease;
}

/* Newsletter Enhancements */
.newsletter-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.newsletter-icon {
  color: var(--blue-mid);
  flex-shrink: 0;
}

/* Responsive Media Queries for About page */
@media (max-width: 992px) {
  .timeline-item-split {
    padding: 3.5rem 0;
  }
  
  .timeline-item-split .timeline-container {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
  
  .timeline-image-col {
    max-width: 100%;
  }

  .timeline-content-col {
    max-width: 100%;
    flex: 1 1 100%;
  }
  
  .timeline-year {
    font-size: 2.1rem;
  }
  
  .timeline-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 1rem 0 1.5rem;
  }

  .about-hero-frame {
    border-radius: 12px;
  }

  .timeline-item-split,
  .timeline-item-banner {
    padding: 2.5rem 0;
    min-height: auto;
  }

  .timeline-content-col {
    gap: 1rem;
  }

  .timeline-marker {
    flex: 0 0 18px;
    margin-top: 0.5rem;
  }

  .timeline-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .timeline-year {
    font-size: 1.6rem;
  }

  .timeline-title {
    font-size: 1.15rem;
  }

  .timeline-text p {
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .timeline-item-dark {
    background-color: #0b1f4d;
  }

  .timeline-item-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.7) 40%, transparent 100%);
    pointer-events: none;
    z-index: 0;
  }

  .timeline-item-dark::after {
    background: linear-gradient(to left, rgba(11,31,77,0.95) 0%, rgba(11,31,77,0.75) 50%, transparent 100%);
  }

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

/* ==========================================================================
   Contact Page Styles (صفحه تماس با ما)
   ========================================================================== */

.contact-page-wrapper {
  background: #ffffff;
  overflow-x: hidden;
  font-family: var(--font);
}

.contact-page-wrapper input,
.contact-page-wrapper textarea,
.contact-page-wrapper button,
.contact-page-wrapper select,
.contact-page-wrapper h2,
.contact-page-wrapper h3,
.contact-page-wrapper p,
.contact-page-wrapper a,
.contact-page-wrapper span {
  font-family: var(--font);
}

/* Section 1: Hero — full-width background, edge-to-edge */
.contact-hero-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  min-height: 700px;
  padding-bottom: 7rem;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.contact-hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-hero-bg-img {
  width: 100%;
  max-width: none;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.contact-hero-container {
  position: relative;
  z-index: 1;
  min-height: 700px;
}

.contact-hero-content {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2.5rem 0 6rem;
  direction: ltr;
  pointer-events: none;
}

.contact-form-card {
  pointer-events: auto;
  direction: rtl;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  width: 420px;
  max-width: 100%;
  position: relative;
  z-index: 3;
  margin-bottom: 0;
}

.contact-form-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.contact-form-header-icon {
  color: #1e3a8a;
  stroke-width: 1.8;
}

.contact-form-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e3a8a;
}

.contact-form .form-group {
  margin-bottom: 0.95rem;
}

.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrap .form-input,
.input-icon-wrap .form-textarea {
  width: 100%;
  border: 1.5px solid #cfd9ea;
  border-radius: 12px;
  background-color: #ffffff;
  padding: 0 2.8rem 0 1.1rem;
  font-family: var(--font);
  font-size: 0.92rem;
  color: #1e3a8a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-icon-wrap .form-input {
  height: 48px;
}

.input-icon-wrap .form-textarea {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  resize: vertical;
  min-height: 105px;
}

.input-icon-wrap .form-input::placeholder,
.input-icon-wrap .form-textarea::placeholder {
  color: #5a739e;
  font-size: 0.9rem;
}

.input-icon-wrap .form-input:focus,
.input-icon-wrap .form-textarea:focus {
  border-color: #2b5bb0;
  box-shadow: 0 0 0 3px rgba(43, 91, 176, 0.12);
}

.input-icon-wrap .input-icon {
  position: absolute;
  right: 1rem;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  color: #1e3a8a;
  pointer-events: none;
}

.input-icon-wrap .input-icon-textarea {
  top: 1rem;
  transform: none;
}

.btn-submit-contact {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 10px;
  background: #1e3888;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(30, 56, 136, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.4rem;
}

.btn-submit-contact:hover {
  background: #152968;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(30, 56, 136, 0.35);
}

.btn-submit-contact:active {
  transform: translateY(0);
}

.form-feedback {
  margin-top: 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.6;
}

.form-feedback.is-success {
  background-color: #e8f7ee;
  color: #12753a;
  border: 1px solid #c2ebd0;
}

/* Section 2: Blue gradient background (info bar + map) */
.contact-gradient-section {
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  background: linear-gradient(90deg, #4a90e2 0%, #2a5aa8 50%, #16348c 100%);
  padding-top: 0;
  padding-bottom: 4rem;
}

/* Contact Info Bar — centered on hero / section-2 boundary */
.contact-info-section {
  position: relative;
  /* Below form card so decorative pull-up never covers CRM fields */
  z-index: 2;
  padding: 0 0 1.8rem;
}

.contact-info-bar {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 8px 26px rgba(20, 50, 120, 0.08);
  padding: 2.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-38%);
}

.contact-info-col {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.contact-info-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.contact-info-heading {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e3a8a;
}

.contact-info-main-text {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e3a8a;
}

.contact-info-main-text.phone-num,
.contact-info-main-text.email-text {
  direction: ltr;
  unicode-bidi: embed;
}

.contact-info-main-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-main-text a:hover {
  color: #2b5bb0;
}

.contact-info-sub-text {
  margin: 0;
  font-size: 0.82rem;
  color: #7b91b8;
  line-height: 1.5;
}

.contact-info-divider {
  width: 1px;
  height: 65px;
  background-color: #e2eaf4;
  flex-shrink: 0;
}

/* 3. Map Section */
.contact-map-section {
  padding: 0;
}

.contact-map-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 8px 26px rgba(20, 50, 120, 0.08);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 360px;
}

.contact-map-content {
  flex: 1;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-map-title {
  margin: 0 0 2rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: #1e3a8a;
}

.btn-view-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1.8px solid #1e3a8a;
  color: #1e3a8a;
  border-radius: 999px;
  padding: 0.65rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  transition: all 0.2s ease;
  background: transparent;
  text-decoration: none;
}

.btn-view-map:hover {
  background: #1e3a8a;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(20, 50, 120, 0.2);
}

.btn-map-icon {
  stroke-width: 1.8;
}

.contact-map-visual {
  flex: 1.15;
  background: #edf3f9;
  position: relative;
  overflow: hidden;
}

.contact-map-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section 3: FAQ — separate white section */
.contact-faq-section {
  background: #ffffff;
  padding: 3.5rem 0 2rem;
  position: relative;
  z-index: 1;
}

.contact-faq-wrapper {
  background: #ffffff;
  border: 1.5px solid #dce6f2;
  border-radius: 24px;
  box-shadow: 0 10px 32px rgba(20, 50, 120, 0.08);
  padding: 2.8rem 3.5rem;
  width: 100%;
  margin: 0;
}

.contact-faq-title {
  margin: 0 0 2rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
}

.contact-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1.5px solid #dbe6f2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(20, 50, 120, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-accordion-item:hover {
  box-shadow: 0 6px 20px rgba(20, 50, 120, 0.1);
}

.faq-accordion-item.is-open {
  border-color: #7ba6dc;
  box-shadow: 0 8px 24px rgba(20, 50, 120, 0.12);
}

.faq-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: right;
  gap: 1rem;
  font-family: var(--font);
}

.faq-question {
  color: #1a68b8;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.faq-chevron {
  color: #1a68b8;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-accordion-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-accordion-content {
  padding: 0 1.6rem 1.3rem;
}

.faq-accordion-content p {
  margin: 0;
  font-size: 0.94rem;
  color: #1a56a7;
  line-height: 1.85;
  font-weight: 400;
}

/* Section 4: Brand Statement */
.contact-statement-section {
  background: #ffffff;
  padding: 1.5rem 0 1rem;
}

.contact-statement-text {
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #1a68b8;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.85;
}

.contact-statement-line {
  display: block;
}

/* 6. Read More Promo Banner */
.contact-readmore-section {
  background: #2185c5;
  padding: 2.2rem 0 2.8rem;
  margin-top: 2rem;
}

.contact-readmore-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.contact-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.contact-readmore-link:hover {
  opacity: 0.88;
}

.readmore-chevron {
  stroke-width: 2.5;
}

.contact-readmore-card {
  container-type: inline-size;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 1.15rem 1.25rem;
  max-width: none;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.contact-readmore-card p {
  margin: 0;
  font-size: clamp(0.65rem, 1.28cqi, 0.98rem);
  color: #2185c5;
  text-align: center;
  line-height: 1.6;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Responsive Media Queries for Contact Page */
@media (max-width: 992px) {
  .contact-gradient-section {
    padding-top: 0;
    padding-bottom: 2.5rem;
  }

  .contact-faq-section {
    padding: 2.5rem 0 1.5rem;
  }

  /* Tall CRM form: flow in document — do not absolute-overlap the info bar */
  .contact-hero-section {
    min-height: 0;
    padding-bottom: 1.5rem;
    overflow: visible;
  }

  .contact-hero-container {
    min-height: 0;
  }

  .contact-hero-content {
    position: relative;
    inset: auto;
    padding: 2rem 0 1.5rem;
    align-items: stretch;
    justify-content: center;
  }

  .contact-form-card {
    width: 100%;
    max-width: 520px;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
  }

  /* No upward pull — CRM form is taller than the old short form */
  .contact-info-section {
    z-index: 1;
    margin-top: 0;
    padding: 1rem 0 1.8rem;
  }

  .contact-info-bar {
    transform: none;
    flex-wrap: wrap;
    gap: 1.5rem 0;
  }

  .contact-info-col {
    flex: 1 1 50%;
  }

  .contact-info-divider {
    display: none;
  }

  .contact-map-card {
    flex-direction: column;
  }

  .contact-map-visual {
    min-height: 260px;
  }

  .contact-map-content {
    padding: 2.2rem 1.5rem;
  }

  .contact-faq-wrapper {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    min-height: 0;
    padding-bottom: 1.25rem;
    overflow: visible;
  }

  .contact-hero-container {
    min-height: 0;
    overflow: visible;
  }

  .contact-hero-bg {
    position: absolute;
    inset: 0;
  }

  .contact-hero-bg picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .contact-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .contact-hero-content {
    position: relative;
    inset: auto;
    padding: 100% 0.9rem 1.75rem;
    display: flex;
    align-items: stretch;
    justify-content: center;
  }

  .contact-gradient-section {
    padding-top: 0;
    padding-bottom: 1.75rem;
  }

  .contact-info-section {
    z-index: 1;
    margin-top: 0;
    padding: 1.25rem 0 1.8rem;
  }

  .contact-info-bar {
    transform: none !important;
  }

  .contact-form-card {
    width: 100%;
    max-width: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
  }
}

@media (max-width: 640px) {
  .contact-hero-section {
    padding-bottom: 1rem;
  }

  .contact-faq-section {
    padding: 2rem 0 1.5rem;
  }

  .contact-hero-content {
    padding-top: 105%;
    padding-bottom: 1.5rem;
  }

  .contact-gradient-section {
    padding-top: 0;
    padding-bottom: 1.5rem;
  }

  .contact-info-section {
    padding-top: 1rem;
  }

  .contact-info-bar {
    transform: none !important;
    border-radius: 18px;
    padding: 1.5rem 1rem;
  }

  .contact-form-card {
    padding: 0;
    border-radius: 0;
  }

  .contact-info-col {
    flex: 1 1 100%;
    margin-bottom: 1rem;
  }

  .contact-info-col:last-child {
    margin-bottom: 0;
  }

  .contact-map-card {
    border-radius: 18px;
  }

  .contact-faq-wrapper {
    border-radius: 18px;
    padding: 1.5rem 1rem;
  }

  .contact-statement-text {
    font-size: 0.92rem;
    line-height: 1.9;
  }

  .contact-readmore-card {
    padding: 1rem 0.85rem;
  }
}


/* ============================================================
   Products page — match UI mockup (prw-page01)
   ============================================================ */

body.page-template-page-products .site-header,
body.page-products .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

body.page-template-page-products .nav-list a,
body.page-products .nav-list a {
  color: #ffffff;
}

body.page-template-page-products .nav-list a.is-active,
body.page-template-page-products .nav-list a:hover,
body.page-products .nav-list a.is-active,
body.page-products .nav-list a:hover {
  color: #ffffff;
}

body.page-template-page-products .nav-list a.is-active::after,
body.page-products .nav-list a.is-active::after {
  background: #ffffff;
}

body.page-template-page-products .icon-btn,
body.page-products .icon-btn {
  color: #ffffff;
}

body.page-template-page-products .icon-btn:hover,
body.page-template-page-products .search-toggle[aria-expanded="true"],
body.page-products .icon-btn:hover,
body.page-products .search-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.14);
}

body.page-template-page-products .nav-toggle span,
body.page-products .nav-toggle span {
  background: #ffffff;
}

body.page-template-page-products.nav-open .nav-list a,
body.page-products.nav-open .nav-list a {
  color: var(--blue-deep);
}

body.page-template-page-products.nav-open .nav-list a.is-active,
body.page-template-page-products.nav-open .nav-list a:hover,
body.page-products.nav-open .nav-list a.is-active,
body.page-products.nav-open .nav-list a:hover {
  color: var(--blue-mid);
}

body.page-template-page-products.nav-open .nav-list a.is-active::after,
body.page-products.nav-open .nav-list a.is-active::after {
  background: var(--blue-mid);
}

body.page-template-page-products.nav-open .nav-toggle span,
body.page-products.nav-open .nav-toggle span {
  background: var(--blue-deep);
}

body.page-template-page-products .header-search,
body.page-products .header-search {
  background: rgba(255, 255, 255, 0.96);
}

.products-page {
  background: #ffffff;
}

/* Hero */
.products-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 838;
  min-height: 0;
  overflow: hidden;
  background: #0d2f7a;
  display: flex;
  align-items: center;
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.products-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(5.5rem, 10vw, 7.5rem) clamp(3rem, 6vw, 4.5rem);
  display: flex;
  justify-content: flex-start;
  direction: ltr;
}

.products-hero-copy {
  width: min(34rem, 48%);
  max-width: 48%;
  color: #ffffff;
  direction: rtl;
  text-align: right;
}

.products-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.products-hero-title-line,
.products-hero-text-line {
  display: block;
}

.products-hero-text {
  margin: 0;
  font-size: clamp(0.88rem, 1.15vw, 1.02rem);
  font-weight: 400;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
}

/* Categories */
.products-categories {
  padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
}

.products-categories-title {
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.6rem);
  text-align: center;
  color: #1a3a8c;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.products-cat-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
}

.products-cat-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 10px 32px rgba(26, 58, 140, 0.08), 0 2px 8px rgba(26, 58, 140, 0.04);
  overflow: hidden;
  min-height: clamp(168px, 22vw, 220px);
}

.products-cat-card-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: 1400 / 464;
  object-fit: cover;
  object-position: center right;
  background: #ffffff;
}

.products-cat-card-body {
  position: absolute;
  inset-block: 0;
  left: 0;
  width: min(52%, 420px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.65rem;
  padding: clamp(1.25rem, 3vw, 2.1rem) clamp(1.35rem, 3vw, 2.4rem);
  direction: rtl;
  text-align: right;
  z-index: 1;
  pointer-events: none;
}

.products-cat-card-body > * {
  pointer-events: auto;
}

.products-cat-card-title {
  margin: 0;
  color: #1a3a8c;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 800;
  line-height: 1.4;
}

.products-cat-card-text {
  margin: 0;
  color: #4a5f88;
  font-size: clamp(0.82rem, 1.05vw, 0.95rem);
  font-weight: 400;
  line-height: 1.9;
  max-width: 28ch;
}

.products-cat-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  min-height: 40px;
  padding: 0.45rem 1.15rem;
  border: 1.5px solid #2b5bb0;
  border-radius: 10px;
  background: #ffffff;
  color: #1a3a8c;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.products-cat-card-btn:hover {
  background: #2b5bb0;
  color: #ffffff;
  transform: translateY(-1px);
}

.products-cat-card-btn svg {
  flex-shrink: 0;
}

/* Brand description */
.products-about {
  background: #f3f5f8;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.products-about-inner {
  max-width: 820px;
  text-align: center;
}

.products-about-title {
  margin: 0 0 1.35rem;
  color: #1a3a8c;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.55;
}

.products-about-text {
  color: #4a5f88;
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  line-height: 2.05;
}

.products-about-text p {
  margin: 0 0 1rem;
}

.products-about-text p:last-child {
  margin-bottom: 0;
}

/* Products page responsive */
@media (max-width: 900px) {
  .products-hero-copy {
    width: min(34rem, 58%);
    max-width: 58%;
  }

  .products-cat-card-body {
    width: min(58%, 380px);
  }

  .products-cat-card-text {
    max-width: 26ch;
  }
}

@media (max-width: 720px) {
  body.page-template-page-products .site-header,
  body.page-products .site-header {
    position: absolute;
  }

  .products-hero-inner {
    padding-block: 5.5rem 2.5rem;
    justify-content: center;
  }

  .products-hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 35, 100, 0.55), rgba(10, 35, 100, 0.2));
    border-radius: 16px;
    padding: 1.1rem 1rem;
  }

  .products-hero-bg {
    object-position: 70% center;
  }

  .products-cat-card {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .products-cat-card-img {
    order: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1400 / 464;
    object-fit: cover;
    object-position: right center;
  }

  .products-cat-card-body {
    position: relative;
    inset: auto;
    left: auto;
    width: 100%;
    order: 2;
    padding: 1.25rem 1.2rem 1.4rem;
    align-items: stretch;
  }

  .products-cat-card-text {
    max-width: none;
  }

  .products-cat-card-btn {
    align-self: flex-start;
  }

  .products-about-inner {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .products-hero-title {
    font-size: 1.25rem;
  }

  .products-hero-text {
    font-size: 0.86rem;
    line-height: 1.85;
  }

  .products-categories-title {
    font-size: 1.1rem;
  }
}


/* ============================================================
   Fabric care page — match UI mockup (prw-page02)
   ============================================================ */

body.page-template-page-fabric-care .site-header,
body.page-fabric-care .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

body.page-template-page-fabric-care .nav-list a,
body.page-fabric-care .nav-list a {
  color: #ffffff;
}

body.page-template-page-fabric-care .nav-list a.is-active,
body.page-template-page-fabric-care .nav-list a:hover,
body.page-fabric-care .nav-list a.is-active,
body.page-fabric-care .nav-list a:hover {
  color: #ffffff;
}

body.page-template-page-fabric-care .nav-list a.is-active::after,
body.page-fabric-care .nav-list a.is-active::after {
  background: #ffffff;
}

body.page-template-page-fabric-care .icon-btn,
body.page-fabric-care .icon-btn {
  color: #ffffff;
}

body.page-template-page-fabric-care .icon-btn:hover,
body.page-template-page-fabric-care .search-toggle[aria-expanded="true"],
body.page-fabric-care .icon-btn:hover,
body.page-fabric-care .search-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.14);
}

body.page-template-page-fabric-care .nav-toggle span,
body.page-fabric-care .nav-toggle span {
  background: #ffffff;
}

body.page-template-page-fabric-care.nav-open .nav-list a,
body.page-fabric-care.nav-open .nav-list a {
  color: var(--blue-deep);
}

body.page-template-page-fabric-care.nav-open .nav-list a.is-active,
body.page-template-page-fabric-care.nav-open .nav-list a:hover,
body.page-fabric-care.nav-open .nav-list a.is-active,
body.page-fabric-care.nav-open .nav-list a:hover {
  color: var(--blue-mid);
}

body.page-template-page-fabric-care.nav-open .nav-list a.is-active::after,
body.page-fabric-care.nav-open .nav-list a.is-active::after {
  background: var(--blue-mid);
}

body.page-template-page-fabric-care.nav-open .nav-toggle span,
body.page-fabric-care.nav-open .nav-toggle span {
  background: var(--blue-deep);
}

body.page-template-page-fabric-care .header-search,
body.page-fabric-care .header-search {
  background: rgba(255, 255, 255, 0.96);
}

body.page-template-page-fabric-care .nav-submenu,
body.page-fabric-care .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-fabric-care .nav-submenu a,
body.page-fabric-care .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-fabric-care .nav-submenu a:hover,
body.page-template-page-fabric-care .nav-submenu a.is-active,
body.page-fabric-care .nav-submenu a:hover,
body.page-fabric-care .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

/* Products dropdown submenu */
.nav-item-has-children {
  position: relative;
}

.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0.45rem 0;
  min-width: 180px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(26, 58, 140, 0.14);
  border: 1px solid rgba(26, 58, 140, 0.08);
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 120;
}

.nav-submenu li {
  margin: 0;
}

.nav-submenu a {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 0;
}

.nav-submenu a::after {
  display: none !important;
}

.nav-submenu a:hover,
.nav-submenu a.is-active {
  background: rgba(43, 91, 176, 0.08);
  color: var(--blue-mid);
}

.nav-item-has-children:hover > .nav-submenu,
.nav-item-has-children:focus-within > .nav-submenu,
.nav-item-has-children.is-open > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item-has-children:hover > .nav-has-dropdown .dropdown-chevron,
.nav-item-has-children.is-open > .nav-has-dropdown .dropdown-chevron {
  transform: rotate(180deg);
}

.fabric-page {
  background: #ffffff;
}

/* Hero */
.fabric-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 838;
  min-height: 0;
  overflow: hidden;
  background: #0a1f5c;
  display: flex;
  align-items: center;
}

.fabric-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.fabric-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(5.5rem, 10vw, 7.5rem) clamp(3rem, 6vw, 4.5rem);
  display: flex;
  justify-content: flex-start;
  direction: ltr;
}

.fabric-hero-copy {
  width: min(34rem, 48%);
  max-width: 48%;
  color: #ffffff;
  direction: rtl;
  text-align: right;
}

.fabric-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2.55vw, 2.1rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.fabric-hero-title-line,
.fabric-hero-text-line {
  display: block;
}

.fabric-hero-title-line:last-child {
  font-weight: 700;
}

.fabric-hero-text {
  margin: 0;
  font-size: clamp(0.86rem, 1.12vw, 1rem);
  font-weight: 400;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
}

/* Product cards — split layout matching mockup */
.fabric-products {
  padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(2.25rem, 4vw, 3.25rem);
  background: #eef0f4;
}

.fabric-products-title {
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
  text-align: center;
  color: #1a3a8c;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.fabric-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.6vw, 2rem);
}

.fabric-product-card {
  background: #ffffff;
  border-radius: 36px;
  box-shadow: 0 14px 40px rgba(26, 58, 140, 0.1), 0 4px 12px rgba(26, 58, 140, 0.05);
  border: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.35rem, 2.8vw, 2.25rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 1.5rem);
  min-height: 280px;
  direction: rtl;
  overflow: hidden;
}

.fabric-product-content {
  flex: 1 1 46%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  gap: 0.7rem;
  min-width: 0;
}

.fabric-product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.25rem 0.85rem;
  border-radius: 8px;
  background: #12306e;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.fabric-product-name {
  margin: 0;
  align-self: stretch;
  text-align: right;
  color: #1a3a8c;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 700;
  line-height: 1.5;
}

.fabric-product-desc {
  margin: 0;
  color: #5a6f92;
  font-size: clamp(0.84rem, 1.05vw, 0.95rem);
  line-height: 1.9;
  max-width: none;
  flex: 1;
}

.fabric-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.35rem;
  min-height: 36px;
  padding: 0.35rem 1.05rem;
  border: 1.5px solid #2b5bb0;
  border-radius: 999px;
  background: transparent;
  color: #1a3a8c;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fabric-product-btn:hover {
  background: #2b5bb0;
  color: #ffffff;
  transform: translateY(-1px);
}

.fabric-product-btn svg {
  flex-shrink: 0;
}

.fabric-product-media {
  flex: 1 1 54%;
  width: auto;
  max-width: none;
  margin: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fabric-product-media img {
  width: 100%;
  height: auto;
  max-width: 520px;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

/* Product photos: hide baked-in white bg + remove image shadow (all cards) */
[class*="-product-media"] img {
  mix-blend-mode: multiply;
  filter: none;
  /* Clip JPEG dark edge artifact (thin black line, esp. right side) */
  clip-path: inset(0 3px 0 1px);
}

.product-slide img {
  clip-path: inset(0 3px 0 1px);
}

/* Selection / choose */
.fabric-choose {
  background: linear-gradient(to right, #2a74bb, #2c4196);
  padding: clamp(2.4rem, 4.5vw, 3.4rem) 0;
  color: #ffffff;
}

.fabric-choose-title {
  margin: 0 0 0.55rem;
  text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.55;
  color: #ffffff;
}

.fabric-choose-sub {
  margin: 0 0 clamp(1.4rem, 3vw, 2rem);
  text-align: center;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.88);
}

.fabric-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
}

.fabric-choose-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1.5px solid #2b5bb0;
  padding: 1.25rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  min-height: 100%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.14);
}

.fabric-choose-text {
  margin: 0;
  color: #1a3a8c;
  font-size: clamp(0.86rem, 1.05vw, 0.96rem);
  font-weight: 600;
  line-height: 1.8;
  flex: 1;
}

.fabric-choose-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 128px;
  padding: 0.45rem 1.35rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.fabric-choose-btn:hover {
  transform: translateY(-1px);
  opacity: 0.94;
  color: #ffffff;
}

.fabric-choose-btn-blue {
  background: #1f5fbf;
}

.fabric-choose-btn-red {
  background: #e31c23;
}

/* FAQ */
.fabric-faq-section {
  background: #ffffff;
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.fabric-faq-wrapper {
  background: #ffffff;
  border: 1.5px solid #dce6f2;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: clamp(1.75rem, 3.5vw, 2.6rem) clamp(1.25rem, 3.5vw, 3.2rem);
}

.fabric-faq-list .faq-accordion-item {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.fabric-faq-list .faq-accordion-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.fabric-faq-list .faq-accordion-item.is-open {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.fabric-faq-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #1e3a8a;
  text-align: center;
}

.fabric-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Info text */
.fabric-info {
  background: #ffffff;
  padding: 0.75rem 0 1.5rem;
}

.fabric-info-text {
  margin: 0;
  text-align: center;
  color: #1a68b8;
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  font-weight: 500;
  line-height: 2;
  max-width: 980px;
  margin-inline: auto;
}

/* Read more */
.fabric-readmore-section {
  background: #2185c5;
  padding: 2.2rem 0 2.8rem;
  margin-top: 1rem;
}

.fabric-readmore-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.fabric-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.fabric-readmore-link:hover {
  opacity: 0.88;
  color: #ffffff;
}

.fabric-readmore-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 1.15rem 1.35rem;
  width: 100%;
}

.fabric-readmore-card p {
  margin: 0;
  font-size: clamp(0.82rem, 1.15vw, 0.98rem);
  color: #2185c5;
  text-align: center;
  line-height: 1.85;
}

/* Fabric responsive */
@media (max-width: 992px) {
  .fabric-choose-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .fabric-hero-copy {
    width: min(34rem, 58%);
    max-width: 58%;
  }

  .fabric-product-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
}

/* Tablet desktop-nav band only — do not override mobile (<=860) drill-down */
@media (max-width: 900px) and (min-width: 861px) {
  .nav-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 0.55rem 0.35rem;
    display: block;
    min-width: 0;
  }

  .nav-submenu a {
    padding: 0.45rem 0.85rem;
    font-size: 0.9rem;
    color: var(--blue-soft);
  }

  .nav-submenu a.is-active,
  .nav-submenu a:hover {
    background: transparent;
    color: var(--blue-mid);
  }
}

@media (max-width: 720px) {
  .fabric-hero-inner {
    padding-block: 5.5rem 2.5rem;
    justify-content: center;
  }

  .fabric-hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 35, 100, 0.55), rgba(10, 35, 100, 0.2));
    border-radius: 16px;
    padding: 1.1rem 1rem;
  }

  .fabric-hero-bg {
    object-position: 70% center;
  }

  .fabric-product-card {
    flex-direction: column;
    min-height: 0;
    border-radius: 28px;
    padding: 1.35rem 1.25rem 1.5rem;
    gap: 1rem;
  }

  .fabric-product-content,
  .fabric-product-media {
    flex: 1 1 auto;
    width: 100%;
  }

  .fabric-product-media {
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }

  .fabric-product-media picture {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  /* Clean mobile packshots — center only, no crop/translate hacks */
  .fabric-product-media img {
    width: auto;
    max-width: min(78%, 280px);
    max-height: 280px;
    height: auto;
    margin: 0 auto;
    position: static;
    left: auto;
    transform: none;
    clip-path: none;
  }

  .fabric-faq-wrapper {
    padding: 1.5rem 1rem;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .fabric-hero-title {
    font-size: 1.22rem;
  }

  .fabric-hero-text {
    font-size: 0.84rem;
    line-height: 1.85;
  }

  .fabric-products-title,
  .fabric-choose-title,
  .fabric-faq-title {
    font-size: 1.1rem;
  }
}


/* ============================================================
   Personal care page — match UI mockup (prw-page05)
   ============================================================ */

body.page-template-page-personal-care .site-header,
body.page-personal-care .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

body.page-template-page-personal-care .nav-list a,
body.page-personal-care .nav-list a {
  color: #ffffff;
}

body.page-template-page-personal-care .nav-list a.is-active,
body.page-template-page-personal-care .nav-list a:hover,
body.page-personal-care .nav-list a.is-active,
body.page-personal-care .nav-list a:hover {
  color: #ffffff;
}

body.page-template-page-personal-care .nav-list a.is-active::after,
body.page-personal-care .nav-list a.is-active::after {
  background: #ffffff;
}

body.page-template-page-personal-care .icon-btn,
body.page-personal-care .icon-btn {
  color: #ffffff;
}

body.page-template-page-personal-care .icon-btn:hover,
body.page-template-page-personal-care .search-toggle[aria-expanded="true"],
body.page-personal-care .icon-btn:hover,
body.page-personal-care .search-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.14);
}

body.page-template-page-personal-care .nav-toggle span,
body.page-personal-care .nav-toggle span {
  background: #ffffff;
}

body.page-template-page-personal-care.nav-open .nav-list a,
body.page-personal-care.nav-open .nav-list a {
  color: var(--blue-deep);
}

body.page-template-page-personal-care.nav-open .nav-list a.is-active,
body.page-template-page-personal-care.nav-open .nav-list a:hover,
body.page-personal-care.nav-open .nav-list a.is-active,
body.page-personal-care.nav-open .nav-list a:hover {
  color: var(--blue-mid);
}

body.page-template-page-personal-care.nav-open .nav-list a.is-active::after,
body.page-personal-care.nav-open .nav-list a.is-active::after {
  background: var(--blue-mid);
}

body.page-template-page-personal-care.nav-open .nav-toggle span,
body.page-personal-care.nav-open .nav-toggle span {
  background: var(--blue-deep);
}

body.page-template-page-personal-care .header-search,
body.page-personal-care .header-search {
  background: rgba(255, 255, 255, 0.96);
}

body.page-template-page-personal-care .nav-submenu,
body.page-personal-care .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-personal-care .nav-submenu a,
body.page-personal-care .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-personal-care .nav-submenu a:hover,
body.page-template-page-personal-care .nav-submenu a.is-active,
body.page-personal-care .nav-submenu a:hover,
body.page-personal-care .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.personal-page {
  background: #ffffff;
}

/* Hero */
.personal-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 838;
  min-height: 0;
  overflow: hidden;
  background: #0a1f5c;
  display: flex;
  align-items: center;
}

.personal-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.personal-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(5.5rem, 10vw, 7.5rem) clamp(3rem, 6vw, 4.5rem);
  display: flex;
  justify-content: flex-start;
  direction: ltr;
}

.personal-hero-copy {
  width: min(34rem, 48%);
  max-width: 48%;
  color: #ffffff;
  direction: rtl;
  text-align: right;
  /* Align sentence end with header logo left edge */
  margin-left: clamp(1rem, 2.75vw, 2.25rem);
}

.personal-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2.55vw, 2.1rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.personal-hero-title-line {
  display: block;
}

.personal-hero-text {
  margin: 0;
  font-size: clamp(0.86rem, 1.12vw, 1rem);
  font-weight: 400;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
}

.personal-hero-text-line {
  display: block;
}

/* Product cards — match mockup image-9 (2x @ 1383px) */
.personal-products {
  padding: clamp(2.5rem, 4.5vw, 3.25rem) 0 clamp(1.75rem, 3vw, 2.5rem);
  background: #ffffff;
}

.personal-products-title {
  margin: 0 0 clamp(2.25rem, 4vw, 3rem);
  text-align: center;
  color: #011f5b;
  font-size: clamp(1.25rem, 2.15vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.personal-product-grid {
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
}

.personal-product-grid-top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.75rem;
  width: 100%;
}

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

/* Split card: image (left) + content (right) — equal row heights */
.personal-product-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-height: 260px;
  height: 100%;
}

.personal-product-content {
  flex: 1 1 47%;
  background: #ced0d3;
  padding: 1.15rem 1.2rem 1.05rem;
  display: flex;
  flex-direction: column;
  /* RTL: flex-start = outer edge (top-right of gray panel) */
  align-items: flex-start;
  text-align: right;
  gap: 0.5rem;
  min-width: 0;
}

.personal-product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0.2rem 0.7rem;
  border-radius: 5px;
  background: #003874;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.personal-product-media {
  flex: 1 1 53%;
  width: auto;
  max-width: none;
  margin: 0;
  min-height: 0;
  padding: clamp(0.35rem, 0.9vw, 0.7rem);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.personal-product-media img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

.personal-product-grid-bottom .personal-product-media img {
  max-height: 300px;
}

.personal-product-name {
  margin: 0;
  align-self: stretch;
  text-align: right;
  color: #013c80;
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  font-weight: 800;
  line-height: 1.45;
}

.personal-product-desc {
  margin: 0;
  align-self: stretch;
  text-align: right;
  color: #2c3991;
  font-size: clamp(0.76rem, 0.92vw, 0.86rem);
  line-height: 1.75;
  max-width: none;
  flex: 1;
}

.personal-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: auto;
  align-self: flex-start;
  flex-shrink: 0;
  min-height: 30px;
  height: 30px;
  padding: 0.2rem 0.9rem;
  border: 1px solid #013c80;
  border-radius: 8px;
  background: transparent;
  color: #013c80;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.personal-product-grid-bottom .personal-product-content {
  padding: 1.1rem 0.85rem 1rem;
}

.personal-product-grid-bottom .personal-product-btn {
  padding: 0.2rem 0.7rem;
  font-size: 0.72rem;
  gap: 0.22rem;
}

.personal-product-btn:hover {
  background: #013c80;
  color: #ffffff;
  transform: none;
}

.personal-product-btn svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

/* Selection / choose — banner color matches mockup */
.personal-choose {
  background: linear-gradient(90deg, #2c3a91 0%, #298dcc 100%);
  padding: clamp(2.4rem, 4.5vw, 3.4rem) 0;
  color: #ffffff;
}

.personal-choose-title {
  margin: 0 0 0.55rem;
  text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.55;
  color: #ffffff;
}

.personal-choose-sub {
  margin: 0 0 clamp(1.4rem, 3vw, 2rem);
  text-align: center;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
  max-width: 720px;
  margin-inline: auto;
}

.personal-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
}

.personal-choose-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  min-height: 100%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.personal-choose-text {
  margin: 0;
  color: #1a3a8c;
  font-size: clamp(0.86rem, 1.05vw, 0.96rem);
  font-weight: 700;
  line-height: 1.8;
}

.personal-choose-label {
  color: #6a7fa8;
  font-size: 0.82rem;
  font-weight: 500;
}

.personal-choose-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 148px;
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin-top: auto;
}

.personal-choose-btn:hover {
  transform: translateY(-1px);
  opacity: 0.94;
  color: #ffffff;
}

.personal-choose-btn-blue {
  background: #013d80;
}

.personal-choose-btn-red {
  background: #ed1f27;
}

/* FAQ */
.personal-faq-section {
  background: #ffffff;
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.personal-faq-wrapper {
  background: #ffffff;
  border: 1.5px solid #dce6f2;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: clamp(1.75rem, 3.5vw, 2.6rem) clamp(1.25rem, 3.5vw, 3.2rem);
}

.personal-faq-list .faq-accordion-item {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.personal-faq-list .faq-accordion-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.personal-faq-list .faq-accordion-item.is-open {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.personal-faq-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #1e3a8a;
  text-align: center;
}

.personal-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Info text */
.personal-info {
  background: #ffffff;
  padding: 0.75rem 0 1.5rem;
}

.personal-info-text {
  margin: 0;
  text-align: center;
  color: #1a68b8;
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  font-weight: 500;
  line-height: 2;
  max-width: none;
  width: 100%;
  /* Match .personal-faq-wrapper horizontal padding so edges align with FAQ box content */
  padding-inline: clamp(1.25rem, 3.5vw, 3.2rem);
  box-sizing: border-box;
}

/* Read more */
.personal-readmore-section {
  background: #2185c5;
  padding: 2.2rem 0 2.8rem;
  margin-top: 1rem;
}

.personal-readmore-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.personal-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.personal-readmore-link:hover {
  opacity: 0.88;
  color: #ffffff;
}

.personal-readmore-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: 1.15rem 1.35rem;
  width: 100%;
}

.personal-readmore-card p {
  margin: 0;
  font-size: clamp(0.78rem, 1.05vw, 0.92rem);
  color: #2185c5;
  text-align: center;
  line-height: 1.85;
  white-space: nowrap;
  overflow-x: auto;
}

/* Personal responsive */
@media (max-width: 1100px) {
  .personal-product-grid-bottom {
    grid-template-columns: 1fr;
  }

  .personal-product-grid-top {
    grid-template-columns: 1fr;
  }

  .personal-product-card {
    min-height: 200px;
  }
}

@media (max-width: 992px) {
  .personal-choose-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .personal-product-card {
    flex-direction: column-reverse;
    min-height: 0;
  }

  .personal-product-content,
  .personal-product-media {
    flex: 1 1 auto;
    width: 100%;
  }

  .personal-product-media {
    min-height: 160px;
  }

  .personal-product-media img {
    max-height: 240px;
  }

  .personal-readmore-card p {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .personal-hero-copy {
    width: min(34rem, 58%);
    max-width: 58%;
  }
}

@media (max-width: 720px) {
  .personal-hero-inner {
    padding-block: 5.5rem 2.5rem;
    justify-content: center;
  }

  .personal-hero-copy {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 35, 100, 0.55), rgba(10, 35, 100, 0.2));
    border-radius: 16px;
    padding: 1.1rem 1rem;
  }

  .personal-hero-bg {
    object-position: 70% center;
  }

  .personal-faq-wrapper {
    padding: 1.5rem 1rem;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .personal-hero-title {
    font-size: 1.22rem;
  }

  .personal-hero-text {
    font-size: 0.84rem;
    line-height: 1.85;
  }

  .personal-products-title,
  .personal-choose-title,
  .personal-faq-title {
    font-size: 1.1rem;
  }
}


/* ============================================================
   Home care page — match UI mockup (prw-page18)
   ============================================================ */

body.page-template-page-home-care .site-header,
body.page-home-care .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

body.page-template-page-home-care .nav-list a,
body.page-home-care .nav-list a {
  color: #ffffff;
}

body.page-template-page-home-care .nav-list a.is-active,
body.page-template-page-home-care .nav-list a:hover,
body.page-home-care .nav-list a.is-active,
body.page-home-care .nav-list a:hover {
  color: #ffffff;
}

body.page-template-page-home-care .nav-list a.is-active::after,
body.page-home-care .nav-list a.is-active::after {
  background: #ffffff;
}

body.page-template-page-home-care .icon-btn,
body.page-home-care .icon-btn {
  color: #ffffff;
}

body.page-template-page-home-care .icon-btn:hover,
body.page-template-page-home-care .search-toggle[aria-expanded="true"],
body.page-home-care .icon-btn:hover,
body.page-home-care .search-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.14);
}

body.page-template-page-home-care .nav-toggle span,
body.page-home-care .nav-toggle span {
  background: #ffffff;
}

body.page-template-page-home-care.nav-open .nav-list a,
body.page-home-care.nav-open .nav-list a {
  color: var(--blue-deep);
}

body.page-template-page-home-care.nav-open .nav-list a.is-active,
body.page-template-page-home-care.nav-open .nav-list a:hover,
body.page-home-care.nav-open .nav-list a.is-active,
body.page-home-care.nav-open .nav-list a:hover {
  color: var(--blue-mid);
}

body.page-template-page-home-care.nav-open .nav-list a.is-active::after,
body.page-home-care.nav-open .nav-list a.is-active::after {
  background: var(--blue-mid);
}

body.page-template-page-home-care.nav-open .nav-toggle span,
body.page-home-care.nav-open .nav-toggle span {
  background: var(--blue-deep);
}

body.page-template-page-home-care .header-search,
body.page-home-care .header-search {
  background: rgba(255, 255, 255, 0.96);
}

body.page-template-page-home-care .nav-submenu,
body.page-home-care .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-home-care .nav-submenu a,
body.page-home-care .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-home-care .nav-submenu a:hover,
body.page-template-page-home-care .nav-submenu a.is-active,
body.page-home-care .nav-submenu a:hover,
body.page-home-care .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.homecare-page {
  background: #ffffff;
}

/* Hero */
.homecare-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 838;
  min-height: 0;
  overflow: hidden;
  background: #002d72;
  display: flex;
  align-items: center;
}

.homecare-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.homecare-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(4.75rem, 8.5vw, 6.5rem) clamp(2.5rem, 5vw, 4rem);
  display: flex;
  justify-content: flex-start;
  direction: ltr;
}

.homecare-hero-copy {
  width: min(38rem, 54%);
  max-width: 54%;
  color: #ffffff;
  direction: rtl;
  text-align: right;
}

.homecare-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2.55vw, 2.1rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.homecare-hero-title-line {
  display: block;
}

.homecare-hero-text {
  margin: 0;
  font-size: clamp(0.86rem, 1.12vw, 1rem);
  font-weight: 400;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
}

.homecare-hero-text-line {
  display: block;
}

/* Product grid — 3 columns: side stacks + center featured */
.homecare-products {
  padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(2.25rem, 4vw, 3.25rem);
  background: #ffffff;
}

.homecare-products-title {
  margin: 0 0 clamp(0.85rem, 1.6vw, 1.15rem);
  text-align: center;
  color: #2c3a91;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  flex: 0 0 auto;
}

.homecare-product-layout {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.78fr) 1fr;
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
  align-items: stretch;
  direction: ltr;
}

.homecare-col {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 1.5vw, 1.15rem);
  min-width: 0;
}

.homecare-col-center {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  min-width: 0;
  align-self: stretch;
}

/* Split card: white media (~35–40% visual left) + gray content (visual right) */
.homecare-product-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-height: 148px;
  direction: rtl;
}

.homecare-product-content {
  flex: 1 1 62%;
  background: #ced0d4;
  padding: clamp(0.7rem, 1.15vw, 0.95rem) clamp(0.75rem, 1.25vw, 1.05rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  gap: 0.35rem;
  min-width: 0;
}

.homecare-product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0.15rem 0.75rem;
  border-radius: 999px;
  background: #2c3a91;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.homecare-product-media {
  flex: 0 0 38%;
  width: 38%;
  max-width: 38%;
  margin: 0;
  min-height: 0;
  padding: clamp(0.4rem, 0.85vw, 0.7rem);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homecare-product-media img {
  width: 100%;
  height: auto;
  max-height: 118px;
  object-fit: contain;
  display: block;
}

.homecare-product-name {
  margin: 0;
  align-self: stretch;
  text-align: right;
  color: #2c3a91;
  font-size: clamp(0.9rem, 1.25vw, 1.06rem);
  font-weight: 800;
  line-height: 1.35;
}

.homecare-product-desc {
  margin: 0;
  color: #2A6DB6;
  font-size: clamp(0.7rem, 0.86vw, 0.8rem);
  font-weight: 500;
  line-height: 1.65;
  max-width: none;
  flex: 1;
}

.homecare-product-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: auto;
  align-self: flex-start;
  min-height: 26px;
  height: 26px;
  padding: 0.1rem 0.75rem 0.1rem 0.55rem;
  border: 2px solid #7ec8e8;
  border-radius: 999px;
  background: transparent;
  color: #2c3a91;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.homecare-product-btn:hover {
  background: transparent;
  border-color: #2c3a91;
  color: #2c3a91;
  transform: none;
}

.homecare-product-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  flex-shrink: 0;
}

.homecare-product-btn svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

/* Featured center card — shorter than side stacks; title sits above */
.homecare-product-card-featured {
  flex-direction: row;
  width: 100%;
  height: auto;
  min-height: 0;
  flex: 0 0 auto;
  align-self: stretch;
}

.homecare-product-card-featured .homecare-product-content {
  flex: 1 1 45%;
  width: auto;
  max-width: none;
  justify-content: center;
  padding: clamp(0.85rem, 1.35vw, 1.15rem) clamp(0.85rem, 1.3vw, 1.1rem);
  gap: 0.45rem;
}

.homecare-product-card-featured .homecare-product-media {
  flex: 1 1 55%;
  width: auto;
  max-width: none;
  min-height: 0;
  padding: clamp(0.6rem, 1.2vw, 1rem);
}

.homecare-product-card-featured .homecare-product-media img {
  max-height: min(240px, 100%);
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.homecare-product-card-featured .homecare-product-name {
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
}

.homecare-product-card-featured .homecare-product-desc {
  flex: 0 1 auto;
  font-size: clamp(0.74rem, 0.92vw, 0.86rem);
  line-height: 1.8;
}

/* Selection / choose */
.homecare-choose {
  background: linear-gradient(90deg, #2a7ec1 0%, #2a70b7 25%, #2b61ad 50%, #2b53a3 75%, #2c469a 100%);
  padding: clamp(2.4rem, 4.5vw, 3.4rem) 0;
  color: #ffffff;
}

.homecare-choose-title {
  margin: 0 0 0.55rem;
  text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.55;
  color: #ffffff;
}

.homecare-choose-sub {
  margin: 0 0 clamp(1.4rem, 3vw, 2rem);
  text-align: center;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  max-width: 720px;
  margin-inline: auto;
}

.homecare-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
}

.homecare-choose-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  min-height: 100%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.14);
}

.homecare-choose-text {
  margin: 0;
  color: #1a3a8c;
  font-size: clamp(0.86rem, 1.05vw, 0.96rem);
  font-weight: 700;
  line-height: 1.8;
}

.homecare-choose-label {
  color: #6a7fa8;
  font-size: 0.82rem;
  font-weight: 500;
}

.homecare-choose-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 148px;
  padding: 0.45rem 1.35rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin-top: auto;
}

.homecare-choose-btn:hover {
  transform: translateY(-1px);
  opacity: 0.94;
  color: #ffffff;
}

.homecare-choose-btn-blue {
  background: #1e5587;
}

.homecare-choose-btn-red {
  background: #ed1f27;
}

/* FAQ */
.homecare-faq-section {
  background: #ffffff;
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.homecare-faq-wrapper {
  background: #ffffff;
  border: 1.5px solid #dce6f2;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: clamp(1.75rem, 3.5vw, 2.6rem) clamp(1.25rem, 3.5vw, 3.2rem);
}

.homecare-faq-list .faq-accordion-item {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.homecare-faq-list .faq-accordion-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.homecare-faq-list .faq-accordion-item.is-open {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.homecare-faq-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #1e3a8a;
  text-align: center;
}

.homecare-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Info text */
.homecare-info {
  background: #ffffff;
  padding: 0.75rem 0 1.5rem;
}

.homecare-info-text {
  margin: 0;
  text-align: center;
  color: #1a68b8;
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  font-weight: 500;
  line-height: 2;
  max-width: 980px;
  margin-inline: auto;
}

/* Read more */
.homecare-readmore-section {
  background: #2185c5;
  padding: 2.2rem 0 2.8rem;
  margin-top: 1rem;
}

.homecare-readmore-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.homecare-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.homecare-readmore-link:hover {
  opacity: 0.88;
  color: #ffffff;
}

.homecare-readmore-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 1.15rem 1.35rem;
  width: 100%;
}

.homecare-readmore-card p {
  margin: 0;
  font-size: clamp(0.72rem, 1.05vw, 0.92rem);
  color: #2185c5;
  text-align: center;
  line-height: 1.85;
  white-space: normal;
  overflow: visible;
  max-width: none;
}

/* Home care responsive */
@media (max-width: 1100px) {
  .homecare-product-layout {
    grid-template-columns: 1fr;
    direction: rtl;
  }

  .homecare-col-center {
    order: -1;
  }

  .homecare-product-card-featured {
    min-height: 220px;
  }

  .homecare-product-card-featured .homecare-product-media img {
    max-height: 240px;
  }
}

@media (max-width: 992px) {
  .homecare-choose-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .homecare-product-card,
  .homecare-product-card-featured {
    flex-direction: column-reverse;
    min-height: 0;
  }

  .homecare-product-content,
  .homecare-product-media,
  .homecare-product-card-featured .homecare-product-content,
  .homecare-product-card-featured .homecare-product-media {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }

  .homecare-product-media,
  .homecare-product-card-featured .homecare-product-media {
    min-height: 140px;
  }

  .homecare-product-media img,
  .homecare-product-card-featured .homecare-product-media img {
    max-height: 160px;
    height: auto;
  }

}

@media (max-width: 900px) {
  .homecare-hero-copy {
    width: min(34rem, 58%);
    max-width: 58%;
  }
}

@media (max-width: 720px) {
  .homecare-hero-inner {
    padding-block: 5.5rem 2.5rem;
    justify-content: center;
  }

  .homecare-hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 35, 100, 0.55), rgba(10, 35, 100, 0.2));
    border-radius: 16px;
    padding: 1.1rem 1rem;
  }

  .homecare-hero-bg {
    object-position: 70% center;
  }

  .homecare-faq-wrapper {
    padding: 1.5rem 1rem;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .homecare-hero-title {
    font-size: 1.22rem;
  }

  .homecare-hero-text {
    font-size: 0.84rem;
    line-height: 1.85;
  }

  .homecare-products-title,
  .homecare-choose-title,
  .homecare-faq-title {
    font-size: 1.1rem;
  }
}


/* ===== Coldash product page ===== */

body.page-template-page-coldash .site-header,
body.page-coldash .site-header,
body.page-coldwash .site-header,
body.page-template-page-handwash .site-header,
body.page-handwash .site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

body.page-template-page-coldash .nav-submenu,
body.page-coldash .nav-submenu,
body.page-coldwash .nav-submenu,
body.page-template-page-handwash .nav-submenu,
body.page-handwash .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-coldash .nav-submenu a,
body.page-coldash .nav-submenu a,
body.page-coldwash .nav-submenu a,
body.page-template-page-handwash .nav-submenu a,
body.page-handwash .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-coldash .nav-submenu a:hover,
body.page-template-page-coldash .nav-submenu a.is-active,
body.page-coldash .nav-submenu a:hover,
body.page-coldash .nav-submenu a.is-active,
body.page-coldwash .nav-submenu a:hover,
body.page-coldwash .nav-submenu a.is-active,
body.page-template-page-handwash .nav-submenu a:hover,
body.page-template-page-handwash .nav-submenu a.is-active,
body.page-handwash .nav-submenu a:hover,
body.page-handwash .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

/* Nested submenu under مراقبت از پارچه */
.nav-submenu .nav-item-flyout {
  position: relative;
}

.nav-submenu .nav-item-flyout > .nav-has-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.nav-submenu .nav-item-flyout > .nav-has-dropdown .dropdown-chevron {
  transform: rotate(90deg);
  flex-shrink: 0;
}

.nav-submenu .nav-submenu-nested {
  top: -0.45rem;
  right: calc(100% + 0.35rem);
  left: auto;
  min-width: 220px;
}

.nav-submenu .nav-item-flyout:hover > .nav-submenu-nested,
.nav-submenu .nav-item-flyout:focus-within > .nav-submenu-nested,
.nav-submenu .nav-item-flyout.is-open > .nav-submenu-nested {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile-only back row — never show inside desktop dropdowns */
.nav-mobile-back {
  display: none;
}

/*
 * Mobile drill-down re-assert (must come AFTER desktop flyout rules above).
 * Otherwise nested category product lists stay off-canvas (right: 100%) on phones.
 * Hierarchy: محصولات → ۳ دسته → محصولات هر دسته (per mockup).
 */
@media (max-width: 860px) {
  .site-nav .nav-submenu .nav-item-flyout {
    position: static;
  }

  .site-nav .nav-submenu,
  .site-nav .nav-submenu .nav-submenu-nested {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    margin: 0;
    padding: 1.15rem 1.5rem 2rem;
    min-width: 0;
    max-width: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--white);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    list-style: none;
    direction: rtl;
    text-align: right;
  }

  .site-nav .nav-item-has-children.is-drill-open > .nav-submenu,
  .site-nav .nav-submenu .nav-item-flyout.is-drill-open > .nav-submenu-nested {
    display: block;
  }

  .site-nav .nav-submenu .nav-submenu-nested {
    z-index: 6;
  }

  .site-nav .nav-submenu .nav-item-flyout:hover > .nav-submenu-nested,
  .site-nav .nav-submenu .nav-item-flyout:focus-within > .nav-submenu-nested,
  .site-nav .nav-submenu .nav-item-flyout.is-open > .nav-submenu-nested {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav .nav-submenu .nav-item-flyout:not(.is-drill-open):hover > .nav-submenu-nested,
  .site-nav .nav-submenu .nav-item-flyout:not(.is-drill-open):focus-within > .nav-submenu-nested,
  .site-nav .nav-submenu .nav-item-flyout:not(.is-drill-open).is-open > .nav-submenu-nested {
    display: none;
  }

  .site-nav .nav-mobile-back {
    display: list-item;
  }

  /* Final re-assert: same SVG chevron for categories + top-level محصولات — mobile only */
  .site-nav .nav-submenu .nav-item-flyout > .nav-has-dropdown,
  .site-nav .nav-item-has-children > .nav-has-dropdown {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-block: 0.85rem;
    padding-inline: 0.25rem;
  }

  .site-nav .nav-submenu .nav-item-flyout > .nav-has-dropdown .dropdown-chevron,
  .site-nav .nav-item-has-children > .nav-has-dropdown .dropdown-chevron {
    display: block !important;
    flex-shrink: 0;
    width: 10px;
    height: 6px;
    transform: rotate(90deg);
    color: var(--blue-deep);
  }

  .site-nav .nav-list .nav-item-has-children > a.nav-has-dropdown::after,
  body.nav-open .site-nav .nav-list .nav-item-has-children > a.nav-has-dropdown::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }

  .site-nav .nav-list .nav-submenu .nav-item-flyout > a.nav-has-dropdown::after,
  body.nav-open .site-nav .nav-list .nav-submenu .nav-item-flyout > a.nav-has-dropdown::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }

  .site-nav .nav-list > li > a:not(.nav-has-dropdown).is-active::after,
  body.nav-open .site-nav .nav-list > li > a:not(.nav-has-dropdown).is-active::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }

  .site-nav .nav-mobile-back-btn {
    position: relative;
    padding-inline-start: 2.75rem;
  }

  .site-nav .nav-mobile-back-btn::before {
    content: "";
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    width: 2.5rem;
    box-sizing: border-box;
    border-inline-end: 1px solid rgba(26, 58, 140, 0.14);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 12'%3E%3Cpolygon points='0,0 10,6 0,12' fill='%231a3a8c'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px 11px;
  }

  .site-nav .nav-submenu a,
  .site-nav .nav-submenu-nested a {
    white-space: normal;
  }
}

.coldash-page {
  background: #ffffff;
}

/* Hero — light product banner with text overlay on empty side */
.coldash-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 838;
  min-height: clamp(480px, 43.65vw, 838px);
  overflow: hidden;
  background: #f4f7fb;
  display: flex;
  align-items: center;
}

.coldash-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.coldash-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(5.5rem, 9vw, 7rem) clamp(2.5rem, 5vw, 4rem);
  display: flex;
  justify-content: flex-start;
  direction: ltr;
}

.coldash-hero-copy {
  /* Align like products hero: fixed left-half column for RTL right-edge */
  width: min(34rem, 48%);
  max-width: 48%;
  margin-left: 0;
  color: var(--blue-deep);
  direction: rtl;
  text-align: right;
}

.coldash-hero-title {
  margin: 0 0 1.35rem;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  font-weight: 800;
  line-height: 1.55;
  color: #1a4fa8;
  text-align: right;
}

.coldash-hero-title-line {
  display: block;
  font-weight: 800;
}

/* Laundry powder pages only: bold first hero title line (پودر لباسشویی) */
[class="coldash-page"] .coldash-hero-title > .coldash-hero-title-line:first-child,
.handwash-page .coldash-hero-title > .coldash-hero-title-line:first-child {
  font-weight: 900;
}

.coldash-hero-title-line + .coldash-hero-title-line {
  font-weight: 500;
  font-size: 0.92em;
  margin-top: 0.12em;
}

.coldash-hero-text {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: right;
}

.coldash-hero-text p {
  margin: 0;
  padding: 0;
  color: #1a3a8c;
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: right;
}

/* Coldash + Handwash: hero body text matches carpet-shampoo */
[class="coldash-page"] .coldash-hero-text p,
.handwash-page .coldash-hero-text p {
  color: #2a6db6;
}

/* Select */
.coldash-select {
  background: #ffffff;
  padding: 2.75rem 0 3rem;
}

.coldash-select-title {
  margin: 0 0 1.6rem;
  text-align: center;
  color: var(--blue-deep);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 800;
}

.coldash-select-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.65fr) 1.35fr;
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(26, 58, 140, 0.06);
  padding: 0;
  overflow: hidden;
  max-width: none;
  width: 100%;
  margin-inline: auto;
  direction: ltr;
}

.coldash-select-media {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
  overflow: hidden;
  background: #ffffff;
  padding: 1.35rem 1.1rem;
  border: 0;
}

.coldash-select-media img {
  display: block;
  width: auto;
  max-width: 93%;
  height: auto;
  min-height: 0;
  max-height: 270px;
  object-fit: contain;
  object-position: center center;
}

.coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
}

.coldash-select-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.95rem;
  border-radius: 8px;
  background: #3498db;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 auto 0.15rem;
}

.coldash-select-name {
  margin: 0;
  color: #283891;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.coldash-select-desc {
  margin: 0;
  color: #3e6eb5;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.85;
  text-align: center;
}

.coldash-select-weight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.75rem;
  margin-top: 0.35rem;
}

.coldash-select-weight-label {
  flex: 0 0 100%;
  color: #3e6eb5;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.coldash-select-weight-btn {
  appearance: none;
  border: 0;
  background: #283891;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.55rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.coldash-select-weight-btn:hover,
.coldash-select-weight-btn.is-active {
  background: #1f2d75;
}

/* Buy online — blue band */
.coldash-buy {
  position: relative;
  background: linear-gradient(105deg, #3a7fd4 0%, #1f5fbf 45%, #1648a0 100%);
  padding: 5.5rem 0 5.25rem;
  margin-top: 0;
}

.coldash-buy-title {
  margin: 0 0 1.75rem;
  text-align: center;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  font-weight: 800;
}

.coldash-buy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.coldash-buy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.15rem 0.9rem 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coldash-buy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}

.coldash-buy-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
}

.coldash-buy-logo img {
  max-width: 140px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.coldash-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem 0.7rem;
  border: 1px solid #d5dde9;
  border-radius: 10px;
  color: #298ECD;
  font-size: 0.82rem;
  font-weight: 700;
  background: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.coldash-buy-card:hover .coldash-buy-btn {
  border-color: #2b5bb0;
  background: #f4f7fc;
}

/* Features */
.coldash-features {
  background: #ffffff;
  padding: 3rem 0 2.5rem;
  border-top: 4px solid #2b7de0;
}

body.page-template-page-coldash .coldash-features,
body.page-coldash .coldash-features,
body.page-coldwash .coldash-features,
.handwash-page .coldash-features {
  border-top: 0;
}

.coldash-features-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

/* Coldash features: list on visual left, copy on right */
body.page-template-page-coldash .coldash-features-inner,
body.page-coldash .coldash-features-inner,
body.page-coldwash .coldash-features-inner {
  direction: ltr;
}

body.page-template-page-coldash .coldash-features-inner > *,
body.page-coldash .coldash-features-inner > *,
body.page-coldwash .coldash-features-inner > * {
  direction: rtl;
}

/* Coldash features: body + bullets #2A6DB6 (title unchanged) */
body.page-template-page-coldash .coldash-features-list li,
body.page-coldash .coldash-features-list li,
body.page-coldwash .coldash-features-list li,
body.page-template-page-coldash .coldash-features-copy p,
body.page-coldash .coldash-features-copy p,
body.page-coldwash .coldash-features-copy p {
  color: #2A6DB6;
}

.coldash-features-title {
  margin: 0 0 1.1rem;
  color: var(--blue-deep);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 800;
  line-height: 1.7;
}

.coldash-features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.coldash-features-list li {
  position: relative;
  padding-right: 1.1rem;
  color: #2A6DB6;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.75;
}

.coldash-features-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2b7de0;
}

.coldash-features-copy p {
  margin: 0;
  color: #2A6DB6;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 600;
  line-height: 2;
  text-align: justify;
}

/* Read more */
.coldash-readmore-section {
  background: #2185c5;
  padding: 2.2rem 0 2.8rem;
  margin-top: 0.5rem;
}

.coldash-readmore-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.coldash-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.coldash-readmore-link:hover {
  opacity: 0.88;
  color: #ffffff;
}

.coldash-readmore-card {
  container-type: inline-size;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: 1.55rem 1.5rem;
  max-width: none;
  width: 100%;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coldash-readmore-card p {
  margin: 0;
  font-size: clamp(0.62rem, 1.2cqi, 0.95rem);
  color: #2185c5;
  text-align: center;
  line-height: 1.45;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Coldash responsive */
@media (max-width: 992px) {
  .coldash-buy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coldash-features-inner {
    grid-template-columns: 1fr;
  }

  .coldash-select-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .coldash-select-media img {
    max-height: 280px;
    max-width: 90%;
  }

  .coldash-select-body {
    text-align: center;
  }

  .coldash-select-weight {
    justify-content: center;
  }

  .coldash-select-badge {
    margin-inline: auto;
  }
}

/* Keep nested accordion only for tablet desktop-nav band — never fight mobile drill-down */
@media (max-width: 900px) and (min-width: 861px) {
  .nav-submenu .nav-submenu-nested {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0.15rem 0 0.35rem 0.85rem;
    min-width: 0;
  }

  .nav-submenu .nav-item-flyout > .nav-has-dropdown .dropdown-chevron {
    transform: rotate(180deg);
  }

  .coldash-hero {
    min-height: 520px;
  }

  .coldash-hero-copy {
    width: min(34rem, 58%);
    max-width: 58%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.55));
    border-radius: 14px;
    padding: 1rem 0.95rem;
  }
}

@media (max-width: 720px) {
  .coldash-hero {
    min-height: 0;
    aspect-ratio: auto;
  }

  .coldash-select-media,
  .coldash-select-media img {
    min-height: 0;
    max-height: 260px;
  }

  .coldash-select-media img {
    max-width: 92%;
  }

  .coldash-hero-inner {
    padding-block: 0 1.6rem;
    justify-content: flex-start;
  }

  .coldash-hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: right;
  }

  .coldash-hero-title {
    text-align: right;
  }

  .coldash-hero-text {
    align-items: stretch;
    text-align: right;
  }

  .coldash-hero-text p {
    text-align: right;
  }

  .coldash-hero-bg {
    object-position: right center;
  }

  .coldash-buy {
    padding-top: 5.5rem;
  }

  .coldash-buy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .coldash-hero-title {
    font-size: 1.2rem;
  }

  .coldash-buy-grid {
    grid-template-columns: 1fr;
  }

  .coldash-select-title,
  .coldash-buy-title,
  .coldash-features-title {
    font-size: 1.08rem;
  }
}

/* Handwash product page — shared coldash layout + tweaks */
.handwash-select-media {
  position: relative;
  min-height: 0;
  height: auto;
  padding: 1.35rem 1.1rem;
  border: 0;
  border-inline-end: 0;
}

.handwash-select-media img {
  width: auto;
  max-width: 93%;
  height: auto;
  min-height: 0;
  max-height: 270px;
  object-fit: contain;
  object-position: center center;
}

.handwash-page .coldash-select-body {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.handwash-page .coldash-select-badge {
  margin-inline: auto;
}

.handwash-page .coldash-select-name,
.handwash-page .coldash-select-desc {
  text-align: center;
}

.handwash-page .coldash-select-weight {
  justify-content: center;
  align-items: center;
}

.coldash-features-copy p + p {
  margin-top: 1rem;
}

/* Handwash features: list on visual left, copy on right */
.handwash-page .coldash-features-inner {
  direction: ltr;
}

.handwash-page .coldash-features-inner > * {
  direction: rtl;
}

@media (max-width: 992px) {
  .handwash-select-media {
    border: 0;
    border-inline-end: 0;
    border-bottom: 0;
    min-height: 0;
  }

  .handwash-select-media img {
    min-height: 0;
    max-height: 240px;
    max-width: 73%;
    object-fit: contain;
    object-position: center center;
    padding: 0;
  }
}

@media (max-width: 720px) {
  .handwash-select-media,
  .handwash-select-media img {
    min-height: 0;
    max-height: 215px;
  }
}


/* ============================================================
   Baby shampoo page — match UI mockup (prw-page07)
   ============================================================ */

body.page-template-page-baby-shampoo .site-header,
body.page-baby-shampoo .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

body.page-template-page-baby-shampoo .nav-list a,
body.page-baby-shampoo .nav-list a {
  color: var(--blue-deep);
}

body.page-template-page-baby-shampoo .nav-list a.is-active,
body.page-template-page-baby-shampoo .nav-list a:hover,
body.page-baby-shampoo .nav-list a.is-active,
body.page-baby-shampoo .nav-list a:hover {
  color: var(--blue-mid);
}

body.page-template-page-baby-shampoo .nav-list a.is-active::after,
body.page-baby-shampoo .nav-list a.is-active::after {
  background: var(--blue-mid);
}

body.page-template-page-baby-shampoo .icon-btn,
body.page-baby-shampoo .icon-btn {
  color: var(--blue-deep);
}

body.page-template-page-baby-shampoo .icon-btn:hover,
body.page-template-page-baby-shampoo .search-toggle[aria-expanded="true"],
body.page-baby-shampoo .icon-btn:hover,
body.page-baby-shampoo .search-toggle[aria-expanded="true"] {
  background: rgba(26, 58, 140, 0.08);
}

body.page-template-page-baby-shampoo .nav-toggle span,
body.page-baby-shampoo .nav-toggle span {
  background: var(--blue-deep);
}

body.page-template-page-baby-shampoo.nav-open .nav-list a,
body.page-baby-shampoo.nav-open .nav-list a {
  color: var(--blue-deep);
}

body.page-template-page-baby-shampoo .header-search,
body.page-baby-shampoo .header-search {
  background: rgba(255, 255, 255, 0.96);
}

body.page-template-page-baby-shampoo .nav-submenu,
body.page-baby-shampoo .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-baby-shampoo .nav-submenu a,
body.page-baby-shampoo .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-baby-shampoo .nav-submenu a:hover,
body.page-template-page-baby-shampoo .nav-submenu a.is-active,
body.page-baby-shampoo .nav-submenu a:hover,
body.page-baby-shampoo .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

body.page-template-page-baby-shampoo,
body.page-baby-shampoo {
  background: #ffffff;
}

.baby-page {
  background: #ffffff;
}

/* Baby hero layout moved to assets/css/product-hero.css (shared product heroes) */

.baby-hero-title {
  margin: 0 0 clamp(1.5rem, 2.8vw, 2.35rem);
  font-size: clamp(2rem, 3.35vw, 3.15rem);
  font-weight: 800;
  line-height: 1.35;
  color: #2c3991;
  text-align: right;
}

.baby-hero-title-line {
  display: block;
  font-weight: 800;
}

.baby-hero-title-line + .baby-hero-title-line {
  font-weight: 500;
  margin-top: 0.08em;
}

.baby-hero-text {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.baby-hero-text p {
  margin: 0;
  font-size: clamp(0.92rem, 1.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  color: #2a6db6;
  text-align: right;
}

.baby-hero-text .baby-hero-lead {
  font-weight: 500;
}

/* Product cards — انواع شامپو بچه گلرنگ: pure white section */
body.page-template-page-baby-shampoo .baby-products,
body.page-baby-shampoo .baby-products,
.baby-page .baby-products,
.baby-products {
  padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(2.25rem, 4vw, 3.25rem);
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

body.page-template-page-baby-shampoo .baby-products .container,
body.page-baby-shampoo .baby-products .container,
.baby-page .baby-products .container {
  background: transparent !important;
}

.baby-products-title {
  margin: 0 0 0.65rem;
  text-align: center;
  color: #1a3a8c;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.baby-products-sub {
  margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 100%;
  text-align: center;
  color: #2a6cb6;
  font-size: clamp(0.8rem, 1.05vw, 0.95rem);
  line-height: 1.7;
  white-space: nowrap;
}

.baby-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}

.baby-product-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(26, 58, 140, 0.10), 0 2px 8px rgba(26, 58, 140, 0.05);
  border: 0;
  padding: clamp(1.55rem, 2.6vw, 2rem) clamp(1rem, 1.8vw, 1.3rem) clamp(1.6rem, 2.6vw, 2.05rem);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: right;
  gap: 0.75rem;
  direction: rtl;
}

.baby-product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  min-height: 28px;
  padding: 0.28rem 0.85rem;
  border-radius: 8px;
  background: #12306e;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.baby-product-body {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(0.5rem, 1.2vw, 0.9rem);
  width: 100%;
  min-width: 0;
  flex: 1;
  /* Mockup: text column on the left, product image on the right */
  direction: ltr;
}

.baby-product-content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  direction: rtl;
  text-align: right;
}

.baby-product-name {
  margin: 0;
  align-self: stretch;
  text-align: right;
  color: #1a3a8c;
  font-size: clamp(0.98rem, 1.45vw, 1.15rem);
  font-weight: 800;
  line-height: 1.5;
}

.baby-product-media {
  flex: 0 0 auto;
  width: auto;
  max-width: 42%;
  min-height: 0;
  margin: 0;
  padding: 0.15rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.baby-product-media img {
  width: auto;
  height: auto;
  max-width: 130px;
  max-height: 200px;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.baby-product-desc {
  flex: 1 1 auto;
  margin: 0;
  color: #2a6cb6;
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  line-height: 1.85;
  max-width: none;
  text-align: right;
  min-width: 0;
}

.baby-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  align-self: flex-start;
  margin-top: auto;
  min-height: 40px;
  padding: 0.4rem 1.25rem;
  border: 1.5px solid #1a3a8c;
  border-radius: 999px;
  background: transparent;
  color: #1a3a8c;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.baby-product-btn:hover {
  background: #1a3a8c;
  color: #ffffff;
  transform: translateY(-1px);
}

.baby-product-btn svg {
  flex-shrink: 0;
}

/* Selection / choose */
.baby-choose {
  background: linear-gradient(to right, #2a73ba 0%, #2c4297 100%);
  padding: clamp(2.4rem, 4.5vw, 3.4rem) 0;
  color: #ffffff;
}

.baby-choose-title {
  margin: 0 0 0.55rem;
  text-align: center;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  font-weight: 800;
  line-height: 1.55;
  color: #ffffff;
}

.baby-choose-sub {
  margin: 0 0 clamp(1.4rem, 3vw, 2rem);
  text-align: center;
  font-size: clamp(0.86rem, 1.08vw, 0.98rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.baby-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
}

.baby-choose-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  min-height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.baby-choose-text {
  margin: 0;
  color: #1a3a8c;
  font-size: clamp(0.84rem, 1.02vw, 0.94rem);
  font-weight: 600;
  line-height: 1.8;
  flex: 1;
}

.baby-choose-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 140px;
  padding: 0.45rem 1.1rem;
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.baby-choose-btn:hover {
  transform: translateY(-1px);
  opacity: 0.94;
  color: #ffffff;
}

.baby-choose-btn-blue {
  background: #1f5fbf;
}

.baby-choose-btn-red {
  background: #e31c23;
}

/* FAQ */
.baby-faq-section {
  background: #ffffff;
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.baby-faq-wrapper {
  background: #ffffff;
  border: 1.5px solid #dce6f2;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: clamp(1.75rem, 3.5vw, 2.6rem) clamp(1.25rem, 3.5vw, 3.2rem);
}

.baby-faq-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #1e3a8a;
  text-align: center;
}

.baby-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.baby-faq-list .faq-accordion-item {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.baby-faq-list .faq-accordion-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.baby-faq-list .faq-accordion-item.is-open {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26), 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Info text */
.baby-info {
  background: #ffffff;
  padding: 0.75rem 0 1.5rem;
}

.baby-info-text {
  margin: 0;
  text-align: center;
  color: #1a68b8;
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  font-weight: 500;
  line-height: 2;
  max-width: none;
  width: 100%;
  /* Match .baby-faq-wrapper horizontal padding so edges align with FAQ box */
  padding-inline: clamp(1.25rem, 3.5vw, 3.2rem);
  box-sizing: border-box;
}

.baby-info-text + .baby-info-text {
  margin-top: 1.1rem;
}

/* Read more */
.baby-readmore-section {
  background: #2185c5;
  padding: 2.2rem 0 2.8rem;
  margin-top: 1rem;
}

.baby-readmore-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.baby-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.baby-readmore-link:hover {
  opacity: 0.88;
  color: #ffffff;
}

.baby-readmore-card {
  container-type: inline-size;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 1.15rem 1.35rem;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.baby-readmore-card p {
  margin: 0;
  font-size: clamp(0.62rem, 1.2cqi, 0.95rem);
  color: #2185c5;
  text-align: center;
  line-height: 1.45;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Baby responsive */
@media (max-width: 1100px) {
  .baby-products-sub {
    white-space: normal;
    max-width: 52rem;
  }
}

@media (max-width: 992px) {
  .baby-product-grid,
  .baby-choose-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .baby-hero-title {
    font-size: clamp(1.55rem, 6.6vw, 2rem);
    margin-bottom: 0.85rem;
    color: #2c3991;
    line-height: 1.4;
  }

  .baby-hero-text {
    gap: 0.55rem;
    padding-top: 0.15rem;
    background: #ffffff;
  }

  .baby-hero-text p {
    font-size: clamp(0.84rem, 3.2vw, 0.95rem);
    line-height: 1.55;
    text-align: right;
    color: #2a6cb6;
  }

  .baby-products-sub {
    white-space: normal;
    max-width: 36rem;
  }

  .baby-product-body {
    flex-direction: column-reverse;
    align-items: center;
  }

  .baby-product-content {
    width: 100%;
    align-items: flex-start;
  }

  .baby-product-media {
    max-width: 180px;
    width: 100%;
  }

  .baby-product-media img {
    max-width: 150px;
    max-height: 220px;
  }

  .baby-product-badge {
    align-self: flex-start;
  }

  .baby-product-name {
    text-align: right;
  }

  .baby-product-btn {
    white-space: nowrap;
  }

  .baby-faq-wrapper {
    padding: 1.5rem 1rem;
    border-radius: 18px;
  }

  .baby-info-text {
    padding-inline: 1rem;
  }
}

@media (max-width: 480px) {
  .baby-products-title,
  .baby-choose-title,
  .baby-faq-title {
    font-size: 1.1rem;
  }
}


/* Pearlescent hand wash (مایع دستشویی صدفی) — variant stack + tip */
.sodfi-variant-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.sodfi-page .coldash-select-card,
.sodfi-select-card {
  min-height: 0;
}

.sodfi-select-media {
  position: relative;
  min-height: 0;
  height: auto;
  padding: 1.35rem 1.1rem;
  border: 0;
  border-inline-end: 0;
  background: #ffffff;
  box-sizing: border-box;
}

.sodfi-select-media img {
  display: block;
  width: auto;
  max-width: 93%;
  height: auto;
  min-height: 0;
  max-height: 270px;
  object-fit: contain;
  object-position: center center;
}

.sodfi-page .coldash-select-body {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.sodfi-page .coldash-select-badge {
  margin-inline: auto;
  background: #3498db;
}

.sodfi-page .coldash-select-name,
.sodfi-page .coldash-select-desc {
  text-align: center;
}

.sodfi-page .coldash-select-weight {
  justify-content: center;
  align-items: center;
}

.sodfi-page .coldash-buy-btn {
  border: 1px solid #2a4170;
  border-radius: 10px;
  color: #2a4170;
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
}

.sodfi-page .coldash-buy-card:hover .coldash-buy-btn {
  border-color: #1f3560;
  background: #ffffff;
  color: #1f3560;
}

.sodfi-features {
  border-top: 0;
}

/* Sodfi features: list on visual left, copy on right */
.sodfi-features .coldash-features-inner {
  direction: ltr;
}

.sodfi-features .coldash-features-inner > * {
  direction: rtl;
}

.sodfi-readmore-section {
  background: #288ece;
  padding: 2.2rem 0 2.8rem;
  margin-top: 0;
}

.sodfi-readmore-header {
  text-align: center;
  margin-bottom: 1.15rem;
}

.sodfi-readmore-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.sodfi-readmore-link:hover {
  opacity: 0.88;
  color: #ffffff;
}

.sodfi-tip-box {
  container-type: inline-size;
  background: #ffffff;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.18);
  padding: 1.05rem 1.75rem;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sodfi-tip-box p {
  margin: 0;
  color: #4b769e;
  font-size: clamp(0.62rem, 1.2cqi, 0.98rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 992px) {
  .sodfi-select-card {
    grid-template-columns: 1fr;
  }

  .sodfi-select-media {
    border: 0;
    border-inline-end: 0;
    border-bottom: 0;
    min-height: 0;
  }

  .sodfi-select-media img {
    max-width: 90%;
    max-height: 280px;
  }

  .sodfi-page .coldash-select-body {
    text-align: center;
    align-items: center;
  }

  .sodfi-page .coldash-select-badge {
    margin-inline: auto;
  }

  .sodfi-page .coldash-select-name,
  .sodfi-page .coldash-select-desc {
    text-align: center;
  }

  .sodfi-page .coldash-select-weight {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .sodfi-select-media,
  .sodfi-select-media img {
    min-height: 0;
    max-height: 215px;
  }

  .sodfi-tip-box {
    border-radius: 14px;
    padding: 1rem 1.15rem;
  }

  .sodfi-readmore-link {
    font-size: 1.02rem;
  }
}


/* ============================================================
   Marble baby shampoo (شامپو بچه تیله‌ای) — match UI mockup (prw-page08)
   ============================================================ */

.marble-page .coldash-hero {
  background: #eaf4fb;
}

.marble-hero .coldash-hero-bg {
  object-position: right center;
}

.marble-hero .coldash-hero-copy {
  max-width: min(520px, 48%);
}

.marble-hero .coldash-hero-title {
  color: #1a3a8c;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.marble-page .coldash-hero-title > .coldash-hero-title-line:first-child {
  font-weight: 900;
}

.marble-hero .coldash-hero-text p {
  color: #1a3a8c;
  font-weight: 500;
}

.marble-select-card {
  grid-template-columns: minmax(160px, 0.42fr) 1.58fr;
  min-height: 200px;
}

.marble-select-media {
  min-height: 200px;
  padding: 0.75rem 0.5rem;
  background: #ffffff;
}

.marble-select-media img {
  min-height: 180px;
  max-height: 240px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.marble-select-badge {
  background: #cfe8fb !important;
  color: #1a3a8c !important;
  border-radius: 8px !important;
  font-size: 0.8rem;
}

.marble-weight-btn,
.marble-weight-btn.is-active,
.marble-weight-btn:hover {
  background: #e31c23 !important;
  color: #ffffff !important;
}

.marble-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.marble-features {
  border-top: 0;
}

.marble-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
}

.marble-features-inner > * {
  direction: rtl;
}

.marble-features-list-wrap .coldash-features-title {
  margin-bottom: 1rem;
}

.marble-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
}

.marble-readmore-section {
  background: #2185c5;
}

@media (max-width: 992px) {
  .marble-features-inner {
    grid-template-columns: 1fr;
  }

  .marble-select-card {
    grid-template-columns: 1fr;
  }

  .marble-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .marble-hero .coldash-hero-copy {
    max-width: min(520px, 72%);
  }
}

@media (max-width: 720px) {
  .marble-hero .coldash-hero-bg {
    object-position: 85% center;
  }

  .marble-hero .coldash-hero-copy {
    max-width: 100%;
  }

  .marble-select-media,
  .marble-select-media img {
    min-height: 160px;
    max-height: none;
  }
}


/* ============================================================
   Teddy baby shampoo (شامپو بچه خرسی) — match UI mockup (prw-page09)
   ============================================================ */

body.page-template-page-baby-teddy .site-header,
body.page-baby-teddy .site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

body.page-template-page-baby-teddy .nav-submenu,
body.page-baby-teddy .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-baby-teddy .nav-submenu a,
body.page-baby-teddy .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-baby-teddy .nav-submenu a:hover,
body.page-template-page-baby-teddy .nav-submenu a.is-active,
body.page-baby-teddy .nav-submenu a:hover,
body.page-baby-teddy .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.teddy-page .coldash-hero {
  background: #eaf4fb;
}

.teddy-hero .coldash-hero-bg {
  object-position: right center;
}

.teddy-hero .coldash-hero-copy {
  max-width: min(520px, 48%);
}

.teddy-hero .coldash-hero-title {
  color: #1a3a8c;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
}

.teddy-hero-text p {
  color: #1a3a8c;
  font-weight: 500;
}

.teddy-select-card {
  grid-template-columns: minmax(160px, 0.42fr) 1.58fr;
  min-height: 200px;
}

.teddy-select-media {
  min-height: 200px;
  padding: 0.5rem 0.25rem 0.5rem 0.75rem;
  background: #ffffff;
}

.teddy-select-media img {
  min-height: 180px;
  max-height: 240px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.teddy-select-badge {
  background: #cfe8fb !important;
  color: #1a3a8c !important;
  border-radius: 8px !important;
  font-size: 0.8rem;
}

.teddy-weight-btn,
.teddy-weight-btn.is-active,
.teddy-weight-btn:hover {
  background: #1a3a8c !important;
  color: #ffffff !important;
}

.teddy-buy {
  background: linear-gradient(90deg, #3a8fd4 0%, #2a6fc4 40%, #1a3a8c 100%);
  padding: 5.5rem 0 5.25rem;
}

.teddy-buy .coldash-buy-logo {
  height: 110px;
  padding: 0.35rem 0.5rem;
}

.teddy-buy .coldash-buy-logo img {
  max-width: 200px;
  max-height: 88px;
}

.teddy-buy .coldash-buy-btn {
  border-color: #1a3a8c;
  color: #1a3a8c;
}

.teddy-features {
  border-top: 0;
}

.teddy-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
}

.teddy-features-inner > * {
  direction: rtl;
}

.teddy-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
}

.teddy-readmore-section {
  background: #2185c5;
}

@media (max-width: 992px) {
  .teddy-features-inner {
    grid-template-columns: 1fr;
  }

  .teddy-select-card {
    grid-template-columns: 1fr;
  }

  .teddy-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .teddy-hero .coldash-hero-copy {
    max-width: min(520px, 72%);
  }
}

@media (max-width: 720px) {
  .teddy-hero .coldash-hero-bg {
    object-position: 85% center;
  }

  .teddy-hero .coldash-hero-copy {
    max-width: 100%;
  }

  .teddy-select-media,
  .teddy-select-media img {
    min-height: 160px;
    max-height: none;
  }
}


/* ============================================================
   Star baby shampoo (شامپو بچه ستاره‌ای) — match UI mockup (prw-page10)
   ============================================================ */

body.page-template-page-baby-star .site-header,
body.page-baby-star .site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

body.page-template-page-baby-star .nav-submenu,
body.page-baby-star .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-baby-star .nav-submenu a,
body.page-baby-star .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-baby-star .nav-submenu a:hover,
body.page-template-page-baby-star .nav-submenu a.is-active,
body.page-baby-star .nav-submenu a:hover,
body.page-baby-star .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.star-page .coldash-hero {
  background: #f4f7fb;
}

.star-hero .coldash-hero-bg {
  object-position: right center;
}

.star-hero .coldash-hero-copy {
  /* Match container + header logo left edge */
  width: min(34rem, 48%);
  max-width: 48%;
  margin-left: 0;
}

.star-hero .coldash-hero-title {
  color: #1a3a8c;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
}

.star-hero-text {
  gap: 0.2rem;
}

.star-hero-text p {
  color: #1a3a8c;
  font-weight: 500;
  line-height: 1.95;
  text-align: right;
}

.star-features-copy p + p {
  margin-top: 0.35rem;
}

.star-select-card {
  direction: ltr;
  grid-template-columns: minmax(160px, 0.42fr) 1.58fr;
  min-height: 210px;
}

.star-select-card .coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
}

.star-select-media {
  min-height: 210px;
  padding: 0.5rem 0.25rem 0.5rem 0.75rem;
  background: #ffffff;
}

.star-select-media img {
  min-height: 180px;
  max-height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.star-select-badge {
  background: #cfe8fb !important;
  color: #1a3a8c !important;
  border-radius: 999px !important;
  font-size: 0.78rem;
}

.star-weight-btn,
.star-weight-btn.is-active,
.star-weight-btn:hover {
  background: #e31c23 !important;
  color: #ffffff !important;
}

.star-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.star-features {
  border-top: 0;
  background: #f9fafb;
}

.star-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
}

.star-features-inner > * {
  direction: rtl;
}

.star-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  margin: 0;
}

.star-readmore-section {
  background: #2185c5;
}

@media (max-width: 992px) {
  .star-features-inner {
    grid-template-columns: 1fr;
  }

  .star-select-card {
    grid-template-columns: 1fr;
  }

  .star-select-card .coldash-select-body {
    align-items: center;
    text-align: center;
  }

  .star-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .star-hero .coldash-hero-copy {
    width: min(34rem, 78%);
    max-width: 78%;
  }
}

@media (max-width: 720px) {
  .star-hero .coldash-hero-bg {
    object-position: 88% center;
  }

  .star-hero .coldash-hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .star-select-media,
  .star-select-media img {
    min-height: 160px;
    max-height: none;
  }
}

/* ============================================================
   Body wash (شامپو بدن گلرنگ) — match UI mockup (prw-page11)
   ============================================================ */

body.page-template-page-bodywash .site-header,
body.page-body-wash .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

body.page-template-page-bodywash .nav-list a,
body.page-body-wash .nav-list a {
  color: var(--blue-deep);
}

body.page-template-page-bodywash .nav-list a.is-active,
body.page-template-page-bodywash .nav-list a:hover,
body.page-body-wash .nav-list a.is-active,
body.page-body-wash .nav-list a:hover {
  color: var(--blue-mid);
}

body.page-template-page-bodywash .nav-list a.is-active::after,
body.page-body-wash .nav-list a.is-active::after {
  background: var(--blue-mid);
}

body.page-template-page-bodywash .icon-btn,
body.page-body-wash .icon-btn {
  color: var(--blue-deep);
}

body.page-template-page-bodywash .icon-btn:hover,
body.page-template-page-bodywash .search-toggle[aria-expanded="true"],
body.page-body-wash .icon-btn:hover,
body.page-body-wash .search-toggle[aria-expanded="true"] {
  background: rgba(26, 58, 140, 0.08);
}

body.page-template-page-bodywash .nav-toggle span,
body.page-body-wash .nav-toggle span {
  background: var(--blue-deep);
}

body.page-template-page-bodywash.nav-open .nav-list a,
body.page-body-wash.nav-open .nav-list a {
  color: var(--blue-deep);
}

body.page-template-page-bodywash .header-search,
body.page-body-wash .header-search {
  background: rgba(255, 255, 255, 0.96);
}

body.page-template-page-bodywash .nav-submenu,
body.page-body-wash .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-bodywash .nav-submenu a,
body.page-body-wash .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-bodywash .nav-submenu a:hover,
body.page-template-page-bodywash .nav-submenu a.is-active,
body.page-body-wash .nav-submenu a:hover,
body.page-body-wash .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.bodywash-page {
  background: #ffffff;
}

.bodywash-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 838;
  min-height: clamp(420px, 43.65vw, 720px);
  overflow: hidden;
  background: #eef4fb;
  display: flex;
  align-items: center;
}

.bodywash-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.bodywash-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(5.5rem, 9vw, 7rem) clamp(2.5rem, 5vw, 4rem);
  display: flex;
  justify-content: flex-start;
  direction: ltr;
}

.bodywash-hero-copy {
  width: min(34rem, 48%);
  max-width: 48%;
  color: var(--blue-deep);
  direction: rtl;
  text-align: right;
}

.bodywash-hero-title {
  margin: 0 0 1.35rem;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  font-weight: 800;
  line-height: 1.5;
  color: #1a3a8c;
  text-align: right;
}

.bodywash-hero-title-line {
  display: block;
  font-weight: 800;
}

.bodywash-hero-title-line + .bodywash-hero-title-line {
  font-weight: 500;
  font-size: 0.92em;
  margin-top: 0.12em;
}

.bodywash-hero-text {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.bodywash-hero-text p {
  margin: 0;
  font-size: clamp(0.84rem, 1.1vw, 0.98rem);
  font-weight: 500;
  line-height: 1.95;
  color: #2a4a8a;
}

.bodywash-products {
  padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(2.25rem, 4vw, 3.25rem);
  background: #ffffff;
}

.bodywash-products-title {
  margin: 0 0 0.65rem;
  text-align: center;
  color: #1a3a8c;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.bodywash-products-sub {
  margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 720px;
  text-align: center;
  color: #4a5f88;
  font-size: clamp(0.86rem, 1.08vw, 0.98rem);
  line-height: 1.9;
}

.bodywash-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.75rem);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  align-items: stretch;
}

/* Mockup: horizontal card — text column left, product image right */
.bodywash-product-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22), 0 4px 12px rgba(0, 0, 0, 0.14);
  border: 1px solid #e0e0e0;
  padding: clamp(1.45rem, 2.6vw, 1.9rem) clamp(1.1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  min-height: 400px;
  height: 100%;
}

.bodywash-product-body {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
  width: 100%;
  min-width: 0;
  flex: 1;
  direction: ltr;
}

.bodywash-product-content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.65rem;
  direction: ltr;
  text-align: left;
}

.bodywash-product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 28px;
  padding: 0.22rem 0.8rem;
  border-radius: 8px;
  background: #12306e;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  direction: rtl;
}

.bodywash-product-name {
  margin: 0;
  align-self: stretch;
  text-align: left;
  direction: rtl;
  color: #1a3a8c;
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
  font-weight: 700;
  line-height: 1.45;
}

.bodywash-product-name-strong,
.bodywash-product-name-sub {
  display: block;
}

.bodywash-product-name-strong {
  font-weight: 900;
}

.bodywash-product-name-sub {
  font-weight: 600;
}

.bodywash-product-media {
  flex: 0 0 auto;
  width: auto;
  max-width: 48%;
  min-height: 0;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.bodywash-product-media img {
  width: auto;
  height: auto;
  max-width: 230px;
  max-height: 360px;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.bodywash-product-desc {
  flex: 0 1 auto;
  margin: 0;
  align-self: stretch;
  color: #4a5f88;
  font-size: clamp(0.8rem, 0.98vw, 0.9rem);
  line-height: 1.85;
  max-width: none;
  text-align: left;
  direction: rtl;
  min-width: 0;
}

.bodywash-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  align-self: flex-start;
  margin-top: 0.35rem;
  min-height: 38px;
  padding: 0.35rem 1.15rem;
  border: 1.5px solid #2b5bb0;
  border-radius: 20px;
  background: #ffffff;
  color: #1a3a8c;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bodywash-product-btn:hover {
  background: #2b5bb0;
  color: #ffffff;
  transform: translateY(-1px);
}

.bodywash-product-btn svg {
  flex-shrink: 0;
}

.bodywash-choose {
  background: linear-gradient(to right, #1c5da5 0%, #133f85 50%, #2a489c 100%);
  padding: clamp(2.4rem, 4.5vw, 3.4rem) 0;
  color: #ffffff;
}

.bodywash-choose-title {
  margin: 0 0 0.55rem;
  text-align: center;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  font-weight: 800;
  line-height: 1.55;
  color: #ffffff;
}

.bodywash-choose-sub {
  margin: 0 auto clamp(1.4rem, 3vw, 2rem);
  text-align: center;
  font-size: clamp(0.86rem, 1.08vw, 0.98rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  max-width: 760px;
}

.bodywash-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
}

.bodywash-choose-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.35rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  min-height: 100%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.16);
}

.bodywash-choose-text {
  margin: 0;
  color: #1a3a8c;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.8;
  flex: 1;
}

.bodywash-choose-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 168px;
  padding: 0.5rem 1.35rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.bodywash-choose-btn:hover {
  transform: translateY(-1px);
  opacity: 0.94;
  color: #ffffff;
}

.bodywash-choose-btn-blue {
  background: #013d80;
}

.bodywash-choose-btn-red {
  background: #ed1f27;
}

.bodywash-faq-section {
  background: #ffffff;
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.bodywash-faq-wrapper {
  background: #ffffff;
  border: 1.5px solid #dce6f2;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: clamp(1.75rem, 3.5vw, 2.6rem) clamp(1.25rem, 3.5vw, 3.2rem);
}

.bodywash-faq-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #1e3a8a;
  text-align: center;
}

.bodywash-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bodywash-faq-list .faq-accordion-item {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.bodywash-faq-list .faq-accordion-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.bodywash-faq-list .faq-accordion-item.is-open {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.bodywash-info {
  background: #ffffff;
  padding: 0.75rem 0 1.5rem;
}

.bodywash-info-text {
  margin: 0 auto;
  text-align: center;
  color: #1a68b8;
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  font-weight: 500;
  line-height: 2;
  max-width: 980px;
}

.bodywash-info-text + .bodywash-info-text {
  margin-top: 1.1rem;
}

.bodywash-readmore-section {
  background: #2185c5;
  padding: 2.2rem 0 2.8rem;
  margin-top: 1rem;
}

.bodywash-readmore-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.bodywash-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.bodywash-readmore-link:hover {
  opacity: 0.88;
  color: #ffffff;
}

.bodywash-readmore-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 1.15rem 1.35rem;
  width: 100%;
  overflow-x: auto;
}

.bodywash-readmore-card p {
  margin: 0;
  font-size: clamp(0.78rem, 1.05vw, 0.95rem);
  color: #2185c5;
  text-align: center;
  line-height: 1.85;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .bodywash-product-grid {
    grid-template-columns: 1fr;
    max-width: none;
    margin-inline: 0;
  }

  .bodywash-choose-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .bodywash-hero {
    min-height: 480px;
    aspect-ratio: auto;
  }

  .bodywash-hero-copy {
    width: min(34rem, 58%);
    max-width: 58%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.55));
    border-radius: 14px;
    padding: 1rem 0.95rem;
  }
}

@media (max-width: 720px) {
  .bodywash-hero {
    min-height: 400px;
  }

  .bodywash-hero-inner {
    padding-block: 5.5rem 2.5rem;
    justify-content: center;
  }

  .bodywash-hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .bodywash-hero-text {
    align-items: center;
  }

  .bodywash-hero-text p {
    text-align: center;
  }

  .bodywash-hero-bg {
    object-position: 75% center;
  }

  .bodywash-product-card {
    min-height: 0;
    padding: 1.25rem 1.1rem 1.35rem;
  }

  .bodywash-product-body {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0.85rem;
    direction: ltr;
  }

  .bodywash-product-content {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .bodywash-product-badge {
    align-self: flex-start;
  }

  .bodywash-product-name,
  .bodywash-product-desc {
    text-align: left;
  }

  .bodywash-product-btn {
    align-self: flex-start;
  }

  .bodywash-product-media {
    max-width: 55%;
    align-self: center;
  }

  .bodywash-product-media img {
    max-width: 170px;
    max-height: 280px;
  }

  .bodywash-faq-wrapper {
    padding: 1.5rem 1rem;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .bodywash-hero-title {
    font-size: 1.3rem;
  }

  .bodywash-products-title,
  .bodywash-choose-title,
  .bodywash-faq-title {
    font-size: 1.1rem;
  }
}


/* ============================================================
   Scrub bodywash (شامپو بدن اسکراب) — match UI mockup (prw-page12)
   ============================================================ */

body.page-template-page-scrub-bodywash .site-header,
body.page-scrub-bodywash .site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

body.page-template-page-scrub-bodywash .nav-submenu,
body.page-scrub-bodywash .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-scrub-bodywash .nav-submenu a,
body.page-scrub-bodywash .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-scrub-bodywash .nav-submenu a:hover,
body.page-template-page-scrub-bodywash .nav-submenu a.is-active,
body.page-scrub-bodywash .nav-submenu a:hover,
body.page-scrub-bodywash .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.scrub-page .coldash-hero {
  background: #eef3f8;
}

.scrub-hero .coldash-hero-bg {
  object-position: right center;
}

.scrub-hero .coldash-hero-copy {
  /* Match container + header logo left edge; nudge right for alignment */
  width: min(34rem, 48%);
  max-width: 48%;
  margin-left: clamp(1rem, 2.75vw, 2.25rem);
}

.scrub-hero .coldash-hero-title {
  color: #1a3a8c;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  margin-bottom: 0.65rem;
}

.scrub-page .coldash-hero-title > .coldash-hero-title-line:first-child {
  font-weight: 900;
}

.scrub-hero-lead {
  color: #1a3a8c;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  margin: 0 0 0.85rem;
  line-height: 1.85;
  text-align: right;
}

.scrub-hero-text {
  gap: 0.2rem;
}

.scrub-hero-text p {
  color: #1a3a8c;
  font-weight: 500;
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  line-height: 1.95;
  text-align: right;
  margin: 0;
}

.scrub-select-card {
  direction: ltr;
  grid-template-columns: minmax(160px, 0.42fr) 1.58fr;
  min-height: 210px;
}

.scrub-select-card .coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
}

.scrub-select-media {
  min-height: 210px;
  padding: 0.5rem 0.25rem 0.5rem 0.75rem;
  background: #ffffff;
}

.scrub-select-media img {
  min-height: 180px;
  max-height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.scrub-select-badge {
  background: #efe2c4 !important;
  color: #1a3a8c !important;
  border-radius: 999px !important;
  font-size: 0.78rem;
}

.scrub-weight-btn,
.scrub-weight-btn.is-active,
.scrub-weight-btn:hover {
  background: #e31c23 !important;
  color: #ffffff !important;
}

.scrub-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.scrub-features {
  border-top: 0;
  background: #f9fafb;
}

.scrub-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
}

.scrub-features-inner > * {
  direction: rtl;
}

.scrub-features-list-wrap .coldash-features-title {
  margin-bottom: 1rem;
}

.scrub-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  margin: 0;
}

.scrub-readmore-section {
  background: #2185c5;
}

@media (max-width: 992px) {
  .scrub-features-inner {
    grid-template-columns: 1fr;
  }

  .scrub-select-card {
    grid-template-columns: 1fr;
  }

  .scrub-select-card .coldash-select-body {
    align-items: center;
    text-align: center;
  }

  .scrub-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .scrub-hero .coldash-hero-copy {
    max-width: min(540px, 78%);
    width: min(34rem, 78%);
    margin-left: clamp(0.5rem, 2vw, 1.25rem);
  }
}

@media (max-width: 720px) {
  .scrub-hero .coldash-hero-bg {
    object-position: 88% center;
  }

  .scrub-hero .coldash-hero-copy {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }

  .scrub-select-media,
  .scrub-select-media img {
    min-height: 160px;
    max-height: none;
  }
}


/* ============================================================
   Fruit bodywash (شامپو صورت و بدن میوه‌ای) — match UI mockup (prw-page13)
   ============================================================ */

body.page-template-page-fruit-bodywash .site-header,
body.page-fruit-bodywash .site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

body.page-template-page-fruit-bodywash .nav-submenu,
body.page-fruit-bodywash .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-fruit-bodywash .nav-submenu a,
body.page-fruit-bodywash .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-fruit-bodywash .nav-submenu a:hover,
body.page-template-page-fruit-bodywash .nav-submenu a.is-active,
body.page-fruit-bodywash .nav-submenu a:hover,
body.page-fruit-bodywash .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.fruit-page .coldash-hero {
  background: #e8f2fb;
}

.fruit-hero .coldash-hero-bg {
  object-position: right center;
}

.fruit-hero .coldash-hero-copy {
  /* Align left edge with header logo (same container) */
  width: min(34rem, 48%);
  max-width: 48%;
  margin-left: 0;
}

.fruit-hero .coldash-hero-title {
  color: #1a6aa8;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  margin-bottom: 1rem;
}

.fruit-hero-text p {
  color: #1a6aa8;
  font-weight: 500;
  line-height: 1.9;
}

.fruit-select-card {
  direction: ltr;
  grid-template-columns: minmax(160px, 0.42fr) 1.58fr;
  min-height: 210px;
}

.fruit-select-card .coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
}

.fruit-select-media {
  min-height: 210px;
  padding: 0.5rem 0.25rem 0.5rem 0.75rem;
  background: #ffffff;
}

.fruit-select-media img {
  min-height: 180px;
  max-height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.fruit-select-badge {
  background: #f5e9f3 !important;
  color: #1a3a8c !important;
  border-radius: 8px !important;
  font-size: 0.78rem;
}

.fruit-weight-btn,
.fruit-weight-btn.is-active,
.fruit-weight-btn:hover {
  background: #e31c23 !important;
  color: #ffffff !important;
}

.fruit-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.fruit-features {
  border-top: 0;
  background: #f9fafb;
}

.fruit-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
}

.fruit-features-inner > * {
  direction: rtl;
}

.fruit-features-list-wrap .coldash-features-title {
  margin-bottom: 1rem;
}

.fruit-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  margin: 0;
}

.fruit-readmore-section {
  background: #2185c5;
}

@media (max-width: 992px) {
  .fruit-features-inner {
    grid-template-columns: 1fr;
  }

  .fruit-select-card {
    grid-template-columns: 1fr;
  }

  .fruit-select-card .coldash-select-body {
    align-items: center;
    text-align: center;
  }

  .fruit-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .fruit-hero .coldash-hero-copy {
    max-width: min(520px, 78%);
    width: min(34rem, 78%);
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .fruit-hero .coldash-hero-bg {
    object-position: 88% center;
  }

  .fruit-hero .coldash-hero-copy {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }

  .fruit-select-media,
  .fruit-select-media img {
    min-height: 160px;
    max-height: none;
  }
}


/* ============================================================
   Adult shampoo (شامپو سر بزرگسال) — match UI mockup (prw-page14)
   ============================================================ */

body.page-template-page-adult-shampoo .site-header,
body.page-adult-shampoo .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

body.page-template-page-adult-shampoo .nav-list a,
body.page-adult-shampoo .nav-list a {
  color: var(--blue-deep);
}

body.page-template-page-adult-shampoo .nav-list a.is-active,
body.page-template-page-adult-shampoo .nav-list a:hover,
body.page-adult-shampoo .nav-list a.is-active,
body.page-adult-shampoo .nav-list a:hover {
  color: var(--blue-mid);
}

body.page-template-page-adult-shampoo .nav-list a.is-active::after,
body.page-adult-shampoo .nav-list a.is-active::after {
  background: var(--blue-mid);
}

body.page-template-page-adult-shampoo .icon-btn,
body.page-adult-shampoo .icon-btn {
  color: var(--blue-deep);
}

body.page-template-page-adult-shampoo .icon-btn:hover,
body.page-template-page-adult-shampoo .search-toggle[aria-expanded="true"],
body.page-adult-shampoo .icon-btn:hover,
body.page-adult-shampoo .search-toggle[aria-expanded="true"] {
  background: rgba(26, 58, 140, 0.08);
}

body.page-template-page-adult-shampoo .nav-toggle span,
body.page-adult-shampoo .nav-toggle span {
  background: var(--blue-deep);
}

body.page-template-page-adult-shampoo.nav-open .nav-list a,
body.page-adult-shampoo.nav-open .nav-list a {
  color: var(--blue-deep);
}

body.page-template-page-adult-shampoo .header-search,
body.page-adult-shampoo .header-search {
  background: rgba(255, 255, 255, 0.96);
}

body.page-template-page-adult-shampoo .nav-submenu,
body.page-adult-shampoo .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-adult-shampoo .nav-submenu a,
body.page-adult-shampoo .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-adult-shampoo .nav-submenu a:hover,
body.page-template-page-adult-shampoo .nav-submenu a.is-active,
body.page-adult-shampoo .nav-submenu a:hover,
body.page-adult-shampoo .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.adult-page {
  background: #ffffff;
}

.adult-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 920;
  min-height: clamp(520px, 48vw, 900px);
  overflow: hidden;
  background: #e8f2fb;
  display: flex;
  align-items: center;
}

.adult-hero-bg {
  position: absolute;
  top: 3rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.adult-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(5.5rem, 9vw, 7rem) clamp(2.5rem, 5vw, 4rem);
  display: flex;
  justify-content: flex-start;
  direction: ltr;
}

.adult-hero-copy {
  width: min(34rem, 48%);
  max-width: 48%;
  color: var(--blue-deep);
  direction: rtl;
  text-align: right;
}

.adult-hero-title {
  margin: 0 0 1.35rem;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 800;
  line-height: 1.5;
  color: #1a3a8c;
  text-align: right;
}

.adult-hero-title-line {
  display: block;
  font-weight: 800;
}

.adult-hero-title-line + .adult-hero-title-line {
  font-weight: 500;
  font-size: 0.92em;
  margin-top: 0.12em;
}

.adult-hero-text {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.adult-hero-text p {
  margin: 0;
  font-size: clamp(0.84rem, 1.1vw, 0.98rem);
  font-weight: 500;
  line-height: 1.95;
  color: #2a6db6;
}

.adult-products {
  padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(2.25rem, 4vw, 3.25rem);
  background: #f4f5f7;
}

.adult-products-title {
  margin: 0 0 0.65rem;
  text-align: center;
  color: #1a2b6d;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.adult-products-sub {
  margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 760px;
  text-align: center;
  color: #5a7197;
  font-size: clamp(0.86rem, 1.08vw, 0.98rem);
  line-height: 1.9;
}

.adult-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
  align-items: stretch;
}

/* Mockup: horizontal card — text column left, product image right */
.adult-product-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22), 0 4px 12px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(26, 43, 109, 0.06);
  padding: clamp(1.4rem, 2.6vw, 1.9rem) clamp(1.05rem, 1.9vw, 1.45rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  min-height: 380px;
  height: 100%;
}

.adult-product-body {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(0.55rem, 1.2vw, 0.95rem);
  width: 100%;
  min-width: 0;
  flex: 1;
  direction: ltr;
}

.adult-product-content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  gap: 0.9rem;
  direction: ltr;
  text-align: left;
}

.adult-product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 26px;
  padding: 0.2rem 0.7rem;
  border-radius: 8px;
  background: #1a2b6d;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  direction: rtl;
}

.adult-product-name {
  margin: 0;
  align-self: stretch;
  text-align: left;
  direction: rtl;
  color: #1a2b6d;
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
  font-weight: 800;
  line-height: 1.6;
}

.adult-product-name-line {
  display: block;
}

.adult-product-name-line:first-child {
  font-weight: 800;
}

.adult-product-name-line:last-child {
  font-weight: 500;
}

.adult-product-media {
  flex: 0 0 auto;
  width: auto;
  max-width: 40%;
  min-height: 0;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  background: transparent;
}

.adult-product-media img {
  width: auto;
  height: auto;
  max-width: 165px;
  max-height: 300px;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.adult-product-desc {
  flex: 0 1 auto;
  margin: 0;
  align-self: stretch;
  color: #5a7197;
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  line-height: 2.05;
  max-width: none;
  text-align: left;
  direction: rtl;
  min-width: 0;
}

.adult-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  align-self: flex-start;
  margin-top: auto;
  flex-shrink: 0;
  min-height: 38px;
  padding: 0.35rem 1.05rem;
  border: 1.5px solid #9bb4d8;
  border-radius: 10px;
  background: #ffffff;
  color: #1a2b6d;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.adult-product-btn:hover {
  background: #1a2b6d;
  border-color: #1a2b6d;
  color: #ffffff;
  transform: translateY(-1px);
}

.adult-product-btn svg {
  flex-shrink: 0;
}

.adult-choose {
  background: linear-gradient(to right, #2a75bb, #2c4196);
  padding: clamp(2.4rem, 4.5vw, 3.4rem) 0;
  color: #ffffff;
}

.adult-choose-title {
  margin: 0 0 0.55rem;
  text-align: center;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  font-weight: 800;
  line-height: 1.55;
  color: #ffffff;
}

.adult-choose-sub {
  margin: 0 auto clamp(1.4rem, 3vw, 2rem);
  text-align: center;
  font-size: clamp(0.86rem, 1.08vw, 0.98rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  max-width: 760px;
}

.adult-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
}

.adult-choose-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1.5px solid #2b5bb0;
  padding: 1.25rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  min-height: 100%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.14);
}

.adult-choose-text {
  margin: 0;
  color: #1a3a8c;
  font-size: clamp(0.82rem, 1.05vw, 0.92rem);
  font-weight: 600;
  line-height: 1.75;
  flex: 1;
}

.adult-choose-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 140px;
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.adult-choose-btn:hover {
  transform: translateY(-1px);
  opacity: 0.94;
  color: #ffffff;
}

.adult-choose-btn-blue {
  background: #1a3a8c;
}

.adult-choose-btn-red {
  background: #e31c23;
}

.adult-faq-section {
  background: #ffffff;
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.adult-faq-wrapper {
  background: #ffffff;
  border: 1.5px solid #dce6f2;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: clamp(1.75rem, 3.5vw, 2.6rem) clamp(1.25rem, 3.5vw, 3.2rem);
}

.adult-faq-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #1e3a8a;
  text-align: center;
}

.adult-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.adult-faq-list .faq-accordion-item {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.adult-info {
  background: #ffffff;
  padding: 0.75rem 0 1.5rem;
}

.adult-info-text {
  margin: 0 auto;
  text-align: center;
  color: #1a68b8;
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  font-weight: 500;
  line-height: 2;
  max-width: 980px;
}

.adult-info-text + .adult-info-text {
  margin-top: 1.1rem;
}

.adult-readmore-section {
  background: #2185c5;
  padding: 2.2rem 0 2.8rem;
  margin-top: 1rem;
}

.adult-readmore-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.adult-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.adult-readmore-link:hover {
  opacity: 0.88;
  color: #ffffff;
}

.adult-readmore-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: 1.15rem 1.75rem;
  width: 100%;
  overflow-x: auto;
}

.adult-readmore-card p {
  margin: 0;
  font-size: clamp(0.78rem, 1.05vw, 0.92rem);
  color: #2185c5;
  text-align: center;
  line-height: 1.85;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .adult-product-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .adult-product-card {
    min-height: 0;
  }

  .adult-product-media img {
    max-width: 170px;
    max-height: 280px;
  }
}

@media (max-width: 992px) {
  .adult-choose-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .adult-hero {
    min-height: 480px;
    aspect-ratio: auto;
  }

  .adult-hero-copy {
    width: min(34rem, 58%);
    max-width: 58%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.55));
    border-radius: 14px;
    padding: 1rem 0.95rem;
  }
}

@media (max-width: 720px) {
  .adult-hero {
    min-height: 400px;
  }

  .adult-hero-inner {
    padding-block: 5.5rem 2.5rem;
    justify-content: center;
  }

  .adult-hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .adult-hero-text {
    align-items: center;
  }

  .adult-hero-text p {
    text-align: center;
  }

  .adult-hero-bg {
    object-position: 75% center;
  }

  .adult-product-body {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0.85rem;
    direction: ltr;
  }

  .adult-product-content {
    align-items: flex-start;
    text-align: left;
  }

  .adult-product-badge {
    align-self: flex-start;
  }

  .adult-product-name,
  .adult-product-desc {
    text-align: left;
  }

  .adult-product-btn {
    align-self: flex-start;
  }

  .adult-product-media {
    max-width: 100%;
  }

  .adult-product-media img {
    max-width: 145px;
    max-height: 230px;
  }

  .adult-faq-wrapper {
    padding: 1.5rem 1rem;
    border-radius: 18px;
  }

  .adult-readmore-card {
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .adult-hero-title {
    font-size: 1.25rem;
  }

  .adult-products-title,
  .adult-choose-title,
  .adult-faq-title {
    font-size: 1.1rem;
  }
}



/* ============================================================
   Multivitamin + Protein shampoo — match UI mockup (prw-page15)
   ============================================================ */

body.page-template-page-multivitamin-shampoo .site-header,
body.page-multivitamin-shampoo .site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

body.page-template-page-multivitamin-shampoo .nav-submenu,
body.page-multivitamin-shampoo .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-multivitamin-shampoo .nav-submenu a,
body.page-multivitamin-shampoo .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-multivitamin-shampoo .nav-submenu a:hover,
body.page-template-page-multivitamin-shampoo .nav-submenu a.is-active,
body.page-multivitamin-shampoo .nav-submenu a:hover,
body.page-multivitamin-shampoo .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.mv-page .coldash-hero {
  background: #eaf3fb;
}

.mv-hero .coldash-hero-bg {
  object-position: left center;
}

.mv-hero .coldash-hero-copy {
  /* Match container + header logo left edge; nudge right for alignment */
  width: min(34rem, 48%);
  max-width: 48%;
  margin-left: clamp(1rem, 2.75vw, 2.25rem);
}

.mv-hero .coldash-hero-title {
  color: #1a6aa8;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  margin-bottom: 1rem;
}

.mv-page .coldash-hero-title > .coldash-hero-title-line:first-child {
  font-weight: 900;
}

.mv-hero-text p {
  color: #2a6db6;
  font-weight: 500;
  line-height: 1.9;
}

.mv-select-card {
  direction: ltr;
  grid-template-columns: minmax(160px, 0.42fr) 1.58fr;
  min-height: 210px;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.mv-select-card .coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
}

.mv-select-media {
  min-height: 210px;
  padding: 0.5rem 0.25rem 0.5rem 0.75rem;
  background: #ffffff;
}

.mv-select-media img {
  min-height: 180px;
  max-height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.mv-select-badge {
  background: #feedee !important;
  color: #2c3a91 !important;
  border-radius: 8px !important;
  font-size: 0.78rem;
}

.mv-weight-btn,
.mv-weight-btn.is-active,
.mv-weight-btn:hover {
  background: #ed1f27 !important;
  color: #ffffff !important;
  border-radius: 6px !important;
}

.mv-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.mv-features {
  border-top: 0;
  background: #f9fafb;
}

.mv-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
}

.mv-features-inner > * {
  direction: rtl;
}

.mv-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  margin: 0;
}

.mv-features .coldash-features-list li {
  color: #2A6DB6;
}

.mv-readmore-section {
  background: #2185c5;
}

.mv-page .coldash-readmore-card {
  background: #ffffff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4), 0 3px 10px rgba(0, 0, 0, 0.22);
}

@media (max-width: 992px) {
  .mv-features-inner {
    grid-template-columns: 1fr;
  }

  .mv-select-card {
    grid-template-columns: 1fr;
  }

  .mv-select-card .coldash-select-body {
    align-items: center;
    text-align: center;
  }

  .mv-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .mv-hero .coldash-hero-copy {
    max-width: min(540px, 78%);
    width: min(34rem, 78%);
    margin-left: clamp(0.5rem, 2vw, 1.25rem);
  }
}

@media (max-width: 720px) {
  .mv-hero .coldash-hero-bg {
    object-position: 12% center;
  }

  .mv-hero .coldash-hero-copy {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }

  .mv-select-media,
  .mv-select-media img {
    min-height: 160px;
    max-height: none;
  }

  .mv-readmore-section .coldash-readmore-card p {
    font-weight: 500;
  }
}


/* ============================================================
   Herbal shampoo (شامپو گیاهی گلرنگ) — match UI mockup (prw-page16)
   ============================================================ */

body.page-template-page-herbal-shampoo .site-header,
body.page-herbal-shampoo .site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

body.page-template-page-herbal-shampoo .nav-submenu,
body.page-herbal-shampoo .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-herbal-shampoo .nav-submenu a,
body.page-herbal-shampoo .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-herbal-shampoo .nav-submenu a:hover,
body.page-template-page-herbal-shampoo .nav-submenu a.is-active,
body.page-herbal-shampoo .nav-submenu a:hover,
body.page-herbal-shampoo .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.herbal-page .coldash-hero {
  background: #f8fafb;
}

.herbal-hero .coldash-hero-bg {
  object-position: right center;
}

.herbal-hero .coldash-hero-copy {
  /* Match container + header logo edge; nudge right so copy stays aligned */
  width: min(34rem, 48%);
  max-width: 48%;
  margin-left: clamp(1rem, 2.75vw, 2.25rem);
}

.herbal-hero .coldash-hero-title {
  color: #1a3a8c;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  margin-bottom: 1rem;
}

.herbal-hero-text p {
  color: #2a6db6;
  font-weight: 500;
  line-height: 1.9;
}

.herbal-select-card {
  direction: ltr;
  grid-template-columns: minmax(160px, 0.42fr) 1.58fr;
  min-height: 210px;
}

.herbal-select-card .coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
}

.herbal-select-media {
  min-height: 210px;
  padding: 0.5rem 0.25rem 0.5rem 0.75rem;
  background: #ffffff;
}

.herbal-select-media img {
  min-height: 180px;
  max-height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.herbal-select-badge {
  background: #feedee !important;
  color: #2c3a91 !important;
  border-radius: 8px !important;
  font-size: 0.78rem;
}

.coldash-select-weight-btn.herbal-weight-btn,
.coldash-select-weight-btn.herbal-weight-btn.is-active,
.coldash-select-weight-btn.herbal-weight-btn:hover {
  background: #ed1f27 !important;
  color: #ffffff !important;
  border-radius: 8px !important;
}

.herbal-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.herbal-features {
  border-top: 0;
  background: #f9fafb;
}

.herbal-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem 4.5rem;
}

.herbal-features-inner > * {
  direction: rtl;
}

.herbal-features-list-wrap {
  padding-inline-start: 1.25rem;
}

.herbal-features-list-wrap .coldash-features-title {
  margin-bottom: 1rem;
}

.herbal-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  margin: 0 0 1rem;
}

.herbal-features-copy p:last-child {
  margin-bottom: 0;
}

.herbal-features .coldash-features-list li {
  color: #2A6DB6;
}

.herbal-readmore-section {
  background: #2185c5;
}

.herbal-page .coldash-readmore-card {
  background: #ffffff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4), 0 3px 10px rgba(0, 0, 0, 0.22);
}

@media (max-width: 992px) {
  .herbal-features-inner {
    grid-template-columns: 1fr;
  }

  .herbal-select-card {
    grid-template-columns: 1fr;
  }

  .herbal-select-card .coldash-select-body {
    align-items: center;
    text-align: center;
  }

  .herbal-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .herbal-hero .coldash-hero-copy {
    width: min(34rem, 78%);
    max-width: 78%;
    margin-left: clamp(0.5rem, 2vw, 1.25rem);
  }
}

@media (max-width: 720px) {
  .herbal-hero .coldash-hero-bg {
    object-position: 88% center;
  }

  .herbal-hero .coldash-hero-copy {
    max-width: 100%;
  }

  .herbal-select-media,
  .herbal-select-media img {
    min-height: 160px;
    max-height: none;
  }
}


/* ============================================================
   Egg shampoo — match UI mockup (prw-page17)
   ============================================================ */
body.page-template-page-egg-shampoo .site-header,
body.page-egg-shampoo .site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

body.page-template-page-egg-shampoo .nav-submenu,
body.page-egg-shampoo .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-egg-shampoo .nav-submenu a,
body.page-egg-shampoo .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-egg-shampoo .nav-submenu a:hover,
body.page-template-page-egg-shampoo .nav-submenu a.is-active,
body.page-egg-shampoo .nav-submenu a:hover,
body.page-egg-shampoo .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.egg-page .coldash-hero {
  background: #f8fafb;
}

.egg-hero .coldash-hero-bg {
  object-position: right center;
}

.egg-hero .coldash-hero-copy {
  max-width: min(540px, 50%);
}

.egg-hero .coldash-hero-title {
  color: #1a3a8c;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  margin-bottom: 1rem;
}

.egg-hero-text p {
  color: #2a6db6;
  font-weight: 500;
  line-height: 1.9;
}

.egg-select-card {
  direction: ltr;
  grid-template-columns: minmax(160px, 0.42fr) 1.58fr;
  min-height: 210px;
}

.egg-select-card .coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
}

.egg-select-media {
  min-height: 210px;
  padding: 0.5rem 0.25rem 0.5rem 0.75rem;
  background: #ffffff;
}

.egg-select-media img {
  min-height: 180px;
  max-height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.egg-select-badge {
  background: #FEEDEE !important;
  color: #1a3a8c !important;
  border-radius: 8px !important;
  font-size: 0.78rem;
}

.egg-weight-btn,
.egg-weight-btn.is-active,
.egg-weight-btn:hover {
  background: #e31c23 !important;
  color: #ffffff !important;
}

a.coldash-select-weight-btn.golrang-digikala-btn,
a.coldash-select-weight-btn.egg-digikala-btn,
.golrang-digikala-btn,
.egg-digikala-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  direction: rtl;
  appearance: none;
  -webkit-appearance: none;
  background: #EC1C34 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.55rem 1.35rem !important;
  border-radius: 8px !important;
  border: 0 !important;
  box-shadow: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

a.coldash-select-weight-btn.golrang-digikala-btn:hover,
a.coldash-select-weight-btn.golrang-digikala-btn:focus-visible,
a.coldash-select-weight-btn.egg-digikala-btn:hover,
a.coldash-select-weight-btn.egg-digikala-btn:focus-visible,
.golrang-digikala-btn:hover,
.golrang-digikala-btn:focus-visible,
.egg-digikala-btn:hover,
.egg-digikala-btn:focus-visible {
  background: #d4192e !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.golrang-digikala-btn-text,
.egg-digikala-btn-text {
  display: inline-block;
  color: #ffffff !important;
}

.golrang-digikala-btn-icon,
.egg-digikala-btn-icon {
  flex-shrink: 0;
  display: block;
  width: 22px;
  height: auto;
  object-fit: contain;
}

.egg-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.egg-features {
  border-top: 0;
  background: #f9fafb;
}

.egg-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
}

.egg-features-inner > * {
  direction: rtl;
}

.egg-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  margin: 0 0 1rem;
}

.egg-features-copy p:last-child {
  margin-bottom: 0;
}

.egg-features .coldash-features-list li {
  color: #2A6DB6;
}

.egg-features .coldash-features-list li::before {
  background: #2988c7;
}

.egg-readmore-section {
  background: #2185c5;
}

@media (max-width: 992px) {
  .egg-features-inner {
    grid-template-columns: 1fr;
  }

  .egg-select-card {
    grid-template-columns: 1fr;
  }

  .egg-select-card .coldash-select-body {
    align-items: center;
    text-align: center;
  }

  .egg-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .egg-hero .coldash-hero-copy {
    max-width: min(540px, 78%);
  }
}

@media (max-width: 720px) {
  .egg-hero .coldash-hero-bg {
    object-position: 88% center;
  }

  .egg-hero .coldash-hero-copy {
    max-width: 100%;
  }

  .egg-select-media,
  .egg-select-media img {
    min-height: 160px;
    max-height: none;
  }
}


/* ============================================================
   Bleach liquid — match UI mockup (prw-page20)
   ============================================================ */
body.page-template-page-bleach .site-header,
body.page-bleach .site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

body.page-template-page-bleach .nav-submenu,
body.page-bleach .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-bleach .nav-submenu a,
body.page-bleach .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-bleach .nav-submenu a:hover,
body.page-template-page-bleach .nav-submenu a.is-active,
body.page-bleach .nav-submenu a:hover,
body.page-bleach .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.bleach-page .coldash-hero {
  background: #f7fafc;
}

.bleach-hero .coldash-hero-bg {
  object-position: right center;
}

.bleach-hero .coldash-hero-copy {
  /* Match container + header logo left edge; nudge right for alignment */
  width: min(34rem, 52%);
  max-width: min(560px, 52%);
  margin-left: clamp(1rem, 2.75vw, 2.25rem);
}

.bleach-hero .coldash-hero-title {
  color: #2c3a91;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  margin-bottom: 1rem;
}

.bleach-hero-text p {
  color: #2a6db6;
  font-weight: 500;
  line-height: 1.9;
}

.bleach-select-card {
  direction: ltr;
  grid-template-columns: minmax(220px, 0.7fr) 1.3fr;
  min-height: 220px;
}

.bleach-select-card .coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
}

.bleach-select-media {
  min-height: 220px;
  padding: 0.5rem 0.25rem 0.5rem 0.75rem;
  background: #ffffff;
  justify-content: flex-start;
  overflow: hidden;
}

.bleach-select-media img {
  min-height: 190px;
  max-height: 260px;
  object-fit: contain;
  object-position: left center;
  margin-inline-end: auto;
}

.bleach-select-badge {
  background: #FEEDEE !important;
  color: #1a3a8c !important;
  border-radius: 8px !important;
  font-size: 0.9rem;
}

.bleach-select-card .coldash-select-name {
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
}

.bleach-weight-btn,
.bleach-weight-btn.is-active,
.bleach-weight-btn:hover {
  background: #E31C23 !important;
  color: #ffffff !important;
}

.bleach-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.bleach-features {
  border-top: 0;
  background: #eef5fa;
}

.bleach-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem 6rem;
}

.bleach-features-inner > * {
  direction: rtl;
}

.bleach-features-list-wrap {
  padding-inline-end: 1.5rem;
}

.bleach-features-copy {
  padding-inline-start: 1.25rem;
}

.bleach-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  margin: 0 0 1rem;
}

.bleach-features-copy p:last-child {
  margin-bottom: 0;
}

.bleach-features .coldash-features-list li::before {
  background: #2b59a8;
}

.bleach-features .coldash-features-title {
  color: #1a3a8c;
}

.bleach-readmore-section {
  background: #278ece;
  margin-top: 0;
}

.bleach-features + .bleach-readmore-section,
.bleach-page .coldash-readmore-section {
  margin-top: 0;
  border-top: 0;
  box-shadow: none;
}

@media (max-width: 992px) {
  .bleach-features-inner {
    grid-template-columns: 1fr;
  }

  .bleach-select-card {
    grid-template-columns: 1fr;
  }

  .bleach-select-card .coldash-select-body {
    align-items: center;
    text-align: center;
  }

  .bleach-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .bleach-hero .coldash-hero-copy {
    max-width: min(560px, 78%);
    width: min(34rem, 78%);
    margin-left: clamp(0.5rem, 2vw, 1.25rem);
  }
}

@media (max-width: 720px) {
  .bleach-hero .coldash-hero-bg {
    object-position: 88% center;
  }

  .bleach-hero .coldash-hero-copy {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }

  .bleach-select-media,
  .bleach-select-media img {
    min-height: 160px;
    max-height: none;
  }
}


/* =========================================================
   Glass Cleaner product page (شیشه‌پاک‌کن گلرنگ)
   ========================================================= */

body.page-template-page-glass-cleaner .site-header,
body.page-glass-cleaner .site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

body.page-template-page-glass-cleaner .nav-submenu,
body.page-glass-cleaner .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-glass-cleaner .nav-submenu a,
body.page-glass-cleaner .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-glass-cleaner .nav-submenu a:hover,
body.page-template-page-glass-cleaner .nav-submenu a.is-active,
body.page-glass-cleaner .nav-submenu a:hover,
body.page-glass-cleaner .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.glass-cleaner-page .coldash-hero {
  background: #f7fafc;
}

.glass-cleaner-hero .coldash-hero-bg {
  object-position: right center;
}

.glass-cleaner-hero .coldash-hero-copy {
  max-width: min(560px, 52%);
}

.glass-cleaner-hero .coldash-hero-title {
  color: #1a3a8c;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  margin-bottom: 1rem;
}

.glass-cleaner-hero-text p {
  color: #1a3a8c;
  font-weight: 500;
  line-height: 1.9;
}

.glass-cleaner-select-card {
  direction: ltr;
  grid-template-columns: minmax(220px, 0.7fr) 1.3fr;
  min-height: 220px;
}

.glass-cleaner-select-card .coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
}

.glass-cleaner-select-media {
  min-height: 220px;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-cleaner-select-media img {
  min-height: 0;
  max-height: 240px;
  max-width: 68%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.glass-cleaner-select-badge {
  background: #FEEDEE !important;
  color: #1a3a8c !important;
  border-radius: 8px !important;
  font-size: 0.78rem;
}

.glass-cleaner-weight-btn,
.glass-cleaner-weight-btn.is-active,
.glass-cleaner-weight-btn:hover {
  background: #e31c23 !important;
  color: #ffffff !important;
}

.glass-cleaner-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.glass-cleaner-features {
  border-top: 0;
  background: #eef5fa;
}

.glass-cleaner-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem 6rem;
}

.glass-cleaner-features-inner > * {
  direction: rtl;
}

.glass-cleaner-features .coldash-features-list-wrap {
  padding-inline-end: 1.5rem;
}

.glass-cleaner-features-copy {
  padding-inline-start: 1.25rem;
}

.glass-cleaner-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  margin: 0 0 1rem;
}

.glass-cleaner-features-copy p:last-child {
  margin-bottom: 0;
}

.glass-cleaner-features .coldash-features-list li::before {
  background: #2b59a8;
}

.glass-cleaner-features .coldash-features-title {
  color: #1a3a8c;
}

.glass-cleaner-readmore-section {
  background: #278ece;
  margin-top: 0;
}

.glass-cleaner-features + .glass-cleaner-readmore-section,
.glass-cleaner-page .coldash-readmore-section {
  margin-top: 0;
  border-top: 0;
  box-shadow: none;
}

@media (max-width: 992px) {
  .glass-cleaner-features-inner {
    grid-template-columns: 1fr;
  }

  .glass-cleaner-select-card {
    grid-template-columns: 1fr;
  }

  .glass-cleaner-select-card .coldash-select-body {
    align-items: center;
    text-align: center;
  }

  .glass-cleaner-select-media {
    padding: 1.5rem 2rem;
  }

  .glass-cleaner-select-media img {
    object-position: center center;
    max-height: 220px;
    max-width: 52%;
  }
}

@media (max-width: 900px) {
  .glass-cleaner-hero .coldash-hero-copy {
    max-width: min(560px, 78%);
  }
}

@media (max-width: 720px) {
  .glass-cleaner-hero .coldash-hero-bg {
    object-position: 88% center;
  }

  .glass-cleaner-hero .coldash-hero-copy {
    max-width: 100%;
  }

  .glass-cleaner-select-media {
    min-height: 0;
    padding: 1.85rem 2.4rem;
  }

  .glass-cleaner-select-media img {
    min-height: 0;
    max-height: 195px;
    max-width: 46%;
  }
}


/* =========================================================
   All Purpose Cleaner (پاک‌کننده چندمنظوره گلرنگ) — prw-page19
   ========================================================= */

body.page-template-page-all-purpose .site-header,
body.page-all-purpose-cleaner .site-header,
body.page-all-purpose .site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

body.page-template-page-all-purpose .nav-submenu,
body.page-all-purpose-cleaner .nav-submenu,
body.page-all-purpose .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-all-purpose .nav-submenu a,
body.page-all-purpose-cleaner .nav-submenu a,
body.page-all-purpose .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-all-purpose .nav-submenu a:hover,
body.page-template-page-all-purpose .nav-submenu a.is-active,
body.page-all-purpose-cleaner .nav-submenu a:hover,
body.page-all-purpose-cleaner .nav-submenu a.is-active,
body.page-all-purpose .nav-submenu a:hover,
body.page-all-purpose .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.apc-page .coldash-hero {
  background: #f7fafc;
  aspect-ratio: 2560 / 1117;
  min-height: clamp(320px, 43.65vw, 700px);
}

.apc-hero .coldash-hero-bg {
  object-fit: cover;
  object-position: right center;
}

.apc-hero .coldash-hero-copy {
  max-width: min(560px, 52%);
}

.apc-hero .coldash-hero-title {
  color: #1a3a8c;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  margin-bottom: 1.15rem;
}

.apc-hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.apc-hero-list li {
  position: relative;
  padding-right: 0;
  color: #1a3a8c;
  font-weight: 500;
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  line-height: 1.95;
}

.apc-hero-list li::before {
  content: none;
  display: none;
}

.apc-select-card {
  direction: ltr;
  grid-template-columns: minmax(220px, 0.7fr) 1.3fr;
  min-height: 240px;
}

.apc-select-card .coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
}

.apc-select-media {
  position: relative;
  min-height: 0;
  height: auto;
  padding: 1rem 0.75rem;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apc-select-media img {
  width: auto;
  height: auto;
  min-height: 0;
  max-width: 96%;
  max-height: 280px;
  object-fit: contain;
  object-position: center center;
}

.apc-select-badge {
  background: #298ecd !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  font-size: 0.78rem;
}

.apc-select-card .coldash-select-name {
  white-space: nowrap;
  text-align: center;
}

.apc-weight-btn,
.apc-weight-btn.is-active,
.apc-weight-btn:hover {
  background: #2f3c92 !important;
  color: #ffffff !important;
}

.apc-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.apc-features {
  border-top: 0;
  background: #eef5fa;
}

.apc-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem 6rem;
}

.apc-features-inner > * {
  direction: rtl;
}

.apc-features-list-wrap {
  padding-inline-start: 3rem;
}

.apc-features-copy {
  padding-inline-start: 1.25rem;
}

.apc-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  margin: 0;
}

.apc-features .coldash-features-list li::before {
  background: #2b59a8;
}

.apc-features .coldash-features-title {
  color: #1a3a8c;
}

.apc-readmore-section {
  background: #278ece;
  margin-top: 0;
}

.apc-features + .apc-readmore-section,
.apc-page .coldash-readmore-section {
  margin-top: 0;
  border-top: 0;
  box-shadow: none;
}

@media (max-width: 992px) {
  .apc-features-inner {
    grid-template-columns: 1fr;
  }

  .apc-select-card {
    grid-template-columns: 1fr;
  }

  .apc-select-card .coldash-select-body {
    align-items: center;
    text-align: center;
  }

  .apc-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .apc-hero .coldash-hero-copy {
    max-width: min(560px, 78%);
  }
}

@media (max-width: 720px) {
  .apc-page .coldash-hero {
    aspect-ratio: auto;
    min-height: 420px;
  }

  .apc-hero .coldash-hero-bg {
    object-position: right center;
  }

  .apc-hero .coldash-hero-copy {
    max-width: 100%;
  }

  .apc-select-media,
  .apc-select-media img {
    min-height: 180px;
    max-height: none;
  }

  .apc-select-media img {
    object-position: center center;
    max-height: 260px;
  }
}


/* ===== Oven Cleaner (گاز پاک‌کن گلرنگ) — prw-page22 ===== */
body.page-template-page-oven-cleaner .site-header,
body.page-oven-cleaner .site-header {
  background: #ffffff;
}

body.page-template-page-oven-cleaner .nav-list > li > a,
body.page-oven-cleaner .nav-list > li > a {
  color: var(--blue-deep) !important;
}

body.page-template-page-oven-cleaner .nav-list > li > a:hover,
body.page-template-page-oven-cleaner .nav-list > li > a.is-active,
body.page-oven-cleaner .nav-list > li > a:hover,
body.page-oven-cleaner .nav-list > li > a.is-active {
  color: var(--blue-mid) !important;
}

body.page-template-page-oven-cleaner .nav-submenu,
body.page-oven-cleaner .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-oven-cleaner .nav-submenu a,
body.page-oven-cleaner .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-oven-cleaner .nav-submenu a:hover,
body.page-template-page-oven-cleaner .nav-submenu a.is-active,
body.page-oven-cleaner .nav-submenu a:hover,
body.page-oven-cleaner .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.oven-cleaner-page .coldash-hero {
  background: #f7fafc;
}

.oven-cleaner-hero .coldash-hero-bg {
  object-position: right center;
}

.oven-cleaner-hero .coldash-hero-copy {
  max-width: min(560px, 52%);
}

.oven-cleaner-hero .coldash-hero-title {
  color: #1a3a8c;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  margin-bottom: 1.15rem;
}

.oven-cleaner-hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.oven-cleaner-hero-list li {
  color: #1a3a8c;
  font-weight: 500;
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  line-height: 1.95;
}

.oven-cleaner-hero-list li::before {
  content: none;
}

.oven-cleaner-select-card {
  direction: ltr;
  grid-template-columns: minmax(220px, 0.7fr) 1.3fr;
  min-height: 240px;
}

.oven-cleaner-select-card .coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
}

.oven-cleaner-select-media {
  min-height: 240px;
  padding: 0.75rem 0.35rem 0.75rem 0.85rem;
  background: #ffffff;
}

.oven-cleaner-select-media img {
  min-height: 210px;
  max-height: 300px;
  object-fit: contain;
  object-position: left center;
}

.oven-cleaner-select-badge {
  background: #298ECD !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-size: 0.78rem;
}

.oven-cleaner-weight-btn,
.oven-cleaner-weight-btn.is-active,
.oven-cleaner-weight-btn:hover {
  background: #1a3a8c !important;
  color: #ffffff !important;
}

.oven-cleaner-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.oven-cleaner-buy .coldash-buy-btn {
  color: #298ECD;
}

.oven-cleaner-features {
  border-top: 0;
  background: #ffffff;
}

.oven-cleaner-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem 4.5rem;
  column-gap: 4.5rem;
}

.oven-cleaner-features-inner > * {
  direction: rtl;
}

.oven-cleaner-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  margin: 0 0 1.1rem;
}

.oven-cleaner-features-copy p:last-child {
  margin-bottom: 0;
}

.oven-cleaner-features .coldash-features-list li::before {
  background: #2b59a8;
}

.oven-cleaner-features .coldash-features-title {
  color: #1a3a8c;
}

.oven-cleaner-readmore-section {
  background: #278ece;
}

@media (max-width: 992px) {
  .oven-cleaner-features-inner {
    grid-template-columns: 1fr;
  }

  .oven-cleaner-select-card {
    grid-template-columns: 1fr;
  }

  .oven-cleaner-select-card .coldash-select-body {
    align-items: center;
    text-align: center;
  }

  .oven-cleaner-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .oven-cleaner-hero .coldash-hero-copy {
    max-width: min(560px, 78%);
  }
}

@media (max-width: 720px) {
  .oven-cleaner-hero .coldash-hero-bg {
    object-position: 88% center;
  }

  .oven-cleaner-hero .coldash-hero-copy {
    max-width: 100%;
  }

  .oven-cleaner-select-media,
  .oven-cleaner-select-media img {
    min-height: 160px;
    max-height: none;
  }
}

/* ============================================================
   Carpet shampoo (شامپو فرش) — match UI mockup (prw-page24)
   ============================================================ */

body.page-template-page-carpet-shampoo .nav-list > li > a,
body.page-carpet-shampoo .nav-list > li > a {
  color: var(--blue-deep);
}

body.page-template-page-carpet-shampoo .nav-list > li > a:hover,
body.page-template-page-carpet-shampoo .nav-list > li > a.is-active,
body.page-carpet-shampoo .nav-list > li > a:hover,
body.page-carpet-shampoo .nav-list > li > a.is-active {
  color: var(--blue-mid) !important;
}

body.page-template-page-carpet-shampoo .nav-submenu,
body.page-carpet-shampoo .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-carpet-shampoo .nav-submenu a,
body.page-carpet-shampoo .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-carpet-shampoo .nav-submenu a:hover,
body.page-template-page-carpet-shampoo .nav-submenu a.is-active,
body.page-carpet-shampoo .nav-submenu a:hover,
body.page-carpet-shampoo .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.carpet-shampoo-page .coldash-hero {
  background: #f7fafc;
}

.carpet-shampoo-hero .coldash-hero-bg {
  object-position: right center;
}

.carpet-shampoo-hero .coldash-hero-copy {
  max-width: min(560px, 52%);
}

.carpet-shampoo-hero .coldash-hero-title {
  color: #2c3a91;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  margin-bottom: 1.15rem;
}

.carpet-shampoo-page .coldash-hero-title > .coldash-hero-title-line:first-child {
  font-weight: 900;
}

.carpet-shampoo-hero-text {
  color: #2a6db6;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 2;
}

.carpet-shampoo-hero-text p {
  color: #2a6db6;
  margin: 0 0 0.35rem;
}

.carpet-shampoo-hero-text p:last-child {
  margin-bottom: 0;
}

.carpet-shampoo-select-card {
  direction: ltr;
  grid-template-columns: minmax(220px, 0.7fr) 1.3fr;
  min-height: 240px;
}

.carpet-shampoo-select-card .coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
}

.carpet-shampoo-select-media {
  min-height: 240px;
  padding: 0.75rem 0.35rem 0.75rem 0.85rem;
  background: #ffffff;
}

.carpet-shampoo-select-media img {
  min-height: 210px;
  max-height: 300px;
  object-fit: contain;
  object-position: left center;
}

.carpet-shampoo-page .coldash-select-badge.carpet-shampoo-select-badge,
.carpet-shampoo-select-badge {
  background: #298ECD !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  font-size: 0.78rem;
  padding: 0.32rem 0.9rem;
}

.carpet-shampoo-weight-btn,
.carpet-shampoo-weight-btn.is-active,
.carpet-shampoo-weight-btn:hover {
  background: #1a3a8c !important;
  color: #ffffff !important;
}

.carpet-shampoo-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.carpet-shampoo-buy .coldash-buy-btn {
  color: #298ECD;
}

.carpet-shampoo-features {
  border-top: 0;
  background: #eef5fa;
}

.carpet-shampoo-features-inner {
  display: grid;
  direction: ltr;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2.5rem clamp(5rem, 10vw, 12rem);
  column-gap: clamp(5rem, 10vw, 12rem);
  row-gap: 2.5rem;
  align-items: start;
}

.carpet-shampoo-features-inner > * {
  direction: rtl;
}

.carpet-shampoo-features .coldash-features-list-wrap {
  padding-inline-end: 0;
  margin-inline-end: 0;
  max-width: 100%;
  justify-self: start;
}

.carpet-shampoo-features-copy {
  padding-inline-start: 0;
  max-width: 100%;
  justify-self: end;
}

.carpet-shampoo-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  margin: 0 0 1.1rem;
}

.carpet-shampoo-features-copy p:last-child {
  margin-bottom: 0;
}

.carpet-shampoo-features .coldash-features-list li {
  color: #2A6DB6;
}

.carpet-shampoo-features .coldash-features-list li::before {
  background: #2b59a8;
}

.carpet-shampoo-features .coldash-features-title {
  color: #1a3a8c;
}

.carpet-shampoo-readmore-section {
  background: #278ece;
  margin-top: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.carpet-shampoo-features + .carpet-shampoo-readmore-section,
.carpet-shampoo-page .coldash-readmore-section,
.carpet-shampoo-page .carpet-shampoo-features + .coldash-readmore-section {
  margin-top: -1px !important;
  border-top: 0 !important;
  box-shadow: none !important;
}

.carpet-shampoo-page .coldash-features,
.carpet-shampoo-page .carpet-shampoo-features {
  border-top: 0 !important;
  border-bottom: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 2.5rem;
}

.carpet-shampoo-features::after,
.carpet-shampoo-readmore-section::before,
.carpet-shampoo-page .carpet-shampoo-features::after,
.carpet-shampoo-page .carpet-shampoo-readmore-section::before {
  content: none !important;
  display: none !important;
  height: 0 !important;
  border: 0 !important;
  background: none !important;
}

.carpet-shampoo-page .carpet-shampoo-readmore-section .coldash-readmore-card p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 992px) {
  .carpet-shampoo-features-inner {
    grid-template-columns: 1fr;
  }

  .carpet-shampoo-select-card {
    grid-template-columns: 1fr;
  }

  .carpet-shampoo-select-card .coldash-select-body {
    align-items: center;
    text-align: center;
  }

  .carpet-shampoo-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .carpet-shampoo-hero .coldash-hero-copy {
    max-width: min(560px, 78%);
  }
}

@media (max-width: 720px) {
  .carpet-shampoo-hero .coldash-hero-bg {
    object-position: 88% center;
  }

  .carpet-shampoo-hero .coldash-hero-copy {
    max-width: 100%;
  }

  .carpet-shampoo-select-media,
  .carpet-shampoo-select-media img {
    min-height: 160px;
    max-height: none;
  }
}


/* ===== Dishwashing Liquid (مایع ظرف‌شویی گلرنگ) — prw-page23 ===== */

body.page-template-page-dishwashing .site-header,
body.page-dishwashing .site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

body.page-template-page-dishwashing .nav-submenu,
body.page-dishwashing .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-dishwashing .nav-submenu a,
body.page-dishwashing .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-dishwashing .nav-submenu a:hover,
body.page-template-page-dishwashing .nav-submenu a.is-active,
body.page-dishwashing .nav-submenu a:hover,
body.page-dishwashing .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.dishwashing-page .coldash-hero {
  background: #f7fafc;
}

.dishwashing-hero .coldash-hero-bg {
  object-position: right center;
}

.dishwashing-hero .coldash-hero-copy {
  /* Match container + header logo left edge; nudge right for alignment */
  width: min(34rem, 52%);
  max-width: min(560px, 52%);
  margin-left: clamp(1rem, 2.75vw, 2.25rem);
}

.dishwashing-hero .coldash-hero-title {
  color: #2c3a92;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  margin-bottom: 0.65rem;
}

.dishwashing-hero-lead {
  color: #2c3a92;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0 0 0.85rem;
  line-height: 1.7;
}

.dishwashing-hero-text p {
  color: #2c3a92;
  font-weight: 500;
  line-height: 1.9;
}

.dishwashing-select-card {
  direction: ltr;
  grid-template-columns: minmax(200px, 0.7fr) 1.3fr;
  min-height: 220px;
}

.dishwashing-select-card .coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
}

.dishwashing-select-media {
  min-height: 220px;
  padding: 0.5rem 0.25rem 0.5rem 0.75rem;
  background: #ffffff;
}

.dishwashing-select-media img {
  min-height: 190px;
  max-height: 280px;
  object-fit: contain;
  object-position: left center;
}

.dishwashing-select-badge {
  background: #fdedee !important;
  color: #2c3a92 !important;
  border-radius: 8px !important;
  font-size: 0.78rem;
}

.dishwashing-weight-btn,
.dishwashing-weight-btn.is-active,
.dishwashing-weight-btn:hover {
  background: #E31C23 !important;
  color: #ffffff !important;
}

.dishwashing-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.dishwashing-features {
  border-top: 0;
  background: #eef5fa;
}

.dishwashing-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem 4.5rem;
  column-gap: 4.5rem;
}

.dishwashing-features-inner > * {
  direction: rtl;
}

.dishwashing-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  margin: 0 0 1rem;
}

.dishwashing-features-copy p:last-child {
  margin-bottom: 0;
}

.dishwashing-features .coldash-features-list li::before {
  background: #2b59a8;
}

.dishwashing-features .coldash-features-title {
  color: #1a3a8c;
}

.dishwashing-readmore-section {
  background: #ffffff;
}

.dishwashing-readmore-section .coldash-readmore-link,
.dishwashing-readmore-section .coldash-readmore-link:hover {
  color: #278ece;
}

@media (max-width: 992px) {
  .dishwashing-features-inner {
    grid-template-columns: 1fr;
  }

  .dishwashing-select-card {
    grid-template-columns: 1fr;
  }

  .dishwashing-select-card .coldash-select-body {
    align-items: center;
    text-align: center;
  }

  .dishwashing-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .dishwashing-hero .coldash-hero-copy {
    max-width: min(560px, 78%);
    width: min(34rem, 78%);
    margin-left: clamp(0.5rem, 2vw, 1.25rem);
  }
}

@media (max-width: 720px) {
  .dishwashing-hero .coldash-hero-bg {
    object-position: 88% center;
  }

  .dishwashing-hero .coldash-hero-copy {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }

  .dishwashing-select-media,
  .dishwashing-select-media img {
    min-height: 160px;
    max-height: none;
  }
}


/* ===== Descaler (جرم‌گیر گلرنگ) — prw-page25 ===== */

body.page-template-page-descaler .site-header,
body.page-descaler .site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

body.page-template-page-descaler .nav-list > li > a,
body.page-descaler .nav-list > li > a {
  color: var(--blue-deep);
}

body.page-template-page-descaler .nav-list > li > a:hover,
body.page-template-page-descaler .nav-list > li > a.is-active,
body.page-descaler .nav-list > li > a:hover,
body.page-descaler .nav-list > li > a.is-active {
  color: var(--blue-mid) !important;
}

body.page-template-page-descaler .nav-submenu,
body.page-descaler .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
}

body.page-template-page-descaler .nav-submenu a,
body.page-descaler .nav-submenu a {
  color: var(--blue-deep) !important;
}

body.page-template-page-descaler .nav-submenu a:hover,
body.page-template-page-descaler .nav-submenu a.is-active,
body.page-descaler .nav-submenu a:hover,
body.page-descaler .nav-submenu a.is-active {
  color: var(--blue-mid) !important;
}

.descaler-page .coldash-hero {
  background: #f7fafc;
}

.descaler-hero .coldash-hero-bg {
  object-position: right center;
}

.descaler-hero .coldash-hero-copy {
  max-width: min(560px, 52%);
}

.descaler-hero .coldash-hero-title {
  color: #1a3a8c;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  margin-bottom: 0.65rem;
}

.descaler-hero-lead {
  color: #1a3a8c;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0 0 0.85rem;
  line-height: 1.85;
}

.descaler-hero-text p {
  color: #1a3a8c;
  font-weight: 600;
  line-height: 1.9;
}

.descaler-select-card {
  direction: ltr;
  grid-template-columns: minmax(200px, 0.7fr) 1.3fr;
  min-height: 220px;
}

.descaler-select-card .coldash-select-body {
  direction: rtl;
  text-align: center;
  align-items: center;
}

.descaler-select-media {
  min-height: 220px;
  padding: 0.5rem 0.25rem 0.5rem 0.75rem;
  background: #ffffff;
}

.descaler-select-media img {
  min-height: 190px;
  max-height: 280px;
  object-fit: contain;
  object-position: left center;
}

.descaler-select-badge {
  background: #298ECD !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  font-size: 0.78rem;
}

.descaler-weight-btn,
.descaler-weight-btn.is-active,
.descaler-weight-btn:hover {
  background: #e31c23 !important;
  color: #ffffff !important;
}

.descaler-buy {
  background: linear-gradient(to right, #1e88e5 0%, #1a237e 100%);
  padding: 5.5rem 0 5.25rem;
}

.descaler-buy .coldash-buy-btn {
  color: #298ECD;
}

.descaler-features {
  border-top: 0;
  background: #eef5fa;
}

.descaler-features-inner {
  direction: ltr;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
}

.descaler-features-inner > * {
  direction: rtl;
}

.descaler-features-copy p {
  color: #2A6DB6;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  margin: 0 0 1rem;
}

.descaler-features-copy p:last-child {
  margin-bottom: 0;
}

.descaler-features .coldash-features-list li::before {
  background: #2b59a8;
}

.descaler-features .coldash-features-title {
  color: #1a3a8c;
}

.descaler-readmore-section {
  background: #278ece;
}

@media (max-width: 992px) {
  .descaler-features-inner {
    grid-template-columns: 1fr;
  }

  .descaler-select-card {
    grid-template-columns: 1fr;
  }

  .descaler-select-card .coldash-select-body {
    align-items: center;
    text-align: center;
  }

  .descaler-select-media img {
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .descaler-hero .coldash-hero-copy {
    max-width: min(560px, 78%);
  }
}

@media (max-width: 720px) {
  .descaler-hero .coldash-hero-bg {
    object-position: 88% center;
  }

  .descaler-hero .coldash-hero-copy {
    max-width: 100%;
  }

  .descaler-select-media,
  .descaler-select-media img {
    min-height: 160px;
    max-height: none;
  }
}

/* =========================================================
   Vertical (portrait) product shots — shared shrink padding
   Same rule as glass-cleaner cards: white padding + max size
   ========================================================= */
.apc-select-media,
.descaler-select-media,
.bleach-select-media,
.dishwashing-select-media,
.oven-cleaner-select-media,
.carpet-shampoo-select-media,
.herbal-select-media,
.fruit-select-media,
.scrub-select-media,
.mv-select-media,
.egg-select-media,
.marble-select-media,
.teddy-select-media,
.star-select-media,
.bodywash-product-media,
.baby-product-media {
  min-height: 0;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.apc-select-media img,
.descaler-select-media img,
.bleach-select-media img,
.dishwashing-select-media img,
.oven-cleaner-select-media img,
.carpet-shampoo-select-media img,
.herbal-select-media img,
.fruit-select-media img,
.scrub-select-media img,
.mv-select-media img,
.egg-select-media img,
.marble-select-media img,
.teddy-select-media img,
.star-select-media img,
.bodywash-product-media img,
.baby-product-media img {
  min-height: 0 !important;
  max-height: 240px !important;
  max-width: 68% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  object-position: center center;
}

@media (max-width: 992px) {
  .apc-select-media,
  .descaler-select-media,
  .bleach-select-media,
  .dishwashing-select-media,
  .oven-cleaner-select-media,
  .carpet-shampoo-select-media,
  .herbal-select-media,
  .fruit-select-media,
  .scrub-select-media,
  .mv-select-media,
  .egg-select-media,
  .marble-select-media,
  .teddy-select-media,
  .star-select-media,
  .bodywash-product-media,
  .baby-product-media {
    padding: 1.5rem 2rem;
  }

  .apc-select-media img,
  .descaler-select-media img,
  .bleach-select-media img,
  .dishwashing-select-media img,
  .oven-cleaner-select-media img,
  .carpet-shampoo-select-media img,
  .herbal-select-media img,
  .fruit-select-media img,
  .scrub-select-media img,
  .mv-select-media img,
  .egg-select-media img,
  .marble-select-media img,
  .teddy-select-media img,
  .star-select-media img,
  .bodywash-product-media img,
  .baby-product-media img {
    max-height: 220px !important;
    max-width: 52% !important;
  }
}

@media (max-width: 720px) {
  .apc-select-media,
  .descaler-select-media,
  .bleach-select-media,
  .dishwashing-select-media,
  .oven-cleaner-select-media,
  .carpet-shampoo-select-media,
  .herbal-select-media,
  .fruit-select-media,
  .scrub-select-media,
  .mv-select-media,
  .egg-select-media,
  .marble-select-media,
  .teddy-select-media,
  .star-select-media,
  .bodywash-product-media,
  .baby-product-media {
    min-height: 0 !important;
    padding: 1.85rem 2.4rem;
  }

  .apc-select-media img,
  .descaler-select-media img,
  .bleach-select-media img,
  .dishwashing-select-media img,
  .oven-cleaner-select-media img,
  .carpet-shampoo-select-media img,
  .herbal-select-media img,
  .fruit-select-media img,
  .scrub-select-media img,
  .mv-select-media img,
  .egg-select-media img,
  .marble-select-media img,
  .teddy-select-media img,
  .star-select-media img,
  .bodywash-product-media img,
  .baby-product-media img {
    min-height: 0 !important;
    max-height: 195px !important;
    max-width: 46% !important;
  }
}

/* Crop baked-in gray bottom edge on product-card photos */
.herbal-select-media img,
.egg-select-media img,
.teddy-select-media img,
.marble-select-media img,
.star-select-media img,
.scrub-select-media img,
.fruit-select-media img,
.dishwashing-select-media img {
  clip-path: inset(0 0 4px 0);
}

/* Baby product cards: side-by-side body — keep media compact, no white plate */
.baby-product-card .baby-product-media {
  min-height: 0;
  padding: 0.15rem !important;
  background: transparent !important;
}

.baby-product-card .baby-product-media img {
  max-width: 130px !important;
  max-height: 200px !important;
  width: auto !important;
  height: auto !important;
}

@media (max-width: 720px) {
  .baby-product-card .baby-product-media img {
    max-width: 150px !important;
    max-height: 220px !important;
  }
}

/* Bodywash product cards: taller boxes, larger bottles — beat shared shrink */
.bodywash-product-card .bodywash-product-media {
  min-height: 0;
  padding: 0.2rem 0.3rem !important;
  background: transparent !important;
}

.bodywash-product-card .bodywash-product-media img {
  max-width: 230px !important;
  max-height: 360px !important;
  width: auto !important;
  height: auto !important;
}

@media (max-width: 992px) {
  .bodywash-product-card .bodywash-product-media img {
    max-width: 200px !important;
    max-height: 320px !important;
  }
}

@media (max-width: 720px) {
  .bodywash-product-card .bodywash-product-media img {
    max-width: 170px !important;
    max-height: 280px !important;
  }
}

