/* ==========================================================================
   MLB Loyal Fan v3 — Single Product page (mlb-product.css)
   Order:
     1. Layout
     2. Breadcrumb
     3. Hero grid
     4. Gallery (thumbs, main, zoom, nav, lightbox)
     5. Summary (title, rating, price, stock, short desc)
     6. Add-to-cart form (skin Woo markup)
     7. Variations / swatches
     8. Qty input
     9. Shipping reassurance + Pros
    10. Meta
    11. Specs sections (FIELDHOUSE PROS / CLUBHOUSE SPECS)
    12. Tabs
    13. Related / upsell carousel
    14. Sticky add-to-cart bar
    15. Responsive
   ========================================================================== */

/* ----------------------------------------------------------------------
   1. Layout
   ---------------------------------------------------------------------- */
.mlb-v3-product-main {
    background: var(--mlb-v3-bg, #f7f8fa);
    padding-bottom: 96px;
}
.mlb-v3-product-main .mlb-v3-container {
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ----------------------------------------------------------------------
   2. Breadcrumb
   ---------------------------------------------------------------------- */
.mlb-v3-product-breadcrumb {
    background: #fff;
    border-bottom: 1px solid rgba(16, 24, 40, 0.06);
    padding: 18px 0;
}
.mlb-v3-product-breadcrumb .mlb-v3-breadcrumbs {
    font-family: var(--mlb-v3-font-body, "Inter", sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: #667085;
    letter-spacing: 0.02em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.mlb-v3-product-breadcrumb .mlb-v3-breadcrumbs a {
    color: #1d2939;
    text-decoration: none;
    transition: color .2s ease;
}
.mlb-v3-product-breadcrumb .mlb-v3-breadcrumbs a:hover {
    color: var(--mlb-v3-red, #d90429);
}
.mlb-v3-product-breadcrumb .mlb-v3-bc-sep {
    color: #d0d5dd;
    margin: 0 4px;
}

/* ----------------------------------------------------------------------
   3. Hero grid
   ---------------------------------------------------------------------- */
.mlb-v3-product-hero {
    padding: 40px 0 24px;
}
.mlb-v3-product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 64px;
    align-items: flex-start;
}
.mlb-v3-product-gallery-col {
    position: sticky;
    top: 112px;
    align-self: start;
}
.mlb-v3-product-summary-col {
    min-width: 0;
}

/* ----------------------------------------------------------------------
   4. Gallery
   ---------------------------------------------------------------------- */
.mlb-v3-product-gallery {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
    position: relative;
}

/* Thumbs column (desktop vertical) */
.mlb-v3-pg-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 620px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: #d0d5dd transparent;
}
.mlb-v3-pg-thumbs::-webkit-scrollbar { width: 4px; }
.mlb-v3-pg-thumbs::-webkit-scrollbar-thumb { background: #d0d5dd; border-radius: 4px; }

.mlb-v3-pg-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #fff;
    cursor: pointer;
    padding: 0;
    transition: border-color .2s ease, transform .2s ease;
    flex: 0 0 auto;
    position: relative;
}
.mlb-v3-pg-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mlb-v3-pg-thumb:hover {
    border-color: #d0d5dd;
    transform: translateY(-2px);
}
.mlb-v3-pg-thumb.is-active {
    border-color: var(--mlb-v3-red, #d90429);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.12);
}

/* Main stage */
.mlb-v3-pg-stage {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 40px rgba(16, 24, 40, 0.08);
    aspect-ratio: 1 / 1;
}
.mlb-v3-pg-main {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}
.mlb-v3-pg-main-inner {
    width: 100%;
    height: 100%;
    position: relative;
}
.mlb-v3-pg-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease, opacity .3s ease;
}
.mlb-v3-pg-main.is-switching .mlb-v3-pg-main-img { opacity: .4; }

/* Zoom hover effect (desktop only) */
@media (hover: hover) and (pointer: fine) {
    .mlb-v3-pg-main.is-zooming .mlb-v3-pg-main-img {
        transform: scale(2);
        transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
    }
}

.mlb-v3-pg-zoom-lens {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Badges */
.mlb-v3-pg-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
    pointer-events: none;
}
.mlb-v3-pg-badge {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    border-radius: 8px;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(16, 24, 40, 0.15);
}
.mlb-v3-pg-badge.is-sale { background: var(--mlb-v3-red, #d90429); }
.mlb-v3-pg-badge.is-new  { background: #101828; }
.mlb-v3-pg-badge.is-featured { background: linear-gradient(135deg, #f79009, #d97706); }
.mlb-v3-pg-badge.is-oos  { background: #475467; }

/* Floating actions */
.mlb-v3-pg-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
}
.mlb-v3-pg-action {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    color: #1d2939;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.10);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.mlb-v3-pg-action:hover {
    transform: translateY(-2px);
    background: #fff;
    color: var(--mlb-v3-red, #d90429);
}
.mlb-v3-pg-action.is-active,
.mlb-v3-wishlist-toggle.is-active {
    color: var(--mlb-v3-red, #d90429);
    background: #fff1f2;
}
.mlb-v3-pg-action.is-active svg {
    fill: currentColor;
}

/* Prev/Next arrows */
.mlb-v3-pg-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #1d2939;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.18);
    z-index: 3;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.mlb-v3-pg-stage:hover .mlb-v3-pg-nav { opacity: 1; }
.mlb-v3-pg-nav:hover {
    background: #fff;
    color: var(--mlb-v3-red, #d90429);
}
.mlb-v3-pg-prev { left: 16px; }
.mlb-v3-pg-next { right: 16px; }

/* Mobile bar (dots + counter) — hidden desktop */
.mlb-v3-pg-mobile-bar {
    display: none;
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    padding: 0 16px;
    z-index: 2;
    justify-content: space-between;
    align-items: center;
}
.mlb-v3-pg-dots {
    display: flex;
    gap: 6px;
}
.mlb-v3-pg-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(16, 24, 40, 0.15);
    transition: background .2s ease, transform .2s ease;
}
.mlb-v3-pg-dot.is-active {
    background: var(--mlb-v3-red, #d90429);
    transform: scale(1.4);
}
.mlb-v3-pg-counter {
    font-size: 12px;
    font-weight: 600;
    color: #1d2939;
    background: rgba(255,255,255,.9);
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

/* Lightbox */
.mlb-v3-pg-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.mlb-v3-pg-lightbox[aria-hidden="false"] {
    display: flex;
}
.mlb-v3-pg-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 40, 0.95);
    backdrop-filter: blur(12px);
}
.mlb-v3-pg-lightbox-stage {
    position: relative;
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.mlb-v3-pg-lightbox-img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,.5);
}
.mlb-v3-pg-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,.12);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background .2s ease;
}
.mlb-v3-pg-lightbox-close:hover { background: var(--mlb-v3-red, #d90429); }
.mlb-v3-pg-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    background: rgba(255,255,255,.12);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background .2s ease;
}
.mlb-v3-pg-lightbox-nav:hover { background: var(--mlb-v3-red, #d90429); }
.mlb-v3-pg-lightbox-prev { left: 24px; }
.mlb-v3-pg-lightbox-next { right: 24px; }

/* ----------------------------------------------------------------------
   5. Summary
   ---------------------------------------------------------------------- */
.mlb-v3-ps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mlb-v3-ps-top {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.mlb-v3-official-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #101828;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 11px;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-transform: uppercase;
}
.mlb-v3-official-badge svg { color: var(--mlb-v3-red, #d90429); }
.mlb-v3-ps-team-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff1f2;
    color: var(--mlb-v3-red, #d90429);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mlb-v3-ps-type {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 600;
    color: #667085;
    text-transform: uppercase;
    margin-top: -4px;
}
.mlb-v3-ps-type .mlb-v3-type-label {
    padding: 0;
    background: none;
    border: none;
}
.mlb-v3-ps-type .mlb-v3-type-rug    { color: #0b3954; }
.mlb-v3-ps-type .mlb-v3-type-wallet { color: #6d4c2c; }

.mlb-v3-ps-title {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #101828;
    margin: 0;
    text-transform: none;
}

/* Rating row */
.mlb-v3-ps-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #667085;
    font-weight: 500;
}
.mlb-v3-ps-stars {
    position: relative;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1;
    color: #e5e7eb;
}
.mlb-v3-ps-stars-bg, .mlb-v3-ps-stars-fg {
    display: block;
}
.mlb-v3-ps-stars-fg {
    position: absolute;
    top: 0;
    left: 0;
    color: #fbbf24;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
}
.mlb-v3-ps-stars-empty { color: #e5e7eb; font-size: 16px; letter-spacing: 1px; }
.mlb-v3-ps-rating-num { font-weight: 700; color: #101828; }
.mlb-v3-ps-rating-sep { color: #d0d5dd; }
.mlb-v3-ps-reviews-link {
    color: #475467;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s ease;
}
.mlb-v3-ps-reviews-link:hover { color: var(--mlb-v3-red, #d90429); }
.mlb-v3-ps-sku-inline { color: #98a2b3; font-size: 12px; }

/* Price */
.mlb-v3-ps-price-block {
    background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 14px;
    padding: 18px 22px;
}
.mlb-v3-ps-price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}
.mlb-v3-ps-price,
.mlb-v3-ps-price .amount,
.mlb-v3-ps-price-sale {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--mlb-v3-red, #d90429);
    letter-spacing: -0.01em;
}
.mlb-v3-ps-price del,
.mlb-v3-ps-price-regular {
    font-size: 20px;
    font-weight: 600;
    color: #98a2b3;
    text-decoration: line-through;
    font-family: var(--mlb-v3-font-body, "Inter", sans-serif);
}
.mlb-v3-ps-price ins {
    background: none;
    text-decoration: none;
}
.mlb-v3-ps-price-save {
    background: #fff1f2;
    color: var(--mlb-v3-red, #d90429);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.mlb-v3-ps-price-sub {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #667085;
}

/* Stock pill */
.mlb-v3-ps-stock-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.mlb-v3-ps-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.mlb-v3-ps-stock-pill.is-in {
    background: #ecfdf3;
    color: #027a48;
}
.mlb-v3-ps-stock-pill.is-in .mlb-v3-ps-stock-dot {
    background: #12b76a;
    box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.16);
    animation: mlb-v3-pulse 2s infinite;
}
.mlb-v3-ps-stock-pill.is-low {
    background: #fffaeb;
    color: #b54708;
}
.mlb-v3-ps-stock-pill.is-low .mlb-v3-ps-stock-dot {
    background: #f79009;
    box-shadow: 0 0 0 3px rgba(247, 144, 9, 0.18);
    animation: mlb-v3-pulse 1.3s infinite;
}
.mlb-v3-ps-stock-pill.is-out {
    background: #fee4e2;
    color: #b42318;
}
.mlb-v3-ps-stock-pill.is-out .mlb-v3-ps-stock-dot { background: #f04438; }

@keyframes mlb-v3-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.2); }
}

/* Short description */
.mlb-v3-ps-short {
    color: #475467;
    font-size: 15px;
    line-height: 1.65;
}
.mlb-v3-ps-short p { margin: 0 0 10px; }
.mlb-v3-ps-short p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------------------
   6. Add-to-cart form (skin Woo)
   ---------------------------------------------------------------------- */
.mlb-v3-ps-atc {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.04);
}
.mlb-v3-ps-atc form.cart {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mlb-v3-ps-atc form.cart > * {
    margin: 0;
}

/* Quantity + Add to cart row */
.mlb-v3-ps-atc .quantity {
    display: inline-flex;
    align-items: stretch;
    border: 2px solid #e4e7ec;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    height: 54px;
    flex: 0 0 140px;
}
.mlb-v3-ps-atc .quantity .mlb-v3-qty-btn {
    width: 42px;
    background: #fff;
    border: none;
    cursor: pointer;
    color: #1d2939;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease;
}
.mlb-v3-ps-atc .quantity .mlb-v3-qty-btn:hover {
    background: #f9fafb;
    color: var(--mlb-v3-red, #d90429);
}
.mlb-v3-ps-atc .quantity input[type="number"] {
    width: 56px;
    border: none;
    background: transparent;
    text-align: center;
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 18px;
    font-weight: 600;
    color: #101828;
    appearance: textfield;
    -moz-appearance: textfield;
    outline: none;
}
.mlb-v3-ps-atc .quantity input::-webkit-outer-spin-button,
.mlb-v3-ps-atc .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* The Woo add-to-cart button */
.mlb-v3-ps-atc .single_add_to_cart_button,
.mlb-v3-ps-atc button.single_add_to_cart_button {
    height: 54px;
    flex: 1 1 auto;
    background: var(--mlb-v3-red, #d90429);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 6px 20px rgba(217, 4, 41, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.mlb-v3-ps-atc .single_add_to_cart_button:hover {
    background: #b10321;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(217, 4, 41, 0.35);
}
.mlb-v3-ps-atc .single_add_to_cart_button:active { transform: translateY(0); }
.mlb-v3-ps-atc .single_add_to_cart_button.disabled,
.mlb-v3-ps-atc .single_add_to_cart_button:disabled {
    background: #98a2b3;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}
.mlb-v3-ps-atc .single_add_to_cart_button.loading {
    opacity: .7;
    cursor: wait;
}

/* Layout: qty + atc side-by-side */
.mlb-v3-ps-atc form.cart {
    flex-wrap: wrap;
}
.mlb-v3-ps-atc form.cart .quantity + .single_add_to_cart_button,
.mlb-v3-ps-atc form.cart .quantity + button {
    margin-left: 0;
}
.mlb-v3-ps-atc .cart-atc-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

/* ----------------------------------------------------------------------
   7. Variations / swatches
   ---------------------------------------------------------------------- */
.mlb-v3-ps-atc table.variations {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}
.mlb-v3-ps-atc table.variations tr {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px dashed rgba(16, 24, 40, 0.08);
    padding-bottom: 14px;
    margin-bottom: 14px;
}
.mlb-v3-ps-atc table.variations tr:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.mlb-v3-ps-atc table.variations th,
.mlb-v3-ps-atc table.variations td {
    padding: 0;
    border: none;
    text-align: left;
}
.mlb-v3-ps-atc table.variations .label label {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #101828;
}
.mlb-v3-ps-atc table.variations select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e4e7ec;
    border-radius: 10px;
    background: #fff;
    font-family: var(--mlb-v3-font-body, "Inter", sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: #101828;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23667085' d='M6 9L1 4h10z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    outline: none;
    transition: border-color .2s ease;
}
.mlb-v3-ps-atc table.variations select:focus { border-color: var(--mlb-v3-red, #d90429); }

/* Reset variations link */
.mlb-v3-ps-atc .reset_variations {
    display: inline-block;
    font-size: 12px;
    color: #667085;
    text-decoration: underline;
    margin-top: 6px;
}

/* Woo woocommerce-variation price */
.mlb-v3-ps-atc .woocommerce-variation-price {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--mlb-v3-red, #d90429);
    margin-bottom: 4px;
}
.mlb-v3-ps-atc .woocommerce-variation-price del {
    font-size: 16px;
    color: #98a2b3;
    margin-right: 8px;
}
.mlb-v3-ps-atc .woocommerce-variation-availability {
    font-size: 13px;
    color: #027a48;
    font-weight: 500;
    margin-bottom: 10px;
}
.mlb-v3-ps-atc .woocommerce-variation-description {
    font-size: 13px;
    color: #475467;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* ----------------------------------------------------------------------
   9. Shipping reassurance + Pros
   ---------------------------------------------------------------------- */
.mlb-v3-ps-ship {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mlb-v3-ps-ship-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #475467;
    line-height: 1.45;
}
.mlb-v3-ps-ship-row svg {
    color: #027a48;
    flex: 0 0 18px;
    margin-top: 1px;
}
.mlb-v3-ps-ship-row strong { color: #101828; font-weight: 700; }

.mlb-v3-ps-pros {
    background: #101828;
    color: #fff;
    border-radius: 16px;
    padding: 20px 22px;
    position: relative;
    overflow: hidden;
}
.mlb-v3-ps-pros::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 4, 41, 0.4), transparent 70%);
    pointer-events: none;
}
.mlb-v3-ps-pros-title {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 16px;
    letter-spacing: 0.12em;
    margin: 0 0 12px;
    text-transform: uppercase;
    color: var(--mlb-v3-red, #d90429);
    position: relative;
}
.mlb-v3-ps-pros-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.mlb-v3-ps-pros-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #e4e7ec;
    line-height: 1.4;
}
.mlb-v3-ps-pros-list svg {
    color: #12b76a;
    flex: 0 0 16px;
}

/* ----------------------------------------------------------------------
   10. Meta
   ---------------------------------------------------------------------- */
.mlb-v3-ps-meta {
    border-top: 1px dashed rgba(16, 24, 40, 0.1);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}
.mlb-v3-ps-meta-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.mlb-v3-ps-meta-label {
    flex: 0 0 80px;
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #98a2b3;
    text-transform: uppercase;
    font-weight: 600;
}
.mlb-v3-ps-meta-val {
    color: #475467;
}
.mlb-v3-ps-meta-val a {
    color: #1d2939;
    text-decoration: none;
    border-bottom: 1px dotted #d0d5dd;
    transition: color .2s ease, border-color .2s ease;
}
.mlb-v3-ps-meta-val a:hover {
    color: var(--mlb-v3-red, #d90429);
    border-color: var(--mlb-v3-red, #d90429);
}

/* ----------------------------------------------------------------------
   11. Extra specs sections (FIELDHOUSE PROS strip / CLUBHOUSE SPECS)
   — these come from woocommerce_after_single_product_summary hooks
   ---------------------------------------------------------------------- */
.mlb-v3-product-extra-sections {
    margin-top: 64px;
}
.mlb-v3-clubhouse-specs {
    background: linear-gradient(135deg, #101828 0%, #1d2939 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.mlb-v3-clubhouse-specs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 4, 41, 0.18), transparent 60%);
    pointer-events: none;
}
.mlb-v3-clubhouse-title {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.01em;
    text-align: center;
    margin: 0 0 40px;
    position: relative;
}
.mlb-v3-clubhouse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    position: relative;
}
.mlb-v3-clubhouse-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(6px);
    transition: transform .3s ease, border-color .3s ease;
}
.mlb-v3-clubhouse-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 4, 41, 0.4);
}
.mlb-v3-clubhouse-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(217, 4, 41, 0.12);
    color: var(--mlb-v3-red, #d90429);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.mlb-v3-clubhouse-card h3 {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
}
.mlb-v3-clubhouse-card p {
    color: #98a2b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Same idea for .mlb-v3-specs / FIELDHOUSE PROS legacy block (from Phase1 hooks) — already styled in summary pros, but if the after-summary hook renders a separate strip we make it look good too */
.mlb-v3-fieldhouse-pros {
    max-width: 1360px;
    margin: 48px auto;
    padding: 24px 28px;
    background: #fff;
    border-radius: 16px;
    border-left: 5px solid var(--mlb-v3-red, #d90429);
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
}
.mlb-v3-fieldhouse-pros .mlb-v3-specs-title {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 16px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #101828;
    margin: 0 0 14px;
}
.mlb-v3-fieldhouse-pros .mlb-v3-specs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}
.mlb-v3-fieldhouse-pros .mlb-v3-specs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475467;
}
.mlb-v3-fieldhouse-pros .mlb-v3-specs-list svg { color: #12b76a; }

/* Shipping info block from Woo hook (Phase1) — in summary column by default. But in case it appears after summary, reuse style */
.mlb-v3-shipping-info {
    display: none; /* replaced by .mlb-v3-ps-ship */
}

/* ----------------------------------------------------------------------
   12. Tabs
   ---------------------------------------------------------------------- */
.mlb-v3-product-tabs-section {
    padding: 60px 0;
}
.mlb-v3-pt-wrap {}
.mlb-v3-pt-head {
    text-align: center;
    margin-bottom: 32px;
}
.mlb-v3-pt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff1f2;
    color: var(--mlb-v3-red, #d90429);
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.mlb-v3-pt-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mlb-v3-red, #d90429);
    animation: mlb-v3-pulse 1.5s infinite;
}
.mlb-v3-pt-title {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    color: #101828;
    margin: 0;
    letter-spacing: -0.01em;
}
.mlb-v3-pt {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(16, 24, 40, 0.06);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(16, 24, 40, 0.04);
}
.mlb-v3-pt-nav {
    display: flex;
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
    overflow-x: auto;
    scrollbar-width: none;
}
.mlb-v3-pt-nav::-webkit-scrollbar { display: none; }
.mlb-v3-pt-tab {
    flex: 0 0 auto;
    background: transparent;
    border: none;
    padding: 18px 24px;
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #667085;
    cursor: pointer;
    position: relative;
    transition: color .2s ease;
    white-space: nowrap;
}
.mlb-v3-pt-tab::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 3px;
    background: var(--mlb-v3-red, #d90429);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}
.mlb-v3-pt-tab:hover { color: #1d2939; }
.mlb-v3-pt-tab.is-active {
    color: #101828;
}
.mlb-v3-pt-tab.is-active::after {
    transform: scaleX(1);
}

.mlb-v3-pt-panels {
    padding: 36px 40px;
}
.mlb-v3-pt-panel {
    display: none;
    font-size: 15px;
    line-height: 1.7;
    color: #344054;
    max-width: 900px;
}
.mlb-v3-pt-panel.is-active {
    display: block;
    animation: mlb-v3-fadein .3s ease;
}
.mlb-v3-pt-panel h2,
.mlb-v3-pt-panel h3 {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    color: #101828;
    margin: 24px 0 12px;
}
.mlb-v3-pt-panel h2 { font-size: 24px; }
.mlb-v3-pt-panel h3 { font-size: 20px; }
.mlb-v3-pt-panel p { margin: 0 0 14px; }
.mlb-v3-pt-panel ul, .mlb-v3-pt-panel ol {
    margin: 0 0 14px 20px;
    padding: 0;
}
.mlb-v3-pt-panel li { margin-bottom: 6px; }
.mlb-v3-pt-panel table,
.mlb-v3-pt-panel .woocommerce-product-attributes,
.mlb-v3-pt-panel .shop_attributes {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.mlb-v3-pt-panel table th,
.mlb-v3-pt-panel .shop_attributes th {
    width: 30%;
    padding: 12px 16px;
    background: #f9fafb;
    border: 1px solid #e4e7ec;
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #101828;
    text-align: left;
    font-weight: 600;
}
.mlb-v3-pt-panel table td,
.mlb-v3-pt-panel .shop_attributes td {
    padding: 12px 16px;
    border: 1px solid #e4e7ec;
    color: #475467;
}
.mlb-v3-pt-panel .shop_attributes td p {
    margin: 0;
}

/* Reviews area inside tab */
.mlb-v3-pt-panel #reviews { margin: 0; }
.mlb-v3-pt-panel #comments .commentlist {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mlb-v3-pt-panel .comment {
    padding: 18px 0;
    border-bottom: 1px dashed #e4e7ec;
}
.mlb-v3-pt-panel .star-rating {
    color: #fbbf24;
    margin-bottom: 8px;
}
.mlb-v3-pt-panel #review_form_wrapper {
    margin-top: 24px;
    padding: 22px;
    border-radius: 14px;
    background: #f9fafb;
}
.mlb-v3-pt-panel #review_form input[type="text"],
.mlb-v3-pt-panel #review_form input[type="email"],
.mlb-v3-pt-panel #review_form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e4e7ec;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 10px;
    outline: none;
    transition: border-color .2s ease;
}
.mlb-v3-pt-panel #review_form input:focus,
.mlb-v3-pt-panel #review_form textarea:focus {
    border-color: var(--mlb-v3-red, #d90429);
}
.mlb-v3-pt-panel #review_form .submit {
    background: var(--mlb-v3-red, #d90429);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease;
}
.mlb-v3-pt-panel #review_form .submit:hover {
    background: #b10321;
}

/* Care card grid */
.mlb-v3-pt-care {
    margin-top: 32px;
}
.mlb-v3-pt-care-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.mlb-v3-pt-care-card {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 16px;
    padding: 22px 20px;
    transition: transform .3s ease, border-color .3s ease;
}
.mlb-v3-pt-care-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 4, 41, 0.3);
}
.mlb-v3-pt-care-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff1f2;
    color: var(--mlb-v3-red, #d90429);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.mlb-v3-pt-care-card h3 {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #101828;
    margin: 0 0 8px;
    font-weight: 700;
}
.mlb-v3-pt-care-card p {
    font-size: 13px;
    line-height: 1.55;
    color: #667085;
    margin: 0;
}

@keyframes mlb-v3-fadein {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------------
   13. Related / upsell carousel
   ---------------------------------------------------------------------- */
.mlb-v3-product-related-section {
    padding: 40px 0 80px;
}
.mlb-v3-pr-section + .mlb-v3-pr-section {
    margin-top: 60px;
}
.mlb-v3-pr-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    gap: 20px;
    flex-wrap: wrap;
}
.mlb-v3-pr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mlb-v3-red, #d90429);
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.mlb-v3-pr-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mlb-v3-red, #d90429);
    animation: mlb-v3-pulse 1.5s infinite;
}
.mlb-v3-pr-title {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: #101828;
    margin: 0;
    letter-spacing: -0.01em;
}
.mlb-v3-pr-subtitle {
    color: #667085;
    margin: 6px 0 0;
    font-size: 14px;
}
.mlb-v3-pr-seeall {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #101828;
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .2s ease, gap .2s ease;
}
.mlb-v3-pr-seeall:hover {
    color: var(--mlb-v3-red, #d90429);
    gap: 10px;
}
.mlb-v3-pr-track-wrap {
    position: relative;
}
.mlb-v3-pr-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* Becomes horizontal carousel if space is tight — handled in responsive */

.mlb-v3-pr-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    color: #1d2939;
    cursor: pointer;
    display: none; /* only visible when track scrolls */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.10);
    z-index: 4;
    transition: background .2s ease, color .2s ease;
}
.mlb-v3-pr-track-wrap.is-scrollable .mlb-v3-pr-nav { display: inline-flex; }
.mlb-v3-pr-nav:hover { background: var(--mlb-v3-red, #d90429); color: #fff; }
.mlb-v3-pr-nav-prev { left: -18px; }
.mlb-v3-pr-nav-next { right: -18px; }

/* ----------------------------------------------------------------------
   14. Sticky add-to-cart bar
   ---------------------------------------------------------------------- */
.mlb-v3-pstick {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: 0 -10px 30px rgba(16, 24, 40, 0.10);
    transform: translateY(100%);
    transition: transform .3s ease;
    visibility: hidden;
}
.mlb-v3-pstick.is-visible {
    transform: translateY(0);
    visibility: visible;
}
.mlb-v3-pstick-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 24px;
}
.mlb-v3-pstick-info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1 1 auto;
}
.mlb-v3-pstick-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 56px;
    background: #f2f4f7;
}
.mlb-v3-pstick-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mlb-v3-pstick-text {
    min-width: 0;
}
.mlb-v3-pstick-name {
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: #101828;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 420px;
}
.mlb-v3-pstick-price {
    font-size: 14px;
    color: #475467;
    margin-top: 2px;
}
.mlb-v3-pstick-price .amount,
.mlb-v3-pstick-price ins .amount { color: var(--mlb-v3-red, #d90429); font-weight: 700; }
.mlb-v3-pstick-price del { color: #98a2b3; font-size: 12px; margin-right: 6px; }
.mlb-v3-pstick-actions { flex: 0 0 auto; }
.mlb-v3-pstick-cta {
    min-width: 180px;
    padding: 0 22px;
    height: 48px;
}

/* Override button defaults — reuse archive btn styles but assure consistency */
.mlb-v3-btn.mlb-v3-pstick-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--mlb-v3-font-display, "Oswald", sans-serif);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.mlb-v3-btn.mlb-v3-btn-primary.mlb-v3-pstick-cta {
    background: var(--mlb-v3-red, #d90429);
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(217, 4, 41, 0.25);
}
.mlb-v3-btn.mlb-v3-btn-primary.mlb-v3-pstick-cta:hover {
    background: #b10321;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(217, 4, 41, 0.32);
}

/* ----------------------------------------------------------------------
   15. Responsive
   ---------------------------------------------------------------------- */

@media (max-width: 1200px) {
    .mlb-v3-product-hero-grid { gap: 40px; }
    .mlb-v3-pr-track { grid-template-columns: repeat(3, 1fr); }
    .mlb-v3-pt-care-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .mlb-v3-product-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .mlb-v3-product-gallery-col {
        position: static;
    }
    .mlb-v3-product-gallery {
        grid-template-columns: 1fr;
    }
    .mlb-v3-pg-thumbs {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        padding: 0 0 8px 0;
        order: 2;
    }
    .mlb-v3-pg-thumb {
        width: 72px;
        height: 72px;
    }
    .mlb-v3-pg-stage {
        order: 1;
    }
    .mlb-v3-pg-mobile-bar {
        display: flex;
    }
    .mlb-v3-pg-nav {
        opacity: 1;
    }
    .mlb-v3-clubhouse-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .mlb-v3-pr-track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mlb-v3-product-main .mlb-v3-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .mlb-v3-product-hero { padding: 24px 0 16px; }
    .mlb-v3-product-breadcrumb { padding: 12px 0; font-size: 12px; }
    .mlb-v3-ps-title { font-size: clamp(24px, 5vw, 32px); }
    .mlb-v3-ps-price, .mlb-v3-ps-price-sale { font-size: 28px; }
    .mlb-v3-ps-atc { padding: 16px; border-radius: 14px; }
    .mlb-v3-ps-atc .quantity { flex: 0 0 120px; height: 48px; }
    .mlb-v3-ps-atc .single_add_to_cart_button { height: 48px; font-size: 13px; }
    .mlb-v3-pt-panels { padding: 22px 20px; }
    .mlb-v3-pt-tab { padding: 14px 18px; font-size: 12px; }
    .mlb-v3-pt-care-grid { grid-template-columns: 1fr; }
    .mlb-v3-product-tabs-section { padding: 40px 0; }
    .mlb-v3-product-related-section { padding: 24px 0 40px; }
    .mlb-v3-pr-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        grid-template-columns: none;
        padding-bottom: 6px;
        gap: 14px;
        scrollbar-width: none;
    }
    .mlb-v3-pr-track::-webkit-scrollbar { display: none; }
    .mlb-v3-pr-track > * {
        flex: 0 0 72%;
        scroll-snap-align: start;
    }
    .mlb-v3-pr-nav { display: none !important; }
    .mlb-v3-product-main {
        padding-bottom: 96px; /* sticky bar space */
    }
    .mlb-v3-pstick-inner {
        padding: 10px 14px;
        gap: 12px;
    }
    .mlb-v3-pstick-name { font-size: 14px; max-width: 160px; }
    .mlb-v3-pstick-price { font-size: 12px; }
    .mlb-v3-pstick-cta { min-width: auto; padding: 0 16px; height: 42px; font-size: 12px; }
    .mlb-v3-pstick-thumb { width: 48px; height: 48px; flex-basis: 48px; }
}

@media (max-width: 480px) {
    .mlb-v3-ps-top { gap: 8px; }
    .mlb-v3-ps-rating-row { gap: 8px; font-size: 12px; }
    .mlb-v3-ps-atc form.cart { flex-direction: column; }
    .mlb-v3-ps-atc .cart-atc-row { flex-direction: column; }
    .mlb-v3-ps-atc .quantity { width: 100%; flex: 0 0 auto; }
    .mlb-v3-ps-atc .single_add_to_cart_button { width: 100%; }
    .mlb-v3-pr-track > * { flex-basis: 86%; }
}
