/* ===================================================================
   تی‌فوتوشاپ — تم اختصاصی (override روی parsfiber.css)
   الهام: tefotoshop.com — آبی / قرمز / سرمه‌ای
=================================================================== */

:root {
  --blue:       #1565c0;
  --blue-dark:  #0d47a1;
  --blue-light: #42a5f5;
  --blue-pale:  #e3f2fd;
  --blue-bar:   #0d47a1;
  --gold:       #ffb300;
  --gold-soft:  #ffe082;
  --gold-dark:  #ff8f00;
  --accent-green: #1565c0;
  --accent-red: #c62828;
  --ink:        #1a2744;
  --ink-soft:   #546e7a;
  --bg:         #ffffff;
  --bg-soft:    #f5f8fc;
  --card:       #ffffff;
  --border:     #dce4ef;
  --footer-bg:  #152238;
  --shadow-sm:  0 4px 14px -4px rgba(13, 71, 161, .14);
  --shadow-md:  0 12px 32px -8px rgba(13, 71, 161, .18);
  --lgbazar-accent: #1565c0;
  --lgbazar-accent-dark: #0d47a1;
  --lgbazar-accent-light: #e3f2fd;
  --lgbazar-accent-border: #bbdefb;
  --lgbazar-text: #1a2744;
  --lgbazar-text-light: #546e7a;
  --lgbazar-text-muted: #78909c;
  --lgbazar-bg-light: #f5f8fc;
  --lgbazar-border: #dce4ef;
}

/* —— Top bar —— */
.top-bar {
  background: linear-gradient(90deg, #0a3d7a 0%, #1565c0 50%, #0a3d7a 100%);
  border-bottom-color: rgba(255, 255, 255, .15);
}
.top-bar-promo {
  font-weight: 700;
  letter-spacing: .01em;
}

/* —— Header —— */
.site-header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(21, 38, 56, .08);
}
.header-brand-bar {
  border-bottom: 1px solid var(--border);
}
.brand-mark {
  background: linear-gradient(135deg, #c62828 0%, #1565c0 100%);
  color: #fff;
}
.brand-text strong { color: var(--blue-dark); }
.brand-text em { color: var(--ink-soft); }

/* —— Footer —— */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, .88);
}
.footer-bar {
  border-top-color: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .65);
}

/* —— Home: category scroll —— */
.home-categories {
  padding-block: 28px 20px;
  background: #fff;
}
.home-cat-card__frame {
  border-color: #bbdefb;
  background: linear-gradient(180deg, #fff 0%, #f0f7ff 100%);
}
.home-cat-card__label {
  color: var(--blue-dark);
  font-weight: 700;
}

/* —— Home: showcase grid (دسته + برند مرکز) —— */
.home-showcase {
  padding: 24px 0 32px;
  background: var(--bg-soft);
}
.home-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.home-showcase__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.home-showcase__tile {
  position: relative;
  flex: 1;
  min-height: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-end;
  transition: transform .2s, box-shadow .2s;
}
.home-showcase__tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.home-showcase__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
}
.home-showcase__tile-title {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(13, 71, 161, .88) 0%, transparent 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
}
/* بنرهای تصویری صفحه اول (فقط عکس، بدون نوشته) */
.home-showcase__banner {
  position: relative;
  flex: 1;
  min-height: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: block;
  transition: transform .2s, box-shadow .2s;
}
.home-showcase__banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.home-showcase__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-showcase__banner--featured {
  min-height: 294px;
  border: 2px solid #ffd54f;
}
@media (max-width: 768px) {
  .home-showcase--banners .home-showcase__banner--featured { order: -1; min-height: 180px; }
  .home-showcase--banners .home-showcase__banner { min-height: 120px; }
}

.home-showcase__featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 24px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff8e1 0%, #fff 45%, #e3f2fd 100%);
  border: 2px solid #ffd54f;
  box-shadow: 0 16px 40px rgba(21, 101, 192, .12);
  text-align: center;
  transition: transform .2s;
}
.home-showcase__featured:hover { transform: scale(1.01); }
.home-showcase__featured-logo {
  max-width: 160px;
  max-height: 64px;
  object-fit: contain;
}
.home-showcase__featured-kicker {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.home-showcase__featured-body strong {
  display: block;
  font-size: 1.35rem;
  color: var(--blue-dark);
  margin: 6px 0;
}
.home-showcase__featured-body p {
  font-size: .9rem;
  color: var(--ink-soft);
  margin: 0 0 10px;
  line-height: 1.7;
}
.home-showcase__featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}

/* —— Home: brands strip —— */
.home-brands {
  padding: 28px 0;
  background: #fff;
  border-block: 1px solid var(--border);
}
.home-brands__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.home-brands__title {
  margin: 0;
  font-size: 1.15rem;
  color: var(--blue-dark);
}
.home-brands__all {
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue);
}
.home-brands__nav {
  display: flex;
  gap: 8px;
}
.home-brands-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.home-brands-nav:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.home-brands-nav.swiper-button-disabled {
  opacity: .4;
  cursor: default;
}
.home-brands__shell {
  position: relative;
}
.home-brands-swiper {
  overflow: hidden;
}
.home-brands__item {
  width: 100%;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.home-brands__item:hover {
  transform: translateY(-2px);
}
.home-brands__item:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-sm);
}
.home-brands__item img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}
.home-brands__name {
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  color: var(--ink-soft);
}

/* —— Home: promo banner —— */
.home-promo-banner {
  padding: 0;
  background: linear-gradient(90deg, #fff3e0 0%, #ffe0b2 50%, #fff3e0 100%);
  border-block: 1px solid #ffcc80;
}
.home-promo-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px 24px;
  text-align: center;
}
.home-promo-banner__icon {
  font-size: 2rem;
  color: #e65100;
}
.home-promo-banner__text strong {
  display: block;
  font-size: 1.05rem;
  color: #bf360c;
}
.home-promo-banner__text span {
  font-size: .92rem;
  color: #6d4c41;
}

/* —— Product bands (جدیدترین / پرفروش) —— */
.products-section--band {
  padding-block: 0;
  position: relative;
  overflow: hidden;
}
.products-section--newest {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 2px, transparent 2px 10px),
    linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #1976d2 100%);
  color: #fff;
}
.products-section--bestseller {
  background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 2px, transparent 2px 10px),
    linear-gradient(135deg, #8b0000 0%, #c62828 50%, #b71c1c 100%);
  color: #fff;
}
.products-section--band .container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 28px;
  align-items: start;
  padding-block: 32px 36px;
}
.home-band-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 8px 0;
  white-space: nowrap;
  opacity: .95;
}
.home-pblock--band {
  background: rgba(255, 255, 255, .97);
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
  color: var(--ink);
}
.home-pblock--band::before { display: none; }
.home-pblock--band .home-pblock__head {
  background: transparent;
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 12px;
}
.home-pblock--band .home-pblock__title {
  color: var(--blue-dark);
  font-size: 1.1rem;
}
.products-section--bestseller .home-pblock--band .home-pblock__title {
  color: var(--accent-red);
}
.home-pblock--band .home-pblock__icon {
  background: var(--blue);
  box-shadow: 0 4px 12px rgba(21, 101, 192, .35);
}
.products-section--bestseller .home-pblock--band .home-pblock__icon {
  background: var(--accent-red);
  box-shadow: 0 4px 12px rgba(198, 40, 40, .35);
}

/* Grid محصولات صفحه اول */
.home-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 12px 16px 18px;
}
.home-products-grid__cell {
  min-width: 0;
}
.home-pblock--band .home-product-card {
  border-color: #e8eef5;
}
.home-pblock--band .home-product-card__buy {
  background: var(--blue);
}
.products-section--bestseller .home-pblock--band .home-product-card__buy {
  background: var(--accent-red);
}

/* —— Home pblock themes (non-band) —— */
.home-pblock--newest {
  --pblock-accent: #1565c0;
  --pblock-head-a: #e3f2fd;
  --pblock-icon-bg: linear-gradient(145deg, #0d47a1, #42a5f5);
}
.home-pblock--sale,
.home-pblock--bestseller {
  --pblock-accent: #c62828;
  --pblock-head-a: #ffebee;
  --pblock-icon-bg: linear-gradient(145deg, #b71c1c, #ef5350);
}

/* —— Articles home —— */
.home-articles {
  background: var(--bg-soft);
  padding-block: 40px 48px;
}
.home-articles__eyebrow {
  color: var(--blue);
}
.home-articles__title { color: var(--blue-dark); }
.home-articles__all {
  color: var(--blue);
  border-color: #bbdefb;
}

/* —— SMS CTA —— */
.sms-cta__card {
  border-color: #bbdefb;
  background: linear-gradient(135deg, #fff 0%, #e3f2fd 100%);
}
.sms-cta__btn {
  background: var(--blue);
}

/* —— Product cards site-wide —— */
.child-card-btn--buy,
.home-product-card__buy {
  background: var(--blue) !important;
}
.child-card-btn--buy:hover,
.home-product-card__buy:hover {
  background: var(--blue-dark) !important;
}
.sale-ribbon {
  background: var(--accent-red);
}

/* —— Search page —— */
.search-hero .search-input-wrapper button {
  background: var(--blue);
}
.search-results-section__title {
  color: var(--blue-dark);
  border-right-color: var(--blue);
}

/* —— Brand page —— */
.brand-hero {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #f5f8fc 0%, #fff 100%);
}
.page-main--brand .page-h1 {
  color: var(--blue-dark);
}

/* —— Internal pages (product / category / article) —— */
.breadcrumb a:hover,
.breadcrumb__current { color: var(--blue-dark); }
.page-h1,
.page-title,
.section-title { color: var(--blue-dark); }
.page-main .child-card-btn--buy,
.product-buy-btn,
.btn-primary {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
}
.page-main .child-card-btn--buy:hover,
.product-buy-btn:hover,
.btn-primary:hover {
  background: var(--blue-dark) !important;
}
.filter-chip.is-active,
.product-filters__chip.is-active {
  background: var(--blue-pale);
  border-color: var(--blue-light);
  color: var(--blue-dark);
}
.article-card__more,
.article-meta a { color: var(--blue); }
.store-info__card {
  border-color: #bbdefb;
  background: linear-gradient(135deg, #fff 0%, #f5f8fc 100%);
}
.store-info__head h2 { color: var(--blue-dark); }

/* —— Float buttons —— */
.float-btn--phone { background: var(--blue); }
.to-top { background: var(--blue-dark); }

/* —— Responsive —— */
@media (max-width: 992px) {
  .home-showcase__grid {
    grid-template-columns: 1fr;
  }
  .home-showcase__featured { order: -1; }
  .home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .products-section--band .container {
    grid-template-columns: 1fr;
  }
  .home-band-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.2rem;
    padding-bottom: 4px;
  }
}
@media (max-width: 560px) {
  .home-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

/* —— Footer: نمادهای اعتماد (اینماد + ترب) —— */
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  margin-top: 14px;
}
.footer-trust__item {
  max-width: 130px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  line-height: 0;
}
.footer-trust__item img,
.footer-trust__item a img {
  max-width: 100%;
  height: auto;
}

/* —— کش‌بک روی صفحه محصول —— */
.product-cashback {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eefaf1, #dff5e6);
  border: 1px solid #b7e6c4;
  color: #14603a;
  font-size: 13px;
  line-height: 1.7;
}
.product-cashback__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #16a34a;
  color: #fff;
  font-size: 15px;
}
.product-cashback__text strong { color: #0f7a3d; }

/* —— نوار پیشرفت ارسال رایگان در سبد خرید —— */
.free-ship {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f4f7ff;
  border: 1px solid #dbe4ff;
}
.free-ship--done {
  background: #eefaf1;
  border-color: #b7e6c4;
}
.free-ship__msg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #274690;
  margin-bottom: 10px;
  line-height: 1.6;
}
.free-ship--done .free-ship__msg { color: #14603a; }
.free-ship__msg strong { font-weight: 700; }
.free-ship__bar {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: #e2e8f5;
  overflow: hidden;
}
.free-ship__fill {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f7cff, #6f9bff);
  transition: width .45s cubic-bezier(.4,0,.2,1);
  min-width: 4px;
}
.free-ship--done .free-ship__fill {
  background: linear-gradient(90deg, #16a34a, #34d576);
}

/* —— تب‌های ورود (رمز / کد پیامکی) —— */
.login-tabs {
  display: flex;
  gap: 6px;
  background: #f1f4f9;
  border-radius: 12px;
  padding: 5px;
  margin: 14px 0 18px;
}
.login-tab {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 8px;
  border-radius: 9px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.login-tab.is-active {
  background: #fff;
  color: #1e293b;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.login-otp-note {
  font-size: 13px;
  color: #475569;
  line-height: 1.9;
  margin: 4px 0 14px;
}
.login-otp-note strong { color: #1e293b; }
.login-otp-resend {
  text-align: center;
  margin-top: 10px;
}
.login-otp-link {
  border: 0;
  background: none;
  color: #2563eb;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}
#otpcode {
  letter-spacing: 8px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

/* —— لوگو: ۱۰٪ بزرگ‌تر (دسکتاپ و موبایل) —— */
.brand-logo {
  height: 73px;
  max-height: 73px;
}
body.is-scrolled .brand-logo {
  height: 53px;
  max-height: 53px;
}
@media (max-width: 900px) {
  .brand-logo {
    height: 79px;
    max-height: 79px;
  }
  body.is-scrolled .brand-logo {
    height: 67px;
    max-height: 67px;
  }
}

/* —— بنرهای صفحه اول: کامل دیده شوند، بدون کراپ —— */
.home-showcase--banners .home-showcase__grid {
  align-items: start;
}
.home-showcase--banners .home-showcase__col {
  justify-content: flex-start;
}
.home-showcase--banners .home-showcase__banner {
  flex: 0 0 auto;
  height: auto;
  min-height: 0;
  line-height: 0;          /* حذف فاصله اضافه زیر تصویر */
  background: #fff;
}
.home-showcase--banners .home-showcase__banner img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;     /* اگر جایی ارتفاع ثابت شد، باز هم کراپ نشود */
  display: block;
}
.home-showcase--banners .home-showcase__banner--featured {
  min-height: 0;
  align-self: start;
}
@media (max-width: 768px) {
  .home-showcase--banners .home-showcase__banner,
  .home-showcase--banners .home-showcase__banner--featured {
    min-height: 0;
    height: auto;
  }
}

/* ===================================================================
   بخش عضویت پیامکی صفحه اول — نسخه مینیمال
   (المان‌های تزئینی حذف نشده‌اند، فقط پنهان شده‌اند)
=================================================================== */
.sms2 { padding: 32px 0; }

.sms2__glow,
.sms2__badge,
.sms2__perks { display: none !important; }

.sms2__inner {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 400px);
  align-items: center;
  gap: 20px 32px;
  padding: 24px 28px;
  border-radius: 16px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: none;
}

.sms2__title {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.7;
  color: var(--ink);
}
.sms2__sub {
  margin: 0;
  font-size: .88rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

.sms2__field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: none;
}
.sms2__field:focus-within { border-color: var(--blue); }
.sms2__field-icon { color: var(--ink-soft); font-size: 1rem; padding-inline-start: 8px; }

.sms2__input {
  flex: 1;
  min-width: 0;
  height: 42px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  letter-spacing: 0;
}
.sms2__input:focus { outline: none; }
.sms2__input::placeholder { color: #9aa8b8; font-weight: 500; }

.sms2__btn {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s ease;
}
.sms2__btn:hover { background: var(--blue-dark); transform: none; filter: none; }
.sms2__btn i { font-size: .8rem; }

.sms2__hint { margin: 8px 4px 0; font-size: .85rem; text-align: start; min-height: 1.2em; }
.sms2__hint.is-success { color: #1b7a3d; }
.sms2__hint.is-error { color: #c62828; }

@media (max-width: 900px) {
  .sms2 { padding: 24px 0; }
  .sms2__inner {
    grid-template-columns: 1fr;
    text-align: start;
    padding: 20px;
    gap: 14px;
  }
  .sms2__form { max-width: none; margin: 0; }
}
@media (max-width: 480px) {
  .sms2__field { flex-wrap: wrap; }
  .sms2__input { flex: 1 1 100%; height: 44px; padding-inline: 8px; }
  .sms2__btn { width: 100%; justify-content: center; }
}

/* —— آیکون‌های شبکه اجتماعی نوار بالا: کمی بزرگ‌تر —— */
.top-bar-social { gap: 12px; }
.top-bar-social a {
  width: 42px;
  height: 42px;
  font-size: 1.45rem;
}
.top-bar-social__whatsapp:hover { color: #25D366; background: rgba(37, 211, 102, .18); }
.top-bar-social a[aria-label="اینستاگرام"]:hover { color: #ff7a59; }
.top-bar-social a[aria-label="تلگرام"]:hover { color: #61b8f0; }

/* آیکون واتساپ در فوتر هم‌اندازه بقیه بماند */
.footer-contact-item .fa-whatsapp { color: #25D366; }

/* ===================================================================
   برندهای محبوب — نسخه مینیمال
=================================================================== */
.home-brands {
  padding: 26px 0;
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}
.home-brands__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .01em;
}
.home-brands__item {
  flex-direction: column;
  gap: 8px;
  height: auto;
  padding: 14px 10px;
  border-radius: 12px;
  border-color: transparent;
  background: #fff;
  box-shadow: none;
}
.home-brands__item:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: 0 6px 18px -12px rgba(13, 71, 161, .45);
}
.home-brands__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
}
.home-brands__logo img {
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .75;
  transition: filter .2s ease, opacity .2s ease;
}
.home-brands__item:hover .home-brands__logo img { filter: none; opacity: 1; }
.home-brands__logo--text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 10px;
  height: 46px;
}
.home-brands__name {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.home-brands__item:hover .home-brands__name { color: var(--blue-dark); }
.home-brands-nav { width: 34px; height: 34px; }

/* ===================================================================
   حراجی‌ها — پنل شمارش معکوس + کاروسل
=================================================================== */
.flash-sale { padding: 34px 0; background: #fff5f5; }
.flash-sale__grid {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.flash-sale__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
  border-radius: 18px;
  background: linear-gradient(160deg, #f43f5e 0%, #e11d48 55%, #be123c 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.flash-sale__mark {
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}
.flash-sale__title { margin: 0; font-size: 1.15rem; font-weight: 800; color: #fff; }
.flash-sale__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  direction: ltr;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 12px;
  padding: 8px 10px;
}
.flash-sale__unit { display: flex; flex-direction: column; align-items: center; min-width: 40px; }
.flash-sale__unit strong { font-size: 1.05rem; font-weight: 800; line-height: 1.5; }
.flash-sale__unit span { font-size: .62rem; opacity: .85; }
.flash-sale__colon { opacity: .6; font-weight: 800; padding-bottom: 12px; }
.flash-sale__timer.is-over { opacity: .55; }
.flash-sale__note { margin: 0; font-size: .78rem; opacity: .9; }
.flash-sale__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #fff;
  color: #be123c;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}
.flash-sale__all:hover { background: #fff1f2; }
.flash-sale__products { min-width: 0; }
.flash-sale__products .home-products-shell { height: 100%; }

@media (max-width: 900px) {
  .flash-sale { padding: 24px 0; }
  .flash-sale__grid { grid-template-columns: 1fr; }
  .flash-sale__panel { flex-direction: row; flex-wrap: wrap; justify-content: space-between; text-align: start; padding: 16px; }
  .flash-sale__mark { font-size: 2.4rem; }
  .flash-sale__title { flex: 1; font-size: 1rem; }
  .flash-sale__timer { order: 3; width: 100%; }
  .flash-sale__note { order: 4; }
  .flash-sale__all { order: 5; }
}

/* ===================================================================
   باکس اطلاعات فروشگاه
=================================================================== */
.store-info { padding: 26px 0 34px; background: var(--bg-soft); }
.store-info__card {
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px -24px rgba(13, 71, 161, .5);
}
.store-info__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.store-info__head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}
.store-info__badge {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 1.05rem;
}
.store-info__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.store-info__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  line-height: 2;
  color: var(--ink-soft);
}
.store-info__row i {
  margin-top: 7px;
  font-size: .85rem;
  color: var(--blue);
  flex: 0 0 16px;
  text-align: center;
}
.store-info__row span { min-width: 0; }
@media (min-width: 760px) {
  .store-info__list { grid-template-columns: 1fr 1fr; }
  .store-info__row:first-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .store-info__card { padding: 18px 16px; }
}

/* —— دسته‌بندی‌های صفحه اول: در دسکتاپ همه با هم دیده شوند —— */
@media (min-width: 992px) {
  .home-categories__track {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px 10px;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 6px;
  }
  .home-cat-card { width: auto; }
  .home-categories__scroll::before,
  .home-categories__scroll::after { display: none; }
}

/* —— محصول: تاریخ بروزرسانی قیمت و دکمه واتساپ —— */
.product-price-updated {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 10px;
  font-size: .78rem;
  color: var(--ink-soft);
}
.product-price-updated i { font-size: .75rem; }
.product-price-updated span { direction: ltr; unicode-bidi: plaintext; font-weight: 700; }

.product-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #25D366;
  background: #fff;
  color: #128C4A;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.product-wa-btn i { font-size: 1.15rem; }
.product-wa-btn:hover { background: #25D366; color: #fff; }

/* ===================================================================
   موبایل: حذف فضای سفید بالا، ادغام منوی نوار بالا، نوار پایین کامل
=================================================================== */
/* آیتم‌های نوار پایین فقط در موبایل */
.float-btn--m { display: none !important; }

@media (max-width: 900px) {
  /* نوار بالای سایت اگر فقط متن تبلیغاتی خالی دارد، فضا اشغال نکند */
  .top-bar-slot { min-height: 0 !important; }
  .top-bar { min-height: 0; }
  .top-bar-promo:empty { display: none; }

  /* منوی نوار بالا در موبایل داخل منوی همبرگری آمده است */
  .topbar-strip { display: none; }

  .float-btn--m {
    display: flex !important;
    flex: 1 1 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 52px;
    padding: 6px 2px 4px;
    border: 0;
    background: transparent;
    color: var(--ink-soft);
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
  }
  .float-actions .float-btn__txt {
    display: block;
    font-size: .66rem;
    font-weight: 700;
    line-height: 1.4;
  }
  .float-actions .float-btn--m .float-btn__ico {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--blue-pale);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
  }
  .float-btn--m:active { background: rgba(21, 101, 192, .07); }

  /* فضای پایین صفحه تا نوار روی محتوا نیفتد */
  body { padding-bottom: 62px; }
  .to-top { bottom: 74px; }
}

/* جداکننده و لینک‌های منوی نوار بالا داخل کشوی موبایل */
.mobile-nav__divider {
  height: 1px;
  margin: 10px 0;
  background: var(--border);
}
.mobile-nav__link--top { font-weight: 600; }
.mobile-nav__link--top i { font-size: .75rem; opacity: .6; }

/* —— کد کالا در صفحه محصول —— */
.product-code {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 8px 12px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  background: var(--bg-soft);
  font-size: .85rem;
}
.product-code span { color: var(--ink-soft); font-weight: 600; }
.product-code strong { font-size: 1rem; font-weight: 800; letter-spacing: .04em; }
.product-code__copy {
  margin-inline-start: auto;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: .95rem;
  padding: 2px 4px;
}
.product-code__copy:hover { color: var(--blue-dark); }
.product-code__copy.is-done { color: #16a34a; }

/* —— متن معرفی محصول: همیشه فونت سایت —— */
.product-hero__summary,
.product-hero__summary *,
.page-content,
.page-content *,
.product-desc,
.product-desc *,
.section-text,
.section-text * {
  font-family: var(--font) !important;
}
.page-content font,
.product-hero__summary font,
.section-text font { font-size: inherit !important; }

/* —— بنرهای صفحه اول در موبایل: اسلایدر افقی به‌جای ۵ بنر روی هم —— */
@media (max-width: 768px) {
  .home-showcase--banners .home-showcase__grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    margin-inline: -8px;
    padding-inline: 8px;
  }
  .home-showcase--banners .home-showcase__grid::-webkit-scrollbar { display: none; }
  .home-showcase--banners .home-showcase__col {
    display: contents;
  }
  .home-showcase--banners .home-showcase__banner {
    flex: 0 0 82%;
    scroll-snap-align: center;
    border-radius: 12px;
  }
  .home-showcase--banners .home-showcase__banner--featured {
    order: -1;
    flex-basis: 82%;
  }
}

/* —— محصول موجود ولی بدون قیمت: خرید تلفنی —— */
.product-callprice {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 0 0 10px;
  padding: 10px 12px;
  border: 1px solid #fbbf24;
  background: #fffbeb;
  color: #92400e;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.9;
}
.product-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-size: .98rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease;
}
.product-call-btn:hover { background: var(--blue-dark); color: #fff; }
.product-call-btn span { direction: ltr; font-weight: 700; letter-spacing: .03em; }

.child-card-btn--call {
  background: var(--blue-pale);
  color: var(--blue-dark);
  border: 1px solid #bbdefb;
}
.child-card-btn--call:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ===================================================================
   کاروسل محصولات صفحه اول (جدیدترین / پرفروش‌ها)
=================================================================== */
/* فلش‌ها در دسکتاپ هم دیده شوند */
@media (min-width: 768px) {
  .home-products-shell { padding-inline: 46px; }
  .home-products-nav { display: flex; }
  .home-products-nav--prev { inset-inline-end: 0; }
  .home-products-nav--next { inset-inline-start: 0; }
}
.home-products-nav {
  border-color: var(--border);
  color: var(--blue-dark);
  box-shadow: 0 6px 18px rgba(13, 71, 161, .12);
}
.home-products-nav:hover { background: var(--blue-pale); }
.home-products-nav.swiper-button-disabled { opacity: .35; cursor: default; }

/* نقطه‌های صفحه‌بندی — فقط موبایل */
.home-products-dots {
  display: none;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}
.home-products-dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #cbd5e1;
  opacity: 1;
  transition: width .2s ease, background .2s ease;
}
.home-products-dots .swiper-pagination-bullet-active {
  width: 18px;
  border-radius: 999px;
  background: var(--blue);
}

@media (max-width: 767px) {
  .home-products-shell { padding-inline: 0; }
  /* در موبایل به‌جای فلش، سوایپ + نقطه */
  .home-products-nav { display: none; }
  .home-products-dots { display: flex; }
  .home-products-swiper { overflow: visible; }
  .home-products-shell { overflow: hidden; }
  /* کارت جمع‌وجورتر تا یک نگاه کل کارت دیده شود */
  .home-product-card__media { min-height: 0; aspect-ratio: 1 / 1; }
  .home-product-card__title { font-size: .9rem; line-height: 1.8; }
}

/* ===================================================================
   کاروسل «محصولات مرتبط» — چیدمان مرتب و کارت جمع‌وجور
=================================================================== */
.related-carousel-wrap { padding-inline: 46px; }
.related-products-swiper { overflow: hidden; padding: 8px 2px 18px; }
.related-products-swiper .swiper-slide { height: auto; display: flex; }
.related-slide-card { width: 100%; }

/* تصویر کارت کوتاه‌تر تا کارت‌ها بلند و خالی به‌نظر نرسند */
.related-slide-card__media {
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 10px !important;
}

.related-carousel-nav {
  border-color: var(--border);
  color: var(--blue-dark);
  box-shadow: 0 6px 18px rgba(13, 71, 161, .12);
}
.related-carousel-nav:hover { background: var(--blue-pale); }

@media (max-width: 767px) {
  /* در موبایل سوایپ کافی است — فلش‌ها فقط جا می‌گیرند */
  .related-carousel-wrap { padding-inline: 0; }
  .related-carousel-nav { display: none; }
  .related-slide-card__title { font-size: .9rem; line-height: 1.8; }
}

/* ===================================================================
   فرم تکمیل خرید در صفحه سبد — دسکتاپ و موبایل
=================================================================== */
.cart-checkout-form { margin-top: 4px; }

/* عنوان بخش — جدا کردن فرم از مبلغ قابل پرداخت */
.cart-form-head {
  margin: 18px 0 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cart-form-head h3 {
  margin: 0 0 4px;
  font-size: .98rem;
  font-weight: 800;
  color: var(--ink);
}
.cart-form-head p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.cart-login-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid #bbdefb;
  background: var(--blue-pale);
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.9;
  color: #0d47a1;
}
.cart-login-note a { font-weight: 800; text-decoration: underline; }

/* فاصله و ظاهر فیلدها */
.cart-checkout-form .form-group { margin-bottom: 14px; }
.cart-checkout-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}
.cart-input {
  min-height: 46px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.cart-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, .12);
  outline: none;
}
.cart-input::placeholder { color: #a6b4c4; font-size: 13px; }
textarea.cart-input { min-height: 78px; line-height: 1.9; }

/* کد تخفیف */
.cart-discount-box {
  margin: 4px 0 16px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-soft);
}
.cart-discount-box label { margin-bottom: 8px; }
.cart-discount-row .cart-btn { min-height: 46px; padding-inline: 18px; }

/* نوار ثبت سفارش */
.cart-submit-bar { margin-top: 6px; }
.cart-submit-bar__total { display: none; }
.cart-submit-bar .cart-btn--primary {
  min-height: 52px;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0;
}

@media (min-width: 993px) {
  /* در دسکتاپ ستون خلاصه سفارش با صفحه اسکرول شود ولی فرم بریده نشود */
  .cart-summary {
    position: sticky;
    top: 96px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
  }
}

@media (max-width: 992px) {
  .cart-summary { padding: 16px; }
  .cart-form-head { margin-top: 16px; }

  /* نوار چسبان پایین: مبلغ + دکمه ثبت سفارش همیشه در دسترس */
  .cart-submit-bar {
    position: sticky;
    bottom: 62px; /* بالای نوار پایین موبایل */
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px -16px -16px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid var(--border);
    box-shadow: 0 -6px 18px -12px rgba(13, 71, 161, .4);
  }
  .cart-submit-bar__total {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    flex: 0 0 auto;
  }
  .cart-submit-bar__total span { font-size: 11px; color: var(--ink-soft); }
  .cart-submit-bar__total strong { font-size: .95rem; font-weight: 800; white-space: nowrap; }
  .cart-submit-bar .cart-btn--primary { flex: 1; min-height: 48px; }
}

/* ===================================================================
   دسته‌بندی‌های صفحه برند — نوار افقی وقتی تعداد زیاد است
=================================================================== */
.brand-cats__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.brand-cats__title { margin-bottom: 0 !important; }
.brand-cats__nav { display: flex; gap: 6px; flex: 0 0 auto; }
.brand-cats__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--blue-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: background .18s ease, color .18s ease, opacity .18s ease;
}
.brand-cats__btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.brand-cats__btn[disabled] { opacity: .35; cursor: default; }
.brand-cats__btn[disabled]:hover { background: #fff; color: var(--blue-dark); border-color: var(--border); }

.brand-cats--scroll .brand-cats__list {
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  -webkit-mask-image: linear-gradient(to left, #000 92%, transparent 100%);
          mask-image: linear-gradient(to left, #000 92%, transparent 100%);
}
.brand-cats--scroll .brand-cats__list::-webkit-scrollbar { display: none; }
.brand-cats--scroll .brand-cat-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .brand-cats__nav { display: none; }
  .brand-cats--scroll .brand-cats__list { gap: 8px; }
  .brand-cat-chip { font-size: 13px; }
}

/* ===================================================================
   چاپ فاکتور — فقط خود فاکتور چاپ شود
=================================================================== */
@media print {
  /* همه اجزای سایت پنهان */
  .top-bar-slot,
  .topbar-strip,
  .site-header,
  .site-footer,
  .breadcrumb,
  .float-actions,
  .to-top,
  .mini-cart,
  .cart-modal,
  .eitaa-popup,
  .store-info,
  .sms2,
  .home-promo-banner,
  .admin-front-bar,
  .search-mobile-sheet,
  .mobile-nav-layer,
  .order-invoice__actions,
  .share,
  .product-share-inline {
    display: none !important;
  }

  html, body {
    background: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  main#main {
    padding-top: 0 !important;
  }
  body { padding-bottom: 0 !important; }

  .cart-page,
  .order-invoice {
    padding: 0 !important;
    background: #fff !important;
  }
  .container { max-width: none !important; padding: 0 !important; }

  .order-invoice__paper {
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  .order-invoice__head { border-bottom: 2px solid #000 !important; }
  .order-invoice__party {
    border: 1px solid #999 !important;
    background: #fff !important;
  }
  .order-invoice__table th,
  .order-invoice__table td { border-color: #999 !important; }
  .order-invoice__table th { background: #eee !important; }
  .order-invoice__totals td { border-color: #999 !important; }
  .order-invoice__totals-grand td { background: #eee !important; }
  .order-invoice__paybar {
    background: #fff !important;
    border: 1px solid #999 !important;
  }
  a[href]::after { content: none !important; }

  @page { margin: 12mm; }
}

/* —— کیف پول در سبد خرید —— */
.cart-wallet {
  margin: 4px 0 14px;
  padding: 12px 14px;
  border: 1px solid #bbdefb;
  background: var(--blue-pale);
  border-radius: 12px;
}
.cart-wallet__row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
  margin: 0;
}
.cart-wallet__row input { margin-top: 4px; width: 17px; height: 17px; cursor: pointer; }
.cart-wallet__text { display: flex; flex-direction: column; gap: 2px; }
.cart-wallet__text strong { font-size: 13.5px; font-weight: 800; color: #0d47a1; }
.cart-wallet__text small { font-size: 12.5px; color: #1565c0; font-weight: 700; }
.cart-wallet__note {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.9;
  color: #0d47a1;
  opacity: .9;
}
.cart-summary__row--wallet > strong { color: #1b7a3d; }

/* —— جزئیات محاسبه کیف پول در سبد —— */
.cart-wallet__text strong i { margin-inline-end: 5px; }
.cart-wallet__text small b { font-weight: 800; }
.cart-wallet__calc {
  margin: 12px 0 0;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #cfe3fb;
  border-radius: 10px;
  transition: opacity .2s ease;
}
.cart-wallet__calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12.5px;
  line-height: 2.1;
  color: var(--ink-soft);
}
.cart-wallet__calc-row b { color: var(--ink); font-weight: 700; }
.cart-wallet__calc-row.is-minus b { color: #1b7a3d; }
.cart-wallet__calc-row.is-rest {
  border-top: 1px dashed #cfe3fb;
  margin-top: 4px;
  padding-top: 6px;
  font-weight: 700;
}
.cart-wallet__calc-row.is-rest span { color: var(--ink); }
.cart-wallet__calc-row.is-rest b { color: var(--blue-dark); font-size: 13.5px; font-weight: 800; }

/* —— مزیت ثبت‌نام در سبد خرید —— */
.cart-signup-perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px dashed #f59e0b;
  background: #fffbeb;
  border-radius: 12px;
}
.cart-signup-perk > i { color: #d97706; font-size: 1.1rem; margin-top: 3px; }
.cart-signup-perk strong { display: block; font-size: 13px; font-weight: 800; color: #92400e; margin-bottom: 3px; }
.cart-signup-perk p { margin: 0 0 8px; font-size: 12.5px; line-height: 2; color: #92400e; }
.cart-signup-perk p b { font-weight: 800; }
.cart-signup-perk__btn {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 8px;
  background: #d97706;
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  text-decoration: none;
}
.cart-signup-perk__btn:hover { background: #b45309; color: #fff; }
