

:root {
  /* ---------- رنگ‌ها ---------- */

  --color-primary:#004C98;
  --color-primary-light:#F0F6FD;
  --color-secondary: #FDD008;           /* زرد/طلایی برند - دکمه‌های اصلی */
  --color-secondary-dark: #d9a300;
  --color-secondary-light: #fdf0c4;

  --color-navy: #14213d;              /* سرمه‌ای تیره - فوتر و باکس‌های تیره */
  --color-navy-light: #1d2f57;

  --color-text: #403F3E;
  --color-text-muted: #9a9aa0;
  --color-text-inverse: #ffffff;

  --color-bg: #ffffff;
  --color-bg-soft: #EBECED;
  --color-bg-soft-2: #e7e6e4;
  --color-border: #e4e4e7;
    --story-text: rgba(255, 255, 255, 0.92);
  --color-danger: #e0393e;            /* نشان "جدید" */
  --color-success: #2e9e5b;
#
  /* ---------- تایپوگرافی ---------- */
  --font-base: 'Vazirmatn', 'Tahoma', sans-serif;
  --fs-ss: 0.5rem; 
  --fs-xs: 0.75rem;     /* 12px */
  --fs-sm: 0.875rem;    /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md: 1.125rem;    /* 18px */
  --fs-lg: 1.375rem;    /* 22px */
  --fs-xl: 1.75rem;     /* 28px */
  --fs-2xl: 2.25rem;    /* 36px */
  --fs-3xl: 3rem;       /* 48px */

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.25;
  --lh-normal: 1.6;
  --lh-loose: 1.9;

  /* ---------- فاصله‌ها ---------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* ---------- ابعاد ---------- */
  --container-max: 100vw;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* ---------- سایه‌ها ---------- */
  --shadow-sm: 0 1px 3px rgba(20, 33, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 33, 61, 0.08);
  --shadow-lg: 0 20px 48px rgba(20, 33, 61, 0.14);

  /* ---------- ترنزیشن ---------- */
  --transition-fast: 0.18s ease;
  --transition-base: 0.3s ease;

  /* ---------- z-index ---------- */
  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, p {
  font-family:Vazirmatn, Tahoma, Geneva, Verdana, sans-serif;
}


html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(255, 211, 26, 0.9);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.45;
}

h1 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 2vw, 2rem);
}

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

.section {
  padding-block: clamp(72px, 8vw, 128px);
}

.section--gray {
  background-color: var(--color-bg-soft);
}
.section--primary {
  background-color: var(--color-primary);
}
.section--soft {
  background-color: var(--color-bg-soft-2);
}

*:not(.dashicons) {
  font-family:Vazirmatn, Tahoma, Geneva, Verdana, sans-serif!important;
}

.eyebrow {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow--light {
  color: #cfe6ff;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  right: 12px;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--yellow);
  color: #102a43;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  min-height: 100px;
  border-bottom: 1px solid #eef1f4;
  background: rgba(255, 255, 255, 0.98);
}

.site-header.is-scrolled {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 30px rgba(7, 87, 165, 0.08);
}

.header-inner {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1.6fr auto 0.65fr 0.55fr;
  align-items: center;
  gap: clamp(24px, 4vw, 68px);
}

.primary-nav,
.utility-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.2vw, 42px);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a,
.utility-nav a {
  position: relative;
  padding-block: 12px;
}

.primary-nav a::after,
.utility-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--yellow);
  transition: width 0.25s ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after,
.utility-nav a:hover::after,
.utility-nav a[aria-current="page"]::after {
  width: 100%;
}

.brand {
  position: relative;
  min-width: 170px;
  display: grid;
  grid-template-columns: auto 46px;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 7px;
  color: var(--blue);
}

.brand-word {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand-mark {
  width: 46px;
  height: 46px;
  grid-row: 1 / span 2;
  grid-column: 2;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 900;
  transform: rotate(-10deg);
}

.brand small {
  padding-top: 2px;
  font-size: 0.58rem;
  font-weight: 700;
}

.header-phone {
  direction: ltr;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  display: block;
  background: var(--blue);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.abb-header-action{
    display: block;
    position: relative;
    width: 48px;
    height: 48px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .abb-header-action svg{
    width: 24px;
  }
.abb-header .abb-header-action svg path, .abb-header-action svg circle{
    stroke: var(--color-secondary);
  }
  .abb-header.abb-menu--scrolled .abb-header-action svg path, .abb-header.abb-menu--scrolled .abb-header-action svg circle, .abb-header.in-page .abb-header-action svg path, .abb-header.in-page .abb-header-action svg circle{
    stroke: var(--color-primary);
  }
 .abb-header-action:hover{
     background: rgba(0, 76, 152, 0.08);
 }
/* Reusable placeholders */
.image-placeholder,
.logo-placeholder,
.trust-placeholder,
.video-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(7, 87, 165, 0.32);
  background:
    linear-gradient(135deg, rgba(7, 87, 165, 0.035) 25%, transparent 25%) -18px 0 / 36px 36px,
    linear-gradient(225deg, rgba(7, 87, 165, 0.035) 25%, transparent 25%) -18px 0 / 36px 36px,
    linear-gradient(315deg, rgba(7, 87, 165, 0.035) 25%, transparent 25%) 0 0 / 36px 36px,
    linear-gradient(45deg, rgba(7, 87, 165, 0.035) 25%, #f8fafc 25%) 0 0 / 36px 36px;
  color: var(--blue);
  text-align: center;
}

.image-placeholder::after,
.video-placeholder::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--placeholder-image, none);
  background-position: center;
  background-size: cover;
}

.image-placeholder > *,
.video-placeholder > * {
  position: relative;
  z-index: 1;
}

.image-placeholder small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
}

/* About */
.about-hero {
  /*min-height: clamp(380px, 55vw, 720px);*/
  overflow: hidden;
  aspect-ratio:16/9;
  background:#e7e6e4
}
.about-medai-contauner{
  width: 30%;
  max-width: 400px;
  height: 420px;
  max-height: 500px;
}
.hero-stage {
  position: relative;
  /*min-height: clamp(380px, 60vw, 850px);*/
  /*background-position: center -120px;*/
  height:100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.chair-cluster {
  position: absolute;
  inset: 5% 12% 2%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 30px);
}

.chair-shape {
  position: relative;
  width: clamp(130px, 24vw, 330px);
  height: clamp(250px, 41vw, 530px);
  display: grid;
  place-items: center;
  border-radius: 36% 36% 18% 18%;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.65rem, 1.1vw, 0.9rem);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 35px 40px rgba(36, 45, 50, 0.18);
  transform-origin: bottom center;
}

.chair-shape::before {
  position: absolute;
  right: 16%;
  bottom: -13%;
  width: 68%;
  height: 20%;
  border-top: 8px solid #4f5456;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
}

.chair-shape::after {
  position: absolute;
  right: 50%;
  bottom: -23%;
  width: 4px;
  height: 26%;
  content: "";
  background: #454b4e;
  transform: translateX(50%);
}

.chair-shape--blue {
  align-self: end;
  background: linear-gradient(165deg, #162f44, #1268d4 73%);
  transform: scale(0.82) rotate(-3deg);
}

.chair-shape--green {
  background: linear-gradient(165deg, #667d36, #8fad4c);
  transform: translateY(-7%) scale(1.05);
}

.chair-shape--gray {
  align-self: end;
  background: linear-gradient(165deg, #727b80, #c8ced0 72%);
  transform: scale(0.88) rotate(3deg);
}

.intro-grid {
    display: flex;
    align-items: flex-end;
    justify-content: center;
 
}

.building-placeholder {
  width: min(100%, 360px);
  min-height: 520px;
  align-content: center;
  gap: 10px;
  border: 0;
  border-radius: 18px 18px 0 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 40px, rgba(255, 211, 26, 0.28) 40px 46px),
    repeating-linear-gradient(0deg, rgba(7, 87, 165, 0.92) 0 58px, rgba(255, 211, 26, 0.85) 58px 66px);
  color: white;
  box-shadow: var(--shadow);
}

.building-placeholder::before {
  position: absolute;
  top: 36px;
  right: 8%;
  width: 84%;
  height: 70px;
  display: grid;
  place-items: center;
  content: "راحتیران";
  border-block: 7px solid var(--yellow);
  background: rgba(7, 87, 165, 0.95);
  color: var(--yellow);
  font-size: 1.8rem;
  font-weight: 900;
}

.building-placeholder .placeholder-icon,
.building-placeholder > span:last-of-type,
.building-placeholder small {
  transform: translateY(60px);
}

.building-placeholder .placeholder-icon {
  font-size: 3rem;
}

.building-placeholder small {
  color: #fff;
}

.intro-copy {
  padding-block: 48px;
}

.intro-copy h1 {
  margin-bottom: 24px;
}

.intro-copy p:not(.eyebrow) {
  max-width: 900px;
  margin-bottom: 12px;
  color: #4d5358;
}

.certificates-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
}

.certificates-copy {
  max-width: 560px;
}

.certificates-copy p:last-child {
  color: var(--muted);
}

.certificate-list {
  border-block: 1px solid var(--line);
}
.certificate-list article figure{
  transform: translateY(30%);
  transition: transform 0.3s ease-out;
}
.certificate-list article:hover figure{
  transform: translateY(0%);
}
.certificate-list .swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical>.swiper-pagination-bullets{
  top: 45%;
  right: -32px;
}
.certificate-list  .swiper-pagination-bullet{
  border-radius: 0;
}

.certificate-row {
  min-height: 155px;
  display: grid;
  grid-template-columns: 128px 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.certificate-row:last-child {
  border-bottom: 0;
}

.certificate-thumb {
  width: 112px;
  aspect-ratio: 0.78;
  margin-block: 10px;
  border: 9px solid #b68e48;
  box-shadow: inset 0 0 0 3px #f4df8e;
}

.certificate-row h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.certificate-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.award-carousel {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 80%;
  margin: 0 auto;
}

.award-track {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  align-items: end;
  gap: clamp(20px, 4vw, 60px);
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.awards-content{
  margin-top: 24px;
}
.awards-content div{
  height: auto;
    overflow: visible;
}
.award-track::-webkit-scrollbar {
  display: none;
}

.award-placeholder {
  min-height: 150px;
  scroll-snap-align: start;
  border: 0;
  border-radius: 48% 48% 10px 10px;
  background:
    radial-gradient(circle at 50% 22%, #f4d986 0 15%, #b8882f 16% 20%, transparent 21%),
    linear-gradient(150deg, #d7b55d, #7f5b1c);
  color: #fff;
  box-shadow: inset 0 -16px 0 rgba(22, 33, 45, 0.48), var(--shadow);
}

.award-placeholder--tall {
  min-height: 215px;
  background:
    radial-gradient(circle at 50% 18%, #e5e9eb 0 13%, #343a3f 14% 19%, transparent 20%),
    linear-gradient(150deg, #2f363d, #07090b);
}

.carousel-button {
  z-index: 3;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 1.8rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.carousel-button:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.awards-story-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  padding-top: 48px;

}

.awards-story-grid > div {
  max-width: 560px;
}

.awards-story-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.button {
  min-height: 58px;
  padding: 16px 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  min-width: 270px;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(7, 87, 165, 0.2);
}

.button--primary:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.quality-section {
  color: #fff;
  display: flex;
    align-items: center;
    gap: 0;
    min-height: 460px;
    padding-inline: 0;
    border-top: 1px solid var(--color-navy);
    border-bottom: 1px solid var(--color-navy);
}
.quality-section .mission__text, .quality-section .mission__media{
  width: 50%;
}
.quality-section .mission__media.mission__media::before{
  content: unset;
  
}
.quality-section .custom-video-player {
    --video-color: #2271b1;
    position: relative;
    height: auto;
    overflow: hidden;
    margin: 32px;
    border: 7px solid #fff;
    aspect-ratio: 4/3;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: clamp(50px, 9vw, 150px);
}

.video-placeholder {
  min-height: clamp(310px, 38vw, 520px);
  border: 6px solid white;
  background:
    linear-gradient(125deg, rgba(88, 54, 26, 0.82), rgba(205, 168, 115, 0.8)),
    repeating-linear-gradient(90deg, #a87645 0 45px, #d2aa72 45px 90px);
  color: white;
}

.play-button {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 87, 165, 0.72);
  font-size: 2.4rem;
  padding-right: 8px;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.14);
}

.video-label {
  position: absolute !important;
  right: 24px;
  bottom: 20px;
  font-size: 0.8rem;
  z-index: 100;
}

.quality-copy h2 {
  margin-bottom: 28px;
}

.quality-copy p:not(.eyebrow) {
  color: #d8e8f8;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
}

.text-link--light {
  margin-top: 12px;
  color: white;
}

.brands-grid {
  display: flex;
  grid-template-columns: 0.7fr 2fr;
  align-items: center;

}

.brands-copy h2 {
  margin-bottom: 0;
}

.brand-logo-list {
width: 80%;
padding: 48px;
max-height: 250px;

}
#vsc-slider-tandis-section-2 .swiper, #vsc-slider-tandis-section-2 .swiper .swiper-slide {
  max-height: 270px;
}
#vsc-slider-customers-section-3 .swiper, #vsc-slider-customers-section-3 .swiper .swiper-slide {
  max-height: 150px;
}

.logo-placeholder {
  min-height: 110px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #edf3f8);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px var(--line), 0 10px 24px rgba(7, 87, 165, 0.06);
}

/* Blog */
.page-title {
  padding-block: 55px 65px;
  background: #eeeeef;
  text-align: center;
}

.page-title .eyebrow {
  margin-bottom: 2px;
}

.page-title h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.blog-layout-section {
  padding-top: 55px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(48px, 6vw, 92px);
  direction: rtl;
}
.blog-media{
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.post-area {
  min-width: 0;
}

.search-status {
  min-height: 30px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.post-card {
  min-width: 0;
  border: 1px solid #e7eaee;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.post-card:hover {
  border-color: rgba(7, 87, 165, 0.24);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.post-card[hidden] {
  display: none;
}

.post-image {
  aspect-ratio: 0.93;
  border: 0;
  border-bottom: 1px solid #e7eaee;
  background-color: #f2f2f2;
  color: rgba(7, 87, 165, 0.82);
  transition: filter 0.25s ease;
}

.post-card:hover .post-image {
  filter: saturate(1.08);
}

.post-image--stool,
.post-image--stool-alt {
  background:
    radial-gradient(ellipse at 50% 28%, #222 0 28%, transparent 29%),
    linear-gradient(100deg, transparent 45%, #8d979f 46% 50%, transparent 51%),
    radial-gradient(ellipse at 50% 80%, #c0c5c8 0 30%, transparent 31%),
    #ededed;
}

.post-image--bar {
  background:
    radial-gradient(ellipse at 50% 35%, #222 0 24%, transparent 25%),
    linear-gradient(90deg, transparent 47%, #929ba0 48% 52%, transparent 53%),
    radial-gradient(ellipse at 50% 82%, #b9bec2 0 28%, transparent 29%),
    #efefef;
}

.post-image--office {
  background:
    linear-gradient(rgba(244, 247, 249, 0.24), rgba(244, 247, 249, 0.24)),
    repeating-linear-gradient(90deg, #b6a997 0 14%, #2b3035 14% 17%, #d8dde0 17% 25%);
}

.post-image--table {
  background:
    linear-gradient(0deg, transparent 0 28%, #9ca2a6 29% 64%, transparent 65%),
    linear-gradient(0deg, transparent 0 64%, #a97748 65% 78%, transparent 79%),
    #f0efed;
}

.post-image--sofa {
  background:
    linear-gradient(0deg, transparent 0 20%, #922c34 21% 72%, transparent 73%),
    repeating-linear-gradient(90deg, transparent 0 24%, rgba(255, 255, 255, 0.14) 24% 26%),
    #efefef;
}

.post-image > span,
.post-image > small {
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
}

.post-image > span {
  align-self: end;
  margin-bottom: 4px;
}

.post-image > small {
  align-self: start;
}

.post-card-body {
  min-height: 170px;
  padding: 22px 20px;
}

.post-category {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
}

.post-card h2 {
  margin: 6px 0 9px;
  font-size: 1.15rem;
}

.post-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.blog-sidebar {
  min-height: 1100px;
  padding-right: 42px;
  border-right: 1px solid #cbd6df;
}

.blog-search {
  height: 64px;
  margin: 76px 0 45px;
  display: grid;
  grid-template-columns: 1fr 64px;
  border: 1px solid #9fb2c2;
  direction: rtl;
}

.blog-search input {
  min-width: 0;
  padding-inline: 18px;
  border: 0;
  background: white;
  color: var(--ink);
  outline: none;
}

.blog-search button {
  border: 0;
  background: #8199ad;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

.sidebar-block {
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.sidebar-block:last-child {
  border-bottom: 0;
}

.sidebar-block h2 {
  margin-bottom: 22px;
  color: #7f92a2;
  font-size: 0.92rem;
}

.sidebar-block a,
.sidebar-block button {
  width: 100%;
  padding: 4px 0;
  display: block;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: right;
  cursor: pointer;
}

.sidebar-block a:hover,
.sidebar-block button:hover {
  color: var(--blue);
}

.empty-state {
  min-height: 400px;
  padding: 60px 20px;
  place-items: center;
  align-content: center;
  border: 1px dashed var(--line);
  text-align: center;
}

.empty-state:not([hidden]) {
  display: grid;
}

.empty-state span {
  color: var(--blue);
  font-size: 4rem;
}

.empty-state h2 {
  margin-bottom: 4px;
  font-size: 1.4rem;
}

.empty-state p {
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding-top: 70px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
}

.about-page .site-footer {
  border-top: 0;
}
.site-main{
  padding-top:120px
}
.footer-main {
  padding-bottom: 55px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr;
  gap: clamp(50px, 7vw, 110px);
  border-bottom: 1px solid #aebdca;
}

.brand--footer {
  margin: 0 0 26px auto;
  justify-content: start;
}

.footer-about p {
  max-width: 540px;
  color: #46739e;
  font-size: 0.82rem;
  line-height: 1.85;
}

.social-links {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}

.footer-links h2 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links a {
  padding-block: 3px;
  display: block;
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.trust-placeholder {
  min-height: 140px;
  padding: 16px;
  border: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(7, 87, 165, 0.18) 0 20%, transparent 21%),
    linear-gradient(#fff, #f4f7fa);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-rows {
  border-bottom: 1px solid #aebdca;
}

.contact-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 125px minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row a {
  direction: ltr;
}

.copyright {
  margin: 0;
  padding-block: 20px;
  color: var(--blue);
  font-size: 0.75rem;
  text-align: center;
}







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

.abb-header {
	position: relative;
	z-index: 999;
	width: 100%;
	direction: rtl;
	font-family: inherit;
}

.abb-header .container {
	width: min(calc(100% - 40px), var(--abb-container));
	margin-inline: auto;
}

.abb-header a {
	text-decoration: none;
}

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

body.abb-menu-open {
	overflow: hidden;
}

/* =====================================================
   Top bar
===================================================== */

.abb-header .topbar {
	position: relative;
	z-index: 3;
	color: #ffffff;
	background: var(--abb-topbar-bg);
}

.abb-header .topbar > .container {
	min-height: 39px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.abb-header .topbar__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	direction: ltr;
}

.abb-header .topbar__phone:hover,
.abb-header .topbar__phone:focus-visible {
	color: var(--abb-accent);
}

.abb-header .topbar__phone svg {
	width: 17px;
	height: 17px;
	color: var(--abb-accent);
}

.abb-header .topbar-navigation {
	min-width: 0;
}

.abb-header .topbar-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 22px;
}

.abb-header .topbar-menu > li {
	position: relative;
}

.abb-header .topbar-menu > li > a {
	min-height: 39px;
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.abb-header .topbar-menu > li:hover > a,
.abb-header .topbar-menu > li:focus-within > a,
.abb-header .topbar-menu > .current-menu-item > a {
	color: var(--abb-accent);
}

.abb-header .topbar-menu .sub-menu {
	position: absolute;
	top: calc(100% + 1px);
	right: 0;
	width: max-content;
	min-width: 185px;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	background: var(--abb-submenu-bg);
	border: 1px solid var(--abb-border);
	border-radius: 0 0 10px 10px;
	box-shadow: var(--abb-shadow);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.abb-header .topbar-menu li:hover > .sub-menu,
.abb-header .topbar-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.abb-header .topbar-menu .sub-menu a {
	display: block;
	padding: 9px 11px;
	color: var(--abb-text);
	font-size: 12px;
	border-radius: 7px;
}

.abb-header .topbar-menu .sub-menu a:hover,
.abb-header .topbar-menu .sub-menu a:focus-visible {
	color: var(--abb-text);
	background: var(--abb-accent);
}

/* =====================================================
   Main header layout
===================================================== */

.abb-header .site-header {
	position: relative;
	z-index: 2;
	height:120px;
	background: var(--abb-header-bg);
	border-bottom: 1px solid var(--abb-border);
	box-shadow: 0 4px 18px rgba(17, 43, 39, 0.04);
}


/* display:contents باعث می‌شود دو nav مستقیماً در گرید هدر قرار بگیرند. */
.abb-header .header-navigation {
	display: contents;

}
.header-navigation{
    background:#fff;
}

.abb-header .header-navigation__nav {
	min-width: 0;
	display: flex;
	align-items: center;
}

.abb-header .header-navigation__nav--right {
	grid-column: 1;
	justify-content: flex-end;
}

.abb-header .brand {
	grid-column: 2;
	align-items: center;
	justify-content: center;
	min-width: 92px;
	color: var(--abb-text);
}

.abb-header .header-navigation__nav--left {
	grid-column: 3;
	justify-content: flex-start;
}

.abb-header .header-actions {
	grid-column: 4;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.abb-header .brand__image {
	display: block;
	width: auto;
	max-width: 138px;
	max-height: 65px;
	object-fit: contain;
}

.abb-header .brand__name {
	font-size: 20px;
	font-weight: 800;
	white-space: nowrap;
}

/* =====================================================
   Main menus
===================================================== */

.abb-header .menubar {
	display: flex;
	align-items: center;
	gap: 2px;
}


.abb-header .menubar li {
	position: relative;
}

.abb-header .menubar > li > a {
	position: relative;
	min-height: 84px;
	padding: 0 13px;
	color:var(--color-primary);
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.8;
	white-space: nowrap;
	transition: color 0.2s ease;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb{
    padding-inline: var(--space-8);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt{
    background-color:var(--color-secondary);
    color:var(--color-primary);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover{
    background-color:var(--color-primary);
    color:var(--color-secondary);
}
.abb-header.in-front .menubar> li> a{
  color: var(--color-secondary);
}
.abb-header.in-front.abb-menu--scrolled .menubar> li> a{
  color: var(--color-primary);
}
.abb-header-action--cart .abb-cart-count {
    position: absolute;
    display: block;
    color: #fff;
    top: 0px;
    left: -12px;
    padding: 2px 8px;
    line-height: 21px;
    /* width: 12px; */
    /* height: 12px; */
    border-radius: 40px;
    font-size: 12px;
}
.abb-header.in-front .abb-header-action--cart .abb-cart-count { color:var(--color-secondary);}
.abb-header.in-front.abb-menu--scrolled .abb-header-action--cart .abb-cart-count,
.abb-header.in-page .abb-header-action--cart .abb-cart-count
{ color:var(--color-primary);}

.abb-header .menubar > li > a::before {
	content: "";
	position: absolute;
	right: 13px;
	bottom: 0;
	width: 0;
	height: 3px;
	border-radius: 5px 5px 0 0;
	background: var(--abb-accent);
	transition: width 0.22s ease;
}
.abb-header.in-front .menubar > li > a:hover{
  color:#fff;
}
.abb-header.in-front .menubar > li > a:hover{
  color:#fff;
}
.abb-header.in-front.abb-menu--scrolled .menubar> li> a:hover{
    color:var(--color-secondary);
}

.abb-header .menubar > li:hover > a,
.abb-header .menubar > li:focus-within > a,
.abb-header .menubar > .current-menu-item > a,
.abb-header .menubar > .current-menu-ancestor > a,
.abb-header .menubar > .current-menu-parent > a {
	color: #9b7b00;
}

.abb-header .menubar > li:hover > a::before,
.abb-header .menubar > li:focus-within > a::before,
.abb-header .menubar > .current-menu-item > a::before,
.abb-header .menubar > .current-menu-ancestor > a::before,
.abb-header .menubar > .current-menu-parent > a::before {
	width: calc(100% - 26px);
}

.abb-header .menubar li.menu-item-has-children > a {
	padding-left: 31px;
}

.abb-header .menubar li.menu-item-has-children > a::after {
	content: "";
	position: absolute;
	left: 13px;
	width: 7px;
	height: 7px;
	border-left: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: translateY(-2px) rotate(-45deg);
	transition: transform 0.2s ease;
}

.abb-header .menubar > li.menu-item-has-children:hover > a::after,
.abb-header .menubar > li.menu-item-has-children:focus-within > a::after {
	transform: translateY(2px) rotate(135deg);
}

/* =====================================================
   Desktop submenus (up to three levels)
===================================================== */

.abb-header .menubar .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 20;
	width: max-content;
	min-width: 235px;
	max-width: 310px;
	padding: 9px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(10px);
	background: var(--abb-submenu-bg);
	border: 1px solid var(--abb-border);
	border-radius: var(--abb-radius);
	box-shadow: var(--abb-shadow);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.abb-header .menubar > li > .sub-menu::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 100%;
	width: 100%;
	height: 12px;
}

.abb-header .menubar li:hover > .sub-menu,
.abb-header .menubar li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.abb-header .menubar .sub-menu li {
	width: 100%;
}

.abb-header .menubar .sub-menu a {
	position: relative;
	width: 100%;
	min-height: 44px;
	padding: 9px 13px;
	display: flex;
	align-items: center;
	color: var(--abb-text);
	font-size: 13px;
	font-weight: 550;
	line-height: 1.8;
	white-space: normal;
	border-radius: 8px;
	transition: color 0.2s ease, background-color 0.2s ease, padding 0.2s ease;
}

.abb-header .menubar .sub-menu li:hover > a,
.abb-header .menubar .sub-menu li:focus-within > a,
.abb-header .menubar .sub-menu .current-menu-item > a,
.abb-header .menubar .sub-menu .current-menu-ancestor > a {
	color: var(--abb-text);
	padding-right: 18px;
	background: rgba(253, 208, 8, 0.22);
}

/* زیرمنوهای منوی راست به سمت چپ باز می‌شوند. */
.abb-header .header-navigation__nav--right .sub-menu .sub-menu {
	top: -9px;
	right: calc(100% + 9px);
	transform: translateX(10px);
}

/* زیرمنوهای منوی چپ به سمت راست باز می‌شوند. */
.abb-header .header-navigation__nav--left > .menubar > li > .sub-menu {
	right: auto;
	left: 0;
}

.abb-header .header-navigation__nav--left .sub-menu .sub-menu {
	top: -9px;
	right: auto;
	left: calc(100% + 9px);
	transform: translateX(-10px);
}

.abb-header .menubar .sub-menu li:hover > .sub-menu,
.abb-header .menubar .sub-menu li:focus-within > .sub-menu {
	transform: translateX(0);
}

.abb-header .menubar .sub-menu li.menu-item-has-children > a {
	padding-left: 34px;
}

.abb-header .menubar .sub-menu li.menu-item-has-children > a::after {
	left: 15px;
	transform: rotate(45deg);
}

.abb-header .header-navigation__nav--left .sub-menu li.menu-item-has-children > a::after {
	left: auto;
	right: 15px;
	transform: rotate(225deg);
}

.abb-header .header-navigation__nav--left .sub-menu li.menu-item-has-children > a {
	padding-right: 34px;
	padding-left: 13px;
}
.rah-as-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 76px;
    gap: 10px;
    font-size: 0.9rem;
    padding-inline: var(--space-8);
}
.rah-as-breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
}
/* =====================================================
  Map svg   
===================================================== */
.iran{
    fill:#788CA1;
}
.agency-iran-map__province{
        fill: #3a7bbd;
}
.agency-iran-map__province.has-agencies{
    fill:var(--color-primary);
   stroke: #fff;
}
.caspian, .qom, .urmia, .jazmourian, .persian-gulf{
    fill: #51d0f7;
}
.agency-iran-map__province.is-active{
    fill:var(--color-secondary);
}
.agency-iran-map__island{
     fill: #f4f4f4;
}
/* =====================================================
   Call action
===================================================== */

.abb-header .header-actions__icon {
	min-height: 45px;
	padding: 8px 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	color: var(--abb-text);
	font-size: 13px;
	font-weight: 750;
	direction: ltr;
	white-space: nowrap;
	background: #fff8d5;
	border: 1px solid rgba(216, 174, 0, 0.35);
	border-radius: 10px;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.abb-header .header-actions__icon:hover,
.abb-header .header-actions__icon:focus-visible {
	color: var(--abb-text);
	background: var(--abb-accent);
	border-color: var(--abb-accent-dark);
	transform: translateY(-1px);
}

.abb-header .header-actions__icon svg {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	color: var(--abb-accent-dark);
}

.abb-header .header-actions__icon:hover svg,
.abb-header .header-actions__icon:focus-visible svg {
	color: var(--abb-text);
}

/* =====================================================
   Hamburger button
===================================================== */

.abb-header .nav-toggle,
.abb-header .submenu-toggle {
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
.abb-header .nav-toggle-container, .mobile-brand {
	display: none;
}
    .abb-header .brand{
    display: inline-flex;
}
.abb-header .nav-toggle-container{
    width: 0;
    display: none;
    align-items: center;
    justify-content: flex-start;
}
.abb-header .nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	color: var(--abb-text);
	border: 1px solid var(--abb-border);
	border-radius: 10px;
	cursor: pointer;
}

.abb-header .nav-toggle__line {
	display: block;
	width: 22px;
	height: 2px;
	
	border-radius: 10px;
	transition: transform 0.22s ease, opacity 0.18s ease;
}
.abb-header.in-front .nav-toggle__line{
    background: var(--color-secondary);
}
.abb-header.in-page .nav-toggle__line, .abb-header.in-front.abb-menu--scrolled .nav-toggle__line{
    background: var(--color-primary);
}
.abb-header .nav-toggle.is-active .nav-toggle__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.abb-header .nav-toggle.is-active .nav-toggle__line:nth-child(2) {
	opacity: 0;
}

.abb-header .nav-toggle.is-active .nav-toggle__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.abb-header .submenu-toggle {
	display: none;
}

/* =====================================================
   Focus
===================================================== */

.abb-header a:focus-visible,
.abb-header button:focus-visible {
	outline: 3px solid rgba(253, 208, 8, 0.48);
	outline-offset: 3px;
}

/* =====================================================
   Mobile and tablet navigation
===================================================== */
.mobile-menu-container{
    width: 100vw;
    display: none;
    opacity:0;
    align-items: stretch;
    justify-content: space-between;
    padding-inline: var(--space-4);
    box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 0;
    height: 64px;
    gap: 8px;
    z-index: 1000000000;
    background: #fff;
}
.mobile-menu-container .abb-header-action {
    display: block;
    position: relative;
    /* width: 48px; */
    /* height: 48px; */
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 2;
    flex-shrink: 2;
    height: 100%;
}
.mobile-menu-container .abb-header-action svg, .mobile-menu-container .abb-header-action svg circle {
    stroke:var(--color-primary);
}
.mobile-menu-container .abb-header-action--cart .abb-cart-count {
    position:static;
    display: block;
    color: var(--color-primary);
    padding: 2px 8px;
    line-height: 21px;
    font-size: 12px;
}
@media (max-width: 1140px) {    
    .container, .last-cta .container {
    padding-inline: var(--space-7);
}
.abb-header.in-front .menubar> li> a{
  color: var(--color-primary);
}
.abb-header.in-front .menubar> li:hover> a{
  color: var(--color-secondary);
}
    .mobile-menu-container{
        display:flex;
        opacity:1;
    }
	.abb-header .site-header > .container {
		position: static;
		min-height: 72px;
		grid-template-columns: 44px minmax(0, 1fr) auto;
		column-gap: 13px;
	}
	.header-actions .abb-header-action--account, .header-actions .abb-header-action--cart{
	    display:none;
	}
	.abb-header .nav-toggle-container{
	display: flex;
	width:48px;
    }
    .mobile-brand {
    display: flex;
	width:auto;
    }
    .abb-header .brand{
    display: none;
    }

	.abb-header .nav-toggle {
		grid-column: 1;
		display: flex;
	}

	.abb-header .brand {
		grid-column: 2;
		justify-self: center;
	}

	.abb-header .brand__image {
		max-width: 122px;
		max-height: 55px;
	}

	.abb-header .header-actions {
		grid-column: 3;
	}

	.abb-header .header-actions__icon {
		width: 44px;
		height: 44px;
		min-height: 44px;
		padding: 0;
	}

	.abb-header .header-actions__text {
		display: none;
	}

	/* بدون JS منو قابل مشاهده می‌ماند؛ JS این بخش را جمع می‌کند. */
	.abb-header .header-navigation {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		z-index: 50;
		display: block;
		max-height: calc(100vh - 72px);
		padding: 11px 20px 20px;
		overflow-y: auto;
		overscroll-behavior: contain;
		background: var(--abb-header-bg);
		border-top: 1px solid var(--abb-border);
		box-shadow: var(--abb-shadow);
		background:#fff;
	}
  
	.abb-js .abb-header .header-navigation {
		display: none;
	}

	.abb-js .abb-header .header-navigation.is-open {
		display: block;
	}

	.abb-header .header-navigation__nav {
		display: block;
	}

	.abb-header .header-navigation__nav + .header-navigation__nav {
		margin-top: 4px;
		padding-top: 4px;
		border-top: 1px solid var(--abb-border);
	}

	.abb-header .menubar {
		display: block;
	}

	.abb-header .menubar > li {
		width: 100%;
		border-bottom: 1px solid var(--abb-border);
	}

	.abb-header .menubar > li:last-child {
		border-bottom: 0;
	}

	.abb-header .menubar > li > a,
	.abb-header .menubar .sub-menu a,
	.abb-header .header-navigation__nav--left .sub-menu li.menu-item-has-children > a {
		min-height: 50px;
		padding: 10px 8px;
		display: flex;
		align-items: center;
		color: var(--abb-text);
		font-size: 14px;
		font-weight: 650;
		border-radius: 8px;
	}

	.abb-header .menubar li.menu-item-has-children > a,
	.abb-header .menubar .sub-menu li.menu-item-has-children > a,
	.abb-header .header-navigation__nav--left .sub-menu li.menu-item-has-children > a {
		padding-right: 8px;
		padding-left: 54px;
	}

	.abb-header .menubar > li > a::before,
	.abb-header .menubar li.menu-item-has-children > a::after {
		display: none;
	}

	.abb-header .menubar .sub-menu,
	.abb-header .header-navigation__nav--right .sub-menu .sub-menu,
	.abb-header .header-navigation__nav--left > .menubar > li > .sub-menu,
	.abb-header .header-navigation__nav--left .sub-menu .sub-menu {
		position: static;
		width: 100%;
		min-width: 0;
		max-width: none;
		margin: 0;
		padding: 0 14px 8px 0;
		display: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		transition: none;
	}

	.abb-header .menubar li:hover > .sub-menu,
	.abb-header .menubar li:focus-within > .sub-menu {
		display: none;
	}

	.abb-header .menubar li.submenu-open > .sub-menu {
		display: block;
	}

	.abb-header .menubar .sub-menu .sub-menu {
		padding-right: 14px;
	}

	.abb-header .menubar .sub-menu a,
	.abb-header .header-navigation__nav--left .sub-menu li.menu-item-has-children > a {
		min-height: 44px;
		font-size: 13px;
		font-weight: 550;
		border-right: 2px solid var(--abb-border);
		border-radius: 0;
	}

	.abb-header .menubar .sub-menu li:hover > a,
	.abb-header .menubar .sub-menu li:focus-within > a,
	.abb-header .menubar .sub-menu .current-menu-item > a {
		padding-right: 13px;
		background: rgba(253, 208, 8, 0.18);
	}

	.abb-header .submenu-toggle {
		position: absolute;
		top: 5px;
		left: 3px;
		z-index: 3;
		width: 40px;
		height: 40px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--abb-text);
		background: var(--abb-hover-bg);
		border: 1px solid transparent;
		border-radius: 8px;
		cursor: pointer;
	}

	.abb-header .submenu-toggle::before {
		content: "";
		width: 8px;
		height: 8px;
		border-left: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: translateY(-2px) rotate(-45deg);
		transition: transform 0.2s ease;
	}

	.abb-header .submenu-toggle[aria-expanded="true"] {
		color: var(--abb-text);
		background: var(--abb-accent);
	}

	.abb-header .submenu-toggle[aria-expanded="true"]::before {
		transform: translateY(2px) rotate(135deg);
	}
}

@media (max-width: 1024px) {
    .blog-media{
        display:none;
    }
    }
@media (max-width: 767px) {
	.abb-header .container {
		width: calc(100% - 24px);
	}

	.abb-header .topbar > .container {
		min-height: 35px;
		justify-content: center;
	}

	.abb-header .topbar-navigation {
		display: none;
	}

	.abb-header .topbar__phone {
		font-size: 12px;
	}

	.abb-header .header-navigation {
		padding-right: 12px;
		padding-left: 12px;
	}

	.abb-header .brand__image {
		max-width: 105px;
		max-height: 50px;
	}

	.abb-header .brand__name {
		max-width: 150px;
		overflow: hidden;
		font-size: 17px;
		text-overflow: ellipsis;
	}
}

@media (prefers-reduced-motion: reduce) {
	.abb-header *,
	.abb-header *::before,
	.abb-header *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}





/* Motion */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 22px;
  }

  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    inset: 100px 0 auto;
    max-height: calc(100vh - 100px);
    padding: 28px;
    display: grid;
    gap: 4px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: white;
    box-shadow: 0 30px 50px rgba(16, 42, 67, 0.15);
    transform: translateY(-130%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .primary-nav a {
    padding: 12px;
  }

  .brand {
    justify-self: center;
  }

  .utility-nav {
    gap: 20px;
  }

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

  .blog-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

  .blog-sidebar {
    padding-right: 28px;
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: 70px;
  }

  .header-phone {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .intro-grid,
  .certificates-grid,
  .quality-grid,
  .brands-grid {
    grid-template-columns: 1fr;
  }

  .building-placeholder {
    width: min(100%, 420px);
    min-height: 520px;
    margin-inline: auto;
    grid-row: 2;
  }

  .intro-copy {
    padding-bottom: 0;
  }

  .certificates-copy {
    max-width: 680px;
  }

  .quality-copy {
    grid-row: 1;
  }

  .brand-logo-list {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .blog-sidebar {
    min-height: auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .blog-search {
    grid-column: 1 / -1;
    margin: 45px 0 0;
  }

  .site-footer {
    padding-top: 55px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .trust-badges {
    align-items: start;
  }

  .contact-row {
    grid-template-columns: 110px 1fr;
    padding-block: 18px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header,
  .header-inner {
    min-height: 76px;
  }

  .header-inner {
    grid-template-columns: 46px 1fr;
  }

  .primary-nav {
    inset: 76px 0 auto;
  }

  .brand {
    min-width: 145px;
    justify-self: end;
    grid-template-columns: auto 38px;
  }

  .brand-word {
    font-size: 1.65rem;
  }

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

  .utility-nav {
    display: none;
  }
.about-hero {
    width:100%;
    aspect-ratio: 9 / 16;
}



  .chair-cluster {
    inset: 4% -12% 7%;
    gap: 0;
  }

  .chair-shape {
    width: 34vw;
    min-width: 125px;
    height: 260px;
  }

  .chair-shape--green {
    z-index: 2;
  }

  .intro-grid {
    gap: 34px;
  }

  .building-placeholder {
    min-height: 430px;
  }

  .certificate-row {
    grid-template-columns: 92px 1fr;
    gap: 16px;
  }

  .certificate-thumb {
    width: 82px;
  }

  .award-carousel {
    gap: 8px;
  }

  .award-track {
    grid-auto-columns: 72%;
    gap: 18px;
  }

  .carousel-button {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .awards-story-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 28px;
  }

  .button--primary {
    width: 100%;
    min-width: 0;
  }

  .video-placeholder {
    min-height: 260px;
  }

  .play-button {
    width: 82px;
    height: 82px;
    font-size: 1.6rem;
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.14);
  }

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

  .brand-logo-list .logo-placeholder:last-child {
    grid-column: 1 / -1;
    width: 48%;
    justify-self: center;
  }

  .page-title {
    padding-block: 38px 44px;
  }

  .blog-layout-section {
    padding-top: 30px;
  }

  .post-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .post-image {
    aspect-ratio: 1.15;
  }

  .post-card-body {
    min-height: 0;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .blog-search {
    margin-top: 35px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-links {
    gap: 28px;
  }

  .trust-badges {
    min-height: 150px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

body{
    margin:0;
    padding:0;
}
#preloader {
    position: absolute;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #f3f3f3;

    opacity: 1;
    visibility: visible;
   
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

#preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* تحویل بدون پرش از Preloader به سکشن اصلی */
#preloader.preloader-handoff {
    background-color: transparent;
    pointer-events: none;
}

/* لوگوی Preloader */
.preloader-logo {
    width: min(72vw, 620px);
    height: auto;
    max-height: 34vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
    will-change: transform, opacity, filter;
    transition:
        transform 1.2s cubic-bezier(0.76, 0, 0.14, 1),
        opacity 0.8s ease,
        filter 0.8s ease;
}

.preloader-logo.is-exiting {
    transform: translateY(-40vh) scale(1);
}

.preloader-logo.ready {
    opacity: 0;
    filter: blur(1px);
    transform: translateY(-293vh) scaleX(4);
}

.rahatiran-logo-blue {
    fill: #004c98;
}

.rahatiran-logo-yellow {
    fill: #ffcf01;
}

/* حالت اولیه Fade-in Down: هر کاراکتر بالاتر از جای نهایی قرار دارد. */
.preloader-logo .rahatiran-logo-part {
    opacity: 0;
    filter: blur(4px);
    transform-box: fill-box;
    transform-origin: center center;
    transform: translateY(-70px) rotateX(-8deg);
    will-change: transform, opacity, filter;
}

.preloader-logo.is-entrance-ready .rahatiran-logo-part {
    animation: rahatiran-logo-fade-in-down 680ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--reveal-order, 0) * 70ms);
}

@keyframes rahatiran-logo-fade-in-down {
    0% {
        opacity: 0;
        filter: blur(4px);
        transform: translateY(-70px) rotateX(-8deg);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) rotateX(0);
    }
}

/* موبایل */
@media (max-width: 600px) {
    .preloader-logo {
        width: min(84vw, 460px);
        max-height: 28vh;
    }
}

/* کاهش انیمیشن در تنظیمات سیستم */
@media (prefers-reduced-motion: reduce) {
    .preloader-logo .rahatiran-logo-part,
    .brand-reveal-logo .rahatiran-logo-part {
        animation: none;
        opacity: 1;
        filter: none;
        transform: none;
    }
}

html.is-preloading,
html.is-preloading body {
    overflow: hidden;
}

.brand-reveal-section {
    position: relative;

    width: 100%;
    height: 100svh;
    min-height: 100svh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: #f3f3f3;
    overflow: hidden;
}

/* دقیقاً هم‌اندازه و هم‌مکان با متن Preloader */
.brand-reveal-word {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
    direction: ltr;
    width: 100%;

    font-family: Arial, sans-serif;
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 900;
    line-height: 1;
    color: #ffffff;

    padding: 0;

    will-change: transform, opacity, filter, color;

    transition:
        transform 1.2s cubic-bezier(0.76, 0, 0.14, 1),
        opacity 0.8s ease,
        filter 0.8s ease,
        color 0.6s ease 0.6s;
}

.brand-reveal-logo {
    display: block;
    width: min(72vw, 620px);
    height: auto;
    max-height: 34vh;
    overflow: visible;
}

.brand-reveal-logo .rahatiran-logo-part {
    opacity: 0;
    filter: blur(1px);
    transform-box: fill-box;
    transform: translateY(-120%) rotateX(-20deg);
    transform-origin: center bottom;

    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease,
        filter 0.4s ease;
       

    will-change: transform, opacity, filter;
}

/* ورود اجزای لوگو از بالا */
.brand-reveal-logo .rahatiran-logo-part.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) rotateX(0);
}

@media (max-width: 600px) {
    .brand-reveal-logo {
        width: min(84vw, 460px);
        max-height: 28vh;
    }
}

/* خروج کل کلمه از بالای صفحه */
.brand-reveal-word.is-exiting {
    opacity: 1;
    filter: blur(0px);
    color:#0d0d0d;
    transform: translateY(-40vh) scale(1);
}
.white-frame{
    background: #fff;
    height:calc(100% - 48px);
    width: 55%;
    position: absolute;
    z-index: 0;
    bottom: 24px;
    transform: scaleY(0);
    transform-origin: center bottom;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: all;
}
.white-frame.is-exiting {
    transform: scaleY(1);
}

.brand-reveal-word.ready{
    opacity: 0;
    filter: blur(1px);
    transform: translateY(-293vh) scaleX(4);

}
.white-frame.ready{
    width: 100%;
    height: 100%;
    bottom: 0;
    top:0;
}

.random-img-wrapper {
    background: #fff;
    width: 40%;
    height:50vh;
    position: absolute;
    z-index: 5;
    /*top: calc(100% - 172px);*/
    bottom:175px;
    transform: scaleY(0);
    transform-origin: center bottom;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: all;
}
.random-img-wrapper.is-exiting  {
    transform: scaleY(1);
}
.random-img-wrapper.ready{
    width: 100%;
   /*aspect-ratio: 16/9;*/
   height:100%;
   bottom: 0;
}
.random-img-wrapper img{
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    margin: 8px;
    object-fit: cover;
    transition: all 0.4s ease-out;
}
.random-img-wrapper.ready img {
    margin: 0px;
     width:100% ;
    aspect-ratio: 16/9;

}
.brand-reveal-section .header-title{
    position: absolute;
    z-index: 50;
    text-align: center;
    min-width: 100%;
    /*aspect-ratio: 16/9;*/
    height:100%;
    top:0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transform: scaleY(0);
    background-image: linear-gradient(178deg, rgb(12 24 36 / 0%), transparent);
    transition: all 0.4s ease-out ;
}
.brand-reveal-section .header-title.ready{
  transform: scaleY(1);
}
.brand-reveal-section .header-title{
  color:#fff;
}
.brand-reveal-section .header-title .header-actions{
  padding: 24px 8px;
  margin-top: 24px;
}
.brand-reveal-section .header-title .header-actions a{
  /*background: var(--color-secondary);*/
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 64px;
    /*color: var(--color-primary);*/
}








.glass-cta {
    --cta-color: 255, 255, 255;
    --cta-accent: 253, 208, 8;
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 25px;
    overflow: hidden;
    color: #ffba00;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    border: 1px solid rgba(var(--cta-color), 0.35);
    background: rgba(var(--cta-color), 0.12);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 10px 35px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.glass-cta span,
.glass-cta svg {
    position: relative;
    z-index: 2;
}

.glass-cta svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.35s ease;
}

.glass-cta:hover {
    color: #fff;
    transform: translateY(-3px);
}

.glass-cta:hover svg {
    transform: translateX(4px);
}

.glass-cta:focus-visible {
    outline: 3px solid rgba(var(--cta-accent), 0.45);
    outline-offset: 4px;
}



.glass-cta--neon {
    --neon-color: 253, 208, 8;
    border-color: #ffba009e;
    background: rgba(45, 45, 45, 0.2);
    box-shadow: inset 0 0 18px rgba(var(--neon-color), 0.08), 0 0 0 1px rgba(var(--neon-color), 0.12), 0 10px 35px rgba(0, 0, 0, 0.3);
}

.glass-cta--neon::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: auto 15% -20px;
    height: 30px;

    background: rgba(var(--neon-color), 0.65);
    filter: blur(24px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.glass-cta--neon:hover {
    color: rgb(var(--neon-color));
    border-color: rgb(var(--neon-color));

    box-shadow:
        inset 0 0 24px rgba(var(--neon-color), 0.15),
        0 0 18px rgba(var(--neon-color), 0.3),
        0 14px 40px rgba(0, 0, 0, 0.35);
}

.glass-cta--neon:hover::before {
    opacity: 1;
}























.brand-reveal-section .header-title .header-actions a svg{
  width: 20px;
    aspect-ratio: 1;
}
@media (max-width: 600px) {
    .brand-reveal-word {
        gap: 0;
        font-size: clamp(34px, 11vw, 55px);
    }
    .white-frame{
   
    width: 80%
}
}





/* ==========================================================================
   راحتیران - Base / Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background: var(--color-bg);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}

/* ---------- فوکوس قابل دسترس ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(  --color-secondary-dark);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ---------- کانتینر عمومی ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;

}

/* ---------- بخش‌ها ---------- */
.section {
  padding-block: var(--space-8);
  position: relative;
  overflow: hidden;
}

.about-intro.section{
  padding: 0;
}
.section--tight {
  padding-block: var(--space-7);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.section-eyebrow {
  display: inline-flex;
  width: 100%;
  align-items: center;
  gap: var(--space-2);
  color: var(  --color-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}
.section-eyebrow.secondary{
  color: var(  --color-secondary);
}

.section-eyebrow::before {
  content: "";
  width: 10%;
  height: 1px;
  background: var(  --color-primary);
  display: inline-block;
}
.section-eyebrow.secondary::before{
background: var(  --color-secondary);
}
.section-title {
  font-size: var(--fs-2xl);
}
.new-products__head .section-title{
  flex-grow: 3;
}
/* ---------- عناصر بصری کمکی ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}



.custom-video-player {
    --video-color: #2271b1;

    position: relative;
    height: auto;
    overflow: hidden;
    background: #111;
}

.custom-video-player__video {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* دکمه بزرگ Play */
.custom-video-player__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    padding: 0;
    z-index: 5;
    /* color: #788ca1; */
    cursor: pointer;
    /* background: radial-gradient(#515962, #788ca1); */
    background: rgba(110, 95, 78, .45);
    /* border: 3px solid rgb(255 255 255 / 55%); */
    border-radius: 50%;
    box-shadow: 0 15px 45px rgb(0 0 0 / 30%);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease,
        background-color 0.3s ease,
        opacity 0.3s ease;
}
.custom-video-player__play svg{
  width: 32px;
  aspect-ratio: 1;
}

.custom-video-player__play:hover {
    background: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.1);
}
.custom-video__shadow {
    position: absolute;
    top: calc(50% - 105px);
    left: calc(50% - 105px);
    width: 210px;
    height: 210px;
    background: rgba(110, 95, 78, .45);
    border-radius: 100%;
    animation: puls 2s ease-out infinite;
}
.custom-video-player.is-playing .custom-video-player__play, .custom-video__shadow.is-playing  {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
@keyframes puls {
  0%{
    transform: scale(0);
    opacity: 1;
  }
  70%{
    transform: scale(0);
    opacity: 1;
  }
  100%{
    transform: scale(1);
    opacity: 0;
  }
  
}
.custom-video-player__play:focus-visible {
    outline: 3px solid var(--video-color);
    outline-offset: 5px;
}

.custom-video-player__play svg {
    display: block;
    margin-left: 6px;
}

/* مخفی‌شدن دکمه بعد از شروع پخش */
.custom-video-player.is-playing .custom-video-player__play {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

/* وضعیت بارگذاری */
.custom-video-player__loading {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;

    display: none;
    width: 60px;
    height: 60px;

    border: 5px solid rgb(255 255 255 / 40%);
    border-top-color: #fff;
    border-radius: 50%;

    transform: translate(-50%, -50%);
    animation: video-loading 0.8s linear infinite;
}

.custom-video-player.is-loading .custom-video-player__loading {
    display: block;
}

.custom-video-player.is-loading .custom-video-player__play {
    visibility: hidden;
    opacity: 0;
}

.custom-video-player__error {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 5;

    padding: 12px 16px;

    color: #fff;
    text-align: center;

    background: rgb(180 0 0 / 90%);
    border-radius: 8px;
}

@keyframes video-loading {
    from {
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}







.certificates-grid, .awards-story, .brands-grid {
    padding-inline:var(--space-8)
}

/* for swiper and last product styles */

.vsc-latest-products {
    padding: 80px 20px;
    background: #fff;
}

.vsc-latest-products__container {
    width: 100%;
    
}

.vsc-latest-products__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}
.vsc-latest-products__slider-wrapper{
    width:100%;
}
.vsc-latest-products__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #2271b1;
    font-size: 14px;
    font-weight: 700;
}

.vsc-latest-products__title {
    margin: 0;
    color: #111827;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.3;
}

.vsc-latest-products__all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: #111827;
    font-weight: 700;
    text-decoration: none;
}

.vsc-latest-products__all-link:hover {
    color: #2271b1;
}

.vsc-latest-products__swiper {
    position: relative;
    padding: 4px 20px 58px;
    overflow: hidden;
}

.vsc-latest-products__swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}


.vsc-latest-products__swiper .swiper-button-next, .vsc-latest-posts__swiper .swiper-button-next{
    right: -0;
    left: auto;
    top: 45%;
   

}
.vsc-latest-products__swiper .swiper-button-prev svg, .vsc-latest-posts__swiper .swiper-button-prev svg{
 transform: rotate(180deg);
}

.vsc-latest-products__swiper .swiper-button-prev, .vsc-latest-posts__swiper .swiper-button-prev{
    left: -0;
    right: auto;
    top: 45%;
    
}
.swiper button{
  background: rgb(0 76 152 / 11%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vsc-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    max-width: 420px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.vsc-product-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 16px 40px rgb(0 0 0 / 10%);
}

.vsc-product-card__image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #f5f5f5;
}

.vsc-product-card__img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vsc-product-card:hover .vsc-product-card__img {
    transform: scale(1.05);
}

.vsc-product-card__sale {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 7px 12px;
    color: #fff;
    font-size: 12px;
    background: #dc2626;
    border-radius: 999px;
}

.vsc-product-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 16px 4px 0 0;

}

.vsc-product-card__title {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.6;
}

.vsc-product-card__title a {
    color: var(--color-text);
  text-decoration: none;
  font-size: 16px;
  text-align: right;
  font-weight: 600;
}

.vsc-product-card__price {
    margin-top: auto;
    margin-bottom: 18px;
    color: #2271b1;
    font-size: 17px;
    font-weight: 700;
}

.vsc-product-card__price del {
    margin-inline-end: 6px;
    color: #9ca3af;
    font-size: 14px;
}

.vsc-product-card__button {
    display: block;
    padding: 11px 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background: #111827;
    border-radius: 9px;
}

.vsc-product-card__button:hover {
    color: #fff;
    background: #2271b1;
}

.vsc-latest-products__prev,
.vsc-latest-products__next {
    top: 45%;
    width: 46px;
    height: 46px;
    padding: 0;
    color: #111827;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    box-shadow: 0 7px 25px rgb(0 0 0 / 12%);
}

.vsc-latest-products__prev::after,
.vsc-latest-products__next::after,
.vsc-vertical-swiper .swiper-button-next::after,
.vsc-vertical-swiper .swiper-button-prev::after {
    display: none;
}

.vsc-latest-products__prev svg,
.vsc-latest-products__next svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vsc-latest-products__swiper .swiper-pagination {
    bottom: 10px;
}

.vsc-latest-products__swiper .swiper-pagination-bullet-active {
    background: #2271b1;
}

.vsc-latest-products__swiper .swiper-button-lock,
.vsc-latest-products__swiper .swiper-pagination-lock {
    display: none;
}
.swiper{
  height: 100%;
}
.vsc-latest-products__swiper .swiper-button-prev:after, .vsc-latest-products__swiper .swiper-button-next:after, .vsc-latest-posts__swiper .swiper-button-next:after, .vsc-latest-posts__swiper .swiper-button-prev:after {
  content: unset;
}

@media (max-width: 767px) {
    .vsc-latest-products {
        padding: 55px 16px;
    }

    .vsc-latest-products__header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 24px;
    }

    .vsc-latest-products__prev,
    .vsc-latest-products__next {
        width: 40px;
        height: 40px;
    }
}

#vsc-vertical-slider-3 .swiper-slide{
   max-height:470px!important;
}






.vsc-vertical-section {
   height: auto;
    background: #f8f9fa;
    padding: 16px;
}

.vsc-vertical-section__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 6vw, 90px);
    width: min(100%, 1280px);
    margin-inline: auto;
}

.vsc-vertical-section__content {
    max-width: 580px;
}

.vsc-vertical-section__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #2271b1;
    font-size: 14px;
    font-weight: 700;
}

.vsc-vertical-section__title {
    margin: 0 0 24px;
    color: #111827;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.35;
}

.vsc-vertical-section__description {
    color: #fff;
    font-size: 16px;
    line-height: 2;
}

.vsc-vertical-section__description p {
    margin-top: 0;
    margin-bottom: 18px;
}

.vsc-vertical-section__description ul,
.vsc-vertical-section__description ol {
    padding-inline-start: 24px;
}

.vsc-vertical-section__description a {
    color: #2271b1;
}

.vsc-vertical-section__slider {
    min-width: 0;
    height: 100%;
}

/*
 * اسلایدر عمودی حتماً باید ارتفاع مشخص داشته باشد.
 */
.vsc-vertical-swiper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    
}

.vsc-vertical-swiper .swiper-wrapper {
    height: auto;
}

.vsc-vertical-swiper .swiper-slide {
    height: 100%;
}

.vsc-vertical-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111;
}

.vsc-vertical-slide__image,
.vsc-vertical-slide__img {
    display: block;
    width: 100%;
    height: 100%;
}

.vsc-vertical-slide__img {
    object-fit: cover;
}

.vsc-vertical-slide::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            to top,
            rgb(0 0 0 / 75%),
            transparent 55%
        );
}

.vsc-vertical-slide__overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 40px;
}

.vsc-vertical-slide__title {
    max-width: 500px;
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.5;
}

.vsc-vertical-swiper .swiper-pagination {
    right: auto;
    left: 24px;
}

.vsc-vertical-swiper
.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #fff;
    opacity: 0.55;
}

.vsc-vertical-swiper
.swiper-pagination-bullet-active {
    height: 26px;
    opacity: 1;
    border-radius: 99px;
}

.vsc-vertical-swiper .swiper-button-prev,
.vsc-vertical-swiper .swiper-button-next {
    right: auto;
    left: 20px;
    width: 42px;
    height: 42px;
    color: #fff;
    background: rgb(0 0 0 / 35%);
    border-radius: 50%;
}

.vsc-vertical-swiper .swiper-button-prev {
    bottom: 24px;
    top:auto;
    transform: rotate(90deg);
}

.vsc-vertical-swiper .swiper-button-next {
    top: auto;
    bottom: 24px;
    margin: 0 8px;
    border-radius: 0;
    transform: rotate(270deg);
}
.vsc-vertical-swiper .swiper-button-prev{
  left: 58px!important;
  right: auto!important;
  margin: 0 8px;
  border-radius: 0;

}

.vsc-vertical-swiper .swiper-button-prev::after,
.vsc-vertical-swiper .swiper-button-next::after {
    font-size: 17px;
}

@media (max-width: 900px) {
    .vsc-vertical-section__container {
        grid-template-columns: 1fr;
    }

    .vsc-vertical-section__content {
        max-width: none;
    }

    .vsc-vertical-swiper {
        height: 540px;
    }
}

@media (max-width: 600px) {
    .vsc-vertical-section {
        padding: 8px;
    }

    .vsc-vertical-swiper {
        height: 100%;
    }

    .vsc-vertical-slide__overlay {
        padding: 24px;
    }
}













/* ==========================================================================
   راحتیران - Components
   ========================================================================== */

/* ---------- دکمه‌ها ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 13px 26px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}
.btn span{
  margin-top: var(--fs-ss);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(  --color-secondary);
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(  --color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-text-inverse);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--outline-primary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn--outline-primary:hover {
  background: var(--color-secondary);
  color: var(--color-text-inverse);
}

.btn--outline-secondary {
  background: transparent;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}

.btn--outline-secondary:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.btn--ghost {
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: 25px 48px;
}

.btn--ghost:hover {
  background: var(--color-border);
}

.btn--sm {
  padding: 9px 18px;
  font-size: var(--fs-xs);
}
.btn--lg{
  padding: 20px 48px;
  font-size: var(--fs-xs);
}
/* ---------- بج / نشان ---------- */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
}

.badge--new {
  background: var(  --color-secondary);
  color: var(--color-navy);
}

/* ---------- کارت محصول ---------- */
.product-card {
  display: flex;
  position: relative;
  flex-direction: column;
  background: var(--color-bg);
  /* border: 1px solid var(--color-border); */
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  position: relative;
}

.product-card:hover {
  /* box-shadow: var(--shadow-lg); */
  transform: translateY(-4px);
}

.product-card__media {
  position: relative;
  aspect-ratio: 323 / 400;
  background: var(--color-bg-soft);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.product-card__badge {
  position: absolute;
  top: var(--space-3);
  inset-inline-start: var(--space-3);
  z-index: 2;
}

.product-card__body {
 
  padding: var(--space-4);
  text-align: right;
}

.product-card__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

/* ---------- اسلایدر / کاروسل ---------- */
.magazine-section .slider {
  position: relative;
  max-width: 75%;
}

.slider__track {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-block: var(--space-2);
  scrollbar-width: none;
}

.slider__track::-webkit-scrollbar {
  display: none;
}

.slider__track > * {
  scroll-snap-align: start;
  flex: 0 0 auto;
}

.slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background var(--transition-fast);
}

.slider__nav:hover {
  background: var(  --color-secondary-light);
}

.slider__nav--prev { inset-inline-start: -22px; }
.slider__nav--next { inset-inline-end: -22px; }

.slider__nav svg {
  width: 18px;
  height: 18px;
}

.slider__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background var(--transition-fast), width var(--transition-fast);
}

.slider__dot.is-active {
  background: var(  --color-secondary);
  width: 22px;
  border-radius: var(--radius-pill);
}

/* ---------- آیکن‌های دایره‌ای (شبکه‌های اجتماعی و ...) ---------- */
.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  transition: background var(--transition-fast);
}

.icon-circle:hover {
  background: var(  --color-secondary);
  color: var(--color-navy);
}

.icon-circle svg {
  width: 18px;
  height: 18px;
}

/* ---------- پلی باتن ویدیو ---------- */
.play-button {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background var(--transition-fast), transform var(--transition-fast);
    position: absolute;
    inset: auto;
    z-index: 100;
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.06);
}

.play-button svg {
  width: 26px;
  height: 26px;
}
/* ==========================================================================
   راحتیران - Header
   ========================================================================== */

.topbar {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-xs);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-2);
}

.topbar__phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.topbar__phone svg {
  width: 14px;
  height: 14px;
}

.topbar__links {
  display: flex;
  gap: var(--space-5);
}

.site-header {
  position: sticky;
  top: 0;
  background: transparent;
  border-bottom: 0px solid var(--color-border);
  z-index: var(--z-header);
}
.site-header.abb-menu--scrolled {
    background: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
 
  padding-inline: var(--space-7);
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-text);
}

.brand__logo {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.main-nav a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(  --color-secondary);
  position: relative;
  padding-block: var(--space-2);
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(  --color-secondary);
  transition: width var(--transition-fast);
}

.main-nav a:hover::after {
  width: 100%;
}
.brand img{
    max-width: 120px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-actions__icon {
  width: auto;
  padding: 4px 16px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: background var(--transition-fast);
  color: #fff;
}
.header-actions__icon svg {
    margin: 8px;
}

.header-actions__icon:hover {
  background: var(  --color-secondary-light);
}

.header-actions__icon svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}





.vsc-latest-posts {
    padding: 80px 20px;
    background: #f8f9fa;
}

.vsc-latest-posts__container {
    width: 80%;
    margin-inline: auto;
}

.vsc-latest-posts__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.vsc-latest-posts__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #2271b1;
    font-size: 14px;
    font-weight: 700;
}

.vsc-latest-posts__title {
    margin: 0;
    color: #111827;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.3;
}

.vsc-latest-posts__all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: #111827;
    font-weight: 700;
    text-decoration: none;
}

.vsc-latest-posts__slider-wrapper {
    position: relative;
}

.vsc-latest-posts__swiper {
    position: relative;
    padding: 4px 4px 58px;
    overflow: hidden;
}

.vsc-latest-posts__swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.vsc-post-card {
    display: flex;
    aspect-ratio: 3/4;
    max-height: 420px;
    padding: 8px;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}



.vsc-post-card__image {
    aspect-ratio: 3 / 4;
    position: relative;
    width:100%;
    overflow: hidden;
    background: #e5e7eb;
}

.vsc-post-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.vsc-post-card__placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            135deg,
            #e5e7eb,
            #f3f4f6
        );
}

.vsc-post-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
   margin: 16px 0px;
}
.vsc-post-card__header{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.vsc-post-card__date {
    color: #6b7280;
    font-size: 12px;
}

.vsc-post-card__title {
   display: block;
  width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
   
}

.vsc-post-card__title a {
    color:var(--color-text);
    text-decoration: none;
}

.vsc-post-card__excerpt {
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.9;
}

.vsc-post-card__button {
  position: absolute;
  bottom: 0;
  left: calc(50% - 110px);
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  border-radius: 100%;
  padding: 48px;
  background: var(--color-primary);
  transform:translate(0, 100%);
  color: #fff;
  opacity: 0.5;
  
  transition: transform 0.3s ease-out;
}
.vsc-post-card:hover .vsc-post-card__button{
   transform: translate(0px, 100px);
}

.vsc-post-card__button:hover {
    color: #fff;
    background: #2271b1;
}

.vsc-latest-posts__swiper .swiper-button-prev::after,
.vsc-latest-posts__swiper .swiper-button-next::after {
    font-size: 20px;
}

.vsc-latest-posts__swiper .swiper-pagination {
    bottom: 10px;
}

.vsc-latest-posts__swiper
.swiper-pagination-bullet-active {
    background: #2271b1;
}

@media (max-width: 767px) {
    .vsc-latest-posts {
        padding: 55px 16px;
    }

    .vsc-latest-posts__header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 24px;
    }
}






.swiper-button-prev svg, .swiper-button-next svg{
  width: 24px;
}


/* ==========================================================================
   راحتیران - Hero (با ویدیوی پس‌زمینه)
   ========================================================================== */

.hero {
 
}
.abb-header {
    position: fixed;
    width: 100vw;
    z-index: 1000;
    transform: translateY(-120%);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    background: #fff;
    top:0;
}
.abb-header.in-front{
  background: linear-gradient(
        180deg, #23243b 10%, transparent 100%);
}
.abb-header.in-front.abb-menu--scrolled{
    background:#fff;
}
.abb-header.in-page{
      transform: translateY(0);

}
header.ready{
    transform: translateY(0px);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__poster,
.hero__video {
  width: 100%;
  height:100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
}
.about-medai-contauner .hero__poster{
  height: 100%;
  width: auto;
  object-fit: contain;
}


.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 16, 30, 0.72) 0%, rgba(10, 16, 30, 0.45) 55%, rgba(10, 16, 30, 0.25) 100%);
  z-index: 3;
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 620px;
  padding-block: var(--space-8);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: var(--space-3);
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-6);
  max-width: 480px;
}


/* ==========================================================================
   Products Grid Section
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  width: 100%;
  
}



/* ==========================================================================
   Mission / Story Banner
   ========================================================================== */

.mission {
  background: var(--color-bg-soft);
  color: #fff;
}

.mission .container {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 460px;
  padding-inline: 0;
  border-top: 1px solid var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
}
.shop-section .container, .new-products-section .container, .magazine-section .container, .last-cta .container{
  padding-inline: var(--space-8);
}
.mission__text {
    padding: var(--space-7) var(--space-9) var(--space-7) var(--space-6);
    order: 1;
    flex-grow: 2;
    max-width: 45%;
}

.mission__title {
    color: var(--color-text);
  font-size: var(--fs-2xl);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-4);
}

.mission__desc {
  color: var(--color-text);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-6);
  text-align: justify;

}

.mission__media {
  position: relative;
  height: auto;
  width:55%;
}

.mission__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 30, 0.25);
}

.mission__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ==========================================================================
   LAST-CTA
   ========================================================================== */

.last-cta {
  background: var(--color-primary);
  color: #fff;
      margin-top: 16px;
}

.last-cta .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 0;
  min-height: 460px;
  padding-inline: 0;
  border-top: 1px solid var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
}

.cta__text {
  padding: var(--space-7) var(--space-6) var(--space-7) var(--space-8);
  order: 1;
}

.cta__title {
  color: var(--color-text-inverse);
  font-size: var(--fs-2xl);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-4);
}

.cta__desc {
  color: var(--color-text-inverse);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-6);
  max-width: 460px;
}

.cta__media {
  position: relative;
  height: 100%;
  min-height: 460px;
  padding: 40px
}

.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .cta__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 30, 0.25);
} */

.cta__play {
    position: absolute;
    inset: 0;
    width:80%;
    aspect-ratio: 1;
    margin: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 12px;
}



/* ==========================================================================
   New Products / Magazine Sliders
   ========================================================================== */

.new-products__head,
.magazine__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  gap: var(--space-4);
  flex-wrap: wrap;
}

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

.magazine-card {
  width: 320px;
  overflow: hidden;
  position: relative;
  background: var(--color-bg);
  padding: 8px;
  height: fit-content;
}

.magazine-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.magazine-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.magazine-card:hover .magazine-card__media img {
  transform: scale(1.05);
}

.magazine-card__cta {
    position: absolute;
    bottom: -13%;
    left: -9%;
    transform: translate(-100px, 100px) scale(0);
    color: #fdd008;
    background-color: rgba(0, 76, 152, 0.7);
    padding: 48px;
    border-radius: 50%;
    width: fit-content;
    aspect-ratio: 1;
    transition: transform 0.3s ease-out;
}
.magazine-card:hover .magazine-card__cta {
   transform: translate(0px, 0px) scale(1);
    
}
.magazine-card__cta  span{
  vertical-align: text-top;
}
.magazine-card__cta svg path{
  stroke: var(--color-secondary);
}
.magazine-card__title {
  text-align: right;
  padding: var(--space-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.magazine-card--feature {
  width: 340px;
}

.magazine-card--feature .magazine-card__media {
  aspect-ratio: 3 / 4;
}
/* ==========================================================================
   Blog
   ========================================================================== */


.blog-media{
  margin:0 var(--fs-lg)

}


/* ==========================================================================
   Quality / CTA Banner
   ========================================================================== */

.quality-banner {
  background: var(--color-navy);
  color: #fff;
  overflow: hidden;
}

.quality-banner .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: var(--space-7);
}

.quality-banner__text {
  padding-block: var(--space-8);
}

.quality-banner__eyebrow {
  color: var(  --color-secondary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
  display: block;
}

.quality-banner__title {
  font-size: var(--fs-2xl);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-4);
}

.quality-banner__desc {
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-6);
}

.quality-banner__media {
  position: relative;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}

.quality-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-banner__dots {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  display: flex;
  gap: var(--space-2);
}

.quality-banner__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.quality-banner__dots span.is-active {
  background: var(  --color-secondary);
}

@media (max-width: 900px) {
  .quality-banner .container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .quality-banner__text {
    padding: var(--space-7) var(--space-5);
  }
  .quality-banner__media {
    min-height: 260px;
    border-radius: 0;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #fff;
  color: var(--color-primary);
  margin-top: 96px;
  padding-inline: var(--space-8);
}

.footer-top {
  padding-block: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--space-4);
}
.footer-top h3{
  margin-bottom: 16px;
}
.footer-title{
  position: relative;
}
.footer-brand {
  position: relative;
  z-index:1;
  display: inline-flex;
  background-color: #fff;;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-4);
}
.footer-title::before{
  content:'';
  position: absolute;
  background-color: var(--color-primary);
  width:100%;
  height: 1px;
  top:40%
}

.footer-brand__logo {
  height: 48px;
  width: auto;
  object-fit:cover
}

.footer-col__title {
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-4);
}
.footer-col{
  position: relative;
  max-width: 30%;
  flex-grow: 2;
flex-shrink: 2;
}
.footer-col.col-2{
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  width: 100%;
}
.footer-col.col-3{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-col:before{
   content:'';
  position: absolute;
  background-color: var(--color-primary);
  width:1px;
  height: 100%;
  top:0;
  left:-24px  
}
.footer-col:last-child::before{
  content: unset;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(  --color-secondary);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
  justify-content: space-evenly;
}

.footer-badges {
    display: flex;
    flex-direction:column;
    gap: var(--space-8);
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.footer-badges img {
  height: auto;
  width: 120px;
  border-radius: var(--radius-sm);
}

.footer-bottom {
  padding-block: var(--space-5);
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--fs-xs);
}

.footer-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    width: 100%;
    padding: var(--space-6) 8px;
    border-bottom: 1px solid var(--color-primary);
    align-items: center;
    justify-content: flex-start;
    font-size: 1.2rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    max-width: 100%;
    flex-grow: 1;
    flex-shrink: 1;
    flex-wrap: wrap;
}

.footer-contact-item svg {
  width: 24px;
  flex-shrink: 0;
  color: var(  --color-secondary);
}

.footer-copy {
  color: var(--color-primary);
  margin: 0 auto;
}
.site-footer menubar {
   text-align:right;
}
.site-footer menubar h3{
    margin-bottom:16px;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.hidden-mobile { display: initial; }
.hidden-desktop { display: none; }
.hr-container{
  display: flex;
  flex-direction: row;

}
.actions{
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.actions.right{
  justify-content: end;
}
.actions a{
  margin: 8px;
}


@media (max-width: 992px) {
    .certificates-grid, .awards-story, .brands-grid {
    padding-inline: var(--space-2);
    }
    .about-medai-contauner .hero__poster{
        margin:0 auto;
    }
        .abb-header .header-navigation {
        padding-right: 12px;
        padding-left: 12px;
        background: #fff;
    }
    .abb-header.in-front .menubar> li> a{
        color:var(--color-primary);
    }
    .hero-stage {
    background-position: center 0px;
    }
    .intro-grid {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    }
    .intro-copy {
    padding-block: 4px;
    border-top: 1px solid var(--color-primary);
    }
  .topbar__links { display: none; }
  .main-nav {
    position: fixed;
    inset-inline-start: 0;
    top: 0;
    height: 100vh;
    width: min(78%, 320px);
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-8) var(--space-5) var(--space-5);
    gap: var(--space-5);
    box-shadow: var(--shadow-lg);
    transform: translateX(-105%);
    transition: transform var(--transition-base);
    z-index: var(--z-overlay);
  }
  .vsc-latest-posts__container {
    width: 100%;
}

  [dir="rtl"] .main-nav,
  .main-nav {
    transform: translateX(105%);
  }

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

  .nav-toggle {
    display: flex;
  }
  .footer-contact-item {
    flex-wrap: nowrap;
  }
  .footer-top {
    padding-block: var(--space-4);
  }
  .footer-contact-list {
    gap: var(--space-4);
  }  
  .product-grid { grid-template-columns: repeat(3, 1fr); }
   .footer-top .container {
    /* grid-template-columns: repeat(2, 1fr); */
    flex-direction: row;
    gap:0;
    justify-content: center;
  }
  .footer-col{
  padding-bottom: var(--space-8);
  }
   .footer-col.col-1 {width: 100%;
  max-width: 100%;
  padding-bottom: var(--space-8);
  padding-inline: var(--space-9);
      
  }
  .footer-col.col-2{
    justify-content: space-between;
      padding-inline: var(--space-2);
  }
   .footer-col.col-2,.footer-col.col-3{
       width:48%;
       max-width:48%;
       padding-block: var(--space-8);
  }
 
  .footer-col:before {
    content: '';
    position: absolute;
    background-color: var(--color-primary);
    width: 100%;
    height: 1px;
    top: unset;
    left: 0;
    bottom: 0px;
}
.footer-col:last-child::before{
  content: '';
}
.footer-col.col-2 {
    width: 50%;
}
  .mission .container , .last-cta .container{
    grid-template-columns: 1fr;
  }
  .mission__text, .cta__text {
    padding: var(--space-7) var(--space-5);
    width:100%;
    max-width:100%;
  }
  .mission__media, .cta__media {
    min-height: 320px;
    order: -1;
  }
  .site-footer {
    background: #fff;
    color: var(--color-primary);
    margin-top: 64px;
    padding-inline: var(--space-4);
    }

    .shop-section .container, .new-products-section .container, .magazine-section .container, .last-cta .container{
        padding-inline: var(--space-1);
    }
    .product-grid {
        width: 100%;
        margin: 0;
    }
    .white-frame {
    width: 85%;
   
}
     .random-img-wrapper {
        width: 75%;
        height: 40vh;
        position: absolute;
        
    }
    .random-img-wrapper.ready {
    width: 100%;
    height: 100vh;
    
    }
    .mission .container {
    flex-direction: column;
    }
    .mission__media {
    width: 100%;
    }
   
}


@media (max-width: 768px) {
  .hidden-mobile { display: none; }
  .hidden-desktop { display: initial; }
   .hero {
    min-height: 520px;
    text-align: center;
  }
  .hero__content {
    max-width: 100%;
    margin-inline: auto;
  }
  .hero__subtitle {
    margin-inline: auto;
  }
  .site-header .container{
      padding-inline: var(--space-4);
  }

  .blog-media{
    display: none;
  }
  .last-cta .slider{
    max-width: 100%;
  }
    .custom-video-player {
        border-radius: 12px;
    }

    .custom-video-player__play {
        width: 78px;
        height: 78px;
    }

    .custom-video-player__play svg {
        width: 36px;
        height: 36px;
    }
    .section { padding-block: var(--space-7); padding-inline: var(--space-2); }
    .section-title { font-size: var(--fs-xl); }
    .white-frame {
    width: 85%;
    }
    .random-img-wrapper {
        width: 75%;
        height: 40vh;
        position: absolute;
        
    }
    .random-img-wrapper.ready {
    width: 100%;
    height: 100vh;
    
    }
    .footer-col.col-1 {
       
        padding-block: var(--space-6);
        padding-inline: var(--space-2);
    }
    .footer-col.col-2, .footer-col.col-3 {
        width: 100%;
        max-width: 100%;
        padding-block: var(--space-6);
        padding-inline: var(--space-2);
    }
    .footer-badges{
    flex-direction:row;
    }
    .brands-grid {
    flex-direction: column;
    }
    .quality-section {
    flex-direction: column;
    }
    .quality-section .mission__text, .quality-section .mission__media {
    width: 100%;
    }

}


/* جلوگیری از تأثیر استایل قالب روی اسلایدر */
.story-slider,
.story-slider * {
    box-sizing: border-box;
}

.story-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--color-primary);
    color: var(--color-text-inverse);
    font-family: inherit;
}

.story-slider__inner {
    display: grid;
    grid-template-areas: "content media";
    grid-template-columns: minmax(0, 1fr) minmax(420px, 620px);
    align-items: center;
    gap: clamp(40px, 5vw, 75px);

    width: 100%;
    min-height: 700px;
    margin: 0 auto;
    padding-inline: var(--space-8);
    direction: ltr;
}

/* بخش متن */
.story-slider__content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    direction: rtl;
    text-align: right;
}

.story-slider__texts {
    display: grid;
    position: relative;
}

/*
 * قرار گرفتن همه متن‌ها روی یکدیگر باعث می‌شود
 * ارتفاع اسلایدر هنگام تغییر متن نپرد.
 */
.story-slide-content {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;

    transition:
        opacity 500ms ease,
        transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 500ms;
}

.story-slide-content.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 120ms, 120ms, 0s;
}

.story-slide-content__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 700;
}

.story-slide-content__label::before {
    content: "";
    width: 74px;
    height: 1px;
    background: var(--color-secondary);
}

.story-slide-content h2 {
    margin: 0 0 20px;
    color: var(--story-white);
    font-size: clamp(28px, 2.7vw, 40px);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -0.5px;
}

.story-slide-content p {
    max-width: 750px;
    margin: 0;
    color: var(--story-text);
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 400;
    line-height: 2;
}

.story-slide-content__button {
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
    justify-content: center;
    gap: 18px;

    min-height: 52px;
    margin-top: 27px;
    padding: 11px 27px;
    border: 2px solid var(--color-secondary);

    color: var(--color-secondary);
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;

    transition:
        color 250ms ease,
        background-color 250ms ease,
        transform 250ms ease,
        box-shadow 250ms ease;
}

.story-slide-content__button span {
    font-size: 19px;
    transition: transform 250ms ease;
}

.story-slide-content__button:hover {
    color: var(--color-primary);
    background: var(--color-secondary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

.story-slide-content__button:hover span {
    transform: translateX(-4px);
}

/* قاب تصویر */
.story-slider__media {
    grid-area: media;
    min-width: 0;
    border: 13px solid #fff;
}

.story-slider__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 0;
    background: var(--story-white);
    box-shadow: 0 22px 60px rgba(0, 30, 70, 0.22);
}

.story-slider__track {
    display: flex;
    width: 100%;
    height: 100%;
    direction: ltr;
    will-change: transform;

    transform: translate3d(0, 0, 0);
    transition: transform 850ms cubic-bezier(0.76, 0, 0.24, 1);
}

.story-slider__image {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #d9d9d9;
}

.story-slider__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(0, 0, 0, 0.22) 100%
    );
    pointer-events: none;
}

.story-slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    transition: transform 6s ease;
}

.story-slider__image.is-active img {
    transform: scale(1);
}

/* کنترل‌ها */
.story-slider__navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
    margin-top: 28px;
    direction: rtl;
}

.story-slider__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;

    color: var(--story-white);
    background: transparent;
    font-family: inherit;
    font-size: 19px;
    cursor: pointer;

    transition:
        color 250ms ease,
        border-color 250ms ease,
        background-color 250ms ease,
        transform 250ms ease;
}

.story-slider__arrow:hover {
    color: var(--color-primary);
    border-color: var(--color-secondary);
    background: var(--color-secondary);
    transform: scale(1.07);
}

.story-slider__arrow:focus-visible,
.story-slider__dot:focus-visible,
.story-slide-content__button:focus-visible {
    outline: 3px solid rgba(255, 213, 0, 0.45);
    outline-offset: 4px;
}

.story-slider__dots {
    display: flex;
    align-items: center;
    gap: 8px;
    direction: ltr;
}

.story-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;

    transition:
        width 300ms ease,
        background-color 300ms ease,
        transform 300ms ease;
}

.story-slider__dot:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.15);
}

.story-slider__dot.is-active {
    width: 28px;
    background: var(--color-secondary);
}

/* تبلت */
@media (max-width: 1100px) {
    .story-slider__inner {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 46%);
        min-height: 610px;
        gap: 35px;
        padding: 35px;
    }

    .story-slide-content p {
        line-height: 1.85;
    }
}

/* موبایل */
@media (max-width: 767px) {
    .story-slider__inner {
        grid-template-areas:
            "media"
            "content";
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
        min-height: auto;
        padding: 22px 18px 35px;
    }

    .story-slider__frame {
        max-width: 520px;
        margin: 0 auto;
        padding: 10px;
    }

    .story-slider__content {
        text-align: right;
    }

    .story-slide-content h2 {
        margin-bottom: 13px;
        font-size: clamp(25px, 7vw, 32px);
    }

    .story-slide-content p {
        font-size: 14px;
        line-height: 1.9;
    }

    .story-slide-content__button {
        align-self: stretch;
        margin-top: 22px;
    }

    .story-slider__navigation {
        justify-content: center;
        margin-top: 25px;
    }
}

/* احترام به تنظیم کاهش حرکت دستگاه */
@media (prefers-reduced-motion: reduce) {
    .story-slider__track,
    .story-slide-content,
    .story-slider__image img,
    .story-slide-content__button,
    .story-slider__arrow,
    .story-slider__dot {
        transition-duration: 1ms !important;
    }
}


@media (max-width: 680px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .product-card__body{position: absolute; z-index: 5; bottom: 0;}
  .product-card__title{color: black; font-size:80%;}
}

@media (max-width: 560px) {
  .footer-top .container {
    grid-template-columns: 1fr;
  }
  .footer-badges {
    flex-wrap: wrap;
  }
}
