/* ══════════════════════════════════════════════════════════
   WOOCOMMERCE SINGLE PRODUCT OVERRIDE
══════════════════════════════════════════════════════════ */

.custom-single-product-layout {
  display: block;
}

/* HERO SECTION */
.sp-hero {
  background-color: var(--black, #0a0a0a);
  color: var(--white, #ffffff);
  /* Top padding accounts for fixed header */
  padding-top: clamp(140px, 16vw, 240px);
  padding-bottom: clamp(60px, 8vw, 120px);
}

.sp-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4%, 80px);
}

/* BREADCRUMB */
.sp-breadcrumb-wrap {
  margin-bottom: clamp(40px, 6vw, 100px);
  font-family: 'Inter', sans-serif;
  font-weight: 300; /* Light */
  font-size: 18px;
  text-transform: uppercase;
}

.sp-breadcrumb-wrap nav.woocommerce-breadcrumb {
  margin: 0;
  padding: 0;
}

.sp-breadcrumb-wrap a {
  color: var(--white, #ffffff);
  text-decoration: underline;
  text-decoration-skip-ink: auto;
}

.sp-breadcrumb-wrap .sp-breadcrumb-sep {
  margin: 0 8px;
  text-decoration: none;
  display: inline-block;
  color: var(--white, #ffffff);
}

/* HEADINGS */
.sp-title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: clamp(30px, 4vw, 50px);
}

.sp-sprungmarke {
  width: 20px;
  height: 20px;
  background-color: var(--red, #EB280F);
  margin-right: 18px;
  flex-shrink: 0;
}

.sp-hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600; /* Semi Bold */
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white, #ffffff);
  margin: 0;
  line-height: 1;
}

.sp-hero-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400; /* Regular */
  font-size: clamp(18px, 2.5vw, 28px);
  line-height: 1.333;
  color: var(--white, #ffffff);
  max-width: 1194px;
}

/* BOTTOM SECTION (WHITE) */
.sp-bottom-section {
  background-color: var(--white, #ffffff);
  color: var(--black, #0a0a0a);
  padding-top: clamp(60px, 8vw, 150px);
  padding-bottom: clamp(80px, 10vw, 200px);
}

.sp-bottom-section .sp-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
}

@media (min-width: 992px) {
  .sp-bottom-section .sp-container {
    grid-template-columns: 50% auto;
    align-items: start;
    gap: clamp(60px, 8vw, 120px);
  }
}

/* PRODUCT GALLERY */
.sp-gallery-col {
  width: 100%;
}
.sp-gallery-col .woocommerce-product-gallery {
  /* Override basic woo layout if needed, it usually defaults to 48% */
  width: 100% !important;
  float: none !important;
}

/* DETAILS COLUMN */
.sp-summary-col {
  display: flex;
  flex-direction: column;
}

.sp-summary-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700; /* Bold */
  font-size: clamp(24px, 3vw, 28px);
  color: var(--black, #0a0a0a);
  margin-bottom: 24px;
  line-height: 1.333;
}

.sp-short-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300; /* Light */
  font-size: 18px;
  color: var(--black, #0a0a0a);
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* ADD TO CART & PRICE */
.sp-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 40px;
}

.sp-price-prefix,
.sp-price-suffix,
.sp-price-wrap .woocommerce-Price-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 700; /* Bold */
  font-size: 28px;
  color: var(--black, #0a0a0a);
}

.sp-price-wrap del {
  opacity: 0.5;
  font-weight: normal;
}

.sp-price-wrap ins {
  text-decoration: none;
}

.sp-price-wrap .price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.sp-add-to-cart-wrap form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.sp-add-to-cart-wrap button.single_add_to_cart_button {
  background-color: #0b855e;
  color: var(--white, #ffffff);
  font-family: 'Inter', sans-serif;
  font-weight: 600; /* Semi Bold */
  font-size: clamp(18px, 1.5vw, 24px);
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.sp-add-to-cart-wrap button.single_add_to_cart_button:hover {
  opacity: 0.9;
}
