/**
 * Monster Shop Product Page Styles
 * Version: 2.1.0 - Optimized & Cleaned
 */

/* ==========================================================================
   1. FONTS & VARIABLES
   ========================================================================== */

@font-face {
font-display:swap;
    font-family: 'Owners Narrow';
    src: url('/wp-content/mu-plugins/monster-shop-product-page/assets/css/../fonts/Owners_Narrow_Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Colors */
    --mspp-bg-primary: #292929;
    --mspp-bg-secondary: rgba(255, 255, 255, 0.1);
    --mspp-bg-card: #1A1A1A;
    
    --mspp-text-primary: #FFFFFF;
    --mspp-text-secondary: #D1D1D1;
    --mspp-text-muted: #767676;
    
    --mspp-accent-lime: #DBFF00;
    --mspp-accent-purple: #4B018E;
    --mspp-accent-purple-light: #7B00E9;
    --mspp-accent-blue: #2272FF;
    --mspp-accent-green: #00CE7A;
    --mspp-accent-red: #B9000A;
    --mspp-accent-orange: #FF6B35;
    --mspp-accent-paypal: #FFC43A;
    
    --mspp-border-light: rgba(255, 255, 255, 0.5);
    --mspp-border-gray: #424242;
    --mspp-border-platform: #CFCFCF;
    
    /* Typography */
    --mspp-font-primary: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --mspp-font-display: 'Owners Narrow', sans-serif;
    
    /* Layout */
    --mspp-container-max: 1200px;
    --mspp-container-padding: 64px;
    
    /* Border Radius */
    --mspp-radius-sm: 8px;
    --mspp-radius-md: 12px;
    --mspp-radius-lg: 16px;
    --mspp-radius-xl: 32px;
    --mspp-radius-full: 1000px;
    
    /* Gradient */
    --mspp-gradient-rainbow: linear-gradient(90deg, #B768FF 0%, #FF4DCD 35.1%, #FF9800 65%, #DBFF00 100%);
}

/* ==========================================================================
   2. BASE STYLES
   ========================================================================== */

.mspp-product-page {
    background-color: var(--mspp-bg-primary);
    color: var(--mspp-text-primary);
    font-family: var(--mspp-font-primary);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.mspp-product-page *,
.mspp-product-page *::before,
.mspp-product-page *::after {
    box-sizing: border-box;
}

.mspp-product-page img {
    max-width: 100%;
    height: auto;
}

/* Prevent body scroll when popup/lightbox is open */
body.mspp-popup-open,
body.mspp-lightbox-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* ==========================================================================
   3. BREADCRUMBS
   ========================================================================== */

.mspp-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.mspp-breadcrumbs a {
    color: var(--mspp-accent-blue) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mspp-breadcrumbs a:hover {
    text-decoration: underline;
}

.mspp-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.mspp-breadcrumb-current {
    color: white;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */

.mspp-hero {
    padding: 32px 0;
}

.mspp-hero-container {
    max-width: var(--mspp-container-max);
    margin: 0 auto;
    padding: 0 var(--mspp-container-padding);
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
}

/* --- Hero Left (Image) --- */
.mspp-hero-left {
    flex: 1 0 420px;
    min-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mspp-hero-title-mobile {
    display: none;
}

.mspp-hero-image-wrapper {
    position: relative;
    background: var(--mspp-bg-secondary);
    border-radius: var(--mspp-radius-xl);
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    overflow: hidden;
}

.mspp-hero-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Status Badge */
.mspp-status-badge {
    position: absolute;
    top: 15px;
    left: 21px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    height: 35px;
    background: var(--mspp-accent-purple);
    border-radius: var(--mspp-radius-sm);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    font-weight: 600;
    font-size: 16px;
    color: white;
    z-index: 1;
}

.mspp-status-badge.available {
    background: var(--mspp-accent-green);
}

.mspp-badge-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* See Photos Button (Mobile Only) */
.mspp-see-photos-btn {
    display: none;
}

#msppMediaCarousel {
    scroll-margin-top: 100px;
}

/* --- Hero Right (Product Info) --- */
.mspp-hero-right {
    flex: 1 0 420px;
    min-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Product Title */
.mspp-product-title {
    font-family: var(--mspp-font-display) !important;
    font-weight: 900;
    font-size: 36px !important;
    line-height: 1;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Ratings Row */
.mspp-ratings-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.mspp-opencritic-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.mspp-opencritic-mini:hover {
    opacity: 0.8;
}

.mspp-oc-score {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--mspp-accent-green);
    border-radius: var(--mspp-radius-full);
    font-weight: 700;
    font-size: 14px;
    color: #000;
    letter-spacing: -0.12px;
}

.mspp-oc-logo-mini {
    height: 24px;
    width: auto;
}

.mspp-divider {
    width: 0.5px;
    height: 100%;
    min-height: 20px;
    background: white;
    border-radius: 100px;
}

.mspp-ebay-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mspp-rating-score {
    font-weight: 800;
    font-size: 16px;
    color: white;
}

.mspp-rating-star {
    color: #FFD700;
    font-size: 16px;
}

.mspp-rating-count {
    font-weight: 700;
    font-size: 10px;
    color: var(--mspp-text-secondary);
}

.mspp-sold-count {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mspp-sold-count svg {
    width: 17px;
    height: 16px;
}

.mspp-sold-count span {
    font-weight: 500;
    font-size: 14px;
    color: white;
}

/* Action Row */
.mspp-action-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Loyalty Badge with Gradient Border */
.mspp-loyalty-badge {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 4px 12px;
    border-radius: var(--mspp-radius-full);
    border: none;
    background: transparent;
    position: relative;
}

.mspp-loyalty-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--mspp-radius-full);
    padding: 1px;
    background: var(--mspp-gradient-rainbow);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.mspp-loyalty-badge span:first-child {
    font-weight: 600;
    font-size: 16px;
    background: var(--mspp-gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mspp-learn-more {
    font-weight: 600;
    font-size: 14px;
    color: white !important;
    text-decoration: underline;
}

.mspp-learn-more:hover {
    opacity: 0.8;
}

/* Share Button */
.mspp-share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mspp-share-btn:hover {
    opacity: 0.8;
}

.mspp-share-icon {
    width: 24px;
    height: 24px;
}

.mspp-share-btn span {
    font-weight: 400;
    font-size: 16px;
    color: white;
    text-decoration: underline;
    letter-spacing: -0.12px;
}

/* Short Description */
.mspp-short-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: white;
    letter-spacing: -0.12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mspp-short-description strong,
.mspp-short-description b {
    font-weight: 700;
}

.mspp-short-description p {
    margin: 0;
}

.mspp-bonus-link {
    display: block;
    margin-top: -12px;
    font-weight: 400;
    font-size: 16px;
    color: white !important;
    text-decoration: underline;
    letter-spacing: -0.12px;
}

/* Platform Selector */
.mspp-platform-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.mspp-platform-label {
    font-weight: 400;
    font-size: 14px;
    color: white;
    letter-spacing: -0.12px;
}

.mspp-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mspp-platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: var(--mspp-radius-lg);
    border: 0.5px solid var(--mspp-border-platform);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.mspp-platform-btn:hover,
.mspp-platform-btn.active {
    border-color: var(--mspp-accent-blue);
    background: rgba(0, 92, 255, 0.05);
}

.mspp-platform-btn img {
    height: 20px;
    width: auto;
}

/* Price Section */
.mspp-price-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.mspp-price-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mspp-price-current,
.mspp-price-current bdi {
    font-family: var(--mspp-font-primary);
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    color: var(--mspp-accent-lime);
}

.mspp-price-regular {
    font-family: var(--mspp-font-primary);
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    color: var(--mspp-text-muted);
    text-decoration: line-through;
}

.mspp-price-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    background: var(--mspp-accent-red);
    border-radius: var(--mspp-radius-md);
    font-weight: 600;
    font-size: 16px;
    color: white;
}

/* Best Price Promise Box */
.mspp-price-promise {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-width: 260px;
    padding: 8px 16px;
    background: #F6EBFF;
    border: 1px solid var(--mspp-accent-purple);
    border-radius: var(--mspp-radius-lg);
    box-shadow: 0 0 5px 0 var(--mspp-accent-purple);
}

.mspp-price-promise svg,
.mspp-price-promise img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.mspp-price-promise span {
    font-size: 14px;
    line-height: 18px;
    color: #2B2B2B;
    letter-spacing: -0.12px;
}

.mspp-price-promise strong {
    font-weight: 700;
}

/* ==========================================================================
   OUT OF STOCK STYLES
   ========================================================================== */

/* Status Badge - Out of Stock */
.mspp-status-badge.out-of-stock {
    background: var(--mspp-text-muted);
}

/* Platform Selector - Out of Stock Variant */
.mspp-platform-btn.out-of-stock {
    opacity: 0.5;
    position: relative;
}

.mspp-platform-btn.out-of-stock::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    transform: rotate(-15deg);
}

/* Price - Out of Stock (grey instead of lime) */
.mspp-price-out-of-stock,
.mspp-price-out-of-stock bdi {
    color: var(--mspp-text-muted) !important;
}

/* Add to Cart Button - Disabled/Out of Stock */
.mspp-add-to-cart-btn.mspp-btn-disabled,
.mspp-cart-section.is-out-of-stock .mspp-add-to-cart-btn {
    background: var(--mspp-text-muted) !important;
    cursor: not-allowed;
}

.mspp-add-to-cart-btn.mspp-btn-disabled span,
.mspp-cart-section.is-out-of-stock .mspp-add-to-cart-btn span {
    color: #1D1D1D !important;
}

.mspp-add-to-cart-btn.mspp-btn-disabled:hover,
.mspp-cart-section.is-out-of-stock .mspp-add-to-cart-btn:hover {
    transform: none;
}

/* Sticky Bar Button - Disabled/Out of Stock */
.mspp-sticky-cart-btn.mspp-btn-disabled {
    background: var(--mspp-text-muted) !important;
    cursor: not-allowed;
}

.mspp-sticky-cart-btn.mspp-btn-disabled span {
    color: #1D1D1D !important;
}

.mspp-sticky-cart-btn.mspp-btn-disabled:hover {
    transform: none;
}

.mspp-sticky-cart-btn.mspp-btn-disabled .mspp-sticky-cart-icon {
    display: none;
}

/* ==========================================================================
   5. CART SECTION
   ========================================================================== */

.mspp-cart-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.mspp-cart-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
}

/* Hide WooCommerce "View basket" link */
.mspp-cart-section .added_to_cart,
.mspp-cart-section .wc-forward,
.mspp-cart-buttons .added_to_cart,
.mspp-sticky-bar .added_to_cart {
    display: none !important;
}

/* Add to Cart Button */
.mspp-add-to-cart-btn {
    position: relative;
    flex: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 13px 40px;
    background: var(--mspp-accent-purple) !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer;
    transition: transform 0.2s ease-in;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mspp-add-to-cart-btn:hover {
    transform: scale(0.95);
}

.mspp-cart-icon {
    width: 23px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.mspp-add-to-cart-btn span {
    font-weight: 800;
    font-size: 16px;
    color: white;
    text-align: center;
}

/* Available Product Button (Green) */
.is-available .mspp-add-to-cart-btn {
    background: var(--mspp-accent-lime) !important;
}

.is-available .mspp-add-to-cart-btn span {
    color: #000 !important;
}

.is-available .mspp-add-to-cart-btn .mspp-cart-icon {
    filter: brightness(0) !important;
}

.is-available .mspp-add-to-cart-btn:hover {
    background: #c5e600 !important;
}

/* Loading State */
.mspp-add-to-cart-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.mspp-add-to-cart-btn.loading span {
    visibility: hidden;
}

.mspp-add-to-cart-btn.loading .mspp-cart-icon {
    display: none;
}

.mspp-add-to-cart-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: mspp-spin 0.8s linear infinite;
}

.is-available .mspp-add-to-cart-btn.loading::after {
    border-top-color: #000;
}

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

/* PayPal Button */
.mspp-paypal-btn {
    flex: 1;
    height: 44px;
    background: var(--mspp-accent-paypal);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.2s ease-in;
}

.mspp-paypal-btn:hover {
    transform: scale(0.95);
}

.mspp-paypal-btn img {
    height: 20px;
    width: auto;
}

/* PayPal Smart Button Integration */
.mspp-paypal-btn .ppc-button-wrapper,
.mspp-paypal-btn #ppc-button-ppcp-gateway {
    width: 100%;
    height: 44px;
}

.mspp-paypal-btn .ppc-button-wrapper iframe {
    min-height: 44px !important;
}

/* Row 2 - Stripe Express Checkout */
.mspp-cart-row-2 {
    display: flex;
    width: 100%;
}

.mspp-cart-row-2:not(:has(#wc-stripe-express-checkout-element)),
.mspp-cart-row-2:has(#wc-stripe-express-checkout-element:empty) {
    display: none;
}

.mspp-cart-row-2 .wpcbn-btn,
.mspp-cart-row-2 .wpcbn-btn-single,
.mspp-cart-row-2 .mspp-wc-cart-form {
    display: none !important;
}

.mspp-cart-row-2 #wc-stripe-express-checkout-wrapper {
    width: 100%;
    display: flex;
}

.mspp-cart-row-2 #wc-stripe-express-checkout-element {
    width: 100%;
    display: flex;
    gap: 4px;
    margin-bottom: 0 !important;
}

.mspp-cart-row-2 #wc-stripe-express-checkout-element > div {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.mspp-cart-row-2 .StripeElement,
.mspp-cart-row-2 .__PrivateStripeElement {
    width: 100% !important;
    height: auto !important;
    min-height: 48px;
    overflow: visible !important;
    border-radius: 8px;
}

.mspp-cart-row-2 .__PrivateStripeElement iframe {
    width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
}

/* Secure Payments */
.mspp-secure-payments {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.mspp-secure-label {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mspp-shield-icon {
    width: 16px;
    height: 16px;
}

.mspp-secure-label span {
    font-weight: 400;
    font-size: 14px;
    color: white;
    letter-spacing: -0.12px;
}

.mspp-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mspp-payment-icons img {
    height: 24px;
    width: 38px;
    object-fit: contain;
}

/* Trust Badges */
.mspp-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 24px;
    padding-top: 12px;
    border-top: 0.5px solid var(--mspp-border-light);
    width: 100%;
}

.mspp-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mspp-trust-icon {
    width: 28px;
    height: 28px;
}

.mspp-trust-badge span {
    font-weight: 400;
    font-size: 14px;
    color: white;
    letter-spacing: -0.12px;
}

/* ==========================================================================
   6. MEDIA CAROUSEL
   ========================================================================== */

.mspp-media-section {
    padding: 32px 0;
    overflow: hidden;
}

.mspp-media-carousel-wrap {
    position: relative;
}

.mspp-media-carousel {
    --card-w: clamp(480px, 75vw, 380px);
    --gap: 12px;
    --edge-pad: var(--mspp-container-padding, 24px);
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--edge-pad);
    padding-left: var(--edge-pad);
    padding-right: var(--edge-pad);
    position: relative;
    z-index: 1;
}

.mspp-media-carousel::-webkit-scrollbar {
    display: none;
}

.mspp-mc-slide {
    flex: 0 0 var(--card-w);
    scroll-snap-align: start;
    display: block;
    background: transparent;
    cursor: pointer;
}

.mspp-mc-bg {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    border-radius: var(--mspp-radius-lg);
    transition: transform 0.5s ease;
    will-change: transform;
    position: relative;
}

.mspp-mc-slide:hover .mspp-mc-bg {
    transform: scale(0.95);
}

/* Play Button */
.mspp-mc-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mspp-mc-slide:hover .mspp-mc-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Navigation Arrows */
.mspp-mc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0 !important;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7) !important;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: background 0.15s;
    z-index: 10;
}

.mspp-mc-nav:hover {
    background: #000 !important;
}

.mspp-mc-nav svg {
    width: 24px;
    height: 24px;
}

.mspp-mc-prev {
    left: calc(var(--mspp-container-padding, 24px) + 16px);
}

.mspp-mc-next {
    right: 16px;
}

.mspp-mc-nav[disabled] {
    opacity: 0.35;
    cursor: default;
}

/* ==========================================================================
   7. MEDIA LIGHTBOX
   ========================================================================== */

.mspp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mspp-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}

.mspp-lightbox-content {
    position: relative;
    width: 95%;
    height: 90%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.mspp-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 32px;
    color: white !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mspp-lightbox-close:hover {
    opacity: 0.7;
}

.mspp-lightbox-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 0;
}

.mspp-lightbox-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mspp-lightbox-main iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Lightbox Thumbnails */
.mspp-lightbox-thumbs {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    justify-content: center;
    overflow-x: auto;
    flex-shrink: 0;
}

.mspp-lightbox-thumbs::-webkit-scrollbar {
    display: none;
}

.mspp-lb-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 56px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s, border 0.2s;
    border: 2px solid transparent;
}

.mspp-lb-thumb:hover,
.mspp-lb-thumb.active {
    opacity: 1;
}

.mspp-lb-thumb.active {
    border-color: var(--mspp-accent-lime);
}

.mspp-lb-thumb-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mspp-lb-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: white;
    background: rgba(255, 0, 0, 0.8);
    width: 24px;
    height: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   8. CONTENT TABS
   ========================================================================== */

.mspp-content-tabs {
    padding: 24px 0 48px;
}

.mspp-tabs-container {
    max-width: var(--mspp-container-max);
    margin: 0 auto;
    padding: 0 var(--mspp-container-padding);
}

/* Tab Navigation */
.mspp-tabs-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 16px 0;
    border-top: 0.5px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.mspp-tab-btn {
    padding: 0;
    font-weight: 600 !important;
    font-size: 16px;
    letter-spacing: -0.12px;
    color: white;
    background: transparent !important;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.mspp-tab-btn:hover,
.mspp-tab-btn:focus,
.mspp-tab-btn.active {
    color: var(--mspp-accent-blue) !important;
    background-color: transparent !important;
}

/* Get 5% Off Tab - Gradient Border */
.mspp-tab-highlight {
    padding: 8px 12px !important;
    border-radius: 100px !important;
    border: none !important;
    background: var(--mspp-gradient-rainbow) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    position: relative;
}

.mspp-tab-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: var(--mspp-gradient-rainbow);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.mspp-tab-highlight:hover,
.mspp-tab-highlight:focus,
.mspp-tab-highlight.active {
    background: var(--mspp-gradient-rainbow) !important;
    -webkit-background-clip: padding-box !important;
    background-clip: padding-box !important;
    -webkit-text-fill-color: black !important;
    color: black !important;
}

.mspp-tab-highlight:hover::before,
.mspp-tab-highlight:focus::before,
.mspp-tab-highlight.active::before {
    display: none;
}

/* Tab Panels */
.mspp-tab-panel {
    display: none;
}

.mspp-tab-panel.active {
    display: block;
    animation: mspp-fadeIn 0.3s ease;
}

@keyframes mspp-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Accordion Header (Hidden on Desktop) */
.mspp-accordion-header {
    display: none;
}

.mspp-accordion-icon {
    transition: transform 0.3s ease;
}

/* ==========================================================================
   8.1 ABOUT THE GAME TAB
   ========================================================================== */

.mspp-about-layout {
    display: flex;
    gap: 24px;
}

.mspp-about-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.mspp-about-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
}

.mspp-about-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.mspp-about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.mspp-about-description {
    flex: 1;
    min-width: 340px;
}

.mspp-about-description h2,
.mspp-about-description h3,
.mspp-about-description h4,
.mspp-about-legal h4 {
    font-weight: 700;
    font-size: 20px;
    color: white;
    margin: 0 0 12px;
    line-height: 1.2;
}

.mspp-about-description p,
.mspp-about-legal p {
    font-weight: 400;
    font-size: 16px;
    color: white;
    line-height: 1.5;
    margin: 0 0 16px;
}

.mspp-about-description strong,
.mspp-about-description b {
    font-weight: 700;
}

.mspp-about-description ul,
.mspp-about-description ol {
    margin: 16px 0;
    padding-left: 24px;
}

.mspp-about-description li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Product Copy Styling */
.mspp-about-description .product-copy {
    font-size: 16px;
    line-height: 1.75;
    color: white;
}

.mspp-about-description .product-copy section {
    margin: 0 0 4.5em;
}

.mspp-about-description .product-copy section:last-child {
    margin-bottom: 0;
}

.mspp-about-description .product-copy figure {
    margin: 0 0 1em;
}

.mspp-about-description .product-copy figure img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.mspp-about-description .product-copy iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 16px;
}

.mspp-about-description .product-copy a {
    color: var(--mspp-accent-lime);
    text-decoration: underline;
}

.mspp-about-description .product-copy a:hover {
    opacity: 0.8;
}

.mspp-about-description .product-copy section:first-child:has(iframe):not(:has(p)) {
    display: none;
}

/* Sidebar */
.mspp-about-sidebar {
    flex: 0 0 420px;
    max-width: 420px;
    min-width: 300px;
    border-left: 1px solid #747474;
}

.mspp-sidebar-sticky {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mspp-info-row {
    display: flex;
    gap: 0;
    padding: 12px 16px 17px 16px;
    border-bottom: 1px solid rgba(207, 207, 207, 0.45);
}

.mspp-info-row-last {
    border-bottom: none;
}

.mspp-info-label {
    flex: 1;
    font-weight: 300;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    line-height: 1;
}

.mspp-info-value {
    flex: 1;
    font-weight: 400;
    font-size: 16px;
    color: white;
    line-height: 1.4;
}

/* ==========================================================================
   8.2 WHAT CRITICS SAY TAB
   ========================================================================== */

.mspp-critics-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* OpenCritic Bar */
.mspp-opencritic-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mspp-oc-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-right: 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.mspp-oc-logo {
    height: 40px !important;
    width: auto;
}

.mspp-oc-based {
    font-size: 14px;
    color: white;
    white-space: nowrap;
}

.mspp-oc-based strong {
    font-weight: 700;
}

.mspp-oc-scores {
    display: flex;
    gap: 48px;
}

.mspp-oc-score-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mspp-oc-rating-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mspp-oc-rating-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.mspp-oc-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mspp-oc-mighty { background: #9E00FF; color: white; }
.mspp-oc-strong { background: #FF6B00; color: white; }
.mspp-oc-fair { background: #FFB800; color: black; }
.mspp-oc-weak { background: #666; color: white; }
.mspp-oc-na { background: #333; color: white; }

.mspp-oc-number {
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    color: white;
}

.mspp-oc-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.mspp-oc-score-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 56px;
    padding: 0 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    font-size: 32px;
    color: #1D1D1D;
}

/* Reviews Grid */
.mspp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mspp-review-card {
    background: #272C34;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 0 10px rgba(34, 114, 255, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mspp-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(34, 114, 255, 0.35);
}

.mspp-review-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: #FC3E04;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    align-self: flex-start;
}

.mspp-review-quote {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: white;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mspp-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mspp-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.mspp-review-avatar-placeholder {
    display: block;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
}

.mspp-review-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mspp-review-author-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.mspp-review-outlet {
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.mspp-no-reviews {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    padding: 64px 0;
    font-size: 16px;
}

/* ==========================================================================
   8.3 WHY CHOOSE US TAB
   ========================================================================== */

.mspp-why-us-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.mspp-reviews-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mspp-ebay-logo {
    height: 24px;
    width: auto;
}

.mspp-ebay-label {
    font-size: 16px;
    color: white;
    margin-right: 16px;
}

.mspp-ebay-score {
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.mspp-ebay-stars {
    color: #FFBF00;
    font-size: 16px;
    letter-spacing: 2px;
}

.mspp-ebay-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Trust Grid */
.mspp-trust-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.mspp-trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    gap: 6px;
}

.mspp-trust-highlight {
    background: #F6EBFF;
    border-radius: 16px;
    border: 1px solid var(--mspp-accent-purple);
}

.mspp-trust-highlight .mspp-trust-text strong,
.mspp-trust-highlight .mspp-trust-text span {
    color: #2B2B2B !important;
}

.mspp-trust-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mspp-trust-text strong {
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.mspp-trust-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   8.4 FAQ TAB
   ========================================================================== */

.mspp-faq-layout {
    display: flex;
    gap: 48px;
}

.mspp-faq-intro {
    flex: 0 0 340px;
    max-width: 340px;
}

.mspp-faq-icon-wrap {
    margin-bottom: 24px;
}

.mspp-faq-icon {
    width: 48px;
    height: 48px;
}

.mspp-faq-intro h3 {
    font-weight: 700;
    font-size: 24px;
    color: white;
    margin: 0 0 16px;
}

.mspp-faq-intro p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.mspp-faq-intro em {
    font-style: italic;
}

.mspp-faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mspp-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mspp-faq-item:last-child {
    border-bottom: none;
}

.mspp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: transparent !important;
    border: none;
    cursor: pointer;
    text-align: left;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.mspp-faq-question span {
    font-weight: 500;
    font-size: 16px;
    color: white;
    padding-right: 16px;
}

.mspp-faq-question:hover span {
    color: #FFF !important;
}

.mspp-faq-chevron {
    flex-shrink: 0;
    color: white;
    transition: transform 0.3s ease;
}

.mspp-faq-item.active .mspp-faq-chevron {
    transform: rotate(180deg);
}

.mspp-faq-answer {
    display: none;
    padding: 0 0 20px;
}

.mspp-faq-item.active .mspp-faq-answer {
    display: block;
}

.mspp-faq-answer p,
.mspp-faq-answer li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 8px;
}

.mspp-faq-answer ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

/* ==========================================================================
   8.5 GET 5% OFF TAB
   ========================================================================== */

.mspp-rewards-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.mspp-rewards-card {
    flex: 0 0 480px;
    max-width: 480px;
    position: relative;
    border-radius: 24px;
    padding: 4px;
    background: linear-gradient(135deg, #7B00E9 0%, #FF4DCD 50%, #DBFF00 100%);
}

.mspp-rewards-card-bg {
    display: none;
}

.mspp-rewards-card-content {
    position: relative;
    z-index: 1;
    padding: 0 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--mspp-bg-primary);
    border-radius: 20px;
    overflow: hidden;
}

.mspp-xp-logo {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.mspp-rewards-label {
    font-size: 12px;
    font-weight: 600;
    color: #FF4DCD;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.mspp-rewards-card-content h3 {
    font-weight: 700;
    font-size: 40px !important;
    color: white;
    margin: 0 0 8px;
}

.mspp-rewards-card-content > p {
    font-size: 16px;
    color: white;
    margin: 0 0 24px !important;
    padding: 0 16px;
}

.mspp-rewards-btn {
    font-family: var(--mspp-font-primary);
    font-weight: 900;
    display: inline-block;
    padding: 14px 32px;
    background: #00D1F3;
    color: black !important;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s;
    margin-bottom: 16px;
}

.mspp-rewards-btn:hover {
    transform: scale(0.98);
    color: black !important;
}

.mspp-rewards-note {
    font-size: 13px;
    color: white;
    font-style: italic;
}

/* Benefits */
.mspp-rewards-benefits {
    flex: 1;
}

.mspp-rewards-benefits h3 {
    font-weight: 700;
    font-size: 32px !important;
    color: white;
    margin: 0 0 20px;
}

.mspp-benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
}

.mspp-benefit-icon-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mspp-benefit-icon {
    width: 64px;
    height: 64px;
}

.mspp-benefit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mspp-benefit-text strong {
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.mspp-benefit-text span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   GET 5% OFF TAB - NEWSLETTER MODE (Temporary until Loyalty Program launch)
   ========================================================================== */

/* Hide loyalty program elements (keep in DOM for future use) */
.mspp-rewards-card .mspp-rewards-btn,
.mspp-rewards-card .mspp-rewards-note {
    display: none;
}

/* Hide first benefit row (Earn XP on Every Purchase) */
.mspp-benefit-row.mspp-benefit-xp-earn {
    display: none;
}

/* Newsletter Embed Form Container */
.mspp-newsletter-embed {
    width: 100%;
    padding: 0 24px;
    margin-bottom: 16px;
}

/* MailerLite form styling overrides */
.mspp-newsletter-embed .ml-embedded {
    width: 100%;
}

/* Optional: Style MailerLite form to match your design */
.mspp-newsletter-embed .ml-form-embedWrapper {
    background: transparent !important;
}

.mspp-newsletter-embed .ml-form-embedBody {
    padding: 0 !important;
}

.mspp-newsletter-embed input[type="email"] {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    color: white !important;
    padding: 14px 16px !important;
}

.mspp-newsletter-embed input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.mspp-newsletter-embed button[type="submit"],
.mspp-newsletter-embed .ml-form-embedSubmit button {
    background: #00D1F3 !important;
    color: black !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    padding: 14px 24px !important;
    border: none !important;
    cursor: pointer !important;
    transition: transform 0.2s !important;
}

.mspp-newsletter-embed button[type="submit"]:hover,
.mspp-newsletter-embed .ml-form-embedSubmit button:hover {
    transform: scale(0.98) !important;
}

/* ==========================================================================
   9. PRODUCT CAROUSELS
   ========================================================================== */

.mspp-product-carousel,
.mspp-recently-viewed {
    padding: 48px 0;
    overflow: hidden;
}

.mspp-carousel-container {
    max-width: var(--mspp-container-max);
    margin: 0 auto;
    padding: 0 var(--mspp-container-padding);
}

.mspp-carousel-title {
    font-weight: 700 !important;
    font-size: 24px !important;
    line-height: 1.2;
    color: white;
    margin: 0 0 24px;
}

/* Swiper Container */
.mspp-products-swiper,
.mspp-recently-swiper {
    overflow: visible;
    position: relative;
    padding-right: 32px !important;
}

/* Product Slide */
.mspp-product-slide {
    width: 243px !important;
    flex-shrink: 0;
}

/* Product Card */
.mspp-product-card {
    display: block;
    text-decoration: none;
    color: white;
    transition: transform 0.2s ease;
}

.mspp-product-card:hover {
    transform: scale(0.98);
}

.mspp-product-image {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 20px;
}

.mspp-product-image img {
    max-width: 120%;
    max-height: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mspp-product-info {
    padding: 0;
}

.mspp-product-name {
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 1.1;
    color: white;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 35px;
}

.mspp-product-price {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: white;
}

/* Navigation Arrows */
.mspp-products-swiper .swiper-button-prev,
.mspp-products-swiper .swiper-button-next,
.mspp-recently-swiper .swiper-button-prev,
.mspp-recently-swiper .swiper-button-next {
    color: rgba(255, 255, 255, 0.6);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.2s ease;
    top: 120px;
}

.mspp-products-swiper .swiper-button-prev:hover,
.mspp-products-swiper .swiper-button-next:hover,
.mspp-recently-swiper .swiper-button-prev:hover,
.mspp-recently-swiper .swiper-button-next:hover {
    color: white;
    background: rgba(0, 0, 0, 0.8);
}

.mspp-products-swiper .swiper-button-prev::after,
.mspp-products-swiper .swiper-button-next::after,
.mspp-recently-swiper .swiper-button-prev::after,
.mspp-recently-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.mspp-products-swiper .swiper-button-prev,
.mspp-recently-swiper .swiper-button-prev {
    left: 16px;
}

.mspp-products-swiper .swiper-button-next,
.mspp-recently-swiper .swiper-button-next {
    right: 16px;
}

/* Spacer after last slide */
.mspp-products-swiper .swiper-wrapper::after,
.mspp-recently-swiper .swiper-wrapper::after {
    content: '';
    flex-shrink: 0;
    width: 16px;
    min-width: 16px;
}

/* ==========================================================================
   10. STICKY BAR
   ========================================================================== */

.mspp-sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1D1D1D;
    z-index: 10;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mspp-sticky-bar.visible {
    transform: translateY(0);
}

.mspp-sticky-container {
    max-width: var(--mspp-container-max);
    margin: 0 auto;
    padding: 16px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mspp-sticky-title {
    flex: 1;
    min-width: 0;
    padding-right: 24px;
}

.mspp-sticky-title h2 {
    font-family: var(--mspp-font-display) !important;
    font-weight: 900 !important;
    font-size: 24px !important;
    line-height: 24px !important;
    color: white;
    margin: 0;
    max-width: 640px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mspp-sticky-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.mspp-sticky-price {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mspp-sticky-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    height: 100%;
    background: var(--mspp-accent-red);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    color: white;
    white-space: nowrap;
}

.mspp-sticky-regular {
    font-family: var(--mspp-font-display);
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    color: var(--mspp-text-muted);
    text-decoration: line-through;
    white-space: nowrap;
}

.mspp-sticky-current {
    font-family: var(--mspp-font-display);
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    color: var(--mspp-accent-lime);
    white-space: nowrap;
}

/* Sticky Cart Button */
.mspp-sticky-cart-btn {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px !important;
    padding: 12px 24px !important;
    background: var(--mspp-accent-purple) !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: transform 0.2s ease-in !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mspp-sticky-cart-btn:hover {
    transform: scale(0.95);
}

.mspp-sticky-cart-icon {
    width: 23px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.mspp-sticky-cart-btn span {
    font-weight: 800;
    font-size: 16px;
    color: white;
    text-align: center;
    white-space: nowrap;
}

.mspp-sticky-cart-btn.is-available {
    background: var(--mspp-accent-lime) !important;
}

.mspp-sticky-cart-btn.is-available span {
    color: #000 !important;
}

.mspp-sticky-cart-btn.is-available .mspp-sticky-cart-icon {
    filter: brightness(0) !important;
}

.mspp-sticky-cart-btn.is-available:hover {
    background: #c5e600 !important;
}

/* ==========================================================================
   11. POPUP
   ========================================================================== */

.mspp-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mspp-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.mspp-popup-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: 90vh;
    max-height: 90vh;
    background: var(--mspp-bg-card);
    border-radius: var(--mspp-radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.mspp-popup-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.mspp-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    color: var(--mspp-text-secondary);
    background: none;
    border: none;
    cursor: pointer;
}

/* ==========================================================================
   12. NOTIFICATIONS
   ========================================================================== */

.mspp-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 16px 24px;
    background: var(--mspp-bg-card);
    color: white;
    border-radius: var(--mspp-radius-sm);
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mspp-notification.visible {
    opacity: 1;
    transform: translateY(0);
}

.mspp-notification-success {
    border-left: 4px solid var(--mspp-accent-lime);
}

.mspp-notification-error {
    border-left: 4px solid var(--mspp-accent-red);
}

/* ==========================================================================
   13. RESPONSIVE - TABLET (max-width: 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --mspp-container-padding: 32px;
    }
    
    .mspp-hero-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .mspp-hero-left,
    .mspp-hero-right {
        flex: 1 0 100%;
        min-width: 100%;
    }
    
    .mspp-hero-left {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mspp-hero-image-wrapper {
        height: 400px;
    }
    
    .mspp-mc-nav {
        display: flex;
    }
    
    .mspp-media-carousel {
        --card-w: clamp(320px, 45vw, 450px);
        --gap: 14px;
    }
}

/* ==========================================================================
   14. RESPONSIVE - MOBILE (max-width: 991px) - TABS TO ACCORDION
   ========================================================================== */

@media (max-width: 991px) {
    /* Tabs become full-width accordion */
    .mspp-content-tabs {
        padding: 0;
    }
    
    .mspp-tabs-container {
        padding: 0;
    }
    
    .mspp-tabs-nav {
        display: none;
    }
    
    .mspp-tab-panel {
        display: block;
        border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
    }
    
    .mspp-tab-panel:first-child {
        border-top: 0.5px solid rgba(255, 255, 255, 0.5);
    }
    
    .mspp-accordion-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 24px 16px;
        background: transparent !important;
        border: none;
        cursor: pointer;
        text-decoration: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    
    .mspp-accordion-header span {
        font-weight: 500;
        font-size: 20px;
        color: white;
        letter-spacing: -0.12px;
    }
    
    .mspp-accordion-icon {
        width: 16px;
        height: 8px;
        color: white;
    }
    
    .mspp-accordion-header.active .mspp-accordion-icon {
        transform: rotate(180deg);
    }
    
    .mspp-accordion-content {
        display: none;
        padding: 0 16px 24px;
        overflow: hidden;
    }
    
    .mspp-tab-panel.accordion-open .mspp-accordion-content {
        display: block;
    }
    
    /* Get 5% Off - Mobile Accordion Style */
    .mspp-tab-panel[id="mspp-tab-get-5-off"] .mspp-accordion-header span {
        display: inline-block;
        padding: 8px 12px;
        border: none;
        border-radius: 100px;
        font-weight: 600;
        font-size: 16px;
        position: relative;
        background: var(--mspp-gradient-rainbow);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .mspp-tab-panel[id="mspp-tab-get-5-off"] .mspp-accordion-header span::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 100px;
        padding: 1px;
        background: var(--mspp-gradient-rainbow);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }
    
    .mspp-tab-panel[id="mspp-tab-get-5-off"].accordion-open .mspp-accordion-header span {
        background: var(--mspp-gradient-rainbow);
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-text-fill-color: black;
        color: black;
    }
    
    .mspp-tab-panel[id="mspp-tab-get-5-off"].accordion-open .mspp-accordion-header span::before {
        display: none;
    }
    
    /* About layout */
    .mspp-about-layout {
        flex-direction: column;
    }
    
    .mspp-about-sidebar {
        flex: none;
        max-width: 100%;
        border-left: none;
        border-top: 0.5px solid rgba(255, 255, 255, 0.5);
        margin-top: 24px;
        padding-top: 24px;
    }
    
    .mspp-sidebar-sticky {
        position: static;
        padding-top: 0;
    }
    
    .mspp-about-description {
        min-width: 100%;
    }
    
    .mspp-about-video {
        border-radius: 16px;
    }
    
    .mspp-about-description .product-copy section {
        margin: 0 0 3em;
    }
    
    .mspp-about-description .product-copy figure img,
    .mspp-about-description .product-copy iframe {
        border-radius: 12px;
    }
    
    /* OpenCritic */
    .mspp-opencritic-bar {
        flex-direction: column;
        gap: 24px;
        padding-bottom: 24px;
    }
    
    .mspp-oc-logo-section {
        border-right: none;
        padding-right: 0;
        width: 100%;
    }
    
    .mspp-oc-scores {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 32px;
    }
	
	.mspp-oc-score-circle {
		min-width: 48px;
		height: 48px; 
		font-size: 28px;
	}
    
    .mspp-oc-number {
        font-size: 36px;
    }
    
    .mspp-oc-rating-img {
        width: 56px;
        height: 56px;
    }
    
    .mspp-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .mspp-review-card {
        border-radius: 20px;
    }
    
    /* Trust grid */
    .mspp-trust-grid {
        flex-wrap: wrap;
        gap: 32px;
    }
    
    .mspp-trust-item {
        flex: 1 1 calc(50% - 16px);
        min-width: 140px;
        padding: 16px;
    }
    
    .mspp-trust-highlight {
        box-shadow: 0 0 5px 0 var(--mspp-accent-purple);
    }
    
    /* FAQ */
    .mspp-faq-layout {
        flex-direction: column;
        gap: 24px;
    }
    
    .mspp-faq-intro {
        flex: none;
        max-width: 100%;
        text-align: center;
    }
    
    .mspp-faq-icon-wrap {
        display: flex;
        justify-content: center;
    }
    
    .mspp-faq-item {
        background: #1E1E1E;
        border-radius: 8px;
        padding: 10px;
        margin-bottom: 16px;
        border-bottom: none;
    }
    
    .mspp-faq-question {
        padding: 0;
    }
    
    .mspp-faq-question span {
        font-weight: 600;
    }
    
    .mspp-faq-answer {
        padding-top: 16px;
    }
    
    /* Rewards */
    .mspp-rewards-layout {
        flex-direction: column;
        gap: 48px;
    }
    
    .mspp-rewards-card {
        flex: none;
        max-width: 100%;
        border-radius: 32px;
    }
    
    .mspp-rewards-card-content {
        border-radius: 28px;
        padding: 0 0 40px;
    }
    
    .mspp-rewards-card-content h3 {
        font-size: 32px !important;
    }
    
    .mspp-rewards-btn {
        border-radius: 12px;
        min-height: 52px;
        padding: 16px 24px;
    }
    
    .mspp-rewards-benefits h3 {
        letter-spacing: -1px;
    }
}

/* ==========================================================================
   15. RESPONSIVE - MOBILE (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
    :root {
        --mspp-container-padding: 16px;
    }
    
    /* Hero */
    .mspp-hero {
        padding: 24px 0;
    }
    
    .mspp-hero-left {
        gap: 0;
    }
    
    .mspp-hero-right {
        gap: 24px;
        display: flex;
        flex-direction: column;
    }
    
    .mspp-hero-title-mobile {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .mspp-hero-title-desktop,
    .mspp-hero-title-left {
        display: none;
    }
    
    .mspp-product-title {
        font-size: 24px !important;
    }
    
    .mspp-hero-image-wrapper {
        height: 400px;
        border-radius: var(--mspp-radius-lg);
        padding: 16px;
		margin-bottom: 16px;
    }
    
    /* See Photos Button */
    .mspp-see-photos-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        position: absolute;
        bottom: 12px;
        right: 12px;
        background: white;
        border-radius: 4px;
        padding: 8px 12px;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .mspp-see-photos-icon {
        width: 16px;
        height: 16px;
    }
    
    .mspp-see-photos-btn span {
        font-weight: 600;
        font-size: 12px;
        color: #1D1D1D;
    }
    
    /* Breadcrumbs */
    .mspp-breadcrumbs {
        margin-bottom: 12px;
    }
    
    .mspp-breadcrumb-current {
        max-width: 180px;
    }
    
    /* Reorder hero elements */
    .mspp-action-row { order: 10; }
    .mspp-short-description { order: 1; }
    .mspp-bonus-link { order: 2; }
    .mspp-platform-selector { order: 3; }
    .mspp-price-section { order: 4; }
    .mspp-cart-section { order: 5; }
    .mspp-secure-payments { order: 5; }
    .mspp-trust-badges { order: 11; }
    
    /* Share button */
    .mspp-share-btn span {
        display: none;
    }
    
    .mspp-share-btn {
        border: 1px solid var(--mspp-border-gray);
        border-radius: 8px;
        padding: 6px;
    }
    
    .mspp-share-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Platform buttons */
    .mspp-platform-btn {
        padding: 10px;
    }
    
    .mspp-platform-btn img {
        height: 18px;
    }
    
    /* Cart buttons */
    .mspp-cart-buttons {
        flex-direction: column;
    }
    
    .mspp-add-to-cart-btn,
    .mspp-paypal-btn {
        width: 100%;
        padding: 1rem !important;
    }
    
    .mspp-add-to-cart-btn {
        height: 48px;
    }
    
    .mspp-cart-row-2 #wc-stripe-express-checkout-element {
        gap: 8px;
    }
    
    /* Trust badges */
    .mspp-trust-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Media carousel */
    .mspp-media-carousel {
        --card-w: clamp(340px, 45vw, 600px);
        --gap: 8px;
    }
    
    .mspp-mc-nav {
        display: none;
    }
    
    /* Product carousels */
    .mspp-product-carousel {
        padding: 64px 0;
    }
    
    .mspp-carousel-container {
        padding: 0;
    }
    
    .mspp-carousel-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-left: 16px;
    }
    
    .mspp-products-swiper .swiper-wrapper,
    .mspp-recently-swiper .swiper-wrapper {
        padding-left: 16px;
    }
    
    .mspp-product-slide {
        width: 160px !important;
    }
    
    .mspp-product-image {
        height: 180px;
        padding: 8px;
    }
    
    .mspp-product-image img {
        max-height: 160px;
    }
    
    .mspp-product-name {
        font-size: 14px;
        min-height: 31px;
    }
    
    .mspp-product-price {
        font-size: 14px;
    }
    
    .mspp-products-swiper .swiper-button-prev,
    .mspp-products-swiper .swiper-button-next,
    .mspp-recently-swiper .swiper-button-prev,
    .mspp-recently-swiper .swiper-button-next {
        display: none;
    }
    
    .mspp-recently-viewed {
        padding: 0 0 64px;
    }
    
    /* Sticky bar */
    .mspp-sticky-container {
        padding: 8px 16px;
    }
    
    .mspp-sticky-title {
        display: none;
    }
    
    .mspp-sticky-actions {
        width: 100%;
    }
    
    .mspp-sticky-price {
        flex: 1;
        gap: 8px;
        order: 1;
    }
    
    .mspp-sticky-discount {
        display: none;
    }
    
    .mspp-sticky-current {
        order: 1;
        font-size: 20px;
        line-height: 20px;
    }
    
    .mspp-sticky-regular {
        order: 2;
        font-size: 20px;
        line-height: 20px;
    }
    
    .mspp-sticky-cart-btn {
        flex: 1;
        order: 2;
        padding: 8px 24px !important;
        height: 40px !important;
    }
}