/**
 * /assets/css/tire-pdp-final.css — Universal Shared Tire PDP Design System
 * İzmir Jant Dünyası — Modern High-Conversion E-Commerce Interface
 */

:root {
  --pdp-s-bg: #f8fafc;
  --pdp-s-surface: #ffffff;
  --pdp-s-text-main: #0f172a;
  --pdp-s-text-sub: #334155;
  --pdp-s-text-muted: #64748b;
  --pdp-s-border: #e2e8f0;
  --pdp-s-border-subtle: #f1f5f9;
  --pdp-s-accent: #2563eb;
  --pdp-s-accent-hover: #1d4ed8;
  --pdp-s-btn-main: #0f172a;
  --pdp-s-btn-main-hover: #1e293b;
  --pdp-s-radius-sm: 8px;
  --pdp-s-radius-md: 12px;
  --pdp-s-radius-lg: 16px;
  --pdp-s-radius-xl: 20px;
  --pdp-s-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  --pdp-s-shadow-hover: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.pdp-shared-root {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--pdp-s-text-main);
  background: var(--pdp-s-bg);
  padding-bottom: 80px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.pdp-shared-root *,
.pdp-shared-root *::before,
.pdp-shared-root *::after {
  box-sizing: border-box;
}

.pdp-shared-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.pdp-shared-hero {
  padding: 24px 0 32px;
  width: 100%;
}

.pdp-shared-hero-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 40px;
  align-items: start;
  width: 100%;
}

.pdp-shared-gallery {
  width: 100%;
  min-width: 0;
}

.pdp-shared-stage {
  background: var(--pdp-s-surface);
  border: 1px solid var(--pdp-s-border);
  border-radius: var(--pdp-s-radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  position: relative;
  box-shadow: var(--pdp-s-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.pdp-shared-stage:hover {
  box-shadow: var(--pdp-s-shadow-hover);
}

.pdp-shared-main-img {
  max-width: 100%;
  max-height: 440px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.10));
}

.pdp-shared-zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pdp-s-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pdp-shared-buybox {
  background: var(--pdp-s-surface);
  border: 1px solid var(--pdp-s-border);
  border-radius: var(--pdp-s-radius-xl);
  padding: 36px;
  box-shadow: var(--pdp-s-shadow);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.pdp-shared-brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  height: 36px;
  max-height: 40px;
}

.pdp-shared-brand-logo-wrap a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.pdp-shared-brand-logo-img {
  height: 30px;
  max-height: 34px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.04));
  transition: transform 0.15s ease;
}

.pdp-shared-brand-logo-wrap a:hover .pdp-shared-brand-logo-img {
  transform: scale(1.03);
}

.pdp-shared-brand-eyebrow {
  font-size: 13px;
  font-weight: 800;
  color: var(--pdp-s-accent);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.pdp-shared-brand-eyebrow a {
  color: var(--pdp-s-accent);
  text-decoration: none;
}

.pdp-shared-brand-eyebrow a:hover {
  text-decoration: underline;
}

.pdp-shared-h1 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--pdp-s-text-main);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  word-break: normal;
  overflow-wrap: break-word;
}

.pdp-shared-variant-line {
  font-size: 15px;
  font-weight: 600;
  color: var(--pdp-s-text-sub);
  margin-bottom: 16px;
  word-break: normal;
  overflow-wrap: break-word;
}

.pdp-shared-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pdp-shared-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--pdp-s-radius-sm);
  background: #f1f5f9;
  color: #334155;
  white-space: nowrap;
}

.pdp-shared-chip--season {
  background: #eff6ff;
  color: #1d4ed8;
}

.pdp-shared-chip--tech {
  background: #fdf2f8;
  color: #be185d;
}

.pdp-shared-chip--oem {
  background: #fefce8;
  color: #a16207;
}

.pdp-shared-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-shared-price {
  font-size: 34px;
  font-weight: 900;
  color: var(--pdp-s-text-main);
  letter-spacing: -0.02em;
}

.pdp-shared-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}

.pdp-shared-stock.in {
  color: #059669;
}

.pdp-shared-stock.ask {
  color: #d97706;
}

.pdp-shared-stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.pdp-shared-price-note {
  font-size: 12px;
  color: var(--pdp-s-text-muted);
  margin-bottom: 18px;
}

/* COMPACT INTEGRATED EU LABEL */
.pdp-shared-eu-strip {
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid var(--pdp-s-border);
  border-radius: var(--pdp-s-radius-md);
  padding: 10px 14px;
  margin-bottom: 18px;
  width: 100%;
}

.pdp-shared-eu-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--pdp-s-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pdp-shared-eu-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pdp-shared-eu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
}

.pdp-shared-eu-badge.grade-a { background: #16a34a; }
.pdp-shared-eu-badge.grade-b { background: #65a30d; }
.pdp-shared-eu-badge.grade-c { background: #ca8a04; }
.pdp-shared-eu-badge.grade-d { background: #ea580c; }
.pdp-shared-eu-badge.grade-e { background: #dc2626; }
.pdp-shared-eu-badge.grade-noise {
  background: #334155;
  width: auto;
  padding: 0 6px;
  font-size: 11px;
}

.pdp-shared-eu-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--pdp-s-text-sub);
}

/* PRIMARY CTA */
.pdp-shared-btn-cart {
  width: 100%;
  height: 54px;
  background: var(--pdp-s-btn-main);
  color: #ffffff;
  border: none;
  border-radius: var(--pdp-s-radius-md);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  margin-bottom: 12px;
}

.pdp-shared-btn-cart:hover {
  background: var(--pdp-s-btn-main-hover);
  transform: translateY(-1px);
}

.pdp-shared-sec-actions {
  display: flex;
  width: 100%;
}

.pdp-shared-btn-wa {
  width: 100%;
  height: 48px;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  border-radius: var(--pdp-s-radius-md);
  font-size: 14.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.pdp-shared-btn-wa:hover {
  background: #d1fae5;
}

/* ==========================================================================
   2. TRUST STRIP (Thin clean single row)
   ========================================================================== */
.pdp-shared-trust-strip {
  border-top: 1px solid var(--pdp-s-border);
  border-bottom: 1px solid var(--pdp-s-border);
  background: var(--pdp-s-surface);
  padding: 16px 0;
  margin-bottom: 36px;
  width: 100%;
}

.pdp-shared-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.pdp-shared-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pdp-s-text-sub);
  text-align: center;
}

.pdp-shared-trust-item i {
  font-size: 18px;
}

.text-green { color: #10b981; }
.text-blue { color: #2563eb; }
.text-purple { color: #8b5cf6; }
.text-amber { color: #f59e0b; }

/* ==========================================================================
   3. 6-TAB SYSTEM (Desktop Tabs / Mobile Accordion)
   ========================================================================== */
.pdp-shared-tabs-section {
  margin-bottom: 48px;
  width: 100%;
}

.pdp-shared-tab-nav {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--pdp-s-border);
  margin-bottom: 24px;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
}

.pdp-shared-tab-nav::-webkit-scrollbar {
  display: none;
}

.pdp-shared-tab-btn {
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--pdp-s-text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
  margin-bottom: -2px;
}

.pdp-shared-tab-btn:hover {
  color: var(--pdp-s-accent);
}

.pdp-shared-tab-btn.active {
  color: var(--pdp-s-accent);
  border-bottom-color: var(--pdp-s-accent);
}

.pdp-shared-tab-content {
  background: var(--pdp-s-surface);
  border: 1px solid var(--pdp-s-border);
  border-radius: var(--pdp-s-radius-xl);
  padding: 36px;
  box-shadow: var(--pdp-s-shadow);
  width: 100%;
  box-sizing: border-box;
}

.pdp-shared-panel {
  display: none;
  width: 100%;
}

.pdp-shared-panel.active {
  display: block;
}

.pdp-shared-acc-header {
  display: none; /* Hidden on desktop */
}

.pdp-shared-tab-h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--pdp-s-text-main);
  margin: 0 0 16px;
}

.pdp-shared-desc-p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--pdp-s-text-sub);
  margin-bottom: 20px;
}

.pdp-shared-model-banner {
  margin-bottom: 24px;
  border-radius: var(--pdp-s-radius-lg);
  overflow: hidden;
  max-width: 100%;
}

.pdp-shared-banner-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.pdp-shared-tech-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  width: 100%;
}

.pdp-shared-tech-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--pdp-s-border);
  border-radius: var(--pdp-s-radius-lg);
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.pdp-shared-tech-img-box {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--pdp-s-border);
  border-radius: var(--pdp-s-radius-md);
  padding: 6px;
  overflow: hidden;
  box-sizing: border-box;
}

.pdp-shared-tech-img-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.pdp-shared-tech-info {
  width: 100%;
  min-width: 0;
}

.pdp-shared-tech-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--pdp-s-text-main);
  margin: 0 0 6px;
}

.pdp-shared-tech-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--pdp-s-text-sub);
  margin: 0;
}

/* Tab 2: Spec Table */
.pdp-shared-spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 20px;
  width: 100%;
}

.pdp-shared-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: var(--pdp-s-radius-sm);
  font-size: 13.5px;
}

.spec-label {
  color: #64748b;
  font-weight: 600;
}

.spec-val {
  color: #0f172a;
  font-weight: 700;
  text-align: right;
}

/* Tab 3: Services */
.pdp-shared-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

.pdp-shared-service-box {
  background: #f8fafc;
  border: 1px solid var(--pdp-s-border);
  border-radius: var(--pdp-s-radius-lg);
  padding: 24px;
  box-sizing: border-box;
}

.pdp-shared-service-box i {
  font-size: 28px;
  color: var(--pdp-s-accent);
  margin-bottom: 12px;
  display: block;
}

.pdp-shared-service-box h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
}

.pdp-shared-service-box p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--pdp-s-text-sub);
  margin: 0;
}

/* Tab 4: Guide FAQ */
.pdp-shared-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  width: 100%;
}

.pdp-shared-faq-card {
  background: #f8fafc;
  border: 1px solid var(--pdp-s-border);
  border-radius: var(--pdp-s-radius-md);
  padding: 18px 20px;
  box-sizing: border-box;
}

.pdp-shared-faq-card h4 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--pdp-s-text-main);
}

.pdp-shared-faq-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--pdp-s-text-sub);
  margin: 0;
}

/* Tab 5: Payment & Installments */
.pdp-shared-install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
  width: 100%;
}

.pdp-shared-install-card {
  background: var(--pdp-s-surface);
  border: 1px solid var(--pdp-s-border);
  border-radius: var(--pdp-s-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--pdp-s-shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.pdp-shared-install-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pdp-s-shadow-hover);
}

.pdp-shared-install-head {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-weight: 800;
}

.pdp-shared-install-bank {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.pdp-shared-install-issuer {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 600;
}

/* Card Brand Colors matching visual */
.bank-bonus .pdp-shared-install-head { background: linear-gradient(135deg, #16a34a, #22c55e); }
.bank-axess .pdp-shared-install-head { background: linear-gradient(135deg, #d97706, #f59e0b); }
.bank-world .pdp-shared-install-head { background: linear-gradient(135deg, #6d28d9, #8b5cf6); }
.bank-maximum .pdp-shared-install-head { background: linear-gradient(135deg, #db2777, #ec4899); }
.bank-paraf .pdp-shared-install-head { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.bank-kuveyt .pdp-shared-install-head { background: linear-gradient(135deg, #065f46, #047857); }
.bank-ziraat .pdp-shared-install-head { background: linear-gradient(135deg, #b91c1c, #dc2626); }
.bank-qnb .pdp-shared-install-head { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
.bank-mailorder .pdp-shared-install-head { background: linear-gradient(135deg, #0f172a, #334155); }

.pdp-shared-install-body {
  padding: 16px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.pdp-shared-install-count {
  font-size: 20px;
  font-weight: 900;
  color: var(--pdp-s-text-main);
  letter-spacing: -0.01em;
}

.pdp-shared-install-monthly {
  font-size: 14.5px;
  color: var(--pdp-s-accent);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pdp-shared-install-monthly strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--pdp-s-text-main);
}

.pdp-shared-install-monthly span {
  font-size: 12px;
  color: #64748b;
}

.pdp-shared-install-total {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.pdp-shared-install-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  margin-top: 4px;
}

.pdp-shared-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

.pdp-shared-pay-item {
  background: #f8fafc;
  border: 1px solid var(--pdp-s-border);
  border-radius: var(--pdp-s-radius-lg);
  padding: 24px;
  box-sizing: border-box;
}

.pdp-shared-pay-item i {
  font-size: 28px;
  color: #10b981;
  margin-bottom: 12px;
  display: block;
}

.pdp-shared-pay-item strong {
  font-size: 15px;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}

.pdp-shared-pay-item span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--pdp-s-text-sub);
  display: block;
}

/* Tab 6: Reviews */
.pdp-shared-empty-reviews {
  text-align: center;
  padding: 48px 20px;
}

.pdp-shared-empty-reviews i {
  font-size: 44px;
  color: #94a3b8;
  margin-bottom: 12px;
  display: block;
}

.pdp-shared-empty-reviews p {
  font-size: 15px;
  font-weight: 700;
  color: #334155;
  margin: 0 0 4px;
}

.pdp-shared-empty-reviews span {
  font-size: 13px;
  color: #64748b;
}

/* ==========================================================================
   4. POST-TAB COMMERCE SECTIONS
   ========================================================================== */
.pdp-shared-post-section {
  margin-bottom: 48px;
  width: 100%;
}

.pdp-shared-sec-header {
  margin-bottom: 20px;
}

.pdp-shared-sec-header--flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.pdp-shared-sec-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--pdp-s-accent);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.pdp-shared-sec-h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--pdp-s-text-main);
  margin: 0;
}

.pdp-shared-view-all {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pdp-s-accent);
  text-decoration: none;
}

.pdp-shared-view-all:hover {
  text-decoration: underline;
}

.pdp-shared-sizes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.pdp-shared-size-pill {
  display: inline-flex;
  flex-direction: column;
  padding: 8px 14px;
  background: var(--pdp-s-surface);
  border: 1px solid var(--pdp-s-border);
  border-radius: var(--pdp-s-radius-md);
  text-decoration: none;
  transition: all 0.15s ease;
}

.pdp-shared-size-pill:hover {
  border-color: var(--pdp-s-accent);
  background: #eff6ff;
  transform: translateY(-1px);
}

.pdp-shared-size-pill strong {
  font-size: 13.5px;
  color: var(--pdp-s-text-main);
}

.pdp-shared-size-pill span {
  font-size: 11px;
  font-weight: 700;
  color: var(--pdp-s-accent);
}

.pdp-shared-alts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.pdp-shared-alt-card {
  background: var(--pdp-s-surface);
  border: 1px solid var(--pdp-s-border);
  border-radius: var(--pdp-s-radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}

.pdp-shared-alt-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pdp-s-shadow-hover);
}

.pdp-shared-alt-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  margin-bottom: 12px;
  width: 100%;
}

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

.pdp-shared-alt-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pdp-shared-alt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.pdp-shared-alt-brand-logo-link {
  display: inline-flex;
  align-items: center;
  height: 22px;
  max-width: 100px;
  text-decoration: none;
}

.pdp-shared-alt-brand-logo {
  height: 18px;
  max-height: 20px;
  max-width: 85px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  transition: transform 0.15s ease;
}

.pdp-shared-alt-brand-logo-link:hover .pdp-shared-alt-brand-logo {
  transform: scale(1.04);
}

.pdp-shared-alt-brand {
  font-size: 11px;
  font-weight: 800;
  color: var(--pdp-s-accent);
}

.pdp-shared-alt-season {
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: #eff6ff;
  color: #1d4ed8;
}

.pdp-shared-alt-title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  margin: 4px 0 10px;
  flex-grow: 1;
}

.pdp-shared-alt-title a {
  color: var(--pdp-s-text-main);
  text-decoration: none;
}

.pdp-shared-alt-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--pdp-s-text-main);
  margin-bottom: 12px;
}

.pdp-shared-alt-btn {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: var(--pdp-s-text-main);
  border-radius: var(--pdp-s-radius-sm);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.15s;
}

.pdp-shared-alt-btn:hover {
  background: #e2e8f0;
}

/* ==========================================================================
   5. TRUE MOBILE-FIRST RESPONSIVENESS & ACCORDION (<= 900px)
   ========================================================================== */
.pdp-shared-mobile-buy-bar {
  display: none;
}

@media (max-width: 900px) {
  .pdp-shared-root {
    width: 100% !important;
    max-width: 100% !important;
    padding-bottom: 75px;
  }

  .pdp-shared-container {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .pdp-shared-hero {
    padding: 12px 0 20px;
    width: 100%;
  }

  .pdp-shared-hero-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .pdp-shared-gallery {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .pdp-shared-stage {
    min-height: auto;
    width: 100%;
    max-width: 100%;
    padding: 16px 12px;
    border-radius: var(--pdp-s-radius-lg);
  }

  .pdp-shared-main-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
  }

  .pdp-shared-zoom-hint {
    bottom: 8px;
    right: 12px;
    font-size: 11px;
  }

  .pdp-shared-buybox {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 18px 14px;
    border-radius: var(--pdp-s-radius-lg);
  }

  .pdp-shared-brand-eyebrow {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .pdp-shared-h1 {
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .pdp-shared-variant-line {
    font-size: 13.5px;
    margin-bottom: 12px;
  }

  .pdp-shared-chips {
    gap: 6px;
    margin-bottom: 14px;
  }

  .pdp-shared-chip {
    padding: 4px 8px;
    font-size: 11px;
  }

  .pdp-shared-price-row {
    margin-bottom: 2px;
  }

  .pdp-shared-price {
    font-size: 28px;
  }

  .pdp-shared-price-note {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .pdp-shared-eu-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 8px 8px;
    margin-bottom: 14px;
  }

  .pdp-shared-eu-title {
    display: none;
  }

  .pdp-shared-eu-item {
    justify-content: center;
    gap: 4px;
  }

  .pdp-shared-eu-name {
    font-size: 11px;
  }

  .pdp-shared-btn-cart {
    height: 50px;
    font-size: 15px;
    margin-bottom: 10px;
  }

  .pdp-shared-btn-wa {
    height: 44px;
    font-size: 14px;
  }

  .pdp-shared-trust-strip {
    padding: 12px 0;
    margin-bottom: 20px;
  }

  .pdp-shared-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 8px;
  }

  .pdp-shared-trust-item {
    font-size: 12px;
    justify-content: flex-start;
    text-align: left;
  }

  .pdp-shared-trust-item i {
    font-size: 15px;
  }

  /* Switch Tabs to Accordion on Mobile */
  .pdp-shared-tabs-section {
    margin-bottom: 32px;
  }

  .pdp-shared-tab-nav {
    display: none !important;
  }

  .pdp-shared-tab-content {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .pdp-shared-panel {
    display: block !important;
    background: var(--pdp-s-surface);
    border: 1px solid var(--pdp-s-border);
    border-radius: var(--pdp-s-radius-md);
    margin-bottom: 10px;
    overflow: hidden;
  }

  .pdp-shared-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    padding: 14px 14px;
    background: #f8fafc;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    text-align: left;
  }

  .pdp-shared-panel.active .pdp-shared-acc-header {
    background: #ffffff;
    border-bottom: 1px solid var(--pdp-s-border);
  }

  .pdp-shared-panel.active .pdp-shared-acc-header i {
    transform: rotate(180deg);
  }

  .pdp-shared-acc-body {
    display: none;
    padding: 14px;
  }

  .pdp-shared-panel.active .pdp-shared-acc-body {
    display: block;
  }

  .pdp-shared-tab-h2 {
    font-size: 16.5px;
    margin-bottom: 10px;
  }

  .pdp-shared-desc-p {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .pdp-shared-tech-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 16px !important;
    background: #f8fafc !important;
    border: 1px solid var(--pdp-s-border) !important;
    border-radius: var(--pdp-s-radius-md) !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .pdp-shared-tech-img-box {
    width: 100% !important;
    height: 140px !important;
    max-height: 160px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    border: 1px solid var(--pdp-s-border) !important;
    border-radius: var(--pdp-s-radius-md) !important;
    overflow: hidden !important;
    padding: 8px !important;
    box-sizing: border-box !important;
  }

  .pdp-shared-tech-img-box img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 124px !important;
    object-fit: contain !important;
    display: block !important;
  }

  .pdp-shared-tech-info {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .pdp-shared-tech-title {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 0 4px !important;
    line-height: 1.35 !important;
  }

  .pdp-shared-tech-text {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: #334155 !important;
    margin: 0 !important;
  }

  .pdp-shared-spec-table {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 10px;
  }

  .pdp-shared-spec-row {
    padding: 8px 10px;
    font-size: 12px;
  }

  .pdp-shared-install-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .pdp-shared-install-head {
    padding: 8px 10px;
  }

  .pdp-shared-install-bank {
    font-size: 13px;
  }

  .pdp-shared-install-issuer {
    font-size: 9.5px;
  }

  .pdp-shared-install-body {
    padding: 10px;
    gap: 4px;
  }

  .pdp-shared-install-count {
    font-size: 16px;
  }

  .pdp-shared-install-monthly strong {
    font-size: 14px;
  }

  .pdp-shared-install-monthly span {
    font-size: 10px;
  }

  .pdp-shared-install-total {
    font-size: 10.5px;
  }

  .pdp-shared-install-tag {
    font-size: 10px;
    padding: 2px 6px;
  }

  .pdp-shared-service-grid,
  .pdp-shared-payment-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .pdp-shared-service-box,
  .pdp-shared-pay-item {
    padding: 14px;
  }

  .pdp-shared-post-section {
    margin-bottom: 32px;
  }

  .pdp-shared-sec-header {
    margin-bottom: 12px;
  }

  .pdp-shared-sec-header--flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .pdp-shared-sec-h2 {
    font-size: 17px;
  }

  .pdp-shared-sizes-chips {
    gap: 6px;
  }

  .pdp-shared-size-pill {
    padding: 6px 8px;
  }

  .pdp-shared-size-pill strong {
    font-size: 11.5px;
  }

  /* Alternatives Swipe Carousel */
  .pdp-shared-alts-grid {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 2px 2px 10px;
    scrollbar-width: none;
  }

  .pdp-shared-alts-grid::-webkit-scrollbar {
    display: none;
  }

  .pdp-shared-alt-card {
    flex: 0 0 74vw;
    max-width: 260px;
    min-width: 220px;
    scroll-snap-align: start;
    padding: 14px;
  }

  .pdp-shared-alt-img-wrap {
    height: 125px;
  }

  .pdp-shared-alt-title {
    font-size: 12.5px;
  }

  .pdp-shared-alt-price {
    font-size: 16px;
  }

  /* Mobile Sticky Bottom Buy Bar */
  .pdp-shared-mobile-buy-bar {
    position: fixed;
    bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
    z-index: 85;
    background: #ffffff;
    border-top: 1px solid var(--pdp-s-border);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  }

  .pdp-shared-m-price strong {
    font-size: 17px;
    color: #0f172a;
    display: block;
    line-height: 1.2;
  }

  .pdp-shared-m-price span {
    font-size: 9.5px;
    color: #64748b;
  }

  .pdp-shared-m-btn-cart {
    height: 44px;
    min-height: 44px;
    padding: 0 18px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: var(--pdp-s-radius-sm);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }

  /* AI Chat Widget Offset */
  .ai-chat-launcher,
  #chat-widget-launcher,
  .whatsapp-float,
  [class*="chat-launcher"] {
    bottom: 120px !important;
  }
}
