/** Shopify CDN: Minification failed

Line 367:0 Unexpected "}"

**/
/* ============================================
   STAMPS HOME FURNITURE - PRODUCT PAGE STYLES
   Article.com Inspired Design
   Brand Colors: #6B7B5E (olive) #DBDCCE (sage)
   ============================================ */

:root {
  --shf-accent: #6B7B5E;
  --shf-accent-light: #DBDCCE;
  --shf-text: #333;
  --shf-text-light: #666;
  --shf-border: #e5e5e5;
}

/* ============================================
   VARIANT PICKER STYLES
   ============================================ */

/* Remove boxes around variant options */
.product-form__input--swatch,
.product-form__input--pill {
  border: none !important;
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Label styling */
.product-form__input .form__label {
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 12px;
}

/* Larger swatches */
.product-form__input--swatch .swatch-input {
  --swatch-input--size: 40px;
}

.product-form__input--swatch .swatch {
  --swatch--size: 40px;
}

/* Swatch selected state */
.product-form__input--swatch .swatch-input__input:checked + .swatch-input__label {
  outline: none !important;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--shf-accent) !important;
}

.product-form__input--swatch .swatch-input__input:active + .swatch-input__label {
  outline: none !important;
}

.product-form__input--swatch .swatch-input__label:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #aaa;
}

/* Pill buttons */
.product-form__input--pill input[type='radio'] + label {
  padding: 8px 16px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border-radius: 50px !important;
  border: 2px solid transparent !important;
  background: transparent !important;
  color: var(--shf-text) !important;
  transition: all 0.15s ease !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.product-form__input--pill input[type='radio'] + label::before {
  display: none !important;
}

.product-form__input--pill input[type='radio'] + label:hover {
  color: var(--shf-accent) !important;
}

.product-form__input--pill input[type='radio']:checked + label {
  background: transparent !important;
  border-color: var(--shf-accent) !important;
  color: var(--shf-accent) !important;
}

.product-form__input--pill input[type='radio'].disabled + label {
  opacity: 0.4 !important;
  text-decoration: line-through !important;
  pointer-events: none !important;
}

/* ============================================
   DIVIDER
   ============================================ */
.product-info-divider {
  width: 100%;
  display: block;
  min-height: 1px;
  flex-shrink: 0;
  border: none;
}

hr.product-info-divider {
  border: none;
}

/* ============================================
   DELIVERY INFO
   ============================================ */
/* ============================================
   DELIVERY INFO
   ============================================ */
.product-delivery-info {
  margin: 12px 0;
}

.product-delivery-info__item,
.product-delivery-info__non-us {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--shf-text);
}

.product-delivery-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shf-accent);
}

.product-delivery-info__text {
  line-height: 1.4;
}

.product-delivery-info__link {
  color: var(--shf-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.product-delivery-info__link:hover {
  text-decoration: none;
}

.delivery-loading {
  color: #999;
  font-style: italic;
}

.product-delivery-info__non-us {
  color: #999;
}

.product-delivery-info__non-us .product-delivery-info__icon {
  color: #c0392b;
}

/* ============================================
   TRUST LINE
   ============================================ */
.product-trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  font-size: 14px;
  color: var(--shf-text);
}

.product-trust-line__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shf-accent);
}

.product-trust-line__text {
  line-height: 1.4;
}

.product-trust-line__link {
  color: var(--shf-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-trust-line__link:hover {
  text-decoration: none;
}

/* ============================================
   SHIPPING INFO BLOCK (Bordered Cards)
   ============================================ */
.shipping-info-block {
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shipping-info__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--shf-border, #e5e5e5);
  border-radius: var(--shipping-info-radius, 8px);
  background: #fff;
}

.shipping-info__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--shf-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shipping-info__right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.shipping-info__value {
  font-size: 12px;
  color: var(--shf-text);
  text-align: right;
}

.shipping-info__tooltip-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--shipping-icon-color, #c9a66b);
  border-radius: 50%;
  color: var(--shipping-icon-color, #c9a66b);
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.shipping-info__tooltip-trigger:hover,
.shipping-info__tooltip-trigger:focus {
  background-color: var(--shipping-icon-color, #c9a66b);
  color: #ffffff;
  outline: none;
}

.shipping-info__tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: calc(100% + 10px);
  right: -10px;
  background-color: #ffffff;
  color: #333333;
  font-size: 11px;
  font-weight: 400;
  padding: 12px 15px;
  border-radius: 6px;
  width: 220px;
  text-align: left;
  line-height: 1.5;
  z-index: 100;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  pointer-events: none;
}

.shipping-info__tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 18px;
  border-width: 8px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.shipping-info__tooltip-trigger:hover .shipping-info__tooltip-text,
.shipping-info__tooltip-trigger:focus .shipping-info__tooltip-text,
.shipping-info__tooltip-trigger[aria-expanded="true"] .shipping-info__tooltip-text {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

@media screen and (min-width: 750px) {
  .shipping-info__row {
    padding: 14px 18px;
  }
  .shipping-info__label {
    font-size: 11px;
  }
  .shipping-info__value {
    font-size: 13px;
  }
  .shipping-info__tooltip-trigger {
    width: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 11px;
  }
  .shipping-info__tooltip-text {
    width: 260px;
    font-size: 12px;
  }
}

@media screen and (max-width: 749px) {
  .shipping-info-block {
    gap: 6px;
  }
  .shipping-info__row {
    padding: 12px 14px;
  }
  .shipping-info__label {
    font-size: 10px;
  }
  .shipping-info__value {
    font-size: 11px;
  }
  .shipping-info__right {
    gap: 8px;
  }
  .shipping-info__tooltip-trigger {
    width: 16px;
    height: 16px;
    min-width: 16px;
    font-size: 9px;
  }
  .shipping-info__tooltip-text {
    width: 200px;
    font-size: 10px;
    padding: 10px 12px;
    right: -5px;
  }
  .shipping-info__tooltip-text::after {
    right: 12px;
  }
}
}

/* ============================================
   BNPL OPTIONS BLOCK
   ============================================ */
.bnpl-options-block {
  margin: 20px 0;
  box-sizing: border-box;
}

.bnpl-options__top {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  align-items: stretch;
}

.bnpl-options__card {
  flex: 1;
  min-width: 0;
  border: 1px solid #e0e0e0;
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.bnpl-options__card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bnpl-options__card-label {
  font-size: 8px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
  white-space: nowrap;
}

.bnpl-options__card-price {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  white-space: nowrap;
}

.bnpl-options__card-price span {
  font-size: 9px;
  font-weight: normal;
}

.bnpl-options__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  color: #999999;
  font-size: 8px;
  flex-shrink: 0;
  flex-direction: column;
}

.bnpl-options__divider::before,
.bnpl-options__divider::after {
  content: '';
  width: 1px;
  height: 18px;
  background-color: #cccccc;
}

.bnpl-options__divider span {
  padding: 4px 0;
}

.bnpl-options__providers {
  display: flex;
  flex-direction: column;
}

.bnpl-options__provider {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #e0e0e0;
  gap: 8px;
}

.bnpl-options__provider:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.bnpl-options__provider-logo {
  width: 45px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.bnpl-options__provider-text {
  flex: 1;
  font-size: 10px;
  color: #333333;
  line-height: 1.3;
  min-width: 0;
}

.bnpl-options__provider-btn {
  background-color: transparent;
  color: #333333;
  border: 1px solid #666666;
  border-radius: 15px;
  padding: 5px 8px;
  font-size: 9px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
  cursor: pointer;
  font-family: inherit;
}

.bnpl-options__provider-btn:hover {
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
}

.bnpl-options__note {
  text-align: center;
  margin-top: 10px;
  font-size: 9px;
  color: #666666;
}

.bnpl-options__note a {
  color: #333333;
  text-decoration: underline;
}

.bnpl-options__note a:hover {
  color: #000000;
}

@media screen and (min-width: 1200px) {
  .bnpl-options__top {
    gap: 10px;
    margin-bottom: 15px;
  }
  .bnpl-options__card {
    padding: 15px 10px;
  }
  .bnpl-options__card-label {
    font-size: 11px;
    margin-bottom: 5px;
  }
  .bnpl-options__card-price {
    font-size: 24px;
  }
  .bnpl-options__card-price span {
    font-size: 13px;
  }
  .bnpl-options__divider {
    padding: 0 8px;
    font-size: 11px;
  }
  .bnpl-options__divider::before,
  .bnpl-options__divider::after {
    height: 30px;
  }
  .bnpl-options__provider {
    padding: 12px 0;
    gap: 12px;
  }
  .bnpl-options__provider-logo {
    width: 70px;
    height: 28px;
  }
  .bnpl-options__provider-text {
    font-size: 13px;
  }
  .bnpl-options__provider-btn {
    padding: 8px 14px;
    font-size: 11px;
    border-radius: 20px;
  }
  .bnpl-options__note {
    font-size: 12px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 749px) {
  .bnpl-options__top {
    gap: 8px;
  }
  .bnpl-options__card {
    padding: 12px 8px;
  }
  .bnpl-options__card-label {
    font-size: 10px;
  }
  .bnpl-options__card-price {
    font-size: 18px;
  }
  .bnpl-options__card-price span {
    font-size: 11px;
  }
  .bnpl-options__provider-logo {
    width: 50px;
    height: 22px;
  }
  .bnpl-options__provider-text {
    font-size: 11px;
  }
  .bnpl-options__provider-btn {
    padding: 6px 10px;
    font-size: 10px;
  }
  .bnpl-options__note {
    font-size: 10px;
  }
}

/* ============================================
   PRODUCT ACCORDIONS BLOCK
   ============================================ */
.product-accordions-block {
  width: 100%;
  box-sizing: border-box;
  margin-top: 16px;
}

.product-accordion {
  border-top: 1px solid #e0e0e0;
}

.product-accordion:first-child {
  border-top: none;
}

.product-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.product-accordion__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--shf-text);
  font-family: inherit;
}

.product-accordion__icon {
  font-size: 18px;
  font-weight: 300;
  color: var(--shf-text);
  line-height: 1;
}

.product-accordion__content {
  display: none;
  padding: 0 0 12px 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--shf-text);
}

.product-accordion.active .product-accordion__content {
  display: block;
}

.product-accordion__text {
  margin: 0 0 10px 0;
}

.product-accordion__text--truncated {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-accordion__text--full {
  display: block;
}

.product-accordion__read-more {
  display: none;
  font-size: 11px;
  font-weight: 500;
  color: var(--shf-text);
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  letter-spacing: 0.5px;
}

.product-accordion__read-more.visible {
  display: inline-block;
}

/* Keep button visible when text is expanded */
.product-accordion__text--full + .product-accordion__read-more {
  display: inline-block;
}

.product-accordion__read-more:hover {
  opacity: 0.7;
}

@media screen and (min-width: 1200px) {
  .product-accordion__header {
    padding: 14px 0;
  }
  .product-accordion__title {
    font-size: 15px;
  }
  .product-accordion__content {
    font-size: 14px;
    padding: 0 0 15px 0;
  }
  .product-accordion__read-more {
    font-size: 12px;
  }
}

@media screen and (max-width: 749px) {
  .product-accordion__header {
    padding: 10px 0;
  }
  .product-accordion__title {
    font-size: 13px;
  }
  .product-accordion__content {
    font-size: 12px;
    padding: 0 0 10px 0;
  }
  .product-accordion__icon {
    font-size: 16px;
  }
  .product-accordion__read-more {
    font-size: 10px;
  }
}

/* ============================================
   CONTACT INFO BLOCK
   ============================================ */
.contact-info-block {
  padding: 10px 0;
  margin-top: 10px;
  box-sizing: border-box;
  border-top: 1px solid #e0e0e0;
}

.contact-info__heading {
  font-size: 12px;
  font-weight: 600;
  color: var(--contact-heading-color, #6B7B5E);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  padding-top: 10px;
}

.contact-info__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.contact-info__row:last-child {
  margin-bottom: 0;
}

.contact-info__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--contact-icon-color, #666666);
}

.contact-info__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.contact-info__text {
  font-size: 13px;
  color: var(--shf-text);
}

.contact-info__text a {
  color: var(--shf-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info__text a:hover {
  color: var(--contact-heading-color, #6B7B5E);
}

@media screen and (min-width: 1200px) {
  .contact-info__heading {
    font-size: 13px;
    letter-spacing: 3px;
  }
  .contact-info__icon {
    width: 22px;
    height: 22px;
  }
  .contact-info__text {
    font-size: 14px;
  }
}

@media screen and (max-width: 749px) {
  .contact-info-block {
    padding: 8px 0;
    margin-top: 8px;
  }
  .contact-info__heading {
    font-size: 11px;
    margin-bottom: 8px;
    padding-top: 8px;
  }
  .contact-info__icon {
    width: 18px;
    height: 18px;
  }
  .contact-info__text {
    font-size: 12px;
  }
  .contact-info__row {
    gap: 10px;
    margin-bottom: 6px;
  }
}

/* ============================================
   COMPLEMENTARY PRODUCT CARD
   ============================================ */
.product-complementary-wrapper:empty {
  display: none;
}

.product-complementary-card {
  border: 1px solid var(--shf-border);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  background: #fff;
}

.product-complementary-card__heading {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: var(--shf-text);
}

.product-complementary-card__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.product-complementary-card__item:first-of-type {
  padding-top: 0;
}

.product-complementary-card__item:last-of-type {
  padding-bottom: 0;
}

.product-complementary-card__item--border {
  border-top: 1px solid var(--shf-border);
}

.product-complementary-card__image-link {
  flex-shrink: 0;
}

.product-complementary-card__image {
  object-fit: cover;
  border-radius: 6px;
  background: #f9f9f9;
}

/* Aspect Ratios */
.product-complementary-card__image--square {
  aspect-ratio: 1 / 1;
}

.product-complementary-card__image--portrait {
  aspect-ratio: 3 / 4;
}

.product-complementary-card__image--landscape {
  aspect-ratio: 4 / 3;
}

.product-complementary-card__image--auto {
  aspect-ratio: auto;
  height: auto;
}

.product-complementary-card__details {
  flex-grow: 1;
  min-width: 0;
  padding-left: 12px;
}

.product-complementary-card__title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--shf-text);
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 6px;
}

.product-complementary-card__title:hover {
  text-decoration: underline;
}

.product-complementary-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--shf-accent);
}

/* Add to Cart Button */
.product-complementary-card__add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--shf-accent);
  border-radius: 50%;
  background: transparent;
  color: var(--shf-accent);
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-complementary-card__add-btn:hover {
  background: var(--shf-accent);
  color: #fff;
}

.product-complementary-card__add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.product-complementary-card__add-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

.product-complementary-card__add-btn.added {
  background: var(--shf-accent);
  color: #fff;
  border-color: var(--shf-accent);
}

/* ============================================
   ARTICLE-STYLE COLLAPSIBLE TABS
   ============================================ */

/* Reset accordion styles */
.product__accordion.accordion {
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
}

.product__accordion.accordion details {
  border: none;
  background: transparent;
}

/* Summary (closed state) */
.product__accordion.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  border-bottom: 1px solid var(--shf-border);
  list-style: none;
}

.product__accordion.accordion summary::-webkit-details-marker {
  display: none;
}

.product__accordion.accordion summary::marker {
  display: none;
}

/* Hide left icon */
.product__accordion.accordion .summary__title .icon-accordion {
  display: none !important;
}

/* Title styling */
.product__accordion.accordion .summary__title {
  display: flex;
  align-items: center;
}

.product__accordion.accordion .accordion__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--shf-text);
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

/* Hide default caret */
.product__accordion.accordion summary .svg-wrapper,
.product__accordion.accordion summary > svg {
  display: none !important;
}

/* Add plus/minus icon */
.product__accordion.accordion summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--shf-text);
  line-height: 1;
  transition: transform 0.2s ease;
}

.product__accordion.accordion details[open] summary::after {
  content: '−';
}

/* Content area */
.product__accordion.accordion .accordion__content {
  padding: 16px 0 24px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--shf-text-light);
}

/* Hover state */
.product__accordion.accordion summary:hover .accordion__title {
  color: var(--shf-text-light);
}

/* ============================================
   MOBILE ADJUSTMENTS
   ============================================ */
@media screen and (max-width: 749px) {
  .product-form__input--swatch .swatch-input {
    --swatch-input--size: 44px;
  }
  
  .product-form__input--swatch .swatch {
    --swatch--size: 44px;
  }
  
  .product-form__input--pill input[type='radio'] + label {
    padding: 10px 18px !important;
    font-size: 11px !important;
  }

  .product-complementary-card {
    padding: 16px;
  }

  .product-complementary-card__item {
    gap: 12px;
  }

  .product-complementary-card__add-btn {
    width: 40px;
    height: 40px;
  }

  .product-complementary-card__title {
    font-size: 13px;
  }

  .product-complementary-card__price {
    font-size: 14px;
  }

  .product__accordion.accordion summary {
    padding: 16px 0;
  }

  .product__accordion.accordion .accordion__title {
    font-size: 15px;
  }
}