/* ===== FONTS ===== */
@font-face {
  font-family: 'IRANSans';
  src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IRANSans';
  src: url('../fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IRANSans';
  src: url('../fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #f0f2f5;
  --card-bg: #ffffff;
  --text: #1a1a2e;
  --subtext: #666;
  --accent: #1b4fff;
  --accent2: #f7c948;
  --nav-bg: #ffffff;
  --footer-bg: #1a1a2e;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --border: #e8eaf0;
  --badge-sale: #e74c3c;
  --radius: 16px;
}
body.dark-mode {
  --bg: #12131a;
  --card-bg: #1e2030;
  --text: #e8eaf6;
  --subtext: #aaa;
  --nav-bg: #1a1b2e;
  --footer-bg: #0d0e14;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --border: #2a2d45;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { direction: rtl; overflow-x: hidden; }
body { overflow-x: hidden;
  font-family: 'IRANSans', Tahoma, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background .3s, color .3s;
  min-height: 100vh;
  direction: rtl;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--nav-bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: sticky; top: 0; z-index: 1000;
  transition: background .3s, box-shadow .3s;
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1.3rem; font-weight: 700; color: var(--accent);
  white-space: nowrap;
}
.logo-icon {
  width: 34px; height: 34px; background: var(--accent);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 1.2rem;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--text);
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: .8rem; }
.cart-btn {
  display: flex; align-items: center; gap: .4rem;
  background: var(--accent); color: white;
  border: none; padding: .5rem 1.2rem; border-radius: 25px;
  font-family: 'IRANSans', Tahoma, sans-serif; font-size: .85rem; font-weight: 500;
  cursor: pointer; transition: background .2s, transform .15s;
}
.cart-btn:hover { background: #1440cc; transform: scale(1.03); }
.dark-toggle {
  background: none; border: 2px solid var(--border);
  color: var(--text); border-radius: 50%;
  width: 38px; height: 38px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.dark-toggle:hover { border-color: var(--accent); color: var(--accent); }
.mobile-menu-btn {
  display: none; background: none; border: none;
  color: var(--text); cursor: pointer; padding: .3rem;
}
.mobile-menu {
  display: none; background: var(--nav-bg);
  border-top: 1px solid var(--border); padding: 1rem 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu li { padding: .6rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu a { font-size: .95rem; color: var(--text); }

/* ===== HERO ===== */
.hero {
  position: relative; width: 100%; height: 460px;
  overflow: hidden; background: #0d1b4f;
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out; }
.slide.active { opacity: 1; }
.slide-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 6s ease-out;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,79,255,.75) 0%, rgba(0,0,0,.2) 60%);
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-end;
  padding: 0 5rem; text-align: right;
}
.slide-tag {
  background: var(--accent2); color: #1a1a2e;
  font-size: .8rem; font-weight: 700;
  padding: .3rem 1rem; border-radius: 20px; margin-bottom: 1rem;
}
.slide-overlay h2 {
  font-size: 2.4rem; color: white; font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,.3); margin-bottom: .6rem; line-height: 1.3;
}
.slide-overlay p { font-size: 1rem; color: rgba(255,255,255,.88); margin-bottom: 2rem; }
.cta-btn {
  display: inline-block;
  background: var(--accent2); color: #1a1a2e;
  border: none; padding: .8rem 2.2rem; border-radius: 30px;
  font-size: .95rem; font-family: 'IRANSans', Tahoma, sans-serif;
  font-weight: 700; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(247,201,72,.4);
}
.cta-btn:hover { transform: scale(1.06); box-shadow: 0 6px 28px rgba(247,201,72,.6); }
.slide-nav {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s;
}
.dot.active { background: var(--accent2); width: 24px; border-radius: 4px; }

/* ===== FEATURES BAR ===== */
.features-bar {
  background: var(--card-bg); border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4,1fr);
  transition: background .3s;
}
.feature-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 2rem; border-left: 1px solid var(--border);
}
.feature-item:last-child { border-left: none; }
.feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feat-icon.blue { background: #e8f0fe; }
.feat-icon.green { background: #e6f4ea; }
.feat-icon.orange { background: #fef3e2; }
.feat-icon.purple { background: #f3e8fd; }
body.dark-mode .feat-icon.blue { background: #1a2450; }
body.dark-mode .feat-icon.green { background: #1a3020; }
body.dark-mode .feat-icon.orange { background: #3a2810; }
body.dark-mode .feat-icon.purple { background: #2a1a40; }
.feat-text strong { display: block; font-size: .95rem; color: var(--text); }
.feat-text p { font-size: .8rem; color: var(--subtext); margin-top: .1rem; }

/* ===== CATEGORIES ===== */
.categories-wrap { background: var(--card-bg); border-bottom: 1px solid var(--border); transition: background .3s; }
.categories {
  padding: 0.5rem 1.5rem; display: flex; gap: .8rem;
  flex-wrap: nowrap; align-items: center;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.categories::-webkit-scrollbar { display: none; }
.cat-label { font-size: .85rem; color: var(--subtext); margin-left: .5rem; }
.cat-pill {
  background: transparent; color: var(--subtext);
  border: 1.5px solid var(--border); padding: .45rem 1.2rem;
  border-radius: 25px; font-family: 'IRANSans', Tahoma, sans-serif;
  font-size: .85rem; cursor: pointer; transition: all .2s;
  white-space: nowrap; flex-shrink: 0;
}
.cat-pill:hover { border-color: var(--accent); color: var(--accent); }
.cat-pill.active { border-color: var(--accent); color: var(--accent); background: #e8f0fe; font-weight: 600; }
body.dark-mode .cat-pill.active { background: #1a2450; }

/* ===== CONTAINER & SECTION ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0.5rem 1.5rem; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin: 2.5rem 0 1.5rem;
}
.section-title { font-size: 1.4rem; font-weight: 700; color: var(--text); }
.section-title span { color: var(--accent); }
.see-all { color: var(--accent); font-size: .85rem; cursor: pointer; font-weight: 500; }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem; padding-bottom: 3rem;
}
.product-card {
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(27,79,255,.12);
  border-color: var(--accent);
}
.product-img-wrap {
  width: 100%; height: 170px; background: #f0f4ff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 1.2rem;
}
body.dark-mode .product-img-wrap { background: #252840; }
.product-img-wrap img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  transition: transform .3s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-info { padding: 1rem 1rem 0; }
.product-info h3 { font-size: .95rem; font-weight: 600; margin-bottom: .3rem; color: var(--text); }
.product-info p { font-size: .8rem; color: var(--subtext); line-height: 1.5; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 1rem; margin-top: .8rem; border-top: 1px solid var(--border);
}
.price { font-size: 1rem; font-weight: 700; color: var(--accent); }
.buy-btn,
.product-footer .button,
.product-footer .add_to_cart_button {
  background: var(--accent) !important; color: white !important;
  border: none !important; padding: .45rem 1.1rem !important;
  border-radius: 20px !important; font-family: 'IRANSans', Tahoma, sans-serif !important;
  font-size: .85rem !important; cursor: pointer !important; font-weight: 500 !important;
  transition: background .2s, transform .15s !important;
  text-decoration: none !important; display: inline-block !important; white-space: nowrap !important;
}
.buy-btn:hover,
.product-footer .button:hover,
.product-footer .add_to_cart_button:hover { background: #1440cc !important; transform: scale(1.05) !important; }
.badge {
  position: absolute; top: 10px; right: 10px;
  font-size: .7rem; font-weight: 700; padding: .2rem .6rem;
  border-radius: 10px; z-index: 2;
}
.badge-sale { background: #e74c3c; color: white; }
.badge-hot { background: var(--accent2); color: #1a1a2e; }
.badge-new { background: #2ecc71; color: white; }
.no-products { text-align: center; padding: 3rem; color: var(--subtext); font-size: 1rem; }

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #6a3de8 100%);
  border-radius: var(--radius); padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  margin: 1rem 0 2.5rem; color: white;
}
.promo-text h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .3rem; }
.promo-text p { font-size: .9rem; opacity: .9; }
.promo-btn {
  display: inline-block;
  background: white; color: var(--accent);
  border: none; padding: .7rem 1.8rem; border-radius: 25px;
  font-family: 'IRANSans', Tahoma, sans-serif; font-weight: 700;
  cursor: pointer; font-size: .9rem; white-space: nowrap; transition: transform .2s;
}
.promo-btn:hover { transform: scale(1.04); }

/* ===== FOOTER ===== */
.site-footer { background: var(--footer-bg); color: #888; padding: 2.5rem 2rem 1.5rem; transition: background .3s; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid #2a2d3a;
}
.footer-brand .logo { color: white; margin-bottom: .8rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; }
.footer-col h4 { color: #ccc; font-size: .95rem; margin-bottom: 1rem; font-weight: 600; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: #888; font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent2); }
.footer-bottom { max-width: 1280px; margin: 1.5rem auto 0; text-align: center; font-size: .8rem; }
.footer-bottom a { color: var(--accent2); }

/* ===== WOO: SHOP PAGE ===== */
.woocommerce .products { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.2rem; }
.woocommerce ul.products li.product { background: var(--card-bg); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.woocommerce ul.products li.product:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(27,79,255,.12); }
.woocommerce ul.products li.product a img { width: 100%; height: 160px; object-fit: contain; padding: 1rem; background: #f0f4ff; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: 'IRANSans', Tahoma, sans-serif; font-size: .95rem; padding: .8rem 1rem .3rem; color: var(--text); }
.woocommerce ul.products li.product .price { padding: 0 1rem; color: var(--accent); font-weight: 700; }
.woocommerce ul.products li.product .button { margin: .8rem 1rem 1rem; display: block; text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { gap: .8rem; }
  .nav-links a { font-size: .82rem; }
  .logo { font-size: 1.1rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-container { padding: 0 1rem; height: 56px; }
  .logo { font-size: 1rem; gap: .4rem; }
  .logo-icon { width: 30px; height: 30px; font-size: .9rem; }
  /* Hide loose text in cart button on mobile - works even when AJAX fragment cache has old HTML without .cart-text wrapper */
  .cart-btn { padding: .45rem .8rem; font-size: 0 !important; gap: .3rem; }
  .cart-btn svg, .cart-btn .cart-count { font-size: .85rem; }
  .cart-btn .cart-text { display: none; }
  .features-bar { grid-template-columns: 1fr; }
  .feature-item { border-left: none; border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; }
  .feature-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .slide-overlay { padding: 0 1.5rem; }
  .slide-overlay h2 { font-size: 1.6rem; }
  .slide-overlay p { font-size: .9rem; }
  .promo-banner { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; }
  .hero { height: 320px; }
  .section-title { font-size: 1.2rem; }
  .section-header { margin: 1.5rem 0 1rem; }
  .container { padding: 0.5rem 1rem; }
  .site-footer { padding: 2rem 1rem 1rem; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2,1fr); gap: .7rem; }
  .hero { height: 240px; }
  .product-img-wrap { height: 120px; padding: .8rem; }
  .product-info { padding: .7rem .7rem 0; }
  .product-info h3 { font-size: .85rem; }
  .product-footer { flex-direction: column; gap: .4rem; align-items: stretch; padding: .6rem .7rem; }
  .price { font-size: .9rem; }
  .buy-btn, .product-footer .button, .product-footer .add_to_cart_button { width: 100% !important; text-align: center !important; padding: .5rem .8rem !important; font-size: .8rem !important; }
  .woocommerce ul.products li.product a img { height: 120px; padding: .8rem; }
  .woocommerce ul.products li.product .button { margin: .5rem .7rem .7rem; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: .85rem; padding: .6rem .7rem .2rem; }
  /* Header: cart button compact */
  .cart-btn { padding: .4rem .7rem; }
  /* Hero text smaller */
  .slide-overlay h2 { font-size: 1.3rem; }
  .slide-overlay p { font-size: .8rem; margin-bottom: 1rem; }
  .cta-btn { padding: .6rem 1.5rem; font-size: .85rem; }
  /* Categories pills compact */
  .cat-label { display: none; }
  .categories { padding: .6rem 1rem; gap: .5rem; }
  .cat-pill { padding: .35rem .9rem; font-size: .8rem; }
  /* Section header */
  .section-title { font-size: 1.05rem; }
  .see-all { font-size: .8rem; }
  /* Promo banner */
  .promo-text h3 { font-size: 1.1rem; }
  .promo-banner { padding: 1.2rem; }
  /* Sort bar */
  .sort-bar { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .woocommerce-ordering { width: 100%; }
  .woocommerce-ordering select { width: 100%; }
  /* Archive */
  .archive-title { font-size: 1.4rem; }
  /* Single product */
  .product-main-img { padding: 1.5rem; min-height: auto; }
  .product-main-img img { max-height: 200px; }
  .product-title { font-size: 1.2rem; }
  .price-main { font-size: 1.3rem; }
  .price-old { font-size: .85rem; }
  .product-price-box { padding: 1rem; gap: .6rem; }
  .product-add-to-cart { gap: .6rem; }
  .add-to-cart-main { flex: 1 1 100%; padding: .7rem 1rem !important; font-size: .9rem !important; }
  .trust-item { flex: 1 1 100% !important; }
  .product-tabs .tab-nav { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .product-tabs .tab-nav button { white-space: nowrap; flex-shrink: 0; }
  /* Cart page */
  .cart-table tbody tr { padding: .8rem; }
  .cart-table tbody td { padding: .4rem 0; font-size: .85rem; }
  .cart-table tbody td::before { font-size: .75rem; }
  .cart-table .product-thumbnail img { width: 80px; height: 80px; }
  .cart_totals { padding: 1rem !important; }
  /* Footer */
  .footer-grid { gap: 1rem; padding-bottom: 1.2rem; }
  .footer-col h4 { font-size: .9rem; margin-bottom: .6rem; }
  .footer-col ul li { margin-bottom: .35rem; }
  /* Section header */
  .section-header { margin: 1.5rem 0 .8rem; }
  /* Breadcrumb */
  .breadcrumb { padding: .8rem 0; font-size: .75rem; gap: .3rem; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  padding: 1.2rem 0; font-size: .85rem; color: var(--subtext);
}
.breadcrumb a { color: var(--accent); transition: opacity .2s; }
.breadcrumb a:hover { opacity: .7; }
.breadcrumb span { color: var(--subtext); }

/* ===== ARCHIVE PAGE ===== */
.archive-page { padding: 0 0 3rem; }
.archive-header { margin-bottom: 1.5rem; }
.archive-title { font-size: 1.8rem; font-weight: 700; color: var(--text); }
.archive-desc { color: var(--subtext); margin-top: .5rem; font-size: .9rem; }
.woo-pagination { display: flex; justify-content: center; gap: .5rem; padding: 2rem 0; }
.woo-pagination .page-numbers {
  padding: .4rem .9rem; border-radius: 8px; border: 1.5px solid var(--border);
  color: var(--text); transition: all .2s;
}
.woo-pagination .page-numbers.current,
.woo-pagination .page-numbers:hover { background: var(--accent); color: white; border-color: var(--accent); }
.no-products { text-align: center; padding: 4rem 2rem; color: var(--subtext); }

/* ===== SINGLE PRODUCT ===== */
.single-product-page { padding: 0 0 4rem; }
.product-layout {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem;
  margin: 2rem 0 3rem;
}
.product-main-img {
  border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem; min-height: 320px; background: #f0f4ff;
}
.product-main-img img { max-height: 260px; object-fit: contain; }
.trust-badges {
  display: flex; flex-direction: column; gap: .8rem; margin-top: 1.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: .8rem;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 10px; padding: .7rem 1rem; font-size: .85rem; color: var(--text);
}

/* Product Info */
.product-cat-link {
  display: inline-block; background: #e8f0fe; color: var(--accent);
  font-size: .8rem; font-weight: 600; padding: .25rem .8rem;
  border-radius: 15px; margin-bottom: .8rem;
}
body.dark-mode .product-cat-link { background: #1a2450; }
.product-title { font-size: 1.8rem; font-weight: 700; color: var(--text); margin-bottom: .8rem; line-height: 1.3; }
.product-rating { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.2rem; }
.stars { color: #f7c948; font-size: 1.1rem; }
.rating-count { font-size: .85rem; color: var(--subtext); }

.product-price-box {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: var(--bg); border-radius: 12px; padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
}
.price-old { font-size: 1rem; color: var(--subtext); text-decoration: line-through; }
.price-main { font-size: 1.8rem; font-weight: 700; color: var(--accent); }
.price-badge {
  background: #e74c3c; color: white; font-size: .75rem; font-weight: 700;
  padding: .25rem .7rem; border-radius: 15px;
}

.product-short-desc { margin-bottom: 1.2rem; color: var(--subtext); line-height: 1.8; font-size: .95rem; }

.product-features { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.product-features li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--text); }

.product-add-to-cart { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.qty-wrap { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 25px; overflow: hidden; }
.qty-btn {
  background: none; border: none; width: 36px; height: 40px;
  font-size: 1.2rem; cursor: pointer; color: var(--text);
  transition: background .2s;
}
.qty-btn:hover { background: var(--bg); }
.qty-input {
  width: 48px; text-align: center; border: none; background: none;
  font-family: 'IRANSans', Tahoma, sans-serif; font-size: 1rem; color: var(--text);
  outline: none;
}
.add-to-cart-main {
  background: var(--accent) !important; color: white !important;
  border: none !important; padding: .7rem 2rem !important;
  border-radius: 25px !important; font-family: 'IRANSans', Tahoma, sans-serif !important;
  font-size: .95rem !important; font-weight: 600 !important;
  cursor: pointer !important; transition: background .2s, transform .15s !important;
  text-decoration: none !important; display: inline-block !important; white-space: nowrap !important;
}
.add-to-cart-main:hover { background: #1440cc !important; transform: scale(1.03) !important; }

.product-meta { display: flex; gap: 1.5rem; font-size: .85rem; color: var(--subtext); flex-wrap: wrap; }
.product-meta a { color: var(--accent); }

/* Tabs */
.product-tabs { margin: 3rem 0; }
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 1.5rem; }
.tab-btn {
  background: none; border: none; padding: .8rem 1.5rem;
  font-family: 'IRANSans', Tahoma, sans-serif; font-size: .9rem;
  color: var(--subtext); cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all .2s;
}
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 600; }
.tab-btn:hover { color: var(--text); }
.tab-content { display: none; color: var(--text); line-height: 1.8; font-size: .95rem; }
.tab-content.active { display: block; }
.tab-content p { margin-bottom: 1rem; }
.how-to-steps { padding-right: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
.how-to-steps li { color: var(--text); }
.faq-item { margin-bottom: 1.5rem; }
.faq-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: .4rem; color: var(--text); }
.faq-item p { color: var(--subtext); font-size: .9rem; }

/* Related products */
.related-products { margin-top: 3rem; }

/* Fix WooCommerce price display */
.woocommerce-Price-amount, .amount { color: var(--accent) !important; }
/* Sale price: old price grey + strikethrough, sale price blue + no underline */
.price del, .price del .woocommerce-Price-amount, .price del .amount { color: var(--subtext) !important; opacity: 0.75; }
.price ins { text-decoration: none; }
.price ins .woocommerce-Price-amount, .price ins .amount { color: var(--accent) !important; }
.woocommerce-Price-currencySymbol { display: none !important; }

/* Add Toman suffix via pseudo-element workaround */
.product-footer .price bdi::after,
.product-price-box bdi::after { content: ' تومان'; }

@media (max-width: 768px) {
  .product-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-title { font-size: 1.4rem; }
  .price-main { font-size: 1.4rem; }
  .trust-badges { flex-direction: row; flex-wrap: wrap; }
  .trust-item { flex: 1 1 45%; }
  .tab-nav { overflow-x: auto; }
}

/* ===== SORT BAR ===== */
.sort-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem; padding: .8rem 0;
  border-bottom: 1px solid var(--border);
}
.results-count { font-size: .85rem; color: var(--subtext); }
.woocommerce-ordering select {
  font-family: 'IRANSans', Tahoma, sans-serif;
  font-size: .85rem; padding: .4rem .8rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  background: var(--card-bg); color: var(--text);
  cursor: pointer;
}

/* ===== OTP LOGIN STYLES ===== */
.lwpn-otp-wrapper, .lwp-phone-wrapper {
  font-family: 'IRANSans', Tahoma, sans-serif !important;
  direction: rtl !important;
}
.lwpn-phone-input, .lwp-phone-input {
  width: 100% !important;
  padding: .7rem 1rem !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  font-family: 'IRANSans', Tahoma, sans-serif !important;
  font-size: .95rem !important;
  background: var(--card-bg) !important;
  color: var(--text) !important;
  direction: ltr !important;
}
.lwpn-send-otp-btn, .lwp-send-otp {
  background: var(--accent) !important;
  color: white !important;
  border: none !important;
  padding: .7rem 1.5rem !important;
  border-radius: 25px !important;
  font-family: 'IRANSans', Tahoma, sans-serif !important;
  cursor: pointer !important;
  margin-top: .8rem !important;
}

/* ===== ZARINPAL BUTTON ===== */
.wc_payment_method.payment_method_zarinpal label {
  font-family: 'IRANSans', Tahoma, sans-serif !important;
  font-size: .95rem !important;
}
#place_order {
  background: var(--accent) !important;
  color: white !important;
  font-family: 'IRANSans', Tahoma, sans-serif !important;
  font-size: 1rem !important;
  border-radius: 25px !important;
  padding: .8rem 2rem !important;
  border: none !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background .2s !important;
}
#place_order:hover { background: #1440cc !important; }

/* ===== WOO CART & CHECKOUT ===== */
.woocommerce-cart table.cart,
.woocommerce-checkout form.checkout {
  font-family: 'IRANSans', Tahoma, sans-serif !important;
  direction: rtl !important;
}
.woocommerce form .form-row label {
  font-family: 'IRANSans', Tahoma, sans-serif !important;
  color: var(--text) !important;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  font-family: 'IRANSans', Tahoma, sans-serif !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  padding: .7rem 1rem !important;
  background: var(--card-bg) !important;
  color: var(--text) !important;
}
.woocommerce-page .woocommerce {
  max-width: 1280px; margin: 2rem auto; padding: 0 1.5rem;
  font-family: 'IRANSans', Tahoma, sans-serif !important;
}

/* ===== WOO PAGES WRAPPER ===== */
.woo-page-wrap { padding: 0 0 4rem; }
.woo-page-content {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  margin-top: 1rem;
}
.page-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text); }

/* ===== MY ACCOUNT ===== */
.woocommerce-MyAccount-navigation {
  float: right; width: 22%; margin-left: 2%;
}
.woocommerce-MyAccount-navigation ul { list-style: none; }
.woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid var(--border); 
}
.woocommerce-MyAccount-navigation ul li a {
  display: block; padding: .8rem 1rem;
  color: var(--text); font-size: .9rem;
  transition: color .2s, background .2s;
  border-radius: 8px;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--accent); background: #e8f0fe;
}
body.dark-mode .woocommerce-MyAccount-navigation ul li.is-active a { background: #1a2450; }
.woocommerce-MyAccount-content {
  float: right; width: 74%;
}

/* ===== OTP LOGIN FORM ===== */
.woocommerce-account .woocommerce {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.woocommerce-account .login,
.woocommerce-account .register {
  background: var(--bg); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--border);
}
.woocommerce form.login h2,
.woocommerce form.register h2 {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--text);
}
.woocommerce-account .woocommerce-form__label {
  font-family: 'IRANSans', Tahoma, sans-serif !important;
  font-size: .9rem; color: var(--text);
}
.woocommerce-account input[type="text"],
.woocommerce-account input[type="password"],
.woocommerce-account input[type="email"] {
  width: 100%; padding: .7rem 1rem !important;
  border: 1.5px solid var(--border) !important; border-radius: 10px !important;
  font-family: 'IRANSans', Tahoma, sans-serif !important;
  background: var(--card-bg) !important; color: var(--text) !important;
  font-size: .9rem !important; margin-top: .3rem;
}
.woocommerce-account input[type="submit"],
.woocommerce-account button[type="submit"] {
  background: var(--accent) !important; color: white !important;
  border: none !important; padding: .7rem 2rem !important;
  border-radius: 25px !important; font-family: 'IRANSans', Tahoma, sans-serif !important;
  font-size: .95rem !important; font-weight: 600 !important;
  cursor: pointer !important; margin-top: 1rem !important;
  transition: background .2s !important;
}
.woocommerce-account input[type="submit"]:hover { background: #1440cc !important; }

/* ===== CART PAGE ===== */
.woocommerce-cart .woocommerce { display: block !important; }
.woocommerce table.shop_table {
  width: 100%; border-collapse: collapse;
  font-family: 'IRANSans', Tahoma, sans-serif;
}
.woocommerce table.shop_table th {
  background: var(--bg); padding: .8rem 1rem;
  font-size: .85rem; color: var(--subtext); font-weight: 600;
  text-align: right; border-bottom: 2px solid var(--border);
}
.woocommerce table.shop_table td {
  padding: 1rem; border-bottom: 1px solid var(--border);
  vertical-align: middle; text-align: right;
}
.woocommerce table.shop_table .product-name a { color: var(--text); font-weight: 500; }
.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal { color: var(--accent); font-weight: 700; }
.woocommerce .cart-collaterals { margin-top: 2rem; }
.woocommerce .cart_totals { background: var(--bg); padding: 1.5rem; border-radius: var(--radius); }
.woocommerce .cart_totals h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.woocommerce a.checkout-button,
.woocommerce .wc-proceed-to-checkout a {
  display: block; background: var(--accent) !important; color: white !important;
  text-align: center; padding: .9rem 2rem !important; border-radius: 25px !important;
  font-family: 'IRANSans', Tahoma, sans-serif !important; font-size: 1rem !important;
  font-weight: 600 !important; margin-top: 1rem; transition: background .2s !important;
}
.woocommerce a.checkout-button:hover { background: #1440cc !important; }

/* ===== CHECKOUT PAGE ===== */
.woocommerce-checkout .woocommerce { display: block !important; }
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading { font-family: 'IRANSans', Tahoma, sans-serif; }
.woocommerce form .form-row {
  margin-bottom: 1rem;
}
.woocommerce form .form-row label {
  font-size: .9rem; color: var(--text); margin-bottom: .3rem; display: block;
}
.woocommerce form .form-row .input-text {
  width: 100% !important; padding: .7rem 1rem !important;
  border: 1.5px solid var(--border) !important; border-radius: 10px !important;
  font-family: 'IRANSans', Tahoma, sans-serif !important;
  background: var(--card-bg) !important; color: var(--text) !important;
}
.woocommerce-checkout #payment {
  background: var(--bg); border-radius: var(--radius);
  padding: 1.5rem; margin-top: 1.5rem;
}
.woocommerce-checkout #payment .payment_methods {
  list-style: none; margin-bottom: 1rem;
}
.woocommerce-checkout #payment .payment_methods li {
  padding: .8rem 1rem; border: 1.5px solid var(--border);
  border-radius: 10px; margin-bottom: .5rem; cursor: pointer;
  font-family: 'IRANSans', Tahoma, sans-serif;
}

/* ===== TOAST NOTIFICATION ===== */
.cart-toast {
  position: fixed; bottom: -80px; left: 50%; transform: translateX(-50%);
  background: #2ecc71; color: white; padding: .8rem 1.5rem;
  border-radius: 12px; display: flex; align-items: center; gap: .6rem;
  font-family: 'IRANSans', Tahoma, sans-serif; font-size: .9rem; font-weight: 500;
  box-shadow: 0 8px 30px rgba(46,204,113,.35); z-index: 9999;
  transition: bottom .4s cubic-bezier(.34,1.56,.64,1);
  direction: rtl; white-space: nowrap;
}
.cart-toast.show { bottom: 30px; }
.cart-toast.toast-error { background: #e74c3c; box-shadow: 0 8px 30px rgba(231,76,60,.35); }
.cart-toast svg { flex-shrink: 0; }
.toast-link {
  color: white; background: rgba(255,255,255,.2); padding: .3rem .8rem;
  border-radius: 15px; font-size: .8rem; text-decoration: none;
  transition: background .2s; white-space: nowrap;
}
.toast-link:hover { background: rgba(255,255,255,.35); }

/* ===== ADD TO CART BUTTON STATES ===== */
.add-to-cart-main.loading {
  opacity: .7; cursor: wait; pointer-events: none;
}
.add-to-cart-main.added {
  background: #2ecc71 !important; pointer-events: none;
}
.btn-loading {
  display: inline-flex; align-items: center; gap: .5rem;
}
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn-done { display: inline-flex; align-items: center; gap: .3rem; }

/* ===== CART BOUNCE ===== */
.cart-bounce { animation: cartBounce .6s ease; }
@keyframes cartBounce {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(1.2); }
  60% { transform: scale(.95); }
}

/* ===== CART PAGE STYLES ===== */
.cart-page-wrap {
  margin: 1.5rem 0;
}
.cart-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius); margin-bottom: 1.5rem;
  max-width: 100%;
}
.cart-table {
  width: 100%; min-width: 560px; border-collapse: collapse;
  font-family: 'IRANSans', Tahoma, sans-serif;
  background: var(--card-bg); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
}
.cart-table thead th {
  background: var(--bg); padding: .9rem 1rem;
  font-size: .85rem; color: var(--subtext); font-weight: 600;
  text-align: right; border-bottom: 2px solid var(--border);
}
.cart-table tbody td {
  padding: 1.2rem 1rem; border-bottom: 1px solid var(--border);
  vertical-align: middle; text-align: right; color: var(--text);
}
.cart-table tbody tr:hover {
  background: var(--bg);
}

/* Product thumbnail in cart */
.cart-table .product-thumbnail img {
  width: 72px; height: 72px; object-fit: contain;
  border-radius: 10px; background: #f0f4ff; padding: 8px;
  border: 1px solid var(--border);
}
body.dark-mode .cart-table .product-thumbnail img {
  background: #252840;
}

/* Product name in cart */
.cart-table .product-name a {
  color: var(--text); font-weight: 500; font-size: .95rem;
  text-decoration: none;
}
.cart-table .product-name a:hover { color: var(--accent); }

/* Price styling */
.cart-table .product-price,
.cart-table .product-subtotal {
  color: var(--accent); font-weight: 700; font-size: .95rem;
}

/* Remove button */
.cart-table .product-remove a.remove {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); color: var(--subtext) !important;
  font-size: 1.1rem; text-decoration: none !important;
  transition: background .2s, color .2s;
  border: 1px solid var(--border);
}
.cart-table .product-remove a.remove:hover {
  background: #e74c3c; color: white !important; border-color: #e74c3c;
}

/* Quantity in cart */
.cart-table .product-quantity {
  min-width: 100px;
}
.cart-qty-wrap {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: 25px;
  overflow: hidden;
  background: var(--card-bg);
}
.cart-qty-wrap .quantity {
  display: flex; align-items: center;
  margin: 0 !important;
}
.cart-qty-wrap input[type="number"],
.cart-qty-wrap .qty {
  width: 48px; text-align: center; border: none !important;
  background: none !important; font-family: 'IRANSans', Tahoma, sans-serif !important;
  font-size: .95rem; color: var(--text); padding: .4rem 0;
  -moz-appearance: textfield; outline: none;
  border-radius: 0 !important;
}
.cart-qty-wrap input[type="number"]::-webkit-inner-spin-button,
.cart-qty-wrap input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none; margin: 0;
}
.cart-qty-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text); font-size: 1.1rem; font-weight: 700;
  padding: .35rem .75rem; line-height: 1;
  transition: background .2s;
}
.cart-qty-btn:hover { background: var(--bg); }
.cart-qty-btn.minus { border-inline-start: 1.5px solid var(--border); }
.cart-qty-btn.plus { border-inline-end: 1.5px solid var(--border); }

/* Coupon and update */
.cart-table .actions {
  padding: 1rem !important;
}
.cart-table .actions .coupon {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  float: right; margin-bottom: .5rem;
}
.cart-table .actions .coupon input {
  font-family: 'IRANSans', Tahoma, sans-serif;
  padding: .5rem 1rem; border: 1.5px solid var(--border);
  border-radius: 10px; background: var(--card-bg); color: var(--text);
  font-size: .85rem; width: 180px;
}
.cart-table .actions .coupon .button,
.cart-table .actions button[name="update_cart"] {
  font-family: 'IRANSans', Tahoma, sans-serif;
  background: var(--bg); color: var(--text); border: 1.5px solid var(--border);
  padding: .5rem 1.2rem; border-radius: 10px; font-size: .85rem;
  cursor: pointer; transition: all .2s;
}
.cart-table .actions .coupon .button:hover,
.cart-table .actions button[name="update_cart"]:hover:not(:disabled) {
  background: var(--accent); color: white; border-color: var(--accent);
}
.cart-table .actions button[name="update_cart"]:disabled {
  opacity: .5; cursor: not-allowed;
}

/* Cart totals sidebar */
.cart-collaterals {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: flex-start;
  justify-content: flex-end;
}
.cart-collaterals .cart_totals {
  flex: 0 1 460px; min-width: 300px; background: var(--bg); padding: 1.5rem 2rem;
  border-radius: var(--radius); border: 1px solid var(--border);
}
.cart-collaterals .cart_totals h2 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: var(--text);
}
.cart-collaterals .shop_table {
  width: 100%; border-collapse: collapse;
}
.cart-collaterals .shop_table th {
  padding: .6rem 0; text-align: right; color: var(--subtext); font-weight: 500;
  font-size: .9rem; border-bottom: 1px solid var(--border);
}
.cart-collaterals .shop_table td {
  padding: .6rem 0; text-align: left; color: var(--accent); font-weight: 700;
  font-size: .95rem; border-bottom: 1px solid var(--border);
}
.wc-proceed-to-checkout {
  flex: 1 1 200px; margin-top: .5rem;
}
.wc-proceed-to-checkout a,
.cart-collaterals .wc-proceed-to-checkout a {
  display: block; background: var(--accent) !important; color: white !important;
  text-align: center; padding: 1rem 2rem !important; border-radius: 25px !important;
  font-family: 'IRANSans', Tahoma, sans-serif !important; font-size: 1rem !important;
  font-weight: 600 !important; text-decoration: none !important;
  transition: background .2s !important;
}
.wc-proceed-to-checkout a:hover,
.cart-collaterals .wc-proceed-to-checkout a:hover { background: #1440cc !important; }

/* Empty cart */
.woocommerce-cart .cart-empty {
  text-align: center; padding: 3rem; font-size: 1.1rem; color: var(--subtext);
}
.woocommerce-cart .return-to-shop {
  text-align: center; margin-bottom: 2rem;
}
.woocommerce-cart .return-to-shop a {
  background: var(--accent); color: white; padding: .8rem 2rem;
  border-radius: 25px; text-decoration: none; font-weight: 600;
  transition: background .2s;
}
.woocommerce-cart .return-to-shop a:hover { background: #1440cc; }

/* Responsive cart */
@media (max-width: 768px) {
  .cart-table-wrap { overflow-x: visible; }
  .cart-table { min-width: 0; width: 100%; display: block; border: none; background: transparent; border-radius: 0; }
  .cart-table thead { display: none; }
  .cart-table tbody { display: block; }
  .cart-table tbody tr {
    display: block; background: var(--card-bg);
    border: 1px solid var(--border); border-radius: var(--radius);
    margin-bottom: 1rem; padding: 1rem; width: 100%;
  }
  .cart-table tbody td {
    display: flex; justify-content: space-between; align-items: center;
    padding: .6rem 0; border-bottom: 1px solid var(--border); width: 100%;
    text-align: right;
  }
  .cart-table tbody td::before {
    content: attr(data-title); font-weight: 600; color: var(--subtext); font-size: .8rem;
  }
  .cart-table tbody td:last-child { border-bottom: none; }
  .cart-table .product-remove { justify-content: flex-end; }
  .cart-table .product-remove::before { display: none; }
  .cart-table .product-thumbnail { justify-content: center; padding: .5rem 0 1rem; }
  .cart-table .product-thumbnail::before { display: none; }
  .cart-table .product-thumbnail img { width: 100px; height: 100px; }
  .cart-table .product-name { font-size: .95rem; }
  .cart-table .product-name a { font-weight: 600; }
  .cart-collaterals { flex-direction: column; }
  .actions { flex-direction: column; gap: .8rem; }
  .actions .coupon { width: 100%; display: flex; gap: .5rem; }
  .actions .coupon input { flex: 1; }
}

/* Clearfix */
.woocommerce::after { content: ''; display: table; clear: both; }

/* ===== CHECKOUT: Hide non-essential fields ===== */
#billing_company_field,
#billing_address_1_field,
#billing_address_2_field,
#billing_city_field,
#billing_state_field,
#billing_postcode_field,
#billing_country_field,
.hidden-field {
  display: none !important;
}

/* Checkout form styling */
.woocommerce-checkout #customer_details {
  width: 100%;
}
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3 {
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 1.25rem; padding-bottom: .5rem;
  border-bottom: 2px solid var(--accent);
  color: var(--text);
}
.woocommerce-checkout .form-row label {
  font-size: .9rem; color: var(--text-muted);
  margin-bottom: .35rem; display: block;
}
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  width: 100%; padding: .65rem 1rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: var(--card-bg); color: var(--text);
  font-family: 'IRANSans', Tahoma, sans-serif;
  font-size: .95rem; outline: none;
  transition: border-color .2s;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus {
  border-color: var(--accent);
}

/* ===== STATIC PAGES: Contact, Terms, About ===== */
.contact-page,
.terms-page,
.about-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.contact-page h2,
.terms-page h2,
.about-page h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}

.contact-page h3,
.terms-page h3,
.about-page h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1.5rem 0 0.75rem;
}

.contact-page p,
.terms-page p,
.about-page p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.contact-page ul,
.terms-page ul,
.about-page ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}

.contact-page ul li,
.terms-page ul li,
.about-page ul li {
  color: var(--text-muted);
  padding: 0.4rem 0;
  line-height: 1.8;
}

.contact-page a,
.terms-page a,
.about-page a {
  color: var(--accent);
  text-decoration: none;
}

.contact-page a:hover,
.terms-page a:hover,
.about-page a:hover {
  text-decoration: underline;
}

.contact-info,
.contact-note {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
}

/* Page content wrapper */
.page-content-wrap {
  padding: 2rem 0;
}
