/** Shopify CDN: Minification failed

Line 368: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;
}

/* Smaller swatches - matching inspiration */
.product-form__input--swatch .swatch-input {
  --swatch-input--size: 28px;
}

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

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

.product-form__input--swatch .swatch-input__input:active + .swatch-input__label {
  outline: none !important;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--shf-accent) !important;
}

.product-form__input--swatch .swatch-input__label:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(107, 123, 94, 0.5);
}

/* 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 PRODUCTS - GRID CARDS LAYOUT
   Modern product card grid with hover effects
   ============================================ */

/* Section wrapper */
.complementary-grid-section {
  width: 100%;
}

/* Main grid container */
.complementary-grid {
  --grid-columns-desktop: 4;
  --grid-columns-mobile: 2;
  --grid-gap: 24px;
  --grid-gap-mobile: 16px;
}

/* Header section */
.complementary-grid__header {
  margin-bottom: 40px;
}

.complementary-grid__subheading {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--shf-accent);
  margin-bottom: 8px;
}

.complementary-grid__heading {
  font-size: 32px;
  font-weight: 600;
  color: var(--shf-text);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.complementary-grid__description {
  font-size: 16px;
  color: var(--shf-text-light);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

.complementary-grid__header[style*="text-align: center"] .complementary-grid__description {
  margin-left: auto;
  margin-right: auto;
}

/* Product grid - Flexbox for centering when fewer items than columns */
.complementary-grid__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--grid-gap);
}

/* Card width calculation: (100% - total gaps) / columns */
.complementary-grid__items > .complementary-grid__card {
  flex: 0 0 calc((100% - var(--grid-gap) * (var(--grid-columns-desktop) - 1)) / var(--grid-columns-desktop));
  max-width: calc((100% - var(--grid-gap) * (var(--grid-columns-desktop) - 1)) / var(--grid-columns-desktop));
}

/* Individual card */
.complementary-grid__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  position: relative;
}

.complementary-grid__card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Card image/media */
.complementary-grid__card-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.complementary-grid__card-media {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}

.complementary-grid__card-media--square {
  aspect-ratio: 1 / 1;
}

.complementary-grid__card-media--portrait {
  aspect-ratio: 3 / 4;
}

.complementary-grid__card-media--landscape {
  aspect-ratio: 4 / 3;
}

.complementary-grid__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badges */
.complementary-grid__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  z-index: 2;
}

.complementary-grid__badge--sale {
  background: #c41e3a;
  color: #fff;
}

.complementary-grid__badge--soldout {
  background: #666;
  color: #fff;
}

/* Card info section */
.complementary-grid__card-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.complementary-grid__card-vendor {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--shf-text-light);
  margin-bottom: 4px;
}

.complementary-grid__card-title {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--shf-text);
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.complementary-grid__card-title:hover {
  color: var(--shf-accent);
}

/* Price display */
.complementary-grid__card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.complementary-grid__price-compare {
  color: var(--shf-text-light);
  font-size: 14px;
  font-weight: 400;
}

.complementary-grid__price-compare s {
  text-decoration: line-through;
}

.complementary-grid__price-current {
  font-size: 16px;
  font-weight: 600;
  color: var(--shf-text);
}

.complementary-grid__price-current--sale {
  color: #c41e3a;
}

/* Add to cart button */
.complementary-grid__add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 16px;
  margin: 0 16px 16px;
  width: calc(100% - 32px);
  min-height: 40px;
  background: transparent;
  border: 2px solid var(--shf-accent);
  border-radius: 8px;
  color: var(--shf-accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

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

.complementary-grid__add-btn:active {
  transform: scale(0.98);
}

.complementary-grid__add-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #ccc;
  color: #999;
}

.complementary-grid__add-btn:disabled:hover {
  background: transparent;
  color: #999;
}

.complementary-grid__add-btn.loading {
  pointer-events: none;
}

.complementary-grid__add-btn.loading .complementary-grid__btn-text {
  opacity: 0;
}

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

/* Button text with icon support */
.complementary-grid__btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.complementary-grid__btn-text svg {
  flex-shrink: 0;
  vertical-align: middle;
}

/* Button spinner */
.complementary-grid__btn-spinner {
  display: none;
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: complementary-grid-spin 0.8s linear infinite;
}

.complementary-grid__add-btn.loading .complementary-grid__btn-spinner {
  display: block;
}

@keyframes complementary-grid-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   COMPLEMENTARY GRID - TABLET STYLES
   ============================================ */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .complementary-grid__items {
    gap: 20px;
  }

  /* Override to 3 columns on tablet */
  .complementary-grid__items > .complementary-grid__card {
    flex: 0 0 calc((100% - 20px * 2) / 3);
    max-width: calc((100% - 20px * 2) / 3);
  }

  .complementary-grid__header {
    margin-bottom: 32px;
  }

  .complementary-grid__heading {
    font-size: 28px;
  }
}

/* ============================================
   COMPLEMENTARY GRID - MOBILE STYLES
   ============================================ */
@media screen and (max-width: 749px) {
  .complementary-grid {
    --grid-gap: var(--grid-gap-mobile);
  }

  .complementary-grid__items {
    gap: var(--grid-gap-mobile);
  }

  /* Mobile column width based on columns_mobile setting */
  .complementary-grid__items > .complementary-grid__card {
    flex: 0 0 calc((100% - var(--grid-gap-mobile) * (var(--grid-columns-mobile) - 1)) / var(--grid-columns-mobile));
    max-width: calc((100% - var(--grid-gap-mobile) * (var(--grid-columns-mobile) - 1)) / var(--grid-columns-mobile));
  }

  .complementary-grid__header {
    margin-bottom: 24px;
  }

  .complementary-grid__subheading {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .complementary-grid__heading {
    font-size: 24px;
  }

  .complementary-grid__description {
    font-size: 14px;
  }

  .complementary-grid__card {
    border-radius: 10px;
  }

  .complementary-grid__card-info {
    padding: 12px;
  }

  .complementary-grid__card-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .complementary-grid__price-current {
    font-size: 15px;
  }

  .complementary-grid__price-compare {
    font-size: 13px;
  }

  .complementary-grid__badge {
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    font-size: 10px;
  }

  .complementary-grid__add-btn {
    padding: 8px 12px;
    margin: 0 12px 12px;
    width: calc(100% - 24px);
    min-height: 36px;
    font-size: 11px;
    border-radius: 6px;
  }
}


/* ============================================
   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: 26px;
  }

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

  .product-form__input--pill input[type='radio'] + label {
    padding: 10px 18px !important;
    font-size: 11px !important;
  }

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

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