/* Products V2 Page Styles */

/* HERO */
.prod-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
}

.prod-hero-bg {
  position: absolute;
  inset: 0;
}

.prod-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.prod-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.92) 40%, rgba(0,0,0,0.5) 100%);
}

.prod-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.prod-hero-title {
  font-family: var(--font-head);
  font-size: clamp(60px, 9vw, 110px);
  line-height: 0.9;
  letter-spacing: -2px;
  margin: 16px 0 24px;
}

.prod-hero-sub {
  font-size: 17px;
  color: var(--gray-2);
  line-height: 1.7;
  margin-bottom: 36px;
}

.prod-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-btn {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: all 0.25s;
  background: rgba(255,255,255,0.05);
}

.pill-btn:hover {
  border-color: #CB2C30;
  background: rgba(203,44,48,0.1);
  color: #CB2C30;
}

.pill-btn-red {
  background: #CB2C30;
  border-color: #CB2C30;
  color: #000 !important;
}

.pill-btn-red:hover {
  background: #e03035;
  border-color: #e03035;
  color: #000 !important;
}

/* PRODUCT FEATURE SECTION */
.prod-feature {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}

.prod-feature-alt .pf-inner {
  justify-content: flex-start;
}

.pf-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pf-bg-left {
  left: 0;
  right: 40%;
}

.pf-bg-right {
  left: 40%;
  right: 0;
}

.pf-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 40px;
}

.pf-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.2) 100%);
}

.pf-overlay-red {
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 50%, rgba(10,0,0,0.4) 100%);
}

.pf-inner {
  position: relative;
  z-index: 1;
  display: flex;
}

.pf-inner-right {
  justify-content: flex-end;
}

.pf-inner-left {
  justify-content: flex-start;
}

.pf-content {
  max-width: 520px;
}

.pf-award {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #CB2C30;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pf-badge-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.pf-badge-new {
  background: #CB2C30;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 100px;
}

.pf-badge-pre {
  background: rgba(203,44,48,0.15);
  border: 1px solid rgba(203,44,48,0.4);
  color: #CB2C30;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 100px;
}

.pf-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #CB2C30;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(203,44,48,0.7);
  animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(203,44,48,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(203,44,48,0); }
}

.pf-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.9;
  letter-spacing: -2px;
  margin: 12px 0 20px;
}

.pf-lead {
  font-size: 16px;
  color: var(--gray-2);
  line-height: 1.75;
  margin-bottom: 32px;
}

.pf-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}

.pf-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  background: rgba(255,255,255,0.02);
  gap: 4px;
  text-align: center;
}

.pf-spec-red {
  background: rgba(203,44,48,0.05);
}

.pfs-val {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}

.pfs-label {
  font-size: 10px;
  color: var(--gray-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pf-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.pf-features li {
  font-size: 14px;
  color: var(--gray-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.pf-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: #CB2C30;
}

.pf-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pf-price {
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.pf-price-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-3);
  font-weight: 400;
  letter-spacing: 0;
  display: block;
  margin-top: 4px;
}

/* SPEC STRIP */
.spec-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.spec-strip-dark {
  background: rgba(203,44,48,0.02);
  border-color: rgba(203,44,48,0.15);
}

.ss-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.ss-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ss-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gray-3);
  text-transform: uppercase;
}

.ss-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

/* X3 COMPARE SECTION */
.x3-compare {
  padding: 100px 0;
  background: var(--bg);
}

.x3c-header {
  text-align: center;
  margin-bottom: 60px;
}

.x3c-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.x3c-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}

.x3c-card:hover {
  border-color: rgba(203,44,48,0.3);
  transform: translateY(-4px);
}

.x3c-icon {
  width: 56px;
  height: 56px;
  background: rgba(203,44,48,0.08);
  border: 1px solid rgba(203,44,48,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 12px;
}

.x3c-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.x3c-card p {
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.7;
}

.x3c-gallery {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.x3cg-item {
  overflow: hidden;
  border-radius: 8px;
}

.x3cg-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.x3cg-tall img { height: 440px; }

.x3cg-item:hover img { transform: scale(1.04); }

/* ACCESSORIES */
.accessories-section {
  padding: 100px 0;
  background: var(--surface);
}

.acc-header {
  text-align: center;
  margin-bottom: 60px;
}

.acc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.acc-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.acc-card:hover {
  border-color: rgba(203,44,48,0.3);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.acc-img-wrap {
  background: rgba(255,255,255,0.03);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.acc-img-dark { background: rgba(0,0,0,0.3); }

.acc-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.5s;
}

.acc-card:hover .acc-img { transform: scale(1.05); }

.acc-info {
  padding: 24px;
}

.acc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray-3);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.acc-tag-red { color: #CB2C30; }

.acc-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.acc-info p {
  font-size: 13px;
  color: var(--gray-2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.acc-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.acc-price {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--white);
  letter-spacing: -0.5px;
}

/* COMPARISON TABLE */
.compare-section {
  padding: 100px 0;
  background: var(--bg);
}

.comp-header {
  text-align: center;
  margin-bottom: 48px;
}

.comp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comp-table th, .comp-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.comp-table th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(255,255,255,0.03);
  color: var(--gray-2);
  text-transform: uppercase;
}

.comp-table td:first-child {
  color: var(--gray-3);
  font-weight: 500;
  width: 160px;
}

.comp-table tbody tr:last-child td {
  border-bottom: none;
}

.comp-table tbody tr:hover td {
  background: rgba(255,255,255,0.02);
}

.comp-th-featured {
  background: rgba(203,44,48,0.08) !important;
  color: #CB2C30 !important;
  border-left: 1px solid rgba(203,44,48,0.2);
  border-right: 1px solid rgba(203,44,48,0.2);
}

.comp-td-featured {
  background: rgba(203,44,48,0.04);
  border-left: 1px solid rgba(203,44,48,0.1);
  border-right: 1px solid rgba(203,44,48,0.1);
}

.comp-check { color: #CB2C30; font-weight: 700; }

/* PRODUCT CTA */
.prod-cta {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.prod-cta-bg {
  position: absolute;
  inset: 0;
}

.prod-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.prod-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 80px 0;
}

.prod-cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.prod-cta-content p {
  font-size: 18px;
  color: var(--gray-2);
  margin-bottom: 32px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ss-grid { grid-template-columns: repeat(4, 1fr); }
  .x3c-grid { grid-template-columns: 1fr; gap: 16px; }
  .x3c-gallery { grid-template-columns: 1fr 1fr; }
  .x3cg-tall { grid-row: span 2; }
  .acc-grid { grid-template-columns: 1fr 1fr; }
  .pf-bg-left { right: 35%; }
  .pf-bg-right { left: 35%; }
}

@media (max-width: 768px) {
  .prod-hero { min-height: 100svh; padding: 140px 0 80px; }
  .pf-bg-left, .pf-bg-right {
    left: 0; right: 0;
    opacity: 0.35;
  }
  .prod-feature { min-height: auto; padding: 80px 0; background: var(--bg); }
  .pf-inner-right, .pf-inner-left { justify-content: flex-start; }
  .pf-content { max-width: 100%; }
  .pf-specs { grid-template-columns: repeat(2, 1fr); }
  .ss-grid { grid-template-columns: repeat(2, 1fr); }
  .acc-grid { grid-template-columns: 1fr; }
  .x3c-gallery { grid-template-columns: 1fr; }
  .x3cg-tall { grid-row: auto; }
  .x3cg-item img, .x3cg-tall img { height: 220px; }
  .prod-hero-sub br { display: none; }
}
