/* ============================================================
   BHP Shop — Product Page Styles
   Loaded only on single product pages
   ============================================================ */

/* ----------------------------------------------------------
   Page wrapper
---------------------------------------------------------- */
.bhp-product-page {
    max-width: 100%;
    overflow-x: hidden;
    font-family: system-ui, -apple-system, sans-serif;
}

/* ----------------------------------------------------------
   Breadcrumb
---------------------------------------------------------- */
.bhp-breadcrumb {
    padding: 12px 48px;
    font-size: 12px;
    color: #999;
    background: #fff;
    border-bottom: 1px solid #f0ede8;
}

.bhp-breadcrumb a {
    color: #999;
    text-decoration: none;
}

.bhp-breadcrumb a:hover { color: #D4AF37; }
.bhp-breadcrumb span { margin: 0 6px; }

/* ----------------------------------------------------------
   Product section (white)
---------------------------------------------------------- */
.bhp-product-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 48px;
    gap: 60px;
    align-items: start;
}

/* ----------------------------------------------------------
   Image gallery
---------------------------------------------------------- */
.bhp-product-images {
    position: sticky;
    top: 24px;
}

.bhp-main-image {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1;
    display: block;
    margin-bottom: 12px;
}

.bhp-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.15s ease;
    display: block;
}

.bhp-no-image {
    font-size: 13px;
    color: #ccc;
}

.bhp-thumbnails {
    display: flex;
    gap: 8px;
}

.bhp-thumb {
    flex: 1;
    aspect-ratio: 1;
    border: 1px solid #ede9e0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s;
    min-width: 0;
}

.bhp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.bhp-thumb:hover { border-color: #D4AF37; }
.bhp-thumb--active { border-color: #D4AF37; border-width: 2px; }

/* ----------------------------------------------------------
   Product info column
---------------------------------------------------------- */
.bhp-product-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bhp-product-tag {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    font-weight: 500;
}

.bhp-product-name {
    font-size: 28px;
    font-weight: 500;
    color: #0a0800;
    line-height: 1.2;
    margin: 0;
}

/* Rating */
.bhp-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bhp-stars { display: flex; gap: 2px; }
.bhp-star { font-size: 14px; color: #ddd; }
.bhp-star--filled { color: #D4AF37; }
.bhp-rating-text { font-size: 12px; color: #888; }
.bhp-rating-link { font-size: 12px; color: #D4AF37; text-decoration: none; margin-left: 4px; }
.bhp-rating-link:hover { text-decoration: underline; }

/* Price */
.bhp-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.bhp-price {
    font-size: 26px;
    font-weight: 500;
    color: #0a0800;
}

.bhp-size-pill {
    font-size: 11px;
    color: #888;
    background: #f7f5f0;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #ede9e0;
}

/* Divider */
.bhp-divider {
    height: 1px;
    background: #f0ede8;
    margin: 2px 0;
}

/* Field blocks */
.bhp-field-block { display: flex; flex-direction: column; gap: 8px; }

.bhp-field-label {
    font-size: 10px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.bhp-description {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Benefits */
.bhp-benefits-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bhp-benefit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #faf8f3;
    border: 1px solid #ede9e0;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    color: #555;
}

.bhp-benefit .ti { color: #D4AF37; font-size: 13px; }

/* Scent pill */
.bhp-scent-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #777;
    background: #f7f5f0;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #ede9e0;
}

.bhp-scent-pill .ti { color: #D4AF37; font-size: 13px; }

/* How to use */
.bhp-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    counter-reset: bhp-steps;
}

.bhp-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    counter-increment: bhp-steps;
}

.bhp-step::before {
    content: counter(bhp-steps);
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #D4AF37;
    color: #0a0800;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Stock */
.bhp-stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 500;
    align-self: flex-start;
}

.bhp-stock--in  { color: #2d7a2d; background: #eef7ee; }
.bhp-stock--out { color: #c0392b; background: #fdf0ee; }

.bhp-stock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bhp-stock--in  .bhp-stock-dot { background: #2d7a2d; }
.bhp-stock--out .bhp-stock-dot { background: #c0392b; }

/* ----------------------------------------------------------
   Bundle / purchase options
---------------------------------------------------------- */
.bhp-purchase-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bhp-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1.5px solid #ede9e0;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: #fff;
}

.bhp-option:hover { border-color: #D4AF37; background: #fdfbf0; }

.bhp-option:has(.bhp-option-radio:checked) {
    border-color: #D4AF37;
    background: #fdfbf0;
}

.bhp-option-radio {
    accent-color: #D4AF37;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.bhp-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 8px;
}

.bhp-option-title {
    font-size: 13px;
    color: #0a0800;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bhp-option-sub {
    font-size: 11px;
    color: #888;
    font-weight: 400;
}

.bhp-option-price {
    font-size: 15px;
    font-weight: 500;
    color: #0a0800;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bhp-save-badge {
    font-size: 10px;
    background: #D4AF37;
    color: #0a0800;
    padding: 2px 7px;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bhp-option--disabled { opacity: 0.5; pointer-events: none; }

/* ----------------------------------------------------------
   Quantity + Add to cart
---------------------------------------------------------- */
.bhp-cart-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bhp-qty {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.bhp-qty-btn {
    padding: 0 14px;
    height: 48px;
    font-size: 18px;
    color: #888;
    background: #f7f5f0;
    border: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    line-height: 1;
}

.bhp-qty-btn:hover { background: #ede9e0; color: #0a0800; }

.bhp-qty-val {
    padding: 0 16px;
    height: 48px;
    font-size: 15px;
    color: #0a0800;
    font-weight: 500;
    border-left: 1px solid #f0ede8;
    border-right: 1px solid #f0ede8;
    display: flex;
    align-items: center;
    min-width: 44px;
    justify-content: center;
    user-select: none;
}

/* ADD TO CART BUTTON */
.bhp-add-to-cart {
    flex: 1;
    height: 48px;
    background: #D4AF37;
    color: #0a0800;
    border: 2px solid #D4AF37;
    padding: 0 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bhp-add-to-cart:hover {
    background: #0a0800;
    color: #D4AF37;
    border-color: #0a0800;
}

.bhp-add-to-cart:active { transform: translateY(1px); }

.bhp-add-to-cart .ti { font-size: 16px; }

/* Cart feedback */
.bhp-cart-feedback {
    font-size: 12px;
    min-height: 18px;
    color: #2d7a2d;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Trust badges */
.bhp-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #f0ede8;
    border-radius: 6px;
    overflow: hidden;
}

.bhp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 6px;
    font-size: 10px;
    color: #888;
    text-align: center;
    border-right: 1px solid #f0ede8;
}

.bhp-trust-item:last-child { border-right: none; }
.bhp-trust-item .ti { color: #D4AF37; font-size: 16px; }

/* ----------------------------------------------------------
   Brand promise (black strip)
---------------------------------------------------------- */
.bhp-brand-promise {
    background: #0a0800;
    padding: 28px 48px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bhp-promise-line {
    width: 3px;
    height: 40px;
    background: #D4AF37;
    flex-shrink: 0;
    border-radius: 2px;
}

.bhp-promise-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

.bhp-promise-text strong {
    color: #D4AF37;
    font-weight: 500;
}

/* ----------------------------------------------------------
   Reviews (dark charcoal)
---------------------------------------------------------- */
.bhp-reviews {
    background: #0f0e0a;
    padding: 48px;
}

.bhp-reviews-inner { max-width: 1200px; margin: 0 auto; }

.bhp-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.bhp-reviews-heading {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    letter-spacing: 0.3px;
}

.bhp-google-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #666;
}

.bhp-google-badge .ti { color: #D4AF37; font-size: 13px; }

.bhp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.bhp-review-card {
    background: #1a1800;
    border: 1px solid #2a2500;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bhp-review-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bhp-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2a2200;
    border: 1px solid #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    color: #D4AF37;
    flex-shrink: 0;
}

.bhp-reviewer-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}

.bhp-review-stars { font-size: 11px; color: #D4AF37; }

.bhp-review-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.bhp-review-date {
    font-size: 10px;
    color: #444;
    display: block;
}

/* ----------------------------------------------------------
   You may also like (warm off-white)
---------------------------------------------------------- */
.bhp-also-like {
    background: none;
    padding: 48px;
    border-top: none;
}

.bhp-also-inner { max-width: 1200px; margin: 0 auto; }

.bhp-also-heading {
    font-size: 18px;
    font-weight: 500;
    color: #0a0800;
    margin: 0 0 24px;
    letter-spacing: 0.3px;
}

.bhp-also-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bhp-also-card {
    background: #fff;
    border: 1px solid #ede9e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.bhp-also-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.bhp-also-img-link {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.bhp-also-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s;
}

.bhp-also-card:hover .bhp-also-img {
    transform: scale(1.03);
}

.bhp-also-no-img {
    aspect-ratio: 1;
    background: #f7f5f0;
}

.bhp-also-info {
    padding: 12px 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.bhp-also-name {
    font-size: 13px;
    font-weight: 500;
    color: #0a0800;
    margin: 0;
    line-height: 1.3;
}

.bhp-also-price {
    font-size: 13px;
    color: #D4AF37;
    font-weight: 500;
}

.bhp-also-btn {
    display: block;
    width: 100%;
    background: #0a0800;
    color: #D4AF37;
    border: none;
    padding: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-top: auto;
}

.bhp-also-btn:hover {
    background: #D4AF37;
    color: #0a0800;
}

/* ----------------------------------------------------------
   Responsive — Tablet
---------------------------------------------------------- */
@media ( max-width: 1024px ) {
    .bhp-product-wrap { padding: 32px; gap: 40px; }
    .bhp-reviews { padding: 36px 32px; }
    .bhp-also-like { padding: 36px 32px; }
    .bhp-brand-promise { padding: 24px 32px; }
    .bhp-breadcrumb { padding: 10px 32px; }
}

/* ----------------------------------------------------------
   Responsive — Mobile
---------------------------------------------------------- */
@media ( max-width: 767px ) {
    .bhp-product-wrap {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 24px;
    }

    .bhp-product-images { position: static; }

    .bhp-product-name { font-size: 22px; }
    .bhp-price { font-size: 22px; }

    .bhp-trust-row { grid-template-columns: repeat(2, 1fr); }
    .bhp-trust-item:nth-child(2) { border-right: none; }
    .bhp-trust-item:nth-child(3) { border-top: 1px solid #f0ede8; }
    .bhp-trust-item:nth-child(4) { border-top: 1px solid #f0ede8; }

    .bhp-reviews { padding: 28px 20px; }
    .bhp-reviews-grid { grid-template-columns: 1fr; }

    .bhp-also-like { padding: 28px 20px; }
    .bhp-also-grid { grid-template-columns: 1fr 1fr; }

    .bhp-brand-promise { padding: 20px; }
    .bhp-breadcrumb { padding: 10px 20px; }

    .bhp-add-to-cart { font-size: 11px; padding: 0 16px; }

    /* Reorder product info column — cart first, content below */
    .bhp-product-info { display: flex; flex-direction: column; }

    .bhp-product-tag    { order: 1; }
    .bhp-product-name   { order: 2; }
    .bhp-rating-row     { order: 3; }
    .bhp-price-row      { order: 4; }
    .bhp-stock          { order: 5; }
    .bhp-purchase-options { order: 6; }
    .bhp-cart-row       { order: 7; }
    .bhp-cart-feedback  { order: 8; }
    .bhp-trust-row      { order: 9; }
    .bhp-divider        { order: 10; }
    .bhp-field-block    { order: 11; }
}

@media ( max-width: 400px ) {
    .bhp-also-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   ADDED TO CART POPUP
---------------------------------------------------------- */
.bhp-cart-popup {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 40px rgba(0,0,0,0.15);
    z-index: 99999;
    transition: bottom 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.bhp-cart-popup.bhp-popup--visible {
    bottom: 0;
}

.bhp-cart-popup__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 99998;
    pointer-events: none;
    transition: background 0.3s;
}

.bhp-cart-popup__backdrop.bhp-popup--visible {
    background: rgba(0,0,0,0.4);
    pointer-events: all;
}

.bhp-cart-popup__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid #f0ede8;
}

.bhp-cart-popup__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bhp-cart-popup__icon .ti {
    font-size: 20px;
    color: #0a0800;
}

.bhp-cart-popup__content {
    flex: 1;
}

.bhp-cart-popup__title {
    font-size: 13px;
    font-weight: 600;
    color: #0a0800;
    margin-bottom: 2px;
}

.bhp-cart-popup__name {
    font-size: 12px;
    color: #888;
}

.bhp-cart-popup__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #f0ede8;
    background: #fafafa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.bhp-cart-popup__close:hover {
    background: #f0ede8;
    color: #0a0800;
}

.bhp-cart-popup__close .ti { font-size: 14px; }

.bhp-cart-popup__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.bhp-cart-popup__continue {
    padding: 16px;
    background: #fff;
    color: #555;
    border: none;
    border-right: 1px solid #f0ede8;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    letter-spacing: 0.5px;
}

.bhp-cart-popup__continue:hover {
    background: #fafafa;
    color: #0a0800;
}

.bhp-cart-popup__go-cart {
    padding: 16px;
    background: #D4AF37;
    color: #0a0800;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: 0.5px;
    transition: background 0.15s;
}

.bhp-cart-popup__go-cart:hover {
    background: #c4a030;
}

.bhp-cart-popup__go-cart .ti { font-size: 14px; }

/* ----------------------------------------------------------
   MOBILE — reorder so cart appears above content
   No changes to HTML needed — CSS order does it
---------------------------------------------------------- */
@media ( max-width: 767px ) {

    .bhp-product-info {
        display: flex;
        flex-direction: column;
    }

    /* Top section — buying decision */
    .bhp-product-tag      { order: 1; }
    .bhp-product-name     { order: 2; }
    .bhp-rating-row       { order: 3; }
    .bhp-price-row        { order: 4; }
    .bhp-stock            { order: 5; }
    .bhp-purchase-options { order: 6; }
    .bhp-cart-row         { order: 7; }
    .bhp-trust-row        { order: 8; }

    /* Divider between buy and read sections */
    .bhp-divider          { order: 9; }

    /* Content — below the fold */
    .bhp-field-block      { order: 10; }

    /* Popup — slides up from bottom on mobile too */
    .bhp-cart-popup {
        max-width: 100%;
        border-radius: 16px 16px 0 0;
    }
}

/* ----------------------------------------------------------
   VARIATIONS
---------------------------------------------------------- */
.bhp-variations {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bhp-variation-group { display: flex; flex-direction: column; gap: 8px; }

.bhp-variation-selected {
    color: #D4AF37;
    font-size: 11px;
    font-weight: 500;
    margin-left: 6px;
    text-transform: none;
    letter-spacing: 0;
}

/* Buttons */
.bhp-variation-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bhp-var-btn {
    padding: 8px 18px;
    border: 1.5px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #555;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.bhp-var-btn:hover {
    border-color: #0a0800;
    background: #0a0800;
    color: #fff;
}

.bhp-var-btn.bhp-var-btn--active {
    border-color: #D4AF37;
    border-width: 2px;
    background: #fdfbf0;
    color: #0a0800;
    font-weight: 500;
}

/* Dropdown */
.bhp-variation-select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #0a0800;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s;
    appearance: auto;
}

.bhp-variation-select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

/* Swatches */
.bhp-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bhp-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}

.bhp-swatch:hover { transform: scale(1.1); }

.bhp-swatch.bhp-swatch--active {
    border-color: #D4AF37;
    box-shadow: 0 0 0 1px #D4AF37;
    transform: scale(1.1);
}

/* Error message */
.bhp-variation-error {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #c0392b;
    background: #fdf0ee;
    padding: 8px 12px;
    border-radius: 4px;
    border-left: 3px solid #c0392b;
}

.bhp-variation-error .ti { font-size: 14px; }

/* Also bought short description */
.bhp-also-desc {
    font-size: 11px;
    color: #888;
    line-height: 1.5;
    margin: 3px 0 0;
}

/* Variation group shake animation on error */
@keyframes bhp-shake {
    0%,100% { transform: translateX(0); }
    20%      { transform: translateX(-6px); }
    40%      { transform: translateX(6px); }
    60%      { transform: translateX(-4px); }
    80%      { transform: translateX(4px); }
}

.bhp-variation-group--error {
    animation: bhp-shake 0.5s ease;
}

.bhp-variation-group--error .bhp-var-btn,
.bhp-variation-group--error .bhp-variation-select,
.bhp-variation-group--error .bhp-swatches {
    outline: 2px solid #c0392b;
    outline-offset: 2px;
    border-radius: 4px;
}
