/** Shopify CDN: Minification failed

Line 263:1 Unexpected ";"

**/
:root {
  --color-black: #000;
  --color-black-alt: #0B0B0B;
  --color-gray-dark: #222;
  --color-gray: #858583;
  --color-gray-light: #CECDCA;
  --color-gray-bg: #f6f5f3;
  --color-white: #fff;
  --color-white-alt: #FFFEFA;
}

body,
  html,
  #MainContent,
  #shopify-section-main-product,
  #shopify-section-template--18780631203998__main,
  #shopify-section-main,
  #PageContainer,
  #AppFrameMain,
  #app,
  #root,
  .product-container,
  .product__grid {
    max-width: none !important;
    width: 100vw !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow-x: visible !important;
  }

  .product-container {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100vw !important;
    box-sizing: border-box;
  }

  .product__info {
    width: 452px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .product__title {
    margin-bottom: 16px !important;
  }

  .product__cost {
    margin-bottom: 24px !important;
  }

  .product__info-message,
  .product__info .richtext {
    margin-bottom: 0 !important;
  }

  .product__purchase-block,
  .product__purchase-options {
    margin-bottom: 24px !important;
  }

  .product__info > *:last-child {
    margin-bottom: 0 !important;
  }

  .product__purchase-block {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .gg-subscription-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .product__info-message {
    font-family: Courier
    , monospace;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-black-alt);
    max-width: 452px;
    min-height: 66px;
  }


  .product__back-link {
    margin-left: 0;
    /* Align with new container padding */
    margin-top: 24px;
    margin-bottom: 32px;
  }

  .product__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    padding: 0 !important;
    /* Remove mobile padding */
    margin: 0 0 48px !important;
    /* Bottom margin before related products */
    background: none !important;
    /* Remove mobile background/shadow */
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .product__grid-left {
    width: auto !important;
    /* Allow grid to control width */
  }

  .product__image-container {
    height: 420px;
    /* Reduced height for tablet */
    margin-left: 0;
    /* Remove desktop-specific margin */
    padding: 0;
    border-radius: 12px;
    /* Keep some rounding */
    overflow: hidden;
    /* Ensure carousel respects border-radius */
  }

  .product__carousel.swiper-container {
    height: 100%;
  }

  .product__carousel .swiper-slide img {
    object-fit: cover;
    /* Ensure images cover the slide area */
  }

  .product__grid-right {
    width: auto !important;
    /* Allow grid to control width */
    padding-top: 0;
    /* Adjust if needed for vertical alignment */
  }

  .product__meta {
    max-width: 100%;
    /* Allow it to fill its grid column */
    padding: 0;
    height: auto;
  }

  .product__info {
    width: 100%;
    /* Full width of its container */
    height: auto;
  }

  .product__title {
    font-size: 32px;
    /* Adjust as needed from desktop */
    margin-bottom: 12px !important;
  }

  .product__cost {
    font-size: 20px;
    /* Adjust as needed */
    margin-bottom: 16px !important;
  }

  .product__info-message,
  .product__info .richtext {
    font-size: 13px;
    /* Slightly smaller for tablet */
    margin-bottom: 20px !important;
  }

  .product__purchase-block {
    gap: 16px;
    /* Space out purchase elements */
  }

  /* Adjustments for purchase options and sticky bar on tablet if it's not always at bottom */
  .gg-purchase-options-container {
    flex-direction: row;
    /* Keep horizontal for tablet */
    gap: 16px;
    margin-bottom: 12px !important;
  }
  .gg-purchase-option label {
    font-size: 13px;
  }
  .product__subscription-details {
    margin-bottom: 16px !important;
  }
  .subscription-frequency {
    font-size: 13px;
    padding: 8px 10px;
    height: auto;
  }

  .product__purchase-actions {
    flex-direction: row;
    /* Quantity and button side-by-side */
    gap: 16px;
  }
  .product__quantity {
    flex-basis: 120px;
    /* Fixed base for quantity */
    flex-shrink: 0;
  }
  .product__buttons {
    flex-grow: 1;
    /* Button takes remaining space */
  }
  .button_form {
    font-size: 14px;
    padding: 12px 16px;
    /* Adjust button padding */
  }

  /* Related Products */
  .product__related-inner {
    padding: 0 0 48px !important;
    /* Reduced padding, no horizontal for tablet */
    margin: 0 !important;
  }
  .product__related-heading {
    font-size: 28px;
    /* Adjust heading size */
    margin-bottom: 24px;
    padding: 0;
    /* Remove desktop padding */
    text-align: center;
    /* Center heading on tablet */
  }
  .product__related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    /* 2 columns for related products */
    gap: 24px 16px !important;
    /* Adjust gap */
    padding: 0 !important;
  }

  /* Styles for individual related product cards can be adjusted if needed */

.related-product-image img {
  height: 200px;
  /* Adjust related product image height */
}
.related-product-title {
  font-size: 14px;
}
.related-product-price {
  font-size: 13px;
};

/* More tablet styles will be added here in subsequent steps */


@media (max-width: 767px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding-bottom: 250px !important;
    /* Increased back for taller sticky bar */
  }
  .product {
    padding-top: 0;
    box-sizing: border-box;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .product__back-link {
    display: block;
    margin: 16px 0 24px 24px;
  }
  .product__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 32px 24px 48px;
    /* Restored bottom padding for content above sticky bar */
    margin: 0 auto 24px;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: visible !important;
  }
  .product__grid-left,
  .product__grid-right {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }
  .product__image-container {
    background: var(--color-gray-bg) !important;
    width: 398px !important;
    min-width: 0 !important;
    max-width: 398px !important;
    height: 280px !important;
    padding: 0 16px !important;
    margin: 0 auto 24px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    position: relative !important;

  }
  .product__image-container img,
  .product__carousel img {
    display: block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
  }
  .product__meta {
    width: 100%;
    margin: 0;
    align-items: stretch;
  }
  .product__meta > * {
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
  }
  .product__info h2 {
    font-family: "Novecento Cond Bold", var(--font-heading)
    , Courier
    , monospace;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0;
    max-width: 100%;
    word-break: break-word;
    hyphens: auto;
  }
  .product__cost {
    font-family: "Novecento Cond Bold", var(--font-heading)
    , Courier
    , monospace;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
  }
  .product__info-message {
    font-family: Courier
    , monospace;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-gray-dark);
    margin: 0 0 2s4px;
    letter-spacing: 0.01em;
    font-weight: 400;
  }

  @media (min-width: 768px) {
    .product__info-message {
      margin: 0;
    }
  }
  .product__info .richtext {
    color: var(--color-black-alt);
    font-family: Courier
    , monospace;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 14px;
  }
  .product__purchase-options {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  .product__purchase-option {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0;
    padding: 0;
  }
  .product__purchase-option input[type="radio"] {
    margin: 0;
    padding: 0;
    width: 16px;
    height: 16px;
    vertical-align: baseline;
    position: relative;
    top: 2px;
  }
  .product__purchase-option label {
    margin: 0;
    padding: 0;
    line-height: 1;
    vertical-align: baseline;
    font-family: inherit;
    font-size: inherit;
  }
  .product__purchase-actions {
    width: 100%;
    margin-bottom: 0;
  }
  .product__quantity.button_pill {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 24px;
    gap: 16px !important;
  }
  .product__quantity.button_pill input {
    width: 40px !important;
    font-size: 18px !important;
  }
  .product__quantity.button_pill button {
    font-size: 28px;
  }
  .product__buttons {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .button_form.button_pill.button_expand,
  .product__atc .button_pill,
  #product-btn-avail {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 48px !important;
    font-size: 18px !important;
    border-radius: 4px !important;
    margin-bottom: 0 !important;
  }

  #product-btn-sold {
    margin-top: 16px;
  }
  .product__related {
    margin-top: 32px;
    padding: 0;
  }
  .product__related-inner {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  .product__related-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    justify-items: center !important;
  }
  .product-card-wrapper,
  .related-product-card {
    width: 100% !important;
    max-width: 306px !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden !important;
  }
  .related-product-image {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }
  .related-product-image img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }
  .product__info-message {
    margin: 16px 0 24px;
  }
  .product__purchase-options {
    margin-bottom: 24px !important;
  }
  .product__quantity.button_pill {
    margin-bottom: 24px !important;
  }
  .product__buttons {
    margin-bottom: 24px !important;
  }
  .product__buttons:last-child {
    margin-bottom: 0 !important;
  }
  .product__purchase-actions {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .product-card-wrapper .card__image-atc {
    opacity: 1;
    pointer-events: auto;
  }
  .product-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
  .product__grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 24px !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-sizing: border-box;
  }
  .product__grid > * {
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
    white-space: normal;
  }
  .product__image-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border-radius: 0 !important;
  }
  .product__image-container img,
  .product__carousel img {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .product__meta,
  .product__meta > * {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0 !important;
    margin-right: 0 !important;
    word-break: break-word;
    white-space: normal;
  }
  .product__title,
  .product__cost,
  .product__info-message,
  .product__purchase-options,
  .product__purchase-block,
  .product__buttons {
    text-align: left;
    word-break: break-word;
    white-space: normal;
  }
  #product-btn-avail {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    font-size: 18px;
  }
  .product__purchase-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    margin: 0;
    padding: 0;
  }
  .product__purchase-block > * {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .product__purchase-options,
  .product__subscription-details,
  .product__purchase-actions {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .product__purchase-options {
    flex-direction: row;
    gap: 32px;
    margin-bottom: 24px;
  }
  .product__purchase-option {
    flex: 0 0 auto;
    width: auto;
  }
  .product__subscription-details {
    display: none;
    margin-bottom: 24px;
  }
  .product__purchase-actions {
    gap: 24px;
    margin-bottom: 0;
  }
  #product-btn-avail {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    font-size: 18px;
  }
  .product__form,
  .product__purchase-options,
  .product__buttons {
    outline: none !important;
  }

  /* Allow content to flow vertically */
  .product__info,
  .product__meta,
  .product__grid-right {
    height: auto !important;
    min-height: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  /* --- Purchase option toggles: no background, just text --- */
  .product__purchase-options {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
    background: none;
    box-shadow: none;
  }
  .product__purchase-option {
    flex: 1 1 0;
    margin: 0;
    padding: 0;
    min-width: 0;
  }
  .product__purchase-option label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    color: var(--color-black);
    opacity: 1;
    background: none;
    border: none;
    border-radius: 0;
    width: 100%;
    padding: 14px 0;
    text-align: center;
    transition: color 0.2s;
    box-shadow: none;
    cursor: pointer;
    margin: 0;
  }
  .product__purchase-option input[type="radio"]:checked + label {
    color: var(--color-gray);
    background: none;
    border: none;
  }

  /* --- Related product image container: square --- */
  .related-product-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    min-height: 0;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-bg);
    border-radius: 4px;
    padding: 16px;
    overflow: hidden;
  }
  .related-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* Hide mobile sticky bar elements if not used or style them for tablet */
  .mobile-sticky-purchase-actions-wrapper {
    position: static !important;
    /* Remove sticky behavior for tablet */
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-top: none !important;
    height: auto !important;
  }
}

@media (min-width: 768px) {
  .product {
    padding-top: 80px;
  }
  .product__related {
    margin-top: 64px;
    padding: 0;
  }
  .product__related-inner {
    padding-left: 84px;
    padding-right: 84px;
    width: 100%;
    box-sizing: border-box;
  }
  .product__related-heading {
    font-family: "Novecento Cond Bold", var(--font-heading)
    , sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-black-alt);
    margin-bottom: 48px;
  }
  .product__related-grid {
    display: grid;
    grid-template-columns: repeat(4, 306px);
    gap: 32px 16px;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .product {
    max-width: none;
    width: 100vw;
    margin: 0;
    padding: 0;
  }
  .product__grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .product__grid-left,
  .product__image-container {
    height: 512px;
  }
  .product__grid-right {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .product__meta {
    max-width: 360px !important;
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .product__meta > * {
    max-width: 100% !important;
    word-break: break-word;
  }
  .product__info,
  .product__info > * {
    max-width: 100% !important;
    word-break: break-word;
  }
  .product__image-container {
    width: 100% !important;
    min-width: 300px !important;
    max-width: none !important;
    height: 512px !important;
    margin-left: 24px !important;
    margin-right: 0 !important;
    background: var(--color-gray-bg);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;

  }
}

/* Override desktop margins for mobile */
@media (max-width: 767px) {
  .product__image-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .product__meta {
    height: 100%;
    min-height: 0;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .product__info h2 {
    font-size: 24px;
    line-height: 1.2;
    max-width: 100%;
    word-break: break-word;
    hyphens: auto;
    margin-top: 0;
    margin-bottom: 16px;
  }
  .product__meta > * {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .product__purchase-options {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .product__purchase-option label {
    cursor: pointer;
    font-family: "Novecento Cond Bold", var(--font-heading)
    , Courier
    , monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    color: var(--color-black);
    opacity: 0.4;
    transition: opacity 0.2s
    , color 0.2s;
    text-align: left;
    display: block;
  }
  .product__purchase-option input:checked + label {
    opacity: 1;
    color: var(--color-black);
  }
  .product__quantity.button_pill {
    gap: 8px;
    margin-bottom: 0;
  }
  .product__quantity.button_pill > * {
    margin: 0 !important;
    padding: 0 !important;
  }
  .product__quantity.button_pill input,
  .product__quantity.button_pill button {
    height: 40px;
    box-sizing: border-box;
    vertical-align: middle;
  }
  .product__buttons {
    margin-top: 0 !important;
  }
  .product__related {
    margin-top: 84px !important;
    padding: 0;
  }
  .product__related-inner {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .product__related-heading {
    margin-bottom: 84px !important;
    padding-bottom: 0;
    border-bottom: none;
    align-self: flex-start;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .product__related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 24px;
    justify-content: start;
    width: 100%;
    align-self: flex-start;
    margin: 0;
    padding: 0;
  }
  .product__grid-right {
    height: 512px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .product__meta > * {
    margin: 0 0 24px;
  }
  .product__title {
    margin-bottom: 16px;
  }
  .product__meta > *:last-child {
    margin-bottom: 0;
  }
  .product__meta p,
  .product__meta div {
    margin: 0;
  }
  .product__meta,
  .product__info {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    height: 100% !important;
  }
  .product__grid-right {
    align-items: center !important;
    text-align: center !important;
  }
  .product__meta,
  .product__info {
    align-items: center !important;
    text-align: center !important;
  }
  .product__meta > *,
  .product__info > * {
    align-items: center !important;
    text-align: center !important;
  }
  .product__grid-right,
  .product__meta,
  .product__info,
  .product__meta > *,
  .product__info > * {
    align-items: flex-start !important;
    text-align: left !important;
  }
}

/* === DESKTOP ≥1024 px — force RHS to stretch then centre ================= */
@media (min-width: 1024px) {
  /* let the grid item fill the full 512 px row height */
  .product__grid-right {
    align-self: stretch !important;
    /* kill align-self:start */
    display: flex;
    /* become a flex box   */
    flex-direction: column;
    justify-content: center;
    /* vertical centring   */
  }
  /* keep the 16 / 24 / 24 rhythm inside */
  .product__meta > * {
    margin: 0 0 24px;
  }
  .product__title {
    margin-bottom: 16px;
  }
  .product__meta > *:last-child {
    margin-bottom: 0;
  }
  /* scrub default p/div margins inside the meta stack */
  .product__meta p,
  .product__meta div {
    margin: 0;
  }

  .gg-purchase-options-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    /* Reduced gap slightly */
    margin-bottom: 24px !important;
    width: 100%;
    /* Ensure it uses the available width of its parent */
  }

  .gg-purchase-option {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    /* Don't grow or shrink, size based on content */
  }

  .gg-purchase-option label {
    font-family: "Novecento Cond Bold", var(--font-heading)
    , sans-serif;
    padding: 0 !important;
    text-align: left !important;
    white-space: nowrap;
    /* Prevent labels from wrapping */
    /* font-size might need to be controlled here if it's too large */
  }
}

/* Related Products - Use Collection Page Card Styling */
@media (max-width: 767px) {
  /* Base Card Structure */
  .product__related .product-card__container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .product__related .product-card__image {
    background: var(--color-gray-bg);
    border-radius: 4px;
    position: relative;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
  }

  .product__related .product-card__image a.card__img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .product__related .product-card__image img.card__img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .product__related .product-card__text {
    padding-top: 12px;
  }

  .product__related .card__name {
    font-size: 16px;
    font-family: var(--font-body, Courier, monospace);
    color: var(--color-black-alt);
    display: block;
    margin-bottom: 4px;
  }

  .product__related .card__price {
    font-size: 16px;
    font-family: var(--font-body, Courier, monospace);
    color: var(--color-black-alt);
    display: block;
  }

  /* Actions inside image */
  .product__related .product-card__actions {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    box-sizing: border-box;
  }

  .product__related .product-card__purchase-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
    cursor: pointer;
  }

  .product__related .purchase-option {
    font-family: "Novecento Cond Bold", var(--font-heading, sans-serif);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-gray);
  }

  .product__related .purchase-option.active {
    color: var(--color-black-alt);
  }

  .product__related .product-card__subscription-details {
    display: none;
    margin-bottom: 6px;
  }

  .product__related .subscription-frequency {
    width: 100%;
    height: 32px;
    padding: 0 28px 0 8px;
    border: 1px solid var(--color-gray-light);
    border-radius: 3px;
    font-size: 12px;
    background-color: var(--color-white);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml, %3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%230B0B0B' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
  }

  .product__related .add-to-cart-button {
    display: flex;
    height: 36px;
    padding: 0 8px;
    justify-content: center;
    align-items: center;
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-heading, sans-serif);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    width: 100%;
    cursor: pointer;
    border-radius: 3px;
    text-align: center;
  }
}

/* Desktop Related Products */
@media (min-width: 768px) {
  .product__related .product-card__container {
    width: 306px;
    height: 352px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }

  .product__related .product-card__image {
    background: var(--color-gray-bg);
    border-radius: 4px;
    position: relative;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    height: 280px;
  }

  .product__related .product-card__image a.card__img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
  }

  .product__related .product-card__image img.card__img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .product__related .product-card__text {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .product__related .card__name {
    font-family: Courier
    , monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black-alt);
  }

  .product__related .card__price {
    font-family: Courier
    , monospace;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black-alt);
  }

  /* Actions overlaid on image */
  .product__related .product-card__actions {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    box-sizing: border-box;
  }

  .product__related .product-card__purchase-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    cursor: pointer;
  }

  .product__related .purchase-option {
    font-family: "Novecento Cond Bold", var(--font-heading, sans-serif);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
  }

  .product__related .purchase-option.active {
    color: var(--color-black-alt);
  }

  .product__related .product-card__subscription-details {
    display: none;
    margin-bottom: 12px;
  }

  .product__related .subscription-frequency {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid var(--color-gray-light);
    border-radius: 4px;
    font-size: 14px;
    background-color: var(--color-white);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml, %3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230B0B0B' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
  }

  .product__related .add-to-cart-button {
    display: flex;
    height: 44px;
    padding: 0 12px;
    justify-content: center;
    align-items: center;
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-heading, sans-serif);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    width: 100%;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
  }

  .product__related .add-to-cart-button:hover {
    opacity: 0.8;
  }

  .product__related .product-card__image:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }
}

.product__title,
.product__cost,
.product__info-message {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.product__info-message p,
.product__info-message div,
.product__info-message span {
  margin: 0 !important;
  padding: 0 !important;
}

.product__title {
  font-family: "Novecento Cond Bold", var(--font-heading)
  , Courier
  , monospace;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0;
  max-width: 100%;
  word-break: break-word;
  hyphens: auto;
}

.product__cost {
  font-family: "Novecento Cond Bold", var(--font-heading)
  , Courier
  , monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}

@media (min-width: 768px) {
  .product__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .product__cost {
    margin-top: 0;
  }
}

/* Clean up old styles */

/* Mobile related products grid adjustment */@media (max-width: 767px) {
  .product__related-grid {
    justify-items: stretch;
    align-items: start;
  }

  .product__related-heading {
    margin-bottom: 24px !important;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .product__grid-right {
    width: 452px;
  }

  .product__meta {
    width: 452px;
  }

  .product__info {
    width: 452px;
    /* height: 124px; */
    display: flex;
    flex-direction: column;
  }

  .product__purchase-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

/* Ensure 48px spacing between heading and grid */
.product__related {
  position: relative;
}

.product__related-grid {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.product__related-heading {
  margin-bottom: 84px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

/* Clear any potential float issues */
.product__related:after {
  content: "";
  display: block;
  clear: both;
}

.product__related-grid {
  justify-content: start;
}

.product-card-wrapper {
  margin-left: 0;
}

.product__grid {
  display: grid;
  grid-template-columns: calc(50vw - 24px) auto;
  gap: 48px;
  width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  align-items: start;
}

/* Desktop only - don't apply to mobile */
@media (min-width: 768px) {
  .product__image-container {
    width: 100% !important;
    min-width: 300px !important;
    max-width: none !important;
    height: 512px !important;
    margin-left: 24px !important;
    margin-right: 0 !important;
    background: var(--color-gray-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
}

.product__grid-right {
  justify-self: end;
  width: 100%;
  max-width: 520px;
}

.product__back-link {
  margin-left: 24px;
  padding-left: 0;
  display: block;
  color: var(--color-black);
  transition: color 0.2s;
}

.product__back-link:hover {
  color: var(--color-gray);
}

@media (max-width: 900px) {
  .product__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    display: flex;
    flex-direction: column;
  }
  .product__back-link {
    margin-left: 0;
    margin-bottom: 16px;
  }
}

/* --- Fix purchase options fill and grid vertical alignment --- */
.product__purchase-options {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}
.product__purchase-option {
  flex: 1 1 0;
  display: flex;
  align-items: baseline;
  min-width: 0;
}
.product__purchase-option label {
  white-space: nowrap;
  display: inline-block;
}
.product__grid {
  display: grid;
  grid-template-columns: calc(50vw - 24px) auto;
  align-items: start;
}
.product__grid-right,
.product__meta {
  align-self: start !important;
  justify-content: flex-start !important;
  height: auto !important;
  min-height: 0 !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
  display: flex;
  flex-direction: column;
}

/* Remove debug outlines */
.product__title {
  margin-bottom: 16px !important;
}
.product__cost {
  margin-bottom: 24px !important;
  margin-top: 0 !important;
}
.product__info-message {
  margin-bottom: 24px !important;
  margin-top: 0 !important;
}
.product__purchase-options {
  margin-bottom: 24px !important;
  margin-top: 0 !important;
}
.product__buttons {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.product__meta,
.product__grid-right {
  align-items: flex-start !important;
  text-align: left !important;
}

.product__purchase-options {
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: left !important;
  width: 100%;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* --- keep "ONE-OFF" + "SUBSCRIPTION" hard-left --- */
.product__purchase-options {
  justify-content: flex-start;
  /* belt-and-braces */
}

.product__purchase-option {
  flex: 0 0 auto !important;
  /* stop the stretch */
  width: auto;
  /* no sneaky 100% */
}

.product__purchase-option label {
  text-align: left;
  /* text hugs the radio */
}

/* --- Subscription Dropdown --- */
.subscription-frequency {
  width: 100%;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid var(--color-gray-light);
  border-radius: 0;
  font-size: 14px;
  font-family: var(--font-body, Courier, monospace);
  color: var(--color-gray);
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml, %3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23858583' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  cursor: pointer;
}

.product__subscription-details {
  margin-top: 24px;
}

.button_form {
  max-width: 360px;
}

/* ===== GLOBAL SANITY – stop the horizontal bleed ===== */
html,
body,
#MainContent {
  width: 100%;
  /* kill 100vw */
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== MOBILE (≤767 px) ===== */
@media (max-width: 767px) {

  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding-bottom: 250px !important;
    /* Increased back for taller sticky bar */
  }

  /* Force overflow-y: visible on key containers to allow sticky to work with viewport */
  #MainContent,
  .product-container,
  #PageContainer,
  #AppFrameMain,
  #shopify-section-template--18780631203998__main,
  .product__grid,
  .product__grid-right,
  .product__meta,
  .product__form {
    overflow-y: visible !important;
    overflow-x: hidden !important;
  }

  /* gray background to match target */
  body {
    background: var(--color-gray-bg);
  }

  /* remove card styling for full-width layout */
  .product__grid {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 24px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0 16px 48px;
    /* Minimal side padding, bottom padding for sticky bar */
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-sticky-purchase-actions-wrapper {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background-color: var(--color-white-alt) !important;
    padding: 16px !important;
    z-index: 1000 !important;
    display: none;
    /* Hidden by default */
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-top: 1px solid var(--color-gray-light);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    max-height: 50vh;
    overflow-y: auto;
  }

  @media (max-width: 767px) {
    .mobile-sticky-purchase-actions-wrapper {
      display: flex !important;
    }

    .desktop-only {
      display: none !important;
    }

    body {
      padding-bottom: 120px;
      /* Ensure content doesn't get hidden behind sticky bar */
    }
  }

  @media (min-width: 768px) {
    .mobile-sticky-purchase-actions-wrapper {
      display: none !important;
    }

    .desktop-only {
      display: block !important;
    }
  }

  /* Styles for purchase options and subscription dropdown IN NORMAL FLOW - remove/comment out if not used here */
  /* .gg-purchase-options-container { ... } */
  /* .gg-purchase-options-container .gg-purchase-option { ... } */
  /* .gg-purchase-options-container .gg-purchase-option label { ... } */
  /* .gg-purchase-options-container .gg-purchase-option:first-child label { ... } */
  /* .gg-purchase-options-container .gg-purchase-option:last-child label { ... } */
  /* .gg-purchase-options-container .gg-purchase-option input[type="radio"]:checked + label { ... } */

  /* .product__subscription-details { ... } */
  /* .subscription-frequency { ... } */.mobile-sticky-purchase-actions-wrapper .gg-purchase-options-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    order: 1;
    /* Show first */
  }

  .mobile-sticky-purchase-actions-wrapper .gg-purchase-option {
    flex-grow: 0 !important;
    flex-shrink: 1 !important;
    flex-basis: auto !important;
    min-width: 0 !important;
  }

  .mobile-sticky-purchase-actions-wrapper .gg-purchase-option label {
    font-family: var(--font-heading, sans-serif);
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 1.12px;
    text-transform: uppercase !important;
    color: var(--color-black-alt) !important;
    opacity: 0.6;
    padding: 0 !important;
    /* No vertical padding, rely on parent alignment. Or add small if needed. */
    width: 100% !important;
    display: block !important;
    cursor: pointer;
  }

  .mobile-sticky-purchase-actions-wrapper .gg-purchase-option:first-child label {
    text-align: left !important;
  }

  .mobile-sticky-purchase-actions-wrapper .gg-purchase-option:last-child label {
    text-align: right !important;
  }

  .mobile-sticky-purchase-actions-wrapper .gg-purchase-option input[type="radio"]:checked + label {
    opacity: 1 !important;
  }

  .mobile-sticky-purchase-actions-wrapper .product__subscription-details {
    width: 100%;
    display: none;
    /* Hidden by default, shown via JS when subscription selected */
    margin: 0 !important;
    order: 2;
    /* Show after purchase options but before actions */
  }

  .mobile-sticky-purchase-actions-wrapper .subscription-frequency {
    width: 100% !important;
    height: 44px !important;
    padding: 0 40px 0 16px !important;
    font-family: var(--font-body, Courier, monospace);
    font-size: 14px !important;
    color: var(--color-black-alt) !important;
    border: 1px solid var(--color-gray-light) !important;
    border-radius: 4px !important;
    background-color: var(--color-white-alt) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml, %3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230B0B0B' stroke-width='1.5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    cursor: pointer;
    box-sizing: border-box !important;
  }

  .mobile-sticky-purchase-actions-wrapper .product__purchase-actions {
    display: flex;
    flex-direction: row !important;
    gap: 12px !important;
    width: 100%;
    align-items: center;
    order: 3;
    /* Show last */
  }

  .mobile-sticky-purchase-actions-wrapper .product__quantity {
    width: 120px !important;
    height: 48px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: var(--color-white) !important;
    border: 1px solid var(--color-gray-light) !important;
    border-radius: 4px !important;
    padding: 0 12px !important;
  }

  .mobile-sticky-purchase-actions-wrapper .product__quantity button {
    background: none !important;
    border: none !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    padding: 0 !important;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-sticky-purchase-actions-wrapper .product__quantity input {
    background: none !important;
    border: none !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    width: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .mobile-sticky-purchase-actions-wrapper #sticky-add-to-cart {
    flex: 1 !important;
    height: 48px !important;
    background: var(--color-black) !important;
    color: var(--color-white) !important;
    border: none !important;
    border-radius: 4px !important;
    font-family: var(--font-heading, sans-serif) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    margin: 0 !important;
  }

  /* back link */
  .product__back-link {
    display: block;
    margin: 16px 16px 24px;
    color: var(--color-black);
  }

  /* purchase options stay hard-left */
  .product__purchase-options {
    justify-content: flex-start;

    gap: 32px;
  }
  .product__purchase-option {
    flex: 0 0 auto;
  }

  /* qty picker + ATC bar full-width, stacked rhythm */
  .product__purchase-actions {
    gap: 24px;
  }

  /* black ATC bar */
  #product-btn-avail {
    background: var(--color-black) !important;
    color: var(--color-white) !important;
    height: 48px;
    width: 100%;
    border-radius: 4px;
    font-size: 18px;
  }
}

/* ===== DESKTOP ONLY (≥1024 px) ================================= */
@media (min-width: 1024px) {
  /* 0 — let both columns start at the same top edge */
  .product__grid {
    align-items: start;
  }
  /* 1 — left column is still 512 px tall */
  .product__grid-left,
  .product__image-container {
    height: 512px;
  }
  /* 2 — RHS grows with its content, no forced height */
  .product__grid-right {
    display: flex;
    /* flex to allow inner column control */
    align-items: flex-start;
    /* stick to top */
  }
  /* 3 — remove the centre-me code from last pass */
  .product__meta {
    margin: 0;
  } /* kill margin:auto */
  /* 4 — enforce the vertical rhythm */.product__meta > * {
    margin: 0 0 24px;
  }
  .product__title {
    margin-bottom: 16px;
  } /* 16 between title⇢cost */
  .product__meta > *:last-child {
    margin-bottom: 0;
  }
  /* 5 — nuke default p/div margins inside the meta stack */
  .product__meta p,
  .product__meta div {
    margin: 0;
  }
}

/* kill the sneaky recentering & gap ------------------------------------- */
@media (min-width: 1024px) {
  .product__grid {
    align-items: stretch !important;
  }
  .product__grid-right {
    align-self: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    /* vertical centering - GOOD */
    align-items: flex-start !important;
    /* Align children (like .product__meta) to the start (left) */
    height: 512px !important;
  }
  .product__grid-right.toppy {
    justify-content: flex-start !important;
    height: 100% !important;
  }
  .product__meta {
    margin: 0 auto !important;
    /* Center this block horizontally */
    width: 100%;
    /* Take available width, constrained by max-width */
    max-width: 360px !important;
    /* Explicit max-width */
  }
  /* Rhythm and margin reset for children of .product__meta */
  .product__meta > *:not(.product__info-message):not(.richtext) {
    margin: 0 0 24px !important;
    width: 100%;
    /* Make children take full width of .product__meta (up to 360px) */
    text-align: left !important;
    /* Ensure text within these children is left-aligned */
  }
  .product__title {
    margin-bottom: 16px !important;
  }
  .product__meta > *:last-child {
    margin-bottom: 0 !important;
  }
  .product__meta p,
  .product__meta div {
    margin-bottom: 0 !important;
  }
}

.product__purchase-options-container {
  margin-bottom: 24px !important;
}
.product__info-message {
  min-height: 0 !important;
  padding: 0 !important;
  margin-bottom: 24px !important;
}

/* ===== QUICK PATCH – MOBILE ≤767px =============================== */
@media (max-width: 767px) {

  /* kill the 100vw overflow */
  html,
  body,
  #MainContent,
  .product-container,
  .product__grid {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* keep the white "card" centred inside the rails */
  .product__grid {
    padding: 32px 24px 24px;
    margin: 0 auto 24px;
  }

  /* purchase-option row shouldn't push wider than 100 % */
  .product__purchase-options {
    flex-wrap: wrap;
    gap: 24px;
  }
  .product__purchase-option label {
    font-size: 14px;
  }

  /* qty picker + ATC bar full-width, stacked rhythm */
  .product__quantity,
  #product-btn-avail {
    width: 100%;
  }

  /* make sure nothing else re-introduces horizontal scroll */
  * {
    box-sizing: border-box;
  }
}

/* === DESKTOP (≥1024 px) – exact 16 px inset on the outsides and 8 px inset on the bottom === */
@media (min-width: 1024px) {
  .gg-purchase-options-container {
    align-items: flex-end;
  } /* pin children to the bottom */
  .gg-purchase-option {
    display: flex;
    align-items: flex-end;
  }

  /* left label: L 16 | R 8 | B 8  */
  .gg-purchase-option:first-child label {
    padding: 0 8px 8px 16px !important;
    text-align: left;
  }

  /* right label: L 8 | R 16 | B 8 */
  .gg-purchase-option:last-child label {
    padding: 0 16px 8px 8px !important;
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .gg-purchase-options-container {
    display: flex;
    gap: 24px;
    width: 100%;
  }
  .gg-purchase-option {
    flex: 1 1 0;
  };
  /* grow + shrink, 50/50 split  */
}

/* Subscription details visibility */
.product__subscription-details {
  display: none;
  /* Hidden by default */
  /* Add other styling like width, margin as needed here or ensure they are covered by existing rules */
  /* e.g., width: 100%; margin-bottom: 24px; */
}

.product__subscription-details.gg-subscription-details--visible {
  display: block;
  /* Show when class is present */
}

.product__info-message,
.product__info .richtext {
  margin-bottom: 0;
}

.product__title {
  margin-bottom: 16px !important;
}

.product__purchase-block,
.product__purchase-options {
  margin-bottom: 24px !important;
}

.product__info > *:last-child {
  margin-bottom: 0 !important;
}

/* Purchase Options Color Override */
.product__purchase-options label {
  color: var(--color-gray) !important;
}

.product__purchase-options input[type="radio"]:checked + label {
  color: var(--color-black-alt) !important;
}

/* Related Products Subscription Button Colors */
.product__related .product-card__purchase-options .purchase-option > span {
  color: var(--color-gray) !important;
}

.product__related .product-card__purchase-options .purchase-option--active > span {
  color: var(--color-black-alt) !important;
}

/* Final Spacing Override */
@media (min-width: 768px) {
  .product__info-message,
  .product__info .richtext {
    margin-bottom: 0 !important;
  }

  .product__meta .gg-subscription-wrapper {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
  }
}

/* Variant Selector Styling */
.product__variants {
  margin-bottom: 24px;
}

.product__option {
  margin-bottom: 16px;
}

.product__option-label {
  display: block;
  font-family: "Novecento Cond Bold", var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-black-alt);
  margin-bottom: 8px;
}

.product__option-select {
  width: 100%;
  max-width: 300px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--color-gray-light);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-body, Courier, monospace);
  background-color: var(--color-white);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml, %3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230B0B0B' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.product__option-select:focus {
  outline: 2px solid var(--color-black-alt);
  outline-offset: 2px;
}

.mobile-variants {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-gray-light);
  margin-bottom: 16px;
}

.product__purchase-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product__quantity {
  width: 140px;
}

.product__related-heading {
  margin-bottom: 24px;
}
.product__related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.related-product-card {
  background-color: var(--color-gray-bg);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.related-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
}
.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-product-info {
  text-align: center;
  margin-top: auto;
}
.related-product-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
