/* Horizon-Inspired Product Page Styles */
  .sub-modern-box {
        border: 1px solid #e7e7e7;
        background: #ffffff;
        padding: 8px 16px;
        border-radius: 6px;
        font-family: system-ui, sans-serif;
        max-width: 360px;
        font-size: 13px;
    }

    .sub-row {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 8px;
        gap: 12px;
    }

    .sub-label {
        font-weight: 500;
        color: #1f1f1f;
        width: 110px;
        font-size: 13px;
    }

    .sub-input {
        height: 30px;
        font-size: 13px;
        border: 1px solid #e7e7e7;
        border-radius: 6px;
        padding: 3px 8px;
        flex: 1;
    }

    .deliver-pill {
        background: #e3d5c8;
        padding: 3px 8px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 13px;
        display: inline-block;
    }

    #subscriptionValidationMsg,
    #combinationValidationMsg {
        margin-top: var(--spacing-element, 6px);
        color: #991b1b;
        font-size: var(--text-sm, 13px);
        display: none;
        padding: var(--spacing-element, 8px) var(--spacing-component, 12px);
        background-color: rgba(239, 68, 68, 0.12);
        border-radius: var(--border-radius-small, 4px);
        border-left: 3px solid var(--color-error, #b70000);
        line-height: var(--line-height-base, 1.4);
    }
    
    #subscriptionValidationMsg:not(:empty),
    #combinationValidationMsg:not(:empty) {
        display: block;
    }
    
    #subscriptionInfoMessage {
        display: none;
        margin-bottom: var(--spacing-component, 12px);
        padding: var(--spacing-element, 8px) var(--spacing-component, 12px);
        background-color: var(--color-info-light, #f0f9ff);
        border-left: 3px solid var(--color-info, #3b82f6);
        border-radius: var(--border-radius-small, 4px);
        font-size: var(--text-sm, 13px);
        color: var(--color-info-dark, #1e40af);
    }
    
    #subscriptionInfoMessage:not(:empty) {
        display: block;
    }
    
    #shippingMethodDetails {
        margin-top: var(--spacing-element, 8px);
        font-size: var(--text-xs, 12px);
        color: var(--color-text-muted, #666);
        display: none;
    }
    
    #shippingMethodDetails:not(:empty) {
        display: block;
    }
    
    .required-indicator {
        color: var(--color-error, #b70000);
    }
    
    .help-text {
        font-size: var(--text-xs, 11px);
        color: var(--color-text-muted, #666);
        margin-top: var(--spacing-element, 2px);
    }
    
    .flex-column {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .subscription-item-content {
        display: flex;
        align-items: center;
        gap: var(--spacing-element, 10px);
        flex: 1;
    }
    
    .subscription-item-right {
        text-align: right;
    }
    
    .subscription-item-actions {
        display: flex;
        align-items: center;
        gap: var(--spacing-element, 5px);
        justify-content: flex-end;
    }
    
    .subscription-item-meta {
        margin-top: var(--spacing-element, 5px);
    }
    
    .subscription-included {
        font-size: var(--text-xs, 11px);
        color: var(--color-text-muted, #666);
        font-weight: var(--font-weight-normal, normal);
    }
    
    .subscription-spec {
        font-size: var(--text-xs, 12px);
        color: var(--color-text-muted, #666);
    }
    
    .subscription-item-title {
        margin: 0;
    }
    
    .info-message-content {
        line-height: var(--line-height-base, 1.6);
    }
    
.freq-ui {
  padding: 8px 15px;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  background: #e3d5c8;
  cursor: pointer;
  transition: 0.2s;
  font-size: 14px;
}

.freq-ui.selected {
  background: #e7e7e7;
  color: #1f1f1f;
}

.freq-ui:hover {
  background: #e3d5c8;
}

.weekly-days {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


  .subscription-item {
  border: 1px solid #e7e7e7;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}

/* Highlight selected item */
.subscription-item.selected {
  background-color: #e7e7e7;
  border-color: #a6bc63;
}

/* Ensure checkbox is visible */
.subscription-item input.sub-select {
  width: 18px !important;
  height: 18px !important;
  cursor: pointer;
  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
}

.subscription-item input.sub-select-required {
    cursor: not-allowed;
    opacity: 0.6;
}

  .combo-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }

  .combo-card {
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 5px;
    text-align: center;
    width: 150px;
    cursor: pointer;
    position: relative;
  }

  .combo-card.selected {
    border-color: #cc4b37;
  }

  .combo-card.selected .combo-checkbox {
    color: #cc4b37;
    background: #cc4b37;
  }

  .combo-image {
    position: relative;
  }

  .combo-image img {
    width: 100%;
    border-radius: 10px;
  }

  .combo-checkbox {
    position: absolute;
    top: 5px;
    right: 5px;
    background: white;
    border-radius: 3px;
    padding: 2px;
    height:16px;
    width:16px;
  }

  .combo-info {
    margin-top: 5px;
  }


  .product-option-btn {
    border: 1px solid #e7e7e7;
    background: #ffffff;
    padding: 8px 14px;
    margin: 4px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    transition: .2s;
  }

  .product-option-btn.selected {
    background: #1f1f1f;
    color: #ffffff;
    border-color: #1f1f1f;
  }

  .product-option-btn[data-display-type="color"] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0;
    padding: 0;
    border: 2px solid #aaa;
    background-color: currentColor;
  }

  .product-option-btn[data-display-type="color"].selected {
    border: 2px solid #1f1f1f !important;
  }
  .product-main.horizon-style {
    padding: 24px 0 68px;
    margin: 0;
     }

  .product-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
    background: #e3d5c8;
    border-radius: 16px;
    overflow-x: clip;
    box-sizing: border-box;
  }

  /* Product Gallery - min-width: 0 so grid column can shrink and thumbnails scroll internally */
  .product-gallery {
    position: sticky;
    top: 20px;
    min-width: 0;
  }

  .gallery-main {
    position: relative;
    margin-bottom: 16px;
    background: #e3d5c8;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
  }

  .gallery-main-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .gallery-main-image.active {
    display: block;
    opacity: 1;
  }

  .gallery-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3d5c8;
    color: #6f6f6f;
  }

  .gallery-zoom-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e3d5c8;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    color: #1f1f1f;
    backdrop-filter: blur(10px);
  }

  .gallery-zoom-btn:hover {
    background: #e3d5c8;
    transform: scale(1.05);
  }

  .gallery-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 0;
    max-width: 100%;
    min-width: 0;
  }

  .gallery-thumbnails::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
  }

  .gallery-thumbnail {
    flex: 0 0 clamp(112px, 18vw, 190px);
    aspect-ratio: 1;
    border: 1px solid transparent;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    background: #e3d5c8;
    position: relative;
    scroll-snap-align: start;
  }

  .gallery-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
  }

  .gallery-thumbnail:hover::after,
  .gallery-thumbnail.active::after {
    border-color: #1f1f1f;
  }

  .gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Footer: prominent grey track + colored fill + circular arrows (match reference UI) */
  .gallery-thumbnails-footer {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Grey horizontal track (full-width bar) */
  .gallery-thumbnails-progress {
    position: relative;
    flex: 1;
    min-width: 0;
    height: 8px;
    border-radius: 999px;
    background: #e0e0e0;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Colored fill showing scroll progress */
  .gallery-thumbnails-progress-fill {
    display: block;
    width: 0%;
    height: 100%;
    background: #a4b75f;
    border-radius: 999px;
    transition: width 0.2s linear;
  }

  .gallery-thumbnails-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  /* PDP: prevent any horizontal page scroll; keep thumbnail rail scrolling internally */
  body.template-product-detail {
    overflow-x: hidden;
  }
  body.template-product-detail .main-content {
    overflow-x: hidden;
    max-width: 100vw;
  }
  body.template-product-detail .product-main,
  body.template-product-detail .product-container {
    overflow-x: clip;
  }
  body.template-product-detail .product-container > .product-gallery,
  body.template-product-detail .product-container > .product-info {
    min-width: 0;
  }
  body.template-product-detail .product-title {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* Circular prev/next buttons – light beige/grey, compact size */
  .gallery-thumbnails-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #d0ccc7;
    background: #e8e4df;
    color: #5a5753;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    padding: 0;
  }

  .gallery-thumbnails-nav:hover:not(:disabled) {
    background: #ddd9d4;
    border-color: #b8b4ae;
    color: #2a2826;
  }

  .gallery-thumbnails-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  /* Product Info - right side spacing so content doesn't sit at edge */
  .product-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 0;
    padding-right: 24px;
  }

  .product-vendor {
    color: #6f6f6f;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: -16px;
  }

  .product-sku {
    color: #6f6f6f;
    font-size: 12px;
    margin-bottom: -16px;
  }

  .product-sku__label {
    font-weight: 500;
    margin-right: 4px;
  }
  .product-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: #1f1f1f;
    margin: 0;
    letter-spacing: -0.02em;
  }

  .product-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .price-current {
    font-size: 24px;
    font-weight: 400;
    color: #1f1f1f;
    letter-spacing: -0.01em;
  }

  .price-compare {
    font-size: 18px;
    color: #8a8a8a;
    text-decoration: line-through;
    font-weight: 400;
  }

  /* Product Form */
  .product-form {
    display: grid;
    grid-template-columns: minmax(132px, 160px) 1fr;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #e7e7e7;
  }

  #productOptionsContainer:empty {
    display: none;
  }

  .product-option {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .option-label {
    font-weight: 500;
    color: #1f1f1f;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Color Swatches */
  .option-value-color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    padding: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }

  .option-value-color:hover:not(.disabled) {
    transform: scale(1.1);
    border-color: rgba(0, 0, 0, 0.2);
  }

  .option-value-color.selected {
    border-color: #1f1f1f;
    border-width: 2px;
  }

  .option-value-color.selected::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid #1f1f1f;
    border-radius: 50%;
  }

  .option-value-color.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    position: relative;
  }

  .option-value-color.disabled::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #cc4b37;
    transform: rotate(45deg);
  }

  /* Size/Text Options */
  .option-value-text {
    padding: 10px 20px;
    border: 1px solid #e7e7e7;
    border-radius: 0;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 400;
    color: #1f1f1f;
    font-size: 14px;
    min-width: 60px;
    text-align: center;
    border-radius: var(--border-radius-small);
  }
  

  .option-value-text.selected {
    border-color: #1f1f1f;
    background: #1f1f1f;
    color: #ffffff;
  }

  .option-value-text.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
  }

  /* Quantity Selector */
  .quantity-option {
    width: fit-content;
    grid-column: 1 / 2;
    margin: 0;
  }

  .quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e7e7e7;
    border-radius: var(--border-radius-medium);
    width: fit-content;
    overflow: hidden;
    background: #e3d5c8;
  }

  .quantity-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    color: #1f1f1f;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
  }

  .quantity-btn:hover:not(:disabled) {
    background: #e3d5c8;
  }

  .quantity-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .quantity-input {
    width: 60px;
    height: 44px;
    border: none;
    border-left: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    background: #e3d5c8;
    color: #1f1f1f;
    -moz-appearance: textfield;
  }

  .quantity-input::-webkit-inner-spin-button,
  .quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Action Button */
  .product-actions {
    display: flex;
    gap: 12px;
    flex-direction: column;
    width: 100%;
    position:relative;
    opacity:unset;
    grid-column: 2 / 3;
    justify-content: flex-end;
  }

  #productOptionsContainer,
  #comboContainer,
  #combinationValidationMsg,
  .subscription-option,
  #subscriptionInfoMessage,
  #subscriptionPlanContainer,
  #frequencyContainer,
  .product-option:not(.quantity-option),
  .cart-message {
    grid-column: 1 / -1;
  }

  .product-short-description {
    color: #6f6f6f;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
  }



  .product-main.horizon-style .product-breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 8px;
    font-size: 12px;
    color: #6f6f6f;
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .product-main.horizon-style .product-breadcrumb a {
    color: #1f1f1f;
    text-decoration: none;
  }

  .product-main.horizon-style .product-container {
    background: var(--color-surface) !important;
    border-radius: 16px !important;
    border: 1px solid #e7e7e7;
    gap: 24px;
  }

  .product-main.horizon-style .gallery-main {
    border-radius: 22px;
  }

  .product-main.horizon-style .gallery-thumbnail {
    border-radius: 12px;
    border-color: #e7e7e7;
  }

  .product-main.horizon-style .gallery-thumbnail.active::after,
  .product-main.horizon-style .gallery-thumbnail:hover::after {
    border-color: #a6bc63;
  }

  .product-main.horizon-style .product-title {
    font-size: clamp(32px, 2.5vw, 54px);
    line-height: 1.03;
    font-weight: 700;
    letter-spacing: 0;
  }

  .product-main.horizon-style .product-vendor,
  .product-main.horizon-style .product-sku {
    display: none;
  }

  .product-main.horizon-style .product-short-description {
    font-size: 14px;
    line-height: 1.4;
    color: #6f6f6f;
  }

  .product-main.horizon-style .product-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
  }

  .product-main.horizon-style .rating-star {
    color: #a6bc63;
    font-size: 14px;
    line-height: 1;
  }

  .product-main.horizon-style .rating-value {
    color: #1f1f1f;
    font-weight: 500;
  }

  .product-main.horizon-style .rating-count {
    color: #6f6f6f;
  }

  .product-main.horizon-style .price-current {
    font-size: clamp(30px, 2vw, 42px);
    font-weight: 700;
  }

  .product-main.horizon-style .price-compare {
    font-size: 16px;
  }

  .product-main.horizon-style .price-save {
    color: #a6bc63;
    font-size: 14px;
    font-weight: 500;
  }

  .product-main.horizon-style .price-tax-note {
    margin-top: -8px;
    color: #6f6f6f;
    font-size: 11px;
  }

  .product-main.horizon-style .product-form {
    display: grid !important;
    grid-template-columns: minmax(110px, 142px) 1fr !important;
    gap: 14px !important;
    border-top: none;
    padding-top: 6px;
  }

  .product-main.horizon-style #productOptionsContainer .product-option {
    gap: 8px;
  }

  .product-main.horizon-style #productOptionsContainer .option-label {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .product-main.horizon-style #productOptionsContainer .option-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-main.horizon-style #productOptionsContainer .option-values.option-values--color {
    display: flex;
    flex-wrap: wrap;
  }

  .product-main.horizon-style .product-option-btn {
    width: 100%;
    margin: 0;
    padding: 11px 40px 11px 12px;
    border-radius: 10px;
    border: 1px solid #e7e7e7;
    background: var(--color-surface);
    text-align: left;
    font-size: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .product-main.horizon-style .product-option-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1.5px solid #e7e7e7;
    transform: translateY(-50%);
    background: transparent;
  }

  .product-main.horizon-style .product-option-btn.selected {
    border-color: #a6bc63;
    background: color-mix(in srgb, #a6bc63 14%, var(--color-surface));
    color: #1f1f1f;
  }

  .product-main.horizon-style .product-option-btn.selected::after {
    border-color: #a6bc63;
    box-shadow: inset 0 0 0 3px #a6bc63;
  }

  .product-main.horizon-style .product-option-btn[data-display-type="color"] {
    width: 34px;
    height: 34px;
    padding: 0;
  }

  .product-main.horizon-style .product-option-btn[data-display-type="color"] .product-option-btn__title,
  .product-main.horizon-style .product-option-btn[data-display-type="color"] .product-option-btn__price,
  .product-main.horizon-style .product-option-btn[data-display-type="color"] .product-option-btn__mrp {
    display: none;
  }

  .product-main.horizon-style .product-option-btn__mrp {
    text-decoration: line-through;
    color: #6f6f6f;
    font-size: 12px;
  }

  .product-main.horizon-style .product-option-btn__title {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    color: #1f1f1f;
  }

  .product-main.horizon-style .product-option-btn__meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    line-height: 1.15;
    color: #6f6f6f;
  }

  .product-main.horizon-style .product-option-btn__price {
    font-weight: 700;
    color: #1f1f1f;
    font-size: 13px;
  }


  .product-main.horizon-style .product-option-btn__save {
    color: #a6bc63;
  }

  .product-main.horizon-style .product-option-btn[data-display-type="color"]::after {
    display: none;
  }

  .product-main.horizon-style .product-detail-copy {
    color: #1f1f1f;
    font-size: 14px;
    line-height: 1.55;
    margin-top: 2px;
  }

  .product-main.horizon-style .product-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
  }

  .product-main.horizon-style .product-benefits-list li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    color: #1f1f1f;
  }

  .product-main.horizon-style .product-benefits-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a6bc63;
    position: absolute;
    left: 0;
    top: 7px;
  }

  .product-main.horizon-style .quantity-option {
    grid-column: 1 / 2 !important;
    margin: 0 !important;
  }

  .product-main.horizon-style .quantity-option .option-label {
    display: none;
  }

  .product-main.horizon-style .quantity-wrapper,
  .product-main.horizon-style .quantity-input {
    background: var(--color-surface) !important;
  }

  .product-main.horizon-style .quantity-wrapper {
    min-height: 40px;
    border-radius: 10px;
  }

  .product-main.horizon-style .quantity-btn,
  .product-main.horizon-style .quantity-input {
    height: 40px;
  }

  .product-main.horizon-style .quantity-btn {
    width: 34px;
  }

  .product-main.horizon-style .quantity-input {
    width: 42px;
  }

  .product-main.horizon-style .product-actions {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: flex-end !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
    z-index: auto !important;
    grid-column: 2 / 3 !important;
    margin-bottom: 0 !important;
  }

  .product-main.horizon-style .btn-add-to-cart {
    height: 40px;
    border-radius: 10px;
    background: #a6bc63;
    border-color: #a6bc63;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
  }

  .product-main.horizon-style .btn-add-to-cart:hover:not(:disabled) {
    background: #8da451;
    border-color: #8da451;
  }

  .product-main.horizon-style #productOptionsContainer,
  .product-main.horizon-style #comboContainer,
  .product-main.horizon-style #combinationValidationMsg,
  .product-main.horizon-style .subscription-option,
  .product-main.horizon-style #subscriptionInfoMessage,
  .product-main.horizon-style #subscriptionPlanContainer,
  .product-main.horizon-style #frequencyContainer,
  .product-main.horizon-style .product-option:not(.quantity-option),
  .product-main.horizon-style .product-detail-copy,
  .product-main.horizon-style .product-benefits-list,
  .product-main.horizon-style .cart-message {
    grid-column: 1 / -1 !important;
  }

  .btn {
    padding: 16px 32px;
    border-radius: var(--border-radius-medium);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    width: 100%;
  }

  .btn-primary {
    background: #1f1f1f;
    color: #ffffff;
    border-color: #1f1f1f;
  }

  .btn-primary:hover:not(:disabled) {
    background: #8da451;
    border-color: #8da451;
  }

  .btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .btn-primary.loading {
    opacity: 0.7;
    cursor: wait;
  }

  .cart-message {
    padding: var(--spacing-component, 12px) var(--spacing-component, 16px);
    color: var(--color-success, #059669);
    font-size: var(--text-base, 14px);
    font-weight: var(--font-weight-normal, 500);
    text-transform: none;
    letter-spacing: 0;
    animation: fadeIn var(--transition, 0.3s) var(--ease-out, ease);
    border-radius: var(--border-radius-small, 4px);
    margin-top: var(--spacing-component, 12px);
    line-height: var(--line-height-base, 1.5);
  }

  /* Keep inline cart message hidden until JS explicitly shows it */
  #cartMessage {
    display: none;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 0;
  }
  
  .cart-message.error {
    color: var(--color-error, #b70000);
    background-color: var(--color-error-light, #ffe6e6);
    border: 1px solid var(--color-error, #b70000);
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-4px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Product Description Short */
  .product-description-short {
    color: #6f6f6f;
    font-size: 14px;
    line-height: 1.6;
    padding-top: 32px;
    border-top: 1px solid #e7e7e7;
  }

  /* Product Description Section */
  .product-description-section {
    padding: 80px 0;
    border-top: 1px solid #e7e7e7;
  }

  .description-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0px;
  }

  .product-description-content {
    line-height: 1.8;
    color: #6f6f6f;
    font-size: 15px;
  }

  .product-description-content h1,
  .product-description-content h2,
  .product-description-content h3 {
    color: #1f1f1f;
    font-weight: 400;
    margin-top: 32px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }

  .product-description-content p {
    margin-bottom: 16px;
  }

  /* Related Products */
  .related-products-section {
    padding: 80px 0;
    border-top: 1px solid #e7e7e7;
  }

  .section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
    box-sizing: border-box;
  }

  /* PDP: prevent related products and content widgets from causing horizontal scroll */
  body.template-product-detail .related-products-section,
  body.template-product-detail .related-products-section .section-container,
  body.template-product-detail .theme-section--content[data-section="content"],
  body.template-product-detail .theme-section--content[data-section="content"] .theme-widget-wrapper {
    max-width: 100%;
    overflow-x: hidden;
  }
  body.template-product-detail .products-grid {
    min-width: 0;
  }

  .section-title {
    font-size: 24px;
    font-weight: 400;
    color: #1f1f1f;
    margin: 0 0 48px 0;
    text-align: center;
    letter-spacing: -0.01em;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
  }

  /* Full Screen Gallery Modal */
  .gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
  }

  .gallery-modal.active {
    display: block;
  }

  .gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
  }

  .gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
  }

  .gallery-modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
  }

  .gallery-modal-close,
  .gallery-modal-nav {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10000;
    color: #fff;
    backdrop-filter: blur(10px);
  }

  .gallery-modal-close:hover,
  .gallery-modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
  }

  .gallery-modal-close {
    top: 32px;
    right: 32px;
  }

  .gallery-modal-nav {
    top: 50%;
    transform: translateY(-50%);
  }

  .gallery-modal-prev {
    left: 32px;
  }

  .gallery-modal-next {
    right: 32px;
  }

  .gallery-modal-counter {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  /* Product Attributes Section */
  .product-attributes-section {
    padding: 36px 0 24px;
    border-top: 0;
  }

  .attributes-accordion {
    margin-top: 16px;
    border-top: 2px solid #9bae5c;
  }

  .attributes-accordion-item {
    border-bottom: 2px solid #9bae5c;
  }

  .attributes-accordion-trigger {
    width: 100%;
    min-height: 94px;
    padding: 12px 6px;
    background: transparent;
    color: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-weight: 600;
    font-size: clamp(22px, 2vw, 34px);
    line-height: 1.08;
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
    text-align: left;
  }

  .attributes-accordion-trigger > span:first-child {
    text-align: left;
    margin-right: auto;
  }

  .attributes-accordion-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ded9d4;
    color: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.22s ease;
  }

  .attributes-accordion-item.is-open .attributes-accordion-icon {
    transform: rotate(180deg);
  }

  .attributes-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .attributes-accordion-item.is-open .attributes-accordion-panel {
    max-height: 1200px;
  }

  .attributes-accordion-content {
    padding: 2px 2px 22px;
  }

  .attributes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
  }

  .attributes-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    background: #e3d5c8;
    align-items: flex-start;
    transition: box-shadow .18s ease, transform .12s ease, background .18s ease;
  }

  .attributes-card:hover { box-shadow: 0 6px 18px rgba(16,24,40,0.06); transform: translateY(-2px); background: #ffffff; }

  .attribute-icon { width: 40px; height: 40px; border-radius: 10px; display:flex; align-items:center; justify-content:center; background:#e3d5c8; color:#6f6f6f; flex-shrink:0; }

  .attribute-info { min-width:0; }
  .attribute-name { font-size:11px; text-transform:uppercase; color:#1f1f1f; font-weight:700; margin-bottom:6px; }
  .attribute-value-text { font-size:14px; color:#6f6f6f; line-height:1.4; word-break:break-word; }

  /* Product Specifications Section */
  .product-specifications-section {
    padding: 80px 0;
    border-top: 1px solid #e7e7e7;
  }

  .specifications-container {
    margin-top: 32px;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .product-container {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 24px 0px;
    }
    
    .product-gallery {
      position: static;
      min-width: 0;
    }
    
    .gallery-thumbnail {
      flex-basis: clamp(96px, 20vw, 148px);
    }
  }

  @media (max-width: 768px) {
    .product-container {
      padding: 16px;
      gap: 32px;
      width: 100%;
      max-width: 100%;
    }

    .product-info {
      padding-right: 16px;
    }

    .product-main.horizon-style .product-breadcrumb {
      padding: 0 16px 8px;
    }

    .product-form {
      grid-template-columns: 1fr;
    }

    .product-main.horizon-style .product-form {
      grid-template-columns: minmax(150px, 44%) minmax(0, 1fr) !important;
      column-gap: 12px !important;
      align-items: center !important;
    }

    #productOptionsContainer,
    #comboContainer,
    #combinationValidationMsg,
    .subscription-option,
    .product-option:not(.quantity-option),
    .cart-message {
      grid-column: 1 / -1;
    }

    .product-main.horizon-style #productOptionsContainer,
    .product-main.horizon-style #comboContainer,
    .product-main.horizon-style #combinationValidationMsg,
    .product-main.horizon-style .subscription-option,
    .product-main.horizon-style .product-detail-copy,
    .product-main.horizon-style .product-benefits-list,
    .product-main.horizon-style .product-option:not(.quantity-option),
    .product-main.horizon-style .cart-message {
      grid-column: 1 / -1 !important;
    }

    .product-main.horizon-style .quantity-option {
      grid-column: 1 / 2 !important;
      margin: 0 !important;
    }

    .product-main.horizon-style .product-actions {
      grid-column: 2 / 3 !important;
      margin: 0 !important;
    }

    .product-main.horizon-style .product-benefits-list {
      grid-template-columns: 1fr 1fr;
    }
    
    .product-title {
      font-size: 28px;
    }
    
    .price-current {
      font-size: 20px;
    }
    
    .gallery-thumbnail {
      flex-basis: clamp(86px, 24vw, 128px);
    }
    
    .gallery-modal-content {
      padding: 16px;
    }
    
    .gallery-modal-close,
    .gallery-modal-nav {
      width: 40px;
      height: 40px;
    }
    
    .gallery-modal-close {
      top: 16px;
      right: 16px;
    }
    
    .gallery-modal-prev {
      left: 16px;
    }
    
    .gallery-modal-next {
      right: 16px;
    }

    @media (max-width: 420px) {
      .product-main.horizon-style .product-form {
        grid-template-columns: 1fr !important;
      }

      .product-main.horizon-style .quantity-option,
      .product-main.horizon-style .product-actions {
        grid-column: 1 / -1 !important;
      }
    }
    
    .products-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 24px;
    }
    
    .product-description-section,
    .related-products-section {
      padding: 48px 0;
    }    
   

    .attributes-accordion-trigger {
      min-height: 74px;
      font-size: clamp(20px, 5.8vw, 28px);
      padding: 10px 2px;
    }

    .attributes-accordion-icon {
      width: 40px;
      height: 40px;
    }
  }

  @media (max-width: 480px) {
    body.template-product-detail .product-container {
      padding-left: 16px;
      padding-right: 16px;
    }
    .product-title {
      font-size: 24px;
    }
    .product-gallery {
      min-width: 0;
    }
    .gallery-thumbnail {
      flex-basis: clamp(78px, 30vw, 112px);
    }

    .gallery-thumbnails-footer {
      gap: 8px;
    }

    .gallery-thumbnails-nav {
      width: 28px;
      height: 28px;
    }
    
    .products-grid {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .attributes-accordion-trigger {
      min-height: 64px;
      font-size: clamp(18px, 5.6vw, 24px);
    }

    .attributes-accordion-icon {
      width: 36px;
      height: 36px;
    }
  }

  /* Vilvah-inspired PDP skin */
  .product-main.horizon-style {
    border-radius: 28px;
    padding: 10px 0 28px;
    margin-top: 8px;
  }

  .product-main.horizon-style .product-breadcrumb {
    max-width: 1400px;
    margin: 0 auto 8px;
    padding: 0 0px;
    color: #6c6b69;
    font-size: 1.2rem;
  }

  .product-main.horizon-style .product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4px 0px 0;
    gap: clamp(22px, 3.6vw, 56px);
    align-items: start;
    background: #ffffff !important;
    border: 1px solid #eadfd6 !important;
    border-radius: 28px;
  }

  .product-main.horizon-style .gallery-main {
    border-radius: 28px;
    background: #ffffff !important;
    border: 1px solid #efe6de !important;
  }

  .product-main.horizon-style .product-info {
    background: #ffffff !important;
    border-radius: 20px;
  }

  .product-main.horizon-style .gallery-main-image {
    border-radius: 28px;
  }

  .product-main.horizon-style .gallery-thumbnail {
    border-radius: 18px;
    border-color: #ddd6cf;
    background: #fff;
  }

  .product-main.horizon-style .gallery-thumbnail.active::after,
  .product-main.horizon-style .gallery-thumbnail:hover::after {
    border-color: #9bae5c;
  }

  /* Horizon/Vilvah skin: grey track + green fill */
  .product-main.horizon-style .gallery-thumbnails-progress {
    background: #d8d8d8;
    height: 8px;
  }

  .product-main.horizon-style .gallery-thumbnails-progress-fill {
    background: #9bae5c;
  }

  .product-main.horizon-style .gallery-thumbnails-nav {
    background: #e8e4df;
    border-color: #d6d1cc;
    color: #5a5753;
  }

  .product-main.horizon-style .gallery-thumbnails-nav:hover:not(:disabled) {
    background: #ddd9d4;
    border-color: #b8b4ae;
    color: #2a2826;
  }

  .product-main.horizon-style .product-info {
    gap: 12px;
  }

  /* Product title – large size, local heading font */
  .product-main.horizon-style .product-title {
    font-family: "Barlow", sans-serif;
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #171717;
    margin: 0;
  }

  .product-main.horizon-style .product-short-description {
    font-size: clamp(16px, 1.2vw, 22px);
    line-height: 1.3;
    color: #2a2a2a;
    margin-top: -4px;
  }

  .product-main.horizon-style .product-rating-row {
    gap: 8px;
    color: #343434;
    font-size: 1.3rem;
  }

  .product-main.horizon-style .price-current {
    font-size: clamp(30px, 2.4vw, 44px);
    font-weight: 700;
    color: #121212;
  }

  .product-main.horizon-style .price-compare {
    font-size: 1.7rem;
    color: #767676;
  }

  .product-main.horizon-style .price-save {
    font-size: 1.25rem;
    color: #9bae5c;
    font-weight: 600;
  }

  .product-main.horizon-style .price-tax-note {
    font-size: 1.1rem;
    color: #666;
  }

  .product-main.horizon-style .product-option .option-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #202020;
  }

  .product-main.horizon-style .product-option-btn {
    border-radius: 18px;
    border-color: #d8d3cd;
    min-height: 48px;
    font-size: 1.2rem;
  }

  .product-main.horizon-style .product-option-btn.selected {
    border-color: #8fa650;
    background: #f8faef;
    color: #111;
  }

  /* Horizon/Vilvah-style quantity pill: white interior, green border */
  .product-main.horizon-style .quantity-wrapper {
    border-radius: 999px;
    border-color: #9bae5c;
    background: #ffffff;
  }

  .product-main.horizon-style .quantity-btn,
  .product-main.horizon-style .quantity-input {
    font-size: 1.3rem;
  }

  /* Horizon/Vilvah-style Add To Cart pill with soft green gradient */
  .product-main.horizon-style .btn-add-to-cart {
    min-height: 58px;
    background: linear-gradient(90deg, #9bae5c 0%, #c3d47b 100%);
    border-color: transparent;
    color: #fff;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .product-main.horizon-style .btn-add-to-cart:hover {
    background: linear-gradient(90deg, #91a34f 0%, #b7c97a 100%);
    border-color: transparent;
  }

  .product-attributes-section {
    border-radius: 28px;
    margin-top: 12px;
    padding-top: 18px;
  }

  .attributes-accordion {
    border-top-color: #9bae5c;
  }

  .attributes-accordion-item {
    border-bottom-color: #9bae5c;
  }

  .attributes-accordion-trigger {
    font-family: "Barlow", sans-serif;
    color: #111;
  }

  .attributes-accordion-icon {
    background: #ded9d4;
  }

  /* PDP main-content background lock */
  body.template-product-detail .main-content,
  body.template-product-detail .main-content > .container {
    background: #f5ece5 !important;
  }

  /* Remove side gutters on PDP so beige background spans full width */
  body.template-product-detail .main-content > .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* PDP two-row background split */
  body.template-product-detail .product-main.horizon-style,
  

  body.template-product-detail .related-products-section,
  body.template-product-detail .related-products-section .section-container,
  body.template-product-detail .theme-section--content[data-section="content"],
  body.template-product-detail .theme-section--content[data-section="content"] .theme-widget-wrapper {
    background: #ffffff !important;
  }

  /* PDP heading typography */
  body.template-product-detail .product-main.horizon-style .product-title,
  body.template-product-detail .attributes-accordion-trigger,
  body.template-product-detail .related-products-section .section-title {
    font-family: "Barlow", sans-serif !important;
  }

  body.template-product-detail .product-main.horizon-style .product-title {
    font-size: clamp(28px, 3.2vw, 48px) !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
  }

  /* PDP gap cleanup: remove white spacing bands and keep one continuous beige row */
  body.template-product-detail .main-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.template-product-detail .product-main.horizon-style {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body.template-product-detail .product-attributes-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-top: 0 !important;
  }

  body.template-product-detail .product-attributes-section .description-container,
  body.template-product-detail .product-attributes-section .attributes-accordion,
  body.template-product-detail .product-attributes-section .attributes-accordion-item,
  body.template-product-detail .product-attributes-section .attributes-accordion-trigger,
 

  /* PDP action row: match compact qty + CTA style */
  body.template-product-detail .product-main.horizon-style .product-form {
    grid-template-columns: 210px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 18px !important;
  }

  body.template-product-detail .product-main.horizon-style .quantity-option {
    grid-column: 1 / 2 !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: center !important;
  }

  body.template-product-detail .product-main.horizon-style .quantity-wrapper {
    width: 210px !important;
    min-height: 64px !important;
    height: 64px !important;
    border: 2px solid #9bae5c !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 18px !important;
    gap: 14px !important;
    overflow: hidden !important;
  }

  body.template-product-detail .product-main.horizon-style .quantity-btn {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #dddddd !important;
    color: #1b1b1b !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body.template-product-detail .product-main.horizon-style .quantity-btn:hover:not(:disabled) {
    background: #d5d5d5 !important;
  }

  body.template-product-detail .product-main.horizon-style .quantity-input {
    width: 42px !important;
    height: 64px !important;
    border: 0 !important;
    background: transparent !important;
    color: #111 !important;
    font-size: 2.4rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    padding: 0 !important;
    line-height: 1 !important;
  }

  body.template-product-detail .product-main.horizon-style .product-actions {
    grid-column: 2 / 3 !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 58px !important;
    align-self: center !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  /* PDP Add to Cart – ensure exact Vilvah-style pill on PDP too */
  body.template-product-detail .product-main.horizon-style .btn-add-to-cart {
    min-height: 58px !important;
    height: 58px !important;
    padding: 12px 32px !important;
    border: none !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #9bae5c 0%, #c3d47b 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    font-size: 1.55rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    box-shadow: none !important;
    width: 100% !important;
  }

  body.template-product-detail .product-main.horizon-style .btn-add-to-cart:hover:not(:disabled) {
    background: linear-gradient(90deg, #91a34f 0%, #b7c97a 100%) !important;
    border-color: transparent !important;
  }

  @media (max-width: 900px) {
    body.template-product-detail .product-main.horizon-style .product-form {
      grid-template-columns: 210px minmax(0, 1fr) !important;
      gap: 12px !important;
    }

    body.template-product-detail .product-main.horizon-style .btn-add-to-cart {
      font-size: 1rem !important;
    }
  }

  /* Fallback (when body class differs): enforce PDP quantity look */
  .product-main.horizon-style .product-form {
    grid-template-columns: 210px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 18px !important;
  }

  .product-main.horizon-style .quantity-wrapper {
    width: 210px !important;
    min-height: 64px !important;
    height: 64px !important;
    border: 2px solid #9bae5c !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 18px !important;
    gap: 14px !important;
    overflow: hidden !important;
  }

  .product-main.horizon-style .quantity-btn {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #dddddd !important;
    color: #1b1b1b !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .product-main.horizon-style .quantity-input {
    width: 42px !important;
    height: 64px !important;
    border: 0 !important;
    background: transparent !important;
    color: #111 !important;
    font-size: 2.4rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    padding: 0 !important;
    line-height: 1 !important;
  }

  /* Final locked PDP action row style (default theme) */
  .product-main.horizon-style #productForm {
    grid-template-columns: 190px minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 20px !important;
  }

  .product-main.horizon-style #productForm .quantity-option {
    grid-column: 1 / 2 !important;
    margin: 0 !important;
  }

  .product-main.horizon-style #productForm .quantity-wrapper {
    width: 180px !important;
    min-height: 56px !important;
    height: 56px !important;
    border: 2px solid #9bae5c !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    padding: 0 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }

  .product-main.horizon-style #productForm .quantity-btn {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    border-radius: 50% !important;
    background: #d9d9d9 !important;
    border: 0 !important;
    color: #171717 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .product-main.horizon-style #productForm .quantity-input {
    width: 30px !important;
    height: 56px !important;
    border: 0 !important;
    background: transparent !important;
    color: #111 !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -0.01em !important;
    text-align: center !important;
    padding: 0 !important;
  }

  .product-main.horizon-style #productForm .product-actions {
    grid-column: 2 / 3 !important;
    min-height: 56px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .product-main.horizon-style #productForm .btn-add-to-cart {
    min-height: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
    width: 100% !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    word-spacing: -0.04em !important;
    line-height: 0.95 !important;
    text-transform: none !important;
  }

  @media (max-width: 768px) {
    .product-main.horizon-style #productForm {
      grid-template-columns: 110px minmax(0, 1fr) !important;
      column-gap: 10px !important;
      align-items: center !important;
    }

    .product-main.horizon-style #productForm .quantity-wrapper {
      width: 96px !important;
      min-height: 42px !important;
      height: 42px !important;
      border-radius: 13px !important;
      padding: 0 8px !important;
      gap: 6px !important;
    }

    .product-main.horizon-style #productForm .quantity-btn {
      width: 18px !important;
      height: 18px !important;
      min-width: 18px !important;
      font-size: 16px !important;
    }

    .product-main.horizon-style #productForm .quantity-input {
      width: 24px !important;
      height: 42px !important;
      font-size: 1.2rem !important;
    }

    .product-main.horizon-style #productForm .product-actions {
      min-height: 42px !important;
    }

    .product-main.horizon-style #productForm .btn-add-to-cart {
      min-height: 42px !important;
      height: 42px !important;
      border-radius: 13px !important;
      font-size: 1.05rem !important;
      width: 100% !important;
    }
  }
