/* Container */
.itempage-reciprocal_container {
  margin: 0 auto;
  padding: 4rem 2rem;
  background: #f4f4f4;
}

/* Header Styles */
.itempage-reciprocal_header {
  text-align: center;
  margin-bottom: 4rem;
}

.smartlong .itempage_long p.itempage-reciprocal_header__subtitle {
  font-size: 1.3rem;
  color: #6b7280;
  letter-spacing: 0.2em;
  font-weight: 300;
  margin: 0;
}

.itempage-reciprocal_header__title {
    font-size: 2.3rem;
    font-weight: 300;
    color: #1f2937;
    margin-bottom: 0.25rem;
    letter-spacing: 0.1em;
}

.smartlong .itempage_long p.itempage-reciprocal_header__series {
  font-size: 1.25rem;
  color: #d1d5db;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.1em;
      margin: 0;
}

.itempage-reciprocal_header__divider {
  width: 3rem;
  height: 1px;
  background-color: #9ca3af;
  margin: 1.5rem auto 0;
}

/* Product Grid */
.itempage-reciprocal_product-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 3rem;
}

/* Product Card */
.itempage-reciprocal_product-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.itempage-reciprocal_product-card__image-container {
  position: relative;
}

.itempage-reciprocal_product-card__image-wrapper {
  background-color: white;
  border-radius: 0.125rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.itempage-reciprocal_product-card__image-wrapper img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.itempage-reciprocal_product-card__image-wrapper_ov {
    background-color: rgba(75, 85, 99, 0.7);
}
.itempage-reciprocal_product-card__image-wrapper_ov img {
    mix-blend-mode: multiply;
}


.itempage-reciprocal_product-card__overlay_txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  border-radius: 0.125rem;
}

/* Color Swatches */
.itempage-reciprocal_product-card__colors {
  display: flex;
  gap: 0.75rem;
}

.itempage-reciprocal_color-swatch img {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
}

/* Product Content */
.itempage-reciprocal_product-card__content {
  display: flex;
  flex-direction: column;
}

.itempage-reciprocal_product-card__name {
    font-size: 1.7rem;
    font-weight: 300;
    margin: 0;
}

.smartlong .itempage_long p.itempage-reciprocal_product-card__description {
        font-size: 1.3rem;
    font-weight: 300;
    margin: 0.5rem 0 2rem;
}

/* Buttons */
.itempage-reciprocal_btn {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 9999px;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  border: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.itempage-reciprocal_btn--secondary {
  background-color: #E2E2E2;
  pointer-events: none;
  color: #333 !important;
}
.itempage-reciprocal_btn--primary {
  background-color: #333;
  color: white;
}

.itempage-reciprocal_btn--primary:hover {
  background-color: #111827;
}

.itempage-reciprocal_btn__arrow {
  font-size: 1rem;
}

@media (max-width: 680px) {
    .itempage-reciprocal_container {
        padding: 4rem 1rem;
    }
    .itempage-reciprocal_product-grid {
        gap: 1rem;
    }
    .itempage-reciprocal_btn {
        font-size: 1rem;
    }
    .itempage-reciprocal_product-card__overlay_txt {
        font-size: 1rem;
    }
    .itempage-reciprocal_product-card__name {
        font-size: 1.3rem;
    }
    .itempage-reciprocal_product-card__colors {
        gap: 0.5rem;
    }
    .itempage-reciprocal_color-swatch img {
        width: 1.7rem;
        height: 1.7rem;
    }
    .smartlong .itempage_long p.itempage-reciprocal_product-card__description {
        font-size: 1.1rem;
        margin: 0.5rem 0 1rem;
        line-height: 1.6rem;
    }
    .itempage-reciprocal_header {
        margin-bottom: 2rem;
    }
    .itempage-reciprocal_header__divider {
        margin: 1rem auto 0;
    }
    .itempage-reciprocal_header__title {
        font-size: 2rem;
    }
}