/* ================= GLOBAL RESETS & FONTS ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Vazirmatn', sans-serif;
}

:root {
  --primary-color: #ef394e;
  --primary-hover: #d82b3f;
  --dark-blue: #0f172a;
  --card-bg: #ffffff;
  --bg-page: #f8fafc;
  --border-color: #e2e8f0;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --accent-badge: #10b981;
}

body {
  background-color: var(--bg-page);
  color: var(--text-main);
  direction: rtl;
  overflow-x: hidden;
}

.container {
  width: 94%;
  max-width: 1280px;
  margin: 0 auto;
}

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

/* ================= HEADER ================= */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  background: var(--primary-color);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -1px;
}

.logo-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.search-bar-wrap {
  flex: 1;
  max-width: 650px;
}

.search-form {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}

.search-form:focus-within {
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(239, 57, 78, 0.1);
}

.search-cat-select {
  background: #e2e8f0;
  border: none;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
}

.search-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 0.9rem;
  outline: none;
  color: var(--text-main);
}

.search-btn {
  background: transparent;
  border: none;
  padding: 0 16px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
}

.search-btn:hover {
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-auth-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-auth-header:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.cart-header-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff1f2;
  border: 1px solid #ffe4e6;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-header-btn:hover {
  background: #ffe4e6;
}

.cart-icon-wrap {
  position: relative;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 1px 6px;
  border-radius: 10px;
}

.cart-btn-texts {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.cart-btn-label {
  font-size: 0.75rem;
  color: #881337;
}

.cart-btn-total {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--primary-color);
}

/* ================= NAVBAR ================= */
.main-navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-link {
  display: block;
  padding: 12px 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: #475569;
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}

.nav-link.highlight-link {
  color: #0284c7;
  font-weight: bold;
}

.nav-support {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ================= HERO & FINDER ================= */
.hero-finder-section {
  padding: 25px 0;
}

.finder-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 16px;
  padding: 30px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.finder-badge {
  background: var(--primary-color);
  color: #ffffff;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: bold;
}

.finder-header h2 {
  font-size: 1.5rem;
  margin: 8px 0 4px;
}

.finder-header p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.finder-filters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.finder-select-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.finder-select-group label {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.finder-select-group select {
  background: #334155;
  border: 1px solid #475569;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
}

.finder-select-group select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.finder-actions {
  display: flex;
  gap: 12px;
}

.btn-finder-search {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-finder-search:hover {
  background: var(--primary-hover);
}

.btn-finder-reset {
  background: #334155;
  color: #cbd5e1;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}

/* ================= STORY CATEGORIES ================= */
.story-categories-section {
  padding: 10px 0 25px;
}

.story-cat-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.story-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  min-width: 95px;
}

.story-cat-icon {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.story-cat-item:hover .story-cat-icon {
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.story-cat-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  text-align: center;
}

/* ================= SPECIAL OFFERS ================= */
.special-deals-section {
  padding: 20px 0;
}

.special-deal-banner {
  background: var(--primary-color);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 20px;
  color: #ffffff;
  align-items: center;
}

.deal-badge-col {
  width: 220px;
  flex-shrink: 0;
}

.deal-tag {
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: bold;
}

.deal-badge-col h2 {
  font-size: 1.3rem;
  margin: 12px 0 6px;
}

.deal-badge-col p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 16px;
}

.deal-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.time-box {
  background: #ffffff;
  color: var(--primary-color);
  padding: 6px 10px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}

.time-box span {
  font-size: 1rem;
  font-weight: 800;
}

.time-box small {
  font-size: 0.65rem;
}

.deal-products-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  flex: 1;
  padding: 5px 0;
}

/* ================= PRODUCT CARDS ================= */
.product-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border-color: #cbd5e1;
}

.product-card-special {
  min-width: 220px;
  max-width: 220px;
  border: none;
}

.product-img-wrap {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.product-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-badge-discount {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 2px 7px;
  border-radius: 12px;
}

.product-cat {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 8px;
  height: 42px;
  overflow: hidden;
}

.product-car-tag {
  font-size: 0.8rem;
  color: #0369a1;
  background: #e0f2fe;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
  align-self: flex-start;
}

.product-pricing {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 12px;
}

.product-old-price {
  font-size: 0.8rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.product-current-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
}

.product-btn-add {
  background: #f1f5f9;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  padding: 8px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.product-btn-add:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

/* ================= SECTION HEADERS & TABS ================= */
.main-tabs-products-section, .systems-section {
  padding: 35px 0;
}

.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 12px;
}

.section-title-wrap h2 {
  font-size: 1.35rem;
  color: #0f172a;
}

.section-title-wrap p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.section-tabs, .systems-nav-tabs {
  display: flex;
  gap: 8px;
}

.sec-tab-btn, .sys-tab-btn {
  background: transparent;
  border: none;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}

.sec-tab-btn.active, .sys-tab-btn.active {
  background: #0f172a;
  color: #ffffff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ================= FEATURES BAR ================= */
.features-bar-section {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
  margin-top: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  font-size: 2rem;
}

.feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ================= FOOTER ================= */
.main-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding-top: 45px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-brand h3 {
  color: #ffffff;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  color: #94a3b8;
  font-size: 0.88rem;
  transition: color 0.2s;
}

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

.contact-line {
  margin-top: 15px;
  font-weight: bold;
  color: #38bdf8;
}

.enamad-placeholder {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.trust-badge {
  background: #1e293b;
  border: 1px solid #334155;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 15px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* ================= CART DRAWER ================= */
.cart-drawer {
  position: fixed;
  top: 0;
  left: -400px;
  width: 380px;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  box-shadow: 5px 0 25px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: left 0.3s ease;
}

.cart-drawer.active {
  left: 0;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
}

.cart-overlay.active {
  display: block;
}

.cart-drawer-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #64748b;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.drawer-cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
}

.drawer-cart-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 6px;
}

.drawer-cart-info {
  flex: 1;
}

.drawer-cart-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.drawer-cart-price {
  font-size: 0.82rem;
  color: var(--primary-color);
  font-weight: bold;
}

.drawer-cart-remove {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 1.1rem;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background: #f8fafc;
}

.drawer-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.drawer-total-price {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.checkout-btn {
  width: 100%;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
}

/* ================= AUTH MODAL ================= */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
}

.auth-modal-overlay.active {
  display: flex;
}

.auth-modal-card {
  background: #ffffff;
  width: 90%;
  max-width: 420px;
  border-radius: 14px;
  padding: 25px;
  position: relative;
}

.auth-close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.auth-tabs {
  display: flex;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 20px;
}

.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px;
  font-weight: bold;
  color: #64748b;
  cursor: pointer;
}

.auth-tab.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: -2px;
}

.auth-form-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
}

.form-group input {
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  outline: none;
}

.form-group input:focus {
  border-color: var(--primary-color);
}

.btn-submit-auth {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

/* ================= PRODUCT DETAIL MODAL (DIGIKALA STYLE) ================= */
.pdm-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.pdm-modal-overlay.active {
  display: flex;
}

.pdm-modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: pdmSlideUp 0.3s ease;
}

@keyframes pdmSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.pdm-close-btn {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 28px;
  background: #f1f3f8;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.2s;
}

.pdm-close-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.pdm-content-scroll {
  overflow-y: auto;
  padding: 30px;
  max-height: calc(90vh - 20px);
}

.pdm-main-grid {
  display: grid;
  grid-template-columns: 320px 1fr 300px;
  gap: 25px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f0f0f1;
  padding-bottom: 30px;
}

.pdm-gallery {
  text-align: center;
}

.pdm-main-img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid #f0f0f1;
  padding: 10px;
  background: #fafafa;
}

.pdm-info h2 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.6;
}

.pdm-brand-badge {
  display: inline-block;
  background: #eef3ff;
  color: #1e3a8a;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.pdm-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #f59e0b;
  margin-bottom: 15px;
}

.pdm-fast-specs {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  font-size: 0.9rem;
  color: #616161;
}

.pdm-fast-specs li {
  margin-bottom: 8px;
}

.pdm-fast-specs li strong {
  color: #333;
}

.pdm-buy-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pdm-seller-info {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.pdm-seller-title {
  font-weight: bold;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.pdm-guarantee, .pdm-shipping {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdm-price-row {
  margin: 15px 0;
  text-align: left;
}

.pdm-old-price {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.pdm-final-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
}

.pdm-add-cart-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.pdm-add-cart-btn:hover {
  background: var(--primary-hover);
}

.pdm-sellers-table-section {
  margin-bottom: 40px;
}

.pdm-sellers-table-section h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #1e293b;
}

.pdm-sellers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdm-seller-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.pdm-tabs-header {
  display: flex;
  gap: 20px;
  border-bottom: 2px solid #f1f5f9;
  margin-bottom: 20px;
}

.pdm-tab-btn {
  padding: 10px 15px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  color: #64748b;
  cursor: pointer;
  position: relative;
}

.pdm-tab-btn.active {
  color: var(--primary-color);
}

.pdm-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
}

.pdm-tab-content {
  display: none;
}

.pdm-tab-content.active {
  display: block;
}

.pdm-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.pdm-specs-table tr {
  border-bottom: 1px solid #f1f5f9;
}

.pdm-specs-table td {
  padding: 12px;
  font-size: 0.95rem;
}

.pdm-specs-table td.spec-title {
  width: 200px;
  background: #f8fafc;
  color: #475569;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .finder-filters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
  }
  .search-bar-wrap {
    order: 3;
    max-width: 100%;
    width: 100%;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .finder-filters-grid {
    grid-template-columns: 1fr;
  }
  .special-deal-banner {
    flex-direction: column;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .pdm-main-grid {
    grid-template-columns: 1fr;
  }
  .pdm-seller-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
