/**
 * PDP Base Styles
 * Common styles for all Product Detail Pages
 * Note: Uses px/rem for font-size to prevent zoom issues
 */

.single-content:has(.pdp-page) {
  padding-top: 0;
}

.pdp-page {
  /* Colors */
  --pdp-text-dark: #3C3C3C;
  --pdp-text-white: #FFFFFF;
  --pdp-bg-light: #F7F9F9;
  --pdp-bg-white: #FFFFFF;
  --pdp-bg-dark: #000000;
  --pdp-accent-blue: #1464F4;
  --pdp-accent-light-blue: #84A3B6;
  --pdp-line-grey: #D9E1E2;
  --pdp-line-dark: rgba(0, 0, 0, 0.1);

  /* Typography - using rem for zoom stability */
  --pdp-font-family: 'Mulish', sans-serif;
  --pdp-font-size-base: 16px;
  --pdp-font-size-sm: 14px;
  --pdp-font-size-lg: 18px;
  --pdp-font-size-xl: 20px;
  --pdp-font-size-2xl: 24px;
  --pdp-font-size-3xl: 32px;
  --pdp-font-size-4xl: 48px;
  --pdp-font-size-5xl: 64px;
}

/* Base Layout */
.pdp-page {
  font-family: var(--pdp-font-family);
  color: var(--pdp-text-dark);
  line-height: 1.5;
  font-size: var(--pdp-font-size-base);
}

.pdp-page .pdp-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 48px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-content {
    gap: 0;
    padding-bottom: 0;
  }
}

/* Typography */
.pdp-page h1,
.pdp-page h2,
.pdp-page h3,
.pdp-page h4,
.pdp-page h5,
.pdp-page h6 {
  font-family: var(--pdp-font-family);
  line-height: 1.2;
  margin: 0;
}

.pdp-page p {
  margin: 0;
}

/* Sections */
.pdp-page .pdp-section {
  padding: 0;
}

@media (min-width: 768px) {
  .pdp-page .pdp-section {
    padding: 60px 40px;
  }
}

@media (min-width: 1024px) {
  .pdp-page .pdp-section {
    padding: 80px 80px;
  }
}

/* Buttons */
.pdp-page .pdp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-family: var(--pdp-font-family);
  font-weight: 600;
  font-size: var(--pdp-font-size-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.pdp-page .pdp-btn-primary {
  background-color: var(--pdp-accent-blue);
  color: var(--pdp-text-white);
  border: 1px solid var(--pdp-accent-blue);
}

.pdp-page .pdp-btn-primary:hover {
  background-color: #0d4fc7;
}

.pdp-page .pdp-btn-secondary {
  background-color: transparent;
  color: var(--pdp-accent-blue);
  border: 1px solid var(--pdp-accent-blue);
}

.pdp-page .pdp-btn-secondary:hover {
  background-color: var(--pdp-accent-blue);
  color: var(--pdp-text-white);
}

.pdp-page .pdp-btn-full {
  width: 100%;
  max-width: 400px;
}

/* =====================
   HERO SECTION
   ===================== */
.pdp-page .pdp-hero {
  background-color: var(--pdp-bg-light);
  padding: 16px 0 0;
}

@media (min-width: 768px) {
  .pdp-page .pdp-hero {
    padding: 48px 40px 40px;
  }
}

@media (min-width: 1024px) {
  .pdp-page .pdp-hero {
    padding: 48px 75px 40px;
  }
}

/* Hero Top Row */
.pdp-page .pdp-hero-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
  text-align: center;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-hero-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
}

/* Hero Logo */
.pdp-page .pdp-hero-logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-hero-logo {
    text-align: left;
    align-items: flex-start;
    gap: 0;
  }
}

.pdp-page .pdp-product-brand {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  color: black;
}

@media (max-width: 767px) {
  .pdp-page .pdp-product-brand {
    font-size: var(--pdp-font-size-3xl);
  }
}

.pdp-page .pdp-product-name {
  font-size: 60px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  color: var(--pdp-accent-light-blue);
  letter-spacing: 9px;
  margin: 0;
}

@media (max-width: 767px) {
  .pdp-page .pdp-product-name {
    font-size: 60px;
    letter-spacing: 9px;
  }
}

/* Hero Info (right side) */
.pdp-page .pdp-hero-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-hero-info {
    align-items: flex-end;
    text-align: right;
  }
}

.pdp-page .pdp-tagline {
  font-size: var(--pdp-font-size-xl);
  font-weight: 600;
  color: var(--pdp-text-dark);
}

@media (min-width: 1024px) {
  .pdp-page .pdp-tagline {
    white-space: nowrap;
  }
}

.pdp-page .pdp-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-price {
    align-items: flex-end;
  }
}

.pdp-page .pdp-price-value {
  font-size: var(--pdp-font-size-xl);
  font-weight: 600;
  line-height: 1.2;
  color: black;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-price-value {
    font-size: var(--pdp-font-size-2xl);
  }
}

.pdp-page .pdp-price-label {
  font-size: var(--pdp-font-size-base);
  color: black;
}

.pdp-page .pdp-hero-info .pdp-btn {
  width: 100%;
  height: 60px;
}

@media (max-width: 1023px) {
  .pdp-page .pdp-hero-info .pdp-btn {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }
}

@media (min-width: 1024px) {
  .pdp-page .pdp-hero-info .pdp-btn {
    width: 220px;
  }
}

/* Hero Bottom Row */
.pdp-page .pdp-hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-hero-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Hero Specs (left column) */
.pdp-page .pdp-hero-specs {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  order: 1;
  align-items: flex-start;
  padding: 0 0 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pdp-page .pdp-hero-specs::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-hero-specs {
    flex-direction: column;
    gap: 24px;
    width: 219px;
    flex-shrink: 0;
    order: 0;
    align-items: stretch;
    padding: 0;
  }
}

.pdp-page .pdp-spec-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 auto;
  min-width: 130px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-spec-item {
    flex: 1;
    min-width: 0;
  }
}

.pdp-page .pdp-spec-value {
  font-size: var(--pdp-font-size-xl);
  font-weight: 600;
  color: var(--pdp-text-dark);
}

@media (min-width: 1024px) {
  .pdp-page .pdp-spec-value {
    font-size: var(--pdp-font-size-2xl);
  }
}

.pdp-page .pdp-spec-label {
  font-size: var(--pdp-font-size-base);
  font-weight: 400;
  color: var(--pdp-text-dark);
}

@media (max-width: 1023px) {
  .pdp-page .pdp-spec-divider {
    display: none;
  }
  .pdp-page .pdp-spec-value {
    white-space: nowrap;
  }
  .pdp-page .pdp-spec-label {
    white-space: nowrap;
  }
}

@media (min-width: 1024px) {
  .pdp-page .pdp-spec-divider {
    height: 1px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }
}

/* Hero Image (center) */
.pdp-page .pdp-hero-image {
  width: 100%;
  max-width: 880px;
  height: 300px;
  order: 2;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pdp-page .pdp-hero-image::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-hero-image {
    flex: 1;
    height: 500px;
  }
}

.pdp-page .pdp-product-image {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.2);
  transform-origin: center center;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-product-image {
    object-fit: contain;
    transform: scale(1.2);
  }
}

/* Hero Colors (right column) */
.pdp-page .pdp-hero-colors {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
  order: 3;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-hero-colors {
    width: 188px;
    flex-shrink: 0;
  }
}

.pdp-page .pdp-colors {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-colors {
    flex-direction: column;
  }
}

.pdp-page .pdp-color-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  background: none;
  overflow: hidden;
}

.pdp-page .pdp-color-item.active,
.pdp-page .pdp-color-item:hover {
  border-color: #2c72c6;
}

.pdp-page .pdp-color-item img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Navigation Arrows */
.pdp-page .pdp-arrows {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.pdp-page .pdp-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: none;
}

.pdp-page .pdp-arrow-light,
.pdp-page .pdp-arrow-dark {
  background-color: var(--pdp-bg-dark);
  color: var(--pdp-text-white);
}

.pdp-page .pdp-arrow:not([disabled]):hover {
  background-color: #333;
}

.pdp-page .pdp-arrow[disabled] {
  background-color: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}

.pdp-page .pdp-arrow-icon {
  width: 16px;
  height: 18px;
  display: block;
}

.pdp-page .pdp-arrow-icon-left {
  transform: rotate(90deg);
}

.pdp-page .pdp-arrow-icon-right {
  transform: rotate(-90deg);
}

/* =====================
   FEATURES SECTION
   ===================== */
.pdp-page .pdp-features-section {
  background-color: var(--pdp-bg-white);
  padding: 0;
}

@media (min-width: 768px) {
  .pdp-page .pdp-features-section {
    padding: 60px 40px;
  }
}

@media (min-width: 1024px) {
  .pdp-page .pdp-features-section {
    padding: 80px 75px;
  }
}

.pdp-page .pdp-features-section .pdp-features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-features-section .pdp-features-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

.pdp-page .pdp-features-left {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 24px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-features-left {
    width: 520px;
    flex-shrink: 0;
    padding: 0 48px;
    gap: 24px;
  }
}

.pdp-page .pdp-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pdp-page .pdp-feature-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.pdp-page .pdp-feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  padding: 2px;
  box-sizing: border-box;
}

.pdp-page .pdp-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-page .pdp-feature-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.pdp-page .pdp-feature-title {
  font-size: var(--pdp-font-size-xl);
  font-weight: 600;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-feature-title {
    font-size: var(--pdp-font-size-2xl);
  }
}

.pdp-page .pdp-feature-desc {
  display: flex;
  gap: 2px;
  align-items: flex-start;
}

.pdp-page .pdp-feature-desc p {
  flex: 1;
  font-size: var(--pdp-font-size-base);
  color: var(--pdp-text-dark);
  line-height: 1.5;
}

.pdp-page .pdp-feature-note {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--pdp-accent-blue);
  line-height: 1.5;
}

.pdp-page .pdp-features-left .pdp-btn {
  width: 100%;
  height: 60px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-features-left .pdp-btn {
    width: 220px;
  }
}

.pdp-page .pdp-feature-image {
  position: relative;
  background-color: var(--pdp-bg-light);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 740 / 685;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-feature-image {
    flex: 1;
    min-width: 0;
    height: 685px;
    max-width: none;
    padding: 0;
  }
}

.pdp-page .pdp-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.6);
  transform-origin: center center;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-feature-image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    position: static;
    left: auto;
    top: auto;
    transform: scale(1.5);
    transform-origin: center center;
  }
}

.pdp-page .pdp-warranty-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 88px;
  height: 88px;
  background: #1464F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-warranty-badge {
    top: 12px;
    left: 12px;
    right: auto;
    width: 160px;
    height: 160px;
  }
}

.pdp-page .pdp-warranty-badge__inner {
  width: 70px;
  height: 70px;
  border: 1px solid #B4C3DE;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-warranty-badge__inner {
    width: 85%;
    height: 85%;
    gap: 2px;
  }
}

.pdp-page .pdp-warranty-badge__years {
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: #fff;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-warranty-badge__years {
    font-size: 20px;
  }
}

.pdp-page .pdp-warranty-badge__label {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: 5px;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-warranty-badge__label {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}

.pdp-page .pdp-warranty-badge__divider {
  width: 30px;
  height: 1px;
  background: #fff;
  margin: 3px 0;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-warranty-badge__divider {
    width: 52px;
    margin: 5px 0;
  }
}

/* =====================
   BATTERY SECTION
   ===================== */
.pdp-page .pdp-battery-section {
  display: flex;
  flex-direction: column;
  background-color: var(--pdp-bg-white);
  gap: 30px;
  padding: 0;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-battery-section {
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: flex-end;
    padding: 0 75px 0 0;
  }
}

.pdp-page .pdp-battery-image {
  width: 100%;
  aspect-ratio: 815 / 685;
  background-color: var(--pdp-bg-light);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-battery-image {
    flex: 1 1 60%;
    max-width: 815px;
    aspect-ratio: 815 / 685;
    min-height: auto;
  }
}

.pdp-page .pdp-battery-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-page .pdp-battery-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .pdp-page .pdp-battery-content {
    padding: 60px 40px;
  }
}

@media (min-width: 1024px) {
  .pdp-page .pdp-battery-content {
    width: 520px;
    flex-shrink: 0;
    padding: 120px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }
}

.pdp-page .pdp-section-header {
  margin-bottom: 0;
}

.pdp-page .pdp-section-subtitle {
  font-size: var(--pdp-font-size-base);
  font-weight: 600;
  color: var(--pdp-text-dark);
  display: block;
  margin-bottom: 8px;
}

.pdp-page .pdp-section-title {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 767px) {
  .pdp-page .pdp-section-title {
    font-size: var(--pdp-font-size-3xl);
  }
}

.pdp-page .pdp-battery-content .pdp-btn {
  width: 100%;
  height: 60px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-battery-content .pdp-btn {
    width: 220px;
  }
}

.pdp-page .pdp-battery-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}

.pdp-page .pdp-battery-feature h4 {
  font-size: var(--pdp-font-size-xl);
  font-weight: 600;
  color: var(--pdp-text-dark);
  margin-bottom: 8px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-battery-feature h4 {
    font-size: var(--pdp-font-size-2xl);
  }
}

.pdp-page .pdp-battery-feature p {
  font-size: var(--pdp-font-size-base);
  line-height: 1.5;
  color: var(--pdp-text-dark);
}

/* =====================
   HIGHLIGHT SECTION
   ===================== */
.pdp-page .pdp-section.pdp-highlight-section {
  padding: 0;
  background-color: var(--pdp-bg-white);
}

@media (min-width: 768px) {
  .pdp-page .pdp-section.pdp-highlight-section {
    padding: 60px 0 60px 40px;
  }
}

@media (min-width: 1024px) {
  .pdp-page .pdp-section.pdp-highlight-section {
    padding: 80px 0 80px 75px;
  }
}

.pdp-page .pdp-highlight-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-highlight-wrapper {
    gap: 30px;
  }
}

.pdp-page .pdp-highlight-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .pdp-page .pdp-highlight-slider {
    padding-right: 0;
  }
}

@media (min-width: 1024px) {
  .pdp-page .pdp-highlight-slider {
    padding-right: 0;
  }
}

.pdp-page .pdp-highlight-slider::-webkit-scrollbar {
  display: none;
}

.pdp-page .pdp-highlight-track {
  display: flex;
  gap: 16px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-highlight-track {
    gap: 30px;
  }
}

.pdp-page .pdp-highlight-item {
  flex: 0 0 calc(100vw - 48px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (min-width: 768px) {
  .pdp-page .pdp-highlight-item {
    flex: 0 0 340px;
  }
}

@media (min-width: 1024px) {
  .pdp-page .pdp-highlight-item {
    flex: 0 0 calc((min(100vw, 1440px) - 75px - 90px) / 3.1);
  }
}

.pdp-page .pdp-highlight-img {
  width: 100%;
  aspect-ratio: 358 / 429;
  background-color: var(--pdp-bg-light);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-highlight-img {
    aspect-ratio: auto;
    height: 492px;
    margin-bottom: 24px;
  }
}

.pdp-page .pdp-highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-page .pdp-highlight-text {
  font-size: var(--pdp-font-size-xl);
  font-weight: 600;
  color: var(--pdp-text-dark);
  line-height: 1.5;
}

.pdp-page .pdp-highlight-section .pdp-arrows {
  margin-top: 0;
}

/* =====================
   GALLERY SECTION
   ===================== */
.pdp-page .pdp-gallery-section {
  display: flex;
  flex-direction: column;
  background-color: var(--pdp-bg-white);
  padding: 0;
  gap: 30px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-gallery-section {
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    padding: 0;
  }
}

.pdp-page .pdp-gallery-info {
  padding: 24px 0;
  background-color: transparent;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdp-page .pdp-gallery-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 52.5%;
  background-color: var(--pdp-bg-light);
  z-index: 0;
}

.pdp-page .pdp-gallery-info > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .pdp-page .pdp-gallery-info {
    padding: 60px 40px;
  }
}

@media (min-width: 1024px) {
  .pdp-page .pdp-gallery-info {
    flex-shrink: 0;
    padding: 80px 48px 80px 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    text-align: left;
  }

  .pdp-page .pdp-gallery-info::before {
    left: 0;
    right: auto;
    top: 0;
    bottom: auto;
    width: 243px;
    height: 513px;
  }
}

.pdp-page .pdp-gallery-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.pdp-page .pdp-gallery-title .pdp-section-subtitle {
  font-size: var(--pdp-font-size-2xl);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
  color: black;
  letter-spacing: 0;
  text-transform: none;
}

.pdp-page .pdp-gallery-title .pdp-product-name {
  font-size: 120px;
  letter-spacing: 18px;
}

.pdp-page .pdp-gallery-info .pdp-price {
  align-items: flex-start;
}

.pdp-page .pdp-gallery-info .pdp-gallery-title {
  text-align: left;
}

.pdp-page .pdp-gallery-info .pdp-btn {
  width: 220px;
  height: 60px;
}

@media (max-width: 1023px) {
  .pdp-page .pdp-gallery-title .pdp-section-subtitle {
    font-size: var(--pdp-font-size-xl);
  }

  .pdp-page .pdp-gallery-title .pdp-product-name {
    font-size: 60px;
    letter-spacing: 9px;
  }

  .pdp-page .pdp-gallery-info .pdp-btn {
    width: 100%;
    height: 60px;
  }
}

.pdp-page .pdp-gallery-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-gallery-wrapper {
    flex-direction: row;
    gap: 30px;
    align-items: center;
    padding-right: 75px;
  }
}

.pdp-page .pdp-gallery-slider {
  width: 100%;
  height: 239px;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pdp-page .pdp-gallery-slider::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .pdp-page .pdp-gallery-slider {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .pdp-page .pdp-gallery-slider {
    flex: 1;
    height: 500px;
    overflow: hidden;
    scroll-snap-type: none;
  }
}

.pdp-page .pdp-gallery-slider img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.2);
  transform-origin: center center;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-gallery-slider img {
    object-fit: contain;
    transform: scale(1.2);
  }
}

.pdp-page .pdp-gallery-wrapper .pdp-arrows {
  position: static;
  transform: none;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-gallery-wrapper .pdp-arrows {
    flex-direction: column;
    gap: 30px;
    flex-shrink: 0;
  }
}

/* =====================
   SPECS SECTION
   ===================== */
.pdp-page .pdp-section.pdp-specs-section {
  padding: 0;
  background-color: var(--pdp-bg-white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

@media (min-width: 768px) {
  .pdp-page .pdp-section.pdp-specs-section {
    padding: 60px 40px;
  }
}

@media (min-width: 1024px) {
  .pdp-page .pdp-section.pdp-specs-section {
    padding: 80px 80px;
    align-items: center;
  }
}

.pdp-page .pdp-specs-section .pdp-section-title {
  font-size: var(--pdp-font-size-3xl);
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0;
  text-align: left;
  width: 100%;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-specs-section .pdp-section-title {
    font-size: 40px;
    text-align: center;
  }
}

.pdp-page .pdp-specs-table {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pdp-page .pdp-specs-row {
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.pdp-page .pdp-specs-row:first-child {
  border-top: none;
}

.pdp-page .pdp-specs-label {
  font-size: var(--pdp-font-size-lg);
  font-weight: 400;
  color: black;
  margin-bottom: 8px;
}

.pdp-page .pdp-specs-values {
  display: flex;
  gap: 24px;
}

@media (min-width: 768px) {
  .pdp-page .pdp-specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 16px 30px;
  }

  .pdp-page .pdp-specs-label {
    margin-bottom: 0;
  }

  .pdp-page .pdp-specs-values {
    display: contents;
  }
}

@media (max-width: 1023px) {
  .pdp-page .pdp-specs-row {
    padding: 16px 0;
  }

  .pdp-page .pdp-specs-values {
    gap: 16px;
  }
}

.pdp-page .pdp-specs-value {
  flex: 1;
  font-size: var(--pdp-font-size-base);
  font-weight: 400;
  color: black;
}

.pdp-page .pdp-specs-section .pdp-btn {
  width: 100%;
  height: 60px;
}

@media (min-width: 1024px) {
  .pdp-page .pdp-specs-section .pdp-btn {
    width: 220px;
    margin: 0 auto;
  }
}

/* =====================
   RESPONSIVE IMAGES
   ===================== */
.pdp-page img {
  max-width: 100%;
  height: auto;
}

/* =====================
   ANIMATIONS
   ===================== */
.pdp-page [data-aos] {
  transition-property: transform, opacity;
}

/* =====================
   UTILITIES
   ===================== */
.pdp-page .pdp-line {
  height: 1px;
  background-color: var(--pdp-line-dark);
  width: 100%;
}

.pdp-page .pdp-line-light {
  background-color: var(--pdp-line-grey);
}
