﻿/* ============================================
   PRODUCT PAGE - Fresh Design
   ============================================ */

/* ---- Breadcrumb ---- */
.pd-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: .82rem;
  color: #6c757d;
}
.pd-breadcrumb ol li {
  display: inline-flex;
  align-items: center;
}
.pd-breadcrumb ol li::after {
  content: '>';
  margin: 0 6px;
  color: #adb5bd;
  font-size: .75rem;
}
.pd-breadcrumb ol li:last-child::after { display: none; }
.pd-breadcrumb ol li:last-child { color: #495057; font-weight: 600; }
.pd-breadcrumb ol li a { color: #6c757d; text-decoration: none; }
.pd-breadcrumb ol li a:hover { color: #15803d; }

/* ---- Hero Section ---- */
.pd-hero {
  background: #fff;
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid #e9ecef;
}
.pd-hero-inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

/* Gallery */
.pd-gallery {
  flex: 0 0 48%;
  max-width: 48%;
  position: sticky;
  top: 90px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pd-main-img {
  flex: 1;
  border-radius: 14px;
  border: 1px solid #e9ecef;
  background: #f8f9fa;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 550px;
  overflow: hidden;
}
.pd-main-img img {
  max-width: 100%;
  max-height: 550px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  transition: transform .3s ease;
}
/* Mobile horizontal thumbs (below main image, hidden on desktop) */
.pd-thumbs-mobile {
  display: none;
  overflow-x: auto;
  gap: 8px;
  padding: 10px 0 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pd-thumbs-mobile::-webkit-scrollbar { display: none; }
.pd-thumbs-mobile img {
  width: 64px;
  height: 64px;
  min-width: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  background: #f8f9fa;
}
.pd-thumbs-mobile img:hover { transform: translateY(-2px); }
.pd-thumbs-mobile img.active { border-color: #15803d; box-shadow: 0 2px 8px rgba(21,128,61,.25); }

/* Left vertical thumbs */
.pd-thumbs-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pd-thumbs-left .pd-thumb-list {
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  gap: 8px;
  padding: 2px;
  scrollbar-width: thin;
}
.pd-thumbs-left .pd-thumb-list::-webkit-scrollbar { width: 4px; }
.pd-thumbs-left .pd-thumb-list::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
.pd-thumbs-left .pd-thumb-list img {
  width: 64px;
  height: 64px;
  min-width: 64px;
}
.pd-thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  position: relative;
}
.pd-thumb-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding: 2px 0;
}
.pd-thumb-list::-webkit-scrollbar { display: none; }
.pd-thumb-list img {
  width: 72px;
  height: 72px;
  min-width: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  background: #f8f9fa;
}
.pd-thumb-list img:hover { transform: translateY(-2px); }
.pd-thumb-list img.active { border-color: #15803d; box-shadow: 0 2px 8px rgba(21,128,61,.25); }
.pd-thumb-arrow {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border: 1px solid #dee2e6;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #495057;
  font-size: .75rem;
  transition: all .2s;
}
.pd-thumb-arrow:hover { background: #15803d; color: #fff; border-color: #15803d; }

/* Info Panel */
.pd-info {
  flex: 1;
  min-width: 0;
}
.pd-title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.25;
  margin: 0 0 .5rem;
  letter-spacing: -.3px;
}
.pd-short-desc {
  font-size: .92rem;
  color: #555;
  line-height: 1.55;
  margin: .8rem 0;
  padding-top: .8rem;
  border-top: 1px solid #e9ecef;
}

/* Rating */
.pd-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: .6rem;
}
.pd-stars { display: flex; gap: 2px; }
.pd-stars i { color: #f59e0b; font-size: .9rem; }
.pd-stars-sm i { font-size: .75rem; }
.pd-rating-num { font-size: .85rem; color: #6c757d; font-weight: 600; }
.pd-review-count { font-size: .82rem; color: #6c757d; text-decoration: underline; }
.pd-review-count:hover { color: #15803d; }

/* Meta (Code + Stock) */
.pd-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: .8rem;
  flex-wrap: wrap;
}
.pd-code { font-size: .85rem; color: #495057; }
.pd-stock {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
}
.pd-stock.in-stock { background: #ecfdf5; color: #065f46; }
.pd-stock.out-stock { background: #fef2f2; color: #991b1b; }

/* Quick Specs */
.pd-quick-specs {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.pd-qs-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 6px 12px;
}
.pd-qs-icon {
  width: 32px;
  height: 32px;
  background: #f0fdf4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803d;
  font-size: .9rem;
  flex-shrink: 0;
}
.pd-qs-icon svg {
  display: block;
}
.pd-qs-text { display: flex; flex-direction: column; line-height: 1.2; }
.pd-qs-val { font-size: .82rem; font-weight: 700; color: #1e293b; }
.pd-qs-key { font-size: .7rem; color: #6c757d; }

/* Price Box */
.pd-price-box {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: .8rem 1rem;
  margin-bottom: .8rem;
}
.pd-price-main { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.pd-price { font-size: 1.6rem; font-weight: 800; color: #166534; letter-spacing: -.3px; }
.pd-gst-note { font-size: .78rem; font-weight: 600; color: #6c757d; }

/* Specs List */
.pd-specs-list {
  margin-bottom: 1rem;
}
.pd-spec-row {
  display: flex;
  gap: 4px;
  padding: 4px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: .85rem;
}
.pd-spec-key { color: #6c757d; font-weight: 500; min-width: 120px; display: flex; align-items: center; gap: 4px; }
.pd-spec-val { color: #1e293b; font-weight: 600; }

/* CTA Buttons */
.pd-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}
.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: .7rem 1.2rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s;
  flex: 1;
  text-align: center;
}
.pd-btn-price {
  background: #1a1a2e;
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,26,46,.3);
}
.pd-btn-price:hover { background: #15803d; color: #fff; transform: translateY(-1px); }
.pd-btn-whatsapp {
  background: #fff;
  color: #1a1a2e;
  border: 2px solid #1a1a2e;
}
.pd-btn-whatsapp:hover { background: #f0fdf4; color: #15803d; }
.pd-btn-submit {
  background: #15803d;
  color: #fff;
  padding: .6rem 1.5rem;
}
.pd-btn-submit:hover { background: #166534; color: #fff; }

/* ---- Trust Strip ---- */
.pd-trust-strip {
  background: #f8fafc;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  padding: .8rem 0;
}
.pd-trust-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.pd-trust-ico {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803d;
  font-size: .9rem;
}
.pd-trust-item strong {
  font-size: .78rem;
  color: #1e293b;
  display: block;
  line-height: 1.2;
}
.pd-trust-item span {
  font-size: .68rem;
  color: #6c757d;
}

/* ---- Tabs Section ---- */
.pd-tabs-section {
  padding: 2rem 0;
}
.pd-tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pd-tab-nav::-webkit-scrollbar { display: none; }
.pd-tab-btn {
  padding: .55rem 1rem;
  background: none;
  border: none;
  font-size: .82rem;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 8px 8px 0 0;
  transition: all .2s;
}
.pd-tab-btn:hover { color: #15803d; background: #f0fdf4; }
.pd-tab-btn.active {
  background: #15803d;
  color: #fff;
}
.pd-tab-content { display: none; }
.pd-tab-content.active { display: block; }

/* ---- Overview Tab ---- */
.pd-overview-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}
.pd-overview-desc {
  font-size: .9rem;
  color: #495057;
  line-height: 1.7;
}
.pd-overview-desc h1, .pd-overview-desc h2, .pd-overview-desc h3 { color: #1a1a2e; margin: 1rem 0 .5rem; }
.pd-overview-desc p { margin: 0 0 .8rem; }
.pd-overview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pd-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: .8rem;
  background: #f8fafc;
  border: 1px solid #e9ecef;
  border-radius: 10px;
}
.pd-feature-ico {
  width: 44px;
  height: 44px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803d;
  font-size: 1.1rem;
}
.pd-feature-item span { font-size: .78rem; font-weight: 600; color: #1e293b; }

/* Key Features Tab */
.pd-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  max-width: 600px;
}
.pd-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: #334155;
}
.pd-feature-list li i { color: #15803d; margin-top: 3px; }

/* ---- Specifications Tab ---- */
.pd-specs-table { overflow-x: auto; }
.pd-specs-table table {
  width: 100%;
  border-collapse: collapse;
}
.pd-specs-table th,
.pd-specs-table td {
  padding: .6rem .8rem;
  text-align: left;
  font-size: .85rem;
  border-bottom: 1px solid #e9ecef;
}
.pd-specs-table th {
  width: 220px;
  font-weight: 600;
  color: #495057;
  background: #f8fafc;
}
.pd-specs-table td { color: #1e293b; }

/* ---- Applications Tab ---- */
.pd-apps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.pd-app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  min-width: 90px;
  flex: 1 1 90px;
  max-width: 120px;
  padding: .8rem .5rem;
  border-radius: 10px;
}
.pd-app-ico {
  width: 48px;
  height: 48px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803d;
  font-size: 1.2rem;
}
.pd-app-item span { font-size: .78rem; font-weight: 600; color: #1e293b; }

/* ---- Customisation Tab ---- */
.pd-custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.pd-custom-item {
  background: #f8fafc;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
}
.pd-custom-ico {
  width: 50px;
  height: 50px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803d;
  font-size: 1.2rem;
  margin: 0 auto .8rem;
}
.pd-custom-item strong { display: block; font-size: .9rem; color: #1a1a2e; margin-bottom: .4rem; }
.pd-custom-item p { font-size: .82rem; color: #6c757d; margin: 0; line-height: 1.5; }

/* ---- FAQ Tab ---- */
.pd-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pd-faq-item {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}
.pd-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1rem;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .85rem;
  font-weight: 600;
  color: #1e293b;
  gap: 10px;
}
.pd-faq-q i {
  font-size: 1rem;
  color: #15803d;
  transition: transform .3s;
  flex-shrink: 0;
}
.pd-faq-item.open .pd-faq-q i { transform: rotate(45deg); }
.pd-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.pd-faq-item.open .pd-faq-a { max-height: 300px; }
.pd-faq-a p {
  padding: 0 1rem 1rem;
  margin: 0;
  font-size: .85rem;
  color: #495057;
  line-height: 1.6;
}

/* ---- Reviews Tab ---- */
.pd-reviews-summary {
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}
.pd-reviews-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
  display: block;
  line-height: 1;
  margin-bottom: .3rem;
}
.pd-reviews-summary .pd-stars { justify-content: center; margin-bottom: .3rem; }
.pd-reviews-summary span:last-child { font-size: .85rem; color: #6c757d; }

.pd-reviews-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.pd-review-card {
  background: #f8fafc;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1rem;
}
.pd-review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .5rem;
}
.pd-review-avatar {
  width: 38px;
  height: 38px;
  background: #15803d;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}
.pd-review-date {
  margin-left: auto;
  font-size: .78rem;
  color: #6c757d;
}
.pd-review-body {
  margin: 0;
  font-size: .88rem;
  color: #495057;
  line-height: 1.6;
}

/* Review Form */
.pd-review-form {
  background: #f8fafc;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
}
.pd-review-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 1rem;
}
.pd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pd-form-group {
  margin-bottom: .8rem;
}
.pd-form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
}
.pd-form-group input,
.pd-form-group select,
.pd-form-group textarea {
  width: 100%;
  padding: .5rem .7rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: .85rem;
  font-family: inherit;
  transition: border-color .2s;
}
.pd-form-group input:focus,
.pd-form-group select:focus,
.pd-form-group textarea:focus {
  outline: none;
  border-color: #15803d;
  box-shadow: 0 0 0 3px rgba(21,128,61,.1);
}

/* Alerts */
.pd-alert {
  padding: .6rem 1rem;
  border-radius: 8px;
  font-size: .85rem;
  margin-bottom: 1rem;
}
.pd-alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.pd-alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ---- Related Products Section ---- */
.pd-related-section {
  padding: 2rem 0;
  background: #fff;
  border-top: 1px solid #e9ecef;
}
.pd-related-heading {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 1.2rem;
}

/* ---- Related Products ---- */
.pd-related-wrap {
  position: relative;
}
.pd-related-list {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}
.pd-related-list::-webkit-scrollbar { display: none; }
.pd-rel-card {
  min-width: 200px;
  max-width: 200px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
  flex-shrink: 0;
}
.pd-rel-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.pd-rel-img {
  display: block;
  height: 160px;
  overflow: hidden;
}
.pd-rel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.pd-rel-card:hover .pd-rel-img img { transform: scale(1.05); }
.pd-rel-info {
  padding: .8rem;
}
.pd-rel-info h4 {
  font-size: .82rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 .3rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pd-rel-info h4 a { color: inherit; text-decoration: none; }
.pd-rel-info h4 a:hover { color: #15803d; }
.pd-rel-price {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #15803d;
  margin-bottom: .4rem;
}
.pd-rel-btn {
  display: block;
  text-align: center;
  padding: .4rem;
  background: #1a1a2e;
  color: #fff;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.pd-rel-btn:hover { background: #15803d; color: #fff; }
.pd-rel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #495057;
  font-size: .85rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: all .2s;
}
.pd-rel-arrow:hover { background: #15803d; color: #fff; border-color: #15803d; }
.pd-rel-prev { left: -16px; }
.pd-rel-next { right: -16px; }

/* ---- Footer CTA Band ---- */
.pd-cta-band {
  background: #1a1a2e;
  padding: 1.5rem 0;
}
.pd-cta-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.pd-cta-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pd-cta-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.pd-cta-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.pd-cta-text p {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.pd-cta-mid {
  display: flex;
  gap: 1.2rem;
  flex: 1;
  justify-content: center;
}
.pd-cta-feat {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-cta-feat-ico {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  font-size: .8rem;
  flex-shrink: 0;
}
.pd-cta-feat span {
  font-size: .72rem;
  color: rgba(255,255,255,.8);
  line-height: 1.3;
  white-space: nowrap;
}
.pd-cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.pd-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .6rem 1.5rem;
  background: #1a1a2e;
  color: #fff;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.pd-cta-btn:hover { background: #15803d; color: #fff; }
.pd-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
.pd-cta-wa i { color: #4ade80; }
.pd-cta-wa:hover { color: #fff; }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .pd-hero-inner { flex-direction: column; }
  .pd-gallery { flex: none; max-width: 100%; position: static; flex-direction: column; }
  .pd-thumbs-left { display: none !important; }
  .pd-thumbs-mobile { display: flex !important; }
  .pd-main-img { max-width: 100%; margin: 0 auto; width: 100%; max-height: 450px; }
  .pd-main-img img { max-height: 450px; }
  .pd-trust-row { flex-wrap: wrap; justify-content: center; }
  .pd-trust-item { flex: 0 0 calc(50% - .5rem); max-width: calc(50% - .5rem); }
  .pd-overview-grid { grid-template-columns: 1fr; }
  .pd-faq-grid { grid-template-columns: 1fr; }
  .pd-custom-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-cta-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .pd-cta-left { justify-content: center; }
  .pd-cta-mid { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 575.98px) {
  .pd-hero { padding: 1rem 0 1.5rem; }
  .pd-title { font-size: 1.2rem; }
  .pd-quick-specs { gap: 8px; }
  .pd-qs-item { padding: 4px 8px; }
  .pd-qs-icon { width: 28px; height: 28px; font-size: .75rem; }
  .pd-qs-val { font-size: .75rem; }
  .pd-qs-key { font-size: .65rem; }
  .pd-cta-row { flex-direction: column; }
  .pd-btn { padding: .6rem; font-size: .85rem; }
  .pd-overview-features { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pd-feature-item { padding: .5rem; }
  .pd-feature-ico { width: 36px; height: 36px; font-size: .9rem; }
  .pd-custom-grid { grid-template-columns: 1fr; }
  .pd-trust-item { flex: 0 0 100%; max-width: 100%; justify-content: center; }
  .pd-rel-card { min-width: 160px; max-width: 160px; }
  .pd-rel-img { height: 130px; }
  .pd-form-row { grid-template-columns: 1fr; }
  .pd-tab-btn { padding: .45rem .7rem; font-size: .75rem; }
  .pd-cta-mid { gap: .8rem; }
  .pd-cta-feat span { font-size: .65rem; }
}
