@font-face {
  font-family: "IRANSansXFaNum";
  src: url("../fonts/IRANSansXFaNum-UltraLight.woff") format("woff");
  font-style: normal;
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "IRANSansXFaNum";
  src: url("../fonts/IRANSansXFaNum-Thin.woff") format("woff");
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "IRANSansXFaNum";
  src: url("../fonts/IRANSansXFaNum-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "IRANSansXFaNum";
  src: url("../fonts/IRANSansXFaNum-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "IRANSansXFaNum";
  src: url("../fonts/IRANSansXFaNum-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "IRANSansXFaNum";
  src: url("../fonts/IRANSansXFaNum-DemiBold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "IRANSansXFaNum";
  src: url("../fonts/IRANSansXFaNum-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "IRANSansXFaNum";
  src: url("../fonts/IRANSansXFaNum-ExtraBold.woff") format("woff");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "IRANSansXFaNum";
  src: url("../fonts/IRANSansXFaNum-Black.woff") format("woff");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
:root {
  --brand: #00a67e;
  --brand-dark: #008f6c;
  --accent: #ff9e16;
  --text: #171717;
  --muted: #525252;
  --border: #d4d4d4;
  --surface: #fff;
  --soft: #f5f5f5;
  --radius: 8px;
  --radius-lg: 16px;
  --container: 1440px;
  --font: "IRANSansXFaNum", Tahoma, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  direction: rtl;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  top: 8px;
  right: 8px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #fff;
  clip: auto;
  z-index: 10000;
}
.archive-page {
  padding-block: 32px 80px;
}
.blog-intro {
  text-align: center;
  margin-bottom: 32px;
}
.blog-intro__brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 26px;
}
.blog-intro__brand img {
  height: 40px;
}
.blog-intro__brand span {
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.blog-intro p {
  color: var(--muted);
  font-size: 14px;
  margin: 16px 0 0;
}
.featured-posts {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, 264px);
  grid-auto-flow: column;
  gap: 24px;
  margin-bottom: 32px;
}
.featured-post {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--soft);
}
.featured-post--primary {
  grid-row: 1 / span 2;
}
.featured-post__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.featured-post__link > img,
.featured-post__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.featured-post__placeholder {
  display: block;
  background: #e5e5e5;
}
.featured-post__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent 48%);
}
.featured-post__title {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.65;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.featured-post--primary .featured-post__title {
  font-size: 22px;
}
.featured-post:hover .featured-post__link > img {
  transform: scale(1.04);
}
.posts-section > h1,
.archive-header h1,
.related-posts > h2 {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 20px;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
}
.post-card {
  min-width: 0;
}
.post-card:hover .post-card__media img {
  transform: scale(1.1);
}
.post-card__media {
  display: block;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
}
.post-card__media img {
  transition: all 300ms;
}
.post-card__media img,
.post-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card__body {
  margin-top: 8px;
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;

  color: #737373;

  font-size: 13px;
  line-height: 20px;
}

.post-card__meta svg {
  flex-shrink: 0;
}
.post-card__title {
  margin: 2px 0 0;
  font-size: 16px;
  line-height: 28px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-card__excerpt {
  margin: 2px 0 0;
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-clamp: 3;
  opacity: 0.65;
}
.navigation.pagination {
  margin-top: 36px;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.page-numbers {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.page-numbers.current {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.single-page {
  padding-block: 32px 80px;
}
.single-hero {
  text-align: center;
}
.single-hero__terms {
  color: #337f95;
  font-size: 12px;
}
.single-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.single-hero .breadcrumb a {
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  color: #737373;
  cursor: pointer;
}
.single-hero .breadcrumb a:hover {
  color: #535353;
}
.single-hero h1 {
  max-width: 820px;
  margin: 12px auto;
  font-size: 28px;
  line-height: 1.5;
}
.single-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #737373;
  font-size: 14px;
  line-height: 20px;
}
.single-meta__container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-meta img {
  border-radius: 50%;
}
.single-hero__image {
  height: 500px;
  margin: 32px 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.single-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-layout {
  display: grid;
  grid-template-columns: 312px auto;
  gap: 24px;
  direction: ltr;
  margin-top: 32px;
}
.article-layout > * {
  direction: rtl;
}
.article-cta__card {
  position: sticky;
  top: 96px;
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #00a67e, #007f68);
  color: #fff;
  text-align: center;
  background-image:
    linear-gradient(
      62.51deg,
      rgba(0, 166, 126, 0.9) 33.78%,
      rgba(0, 112, 86, 0.9) 66.224%
    ),
    url("../images/store-cta-background.png");
  background-position: center;
  background-size: cover;
}
.article-cta__card strong {
  font-size: 20px;
  text-align: center;
  display: block;
  margin-bottom: 12px;
}
.article-cta__card > p {
  font-size: 16px;
  text-align: center;
  display: block;
  margin: 0 0 32px 0;
  line-height: 24px;
}
.article-cta__card > span {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  display: block;
  margin-top: 8px;
}

.entry-content {
  font-size: 16px;
  line-height: 28px;
  color: #171717;
}
.entry-content > p {
  margin: 0 0 24px 0;
}

.entry-content > h2 {
  font-size: 20px;
  line-height: 28px;
  margin: 0 0 12px 0;
}
.entry-content > h3 {
  font-size: 18px;
  line-height: 20px;
  margin: 0 0 12px 0;
}
.entry-content > a {
  color: #087ce9;
}
.entry-content img {
  border-radius: var(--radius-lg);
}
.related-posts {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}
.site-footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer p {
  margin: 0;
}
.wp-block-shopisaz-cta {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 132px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border-radius: 16px;
  background-image:
    linear-gradient(
      62.51deg,
      rgba(0, 166, 126, 0.9) 33.78%,
      rgba(0, 112, 86, 0.9) 66.224%
    ),
    url("../images/store-cta-background.png");
  background-position: center;
  background-size: cover;
  color: #fafafa;
  margin-bottom: 24px;
}
.wp-block-shopisaz-cta h3,
.wp-block-shopisaz-cta p {
  margin: 0;
}
.shopisaz-cta__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
}
.wp-block-shopisaz-cta h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
.wp-block-shopisaz-cta .shopisaz-cta__copy p {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.shopisaz-cta__action {
  display: flex;
  width: 207px;
  flex: 0 0 207px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.shopisaz-cta__button {
  width: 100%;
}

.wp-block-shopisaz-cta .shopisaz-cta__fine-print {
  color: #fafafa;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}
.shopisaz-quote {
  padding: 12px 0 12px 24px;
  border: 1px solid var(--border);
  border-inline-end: 4px solid var(--brand);
  border-radius: var(--radius);
  background: #fff;
  margin: 0;
}
.shopisaz-quote--secondary {
  border-inline-end-color: var(--accent);
}
.shopisaz-quote--info {
  border-inline-end-color: #2f80ed;
}
.shopisaz-quote cite {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}
.shopisaz-toc {
  overflow: hidden;
  padding: 0 24px;
  border: 1px solid #f5f5f5;
  border-radius: 12px;
  background: #f5f5f5;
  color: #171717;
  margin-bottom: 24px;
}
.shopisaz-toc__toggle {
  display: flex;
  width: 100%;
  min-height: 74px;
  padding: 23px 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: right;
  cursor: pointer;
}
.shopisaz-toc__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}
.shopisaz-toc__chevron {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: url("../images/toc-chevron.svg") center/28px 28px no-repeat;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: rotate(180deg);
}
.shopisaz-toc.is-open .shopisaz-toc__chevron {
  transform: rotate(0deg);
}
.shopisaz-toc__collapsible {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.22s ease,
    visibility 0s linear 0.32s;
}
.shopisaz-toc.is-open .shopisaz-toc__collapsible {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition:
    grid-template-rows 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.24s ease 0.06s,
    visibility 0s;
}
.shopisaz-toc__content {
  min-height: 0;
  overflow: hidden;
}
.shopisaz-toc__divider {
  height: 1px;
  background: #d4d4d4;
}
.shopisaz-toc__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 24px;
}
.shopisaz-toc__item {
  margin: 0;
  padding-inline-start: calc(var(--toc-depth, 0) * 20px);
  color: #404040;
  font-weight: 400;
  transition: color 0.18s ease;
}
.shopisaz-toc__item a {
  display: block;
  color: inherit;
}
.shopisaz-toc__item a:hover,
.shopisaz-toc__item a:focus-visible {
  color: #00a67e;
}
.shopisaz-toc__editor-note {
  padding: 14px 0;
  color: #737373;
  font-size: 13px;
}
.shopisaz-toc.is-editor-preview {
  padding: 16px 24px;
}
@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 32px), 720px);
  }
  .posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .featured-posts {
    grid-template-rows: repeat(2, 216px);
    gap: 16px;
  }
  .article-layout {
    display: block;
  }
  .article-cta {
    display: none;
  }
  .single-hero__image {
    height: 360px;
  }
}
@media (max-width: 600px) {
  .archive-page {
    padding-top: 24px;
  }
  .blog-intro__brand {
    font-size: 21px;
  }
  .blog-intro p {
    font-size: 12px;
  }
  .featured-posts {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-inline: -16px;
    padding-inline: 16px;
    padding-inline-start: 24px;
    scroll-padding-inline-start: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .featured-posts::-webkit-scrollbar {
    display: none;
  }
  .featured-post,
  .featured-post--primary {
    width: min(82vw, 340px);
    height: 276px;
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }
  .featured-post__title,
  .featured-post--primary .featured-post__title {
    right: 16px;
    bottom: 14px;
    left: 16px;
    font-size: 16px;
  }
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .post-card__media {
    height: 220px;
  }
  .single-page {
    padding-top: 24px;
  }

  .single-meta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
  }
  .single-hero__image {
    height: 230px;
  }
  .entry-content {
    font-size: 16px;
  }
  .related-posts {
    overflow: hidden;
  }
  .related-posts .posts-grid {
    display: flex;
    overflow: auto;
    scroll-snap-type: x mandatory;
  }
  .related-posts .post-card {
    min-width: 310px;
    scroll-snap-align: start;
  }
  .wp-block-shopisaz-cta {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .shopisaz-cta__copy {
    width: 100%;
    max-width: none;
    align-items: center;
    text-align: center;
  }
  .shopisaz-cta__action {
    width: 100%;
    flex-basis: auto;
  }
  .shopisaz-cta__button {
    width: 100%;
  }
  .site-footer__inner {
    display: block;
  }
  .site-footer ul {
    margin-top: 12px;
    flex-wrap: wrap;
  }
  .shopisaz-toc {
    padding: 0 16px;
  }
  .shopisaz-toc__toggle {
    min-height: 58px;
    padding: 15px 0;
  }
  .shopisaz-toc__title {
    font-size: 14px;
    line-height: 26px;
  }
  .shopisaz-toc__list {
    margin: 16px 0;
    gap: 12px;
    font-size: 12px;
    line-height: 20px;
  }
  .shopisaz-toc__item {
    padding-inline-start: calc(var(--toc-depth, 0) * 16px);
  }
} /* Quote block — Figma Quote/RTL */
.shopisaz-quote__source {
  margin: 0;
}

.shopisaz-quote {
  display: flex;
  position: relative;
  width: 100%;
  align-items: stretch;
  gap: 16px;
  margin-block: 24px;
  padding: 12px 0 12px 24px;
  border: 1px solid #d4d4d4;
  border-radius: 12px;
  background: #fff;
  color: #404040;
  font-style: normal;
}
.shopisaz-quote__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  text-align: right;
}
.shopisaz-quote__title,
.shopisaz-quote__text {
  width: 100%;
  margin: 0;
}
.shopisaz-quote__title {
  color: #00a67e;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}
.shopisaz-quote__text {
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.shopisaz-quote__footer {
  display: flex;
  width: 100%;
  min-height: 24px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.shopisaz-quote__source {
  display: block;
  color: #737373;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.shopisaz-quote__source:before {
  content: "—";
  margin-inline-end: 4px;
}
.shopisaz-quote__button {
  display: inline-flex;
  height: 36px;
  min-width: 96px;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border: 1px solid #00a67e;
  border-radius: 8px;
  background: #00a67e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease;
}
.shopisaz-quote__button:hover,
.shopisaz-quote__button:focus-visible {
  border-color: #008f6c;
  background: #008f6c;
  color: #fff;
}
.shopisaz-quote__accent {
  width: 4px;
  flex: 0 0 4px;
  align-self: stretch;
  background: #00a67e;
}
.shopisaz-quote--secondary .shopisaz-quote__title {
  color: #ff9e16;
}
.shopisaz-quote--secondary .shopisaz-quote__accent {
  background: #ff9e16;
}
.shopisaz-quote--tertiary .shopisaz-quote__title {
  color: #8000ff;
}
.shopisaz-quote--tertiary .shopisaz-quote__accent {
  background: #8000ff;
}
.shopisaz-quote--info .shopisaz-quote__title {
  color: #0098d4;
}
.shopisaz-quote--info .shopisaz-quote__accent {
  background: #0098d4;
}
@media (max-width: 600px) {
  .shopisaz-quote {
    gap: 12px;
    padding-inline-end: 16px;
  }
  .shopisaz-quote__footer {
    flex-wrap: wrap;
  }
} /* Link list block */
.shopisaz-link-list {
  width: 100%;
  margin-block: 24px;
  padding: 16px;
  border: 1px solid #d4d4d4;
  border-radius: 12px;
  background: #fff;
}
.shopisaz-link-list__item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--brand);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}
.shopisaz-link-list__item:not(:last-child) {
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 10px;
}
.shopisaz-link-list__item:not(:first-child) {
  margin-top: 10px;
}
.shopisaz-link-list__text {
  min-width: 0;
  flex: 1;
  text-align: right;
}
.shopisaz-link-list__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--brand);
}
.shopisaz-link-list a:hover .shopisaz-link-list__text,
.shopisaz-link-list a:focus-visible .shopisaz-link-list__text {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 600px) {
  .shopisaz-link-list {
    padding-inline: 12px;
  }
  .shopisaz-link-list__item {
    font-size: 14px;
    line-height: 24px;
  }
}
