/**
 * Nelson Configurator - Showcase & Tiers CSS
 * Porsche-style card layouts
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    --showcase-primary: #000;
    --showcase-accent: #d5001c;
    --showcase-gray-50: #fafafa;
    --showcase-gray-100: #f5f5f5;
    --showcase-gray-200: #e5e5e5;
    --showcase-gray-300: #d4d4d4;
    --showcase-gray-500: #737373;
    --showcase-gray-700: #404040;
    --showcase-gray-900: #171717;
    --showcase-success: #22c55e;
    --showcase-card-radius: 8px;
    --showcase-transition: 0.2s ease;
}

/* ==========================================================================
   Global Background - Full page coverage
   ========================================================================== */

/* Set background on body when showcase/tiers content is present */
body:has(.nelson-showcase-wrapper),
body:has(.nelson-tiers-wrapper) {
    background-color: #0a0a0a !important;
    background-image: url('../images/background-plain.png') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* Fallback body class for browsers without :has() support */
body.nelson-showcase-page,
body.nelson-tiers-page {
    background-color: #0a0a0a !important;
    background-image: url('../images/background-plain.png') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* Override Divi theme wrapper backgrounds */
body:has(.nelson-showcase-wrapper) #main-content,
body:has(.nelson-tiers-wrapper) #main-content,
body.nelson-showcase-page #main-content,
body.nelson-tiers-page #main-content,
body:has(.nelson-showcase-wrapper) #page-container,
body:has(.nelson-tiers-wrapper) #page-container,
body.nelson-showcase-page #page-container,
body.nelson-tiers-page #page-container,
body:has(.nelson-showcase-wrapper) .et_pb_section,
body:has(.nelson-tiers-wrapper) .et_pb_section,
body.nelson-showcase-page .et_pb_section,
body.nelson-tiers-page .et_pb_section {
    background-color: transparent !important;
    background-image: none !important;
}

/* Remove borders/lines from Divi header elements */
body:has(.nelson-showcase-wrapper) #main-header,
body:has(.nelson-tiers-wrapper) #main-header,
body.nelson-showcase-page #main-header,
body.nelson-tiers-page #main-header,
body:has(.nelson-showcase-wrapper) #et-main-area,
body:has(.nelson-tiers-wrapper) #et-main-area,
body.nelson-showcase-page #et-main-area,
body.nelson-tiers-page #et-main-area {
    background-color: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* ==========================================================================
   Cabinet Showcase Grid
   ========================================================================== */

.nelson-showcase {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Full-width background for showcase */
.nelson-showcase-wrapper {
    position: relative;
    width: 100%;
}

/* Background now set on body - see Global Background section above */

/* ==========================================================================
   Showcase Header
   ========================================================================== */

.nelson-showcase-header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
    text-align: center;
    position: relative;
}

.nelson-showcase-header-logo {
    position: relative;
    display: inline-block;
}

.nelson-showcase-header-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.nelson-showcase-header-banner {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.nelson-showcase-header-banner h1 {
    font-family: 'Impact', 'Arial Black', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding: 0 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 992px) {
    .nelson-showcase-header-banner h1 {
        font-size: 2rem;
    }

    .nelson-showcase-header-banner {
        bottom: 6%;
    }
}

@media (max-width: 768px) {
    .nelson-showcase-header-banner h1 {
        font-size: 1.5rem;
        letter-spacing: 0.05em;
    }

    .nelson-showcase-header-banner {
        bottom: 5%;
    }
}

@media (max-width: 480px) {
    .nelson-showcase-header-banner h1 {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .nelson-showcase-header-banner {
        bottom: 4%;
    }
}

.nelson-showcase-grid {
    display: grid;
    gap: 24px;
}

/* OPTION 1: Default - Full width columns (CURRENTLY ACTIVE) 
.nelson-showcase[data-columns="2"] .nelson-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
}

.nelson-showcase[data-columns="3"] .nelson-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
}

.nelson-showcase[data-columns="4"] .nelson-showcase-grid {
    grid-template-columns: repeat(4, 1fr);
}*/

/* OPTION 2: Fixed width columns - narrower cards centered in grid
   Uncomment the section below to test this option:

.nelson-showcase[data-columns="2"] .nelson-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
}

.nelson-showcase[data-columns="3"] .nelson-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
}

.nelson-showcase[data-columns="4"] .nelson-showcase-grid {
    grid-template-columns: repeat(4, 1fr);
}

.nelson-showcase-card {
    max-width: 450px;
    margin: 0 auto;
}
*/

/* OPTION 3: 4 columns default (more cards = narrower width)
   Uncomment the section below to test this option:

.nelson-showcase[data-columns="2"] .nelson-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
}

.nelson-showcase[data-columns="3"] .nelson-showcase-grid {
    grid-template-columns: repeat(4, 1fr);
}

.nelson-showcase[data-columns="4"] .nelson-showcase-grid {
    grid-template-columns: repeat(5, 1fr);
}
*/

/* OPTION 4: Auto-fit grid with fixed card width (dynamic columns based on space)
   Uncomment the section below to test this option:*/

.nelson-showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    justify-content: center;
}

.nelson-showcase[data-columns="2"] .nelson-showcase-grid,
.nelson-showcase[data-columns="3"] .nelson-showcase-grid,
.nelson-showcase[data-columns="4"] .nelson-showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}
*/

@media (max-width: 1024px) {
    .nelson-showcase[data-columns="3"] .nelson-showcase-grid,
    .nelson-showcase[data-columns="4"] .nelson-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .nelson-showcase[data-columns="2"] .nelson-showcase-grid,
    .nelson-showcase[data-columns="3"] .nelson-showcase-grid,
    .nelson-showcase[data-columns="4"] .nelson-showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Showcase Card - Modern Trendy Design
   ========================================================================== */

.nelson-showcase-card {
    position: relative;
}

.nelson-showcase-card-inner {
    background: #fff;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nelson-showcase-card-inner:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
    transform: translateY(-8px);
}

.nelson-showcase-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nelson-showcase-image {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nelson-showcase-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.03) 100%);
    pointer-events: none;
}

.nelson-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.nelson-showcase-card-inner:hover .nelson-showcase-image img {
    transform: scale(1.05);
}

.nelson-showcase-placeholder {
    width: 100%;
    height: 100%;
    background: var(--showcase-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nelson-showcase-placeholder .dashicons {
    font-size: 64px;
    width: 64px;
    height: 64px;
    color: var(--showcase-gray-400);
    opacity: 0.4;
}

.nelson-showcase-content {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 20px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Make entire card clickable */
.nelson-showcase-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nelson-showcase-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.nelson-showcase-card-link:focus {
    outline: none;
}

.nelson-showcase-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    text-align: center;
}

/* Info Row - Price and Players */
.nelson-showcase-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: none;
}

.nelson-showcase-price {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.nelson-showcase-price .woocommerce-Price-amount {
    font-weight: 700;
    color: #000;
    font-size: 18px;
}

/* Specs Grid - Compact Badges */
.nelson-showcase-specs {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: none;
}

.nelson-showcase-spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.nelson-showcase-spec:hover {
    background: #e8e8e8;
}

.nelson-showcase-spec .spec-value {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.nelson-showcase-spec .spec-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.nelson-showcase-description {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nelson-showcase-button {
    display: block;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
    padding: 0;
    background: none;
    border: none;
}

.nelson-showcase-button img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 12px 12px;
}

.nelson-showcase-button:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
}

.nelson-showcase-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--showcase-gray-500);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nelson-showcase-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nelson-showcase-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .nelson-showcase-title {
        font-size: 18px;
    }

    .nelson-showcase-image {
        height: 300px;
    }

    .nelson-showcase-specs {
        flex-wrap: wrap;
    }

    .nelson-showcase-card-inner {
        min-height: 350px;
    }
}

/* ==========================================================================
   Tier Selection Page
   ========================================================================== */

/* Tiers Wrapper with Background */
.nelson-tiers-wrapper {
    position: relative;
    width: 100%;
}

/* Background now set on body - see Global Background section at top of file */

/* Tiers Logo Header */
.nelson-tiers-logo-header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
    text-align: center;
}

.nelson-tiers-logo-container {
    position: relative;
    display: inline-block;
}

.nelson-tiers-header-logo-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.nelson-tiers-banner-title {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-family: 'Impact', 'Arial Black', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding: 0 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

@media (max-width: 992px) {
    .nelson-tiers-banner-title {
        font-size: 2rem;
        bottom: 6%;
    }
}

@media (max-width: 768px) {
    .nelson-tiers-banner-title {
        font-size: 1.5rem;
        letter-spacing: 0.05em;
        bottom: 5%;
    }
}

@media (max-width: 480px) {
    .nelson-tiers-banner-title {
        font-size: 1.1rem;
        padding: 0 1rem;
        bottom: 4%;
    }
}

.nelson-tiers {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nelson-tiers-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.nelson-tiers-header-content {
    flex: 1;
}

.nelson-tiers-title {
    font-size: 36px;
    font-weight: 400;
    color: var(--showcase-gray-900);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.nelson-tiers-subtitle {
    font-size: 16px;
    color: var(--showcase-gray-500);
    margin: 0;
}

.nelson-tiers-compare {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--showcase-gray-900);
    border-radius: var(--showcase-card-radius);
    color: var(--showcase-gray-900);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--showcase-transition);
}

.nelson-tiers-compare:hover {
    background: var(--showcase-gray-900);
    color: #fff;
}

@media (max-width: 768px) {
    .nelson-tiers-title {
        font-size: 28px;
    }
    
    .nelson-tiers-header {
        flex-direction: column;
    }
    
    .nelson-tiers-compare {
        align-self: flex-start;
    }
}

/* ==========================================================================
   Tier Cards Grid
   ========================================================================== */

.nelson-tiers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .nelson-tiers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .nelson-tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nelson-tiers-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Individual Tier Card
   ========================================================================== */

.nelson-tier-card {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: all var(--showcase-transition);
    display: flex;
    flex-direction: column;
    padding: 15px;
}

/* Frame overlay on entire card */
.nelson-tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
}

/* Frame Variations */
.nelson-tier-card.nelson-frame-1::before {
    background-image: url('../images/frame-1.png');
}

.nelson-tier-card.nelson-frame-2::before {
    background-image: url('../images/frame-2.png');
}

/* Card inner content needs to be above frame */
.nelson-tier-card > * {
    position: relative;
    z-index: 1;
}

/* Gold glow effect */
.nelson-tier-card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    box-shadow:
        0 0 20px rgba(212, 162, 76, 0.4),
        0 0 40px rgba(212, 162, 76, 0.3),
        0 0 60px rgba(212, 162, 76, 0.2);
    pointer-events: none;
    z-index: -1;
    border-radius: 8px;
}

.nelson-tier-card:hover {
    transform: translateY(-4px);
}

.nelson-tier-card.has-badge {
    /* Badge styling handled separately */
}

.nelson-tier-card.is-bespoke {
    /* Bespoke styling */
}

.nelson-tier-badge {
    position: absolute;
    top: 15px;
    right: 35px;
    background: var(--showcase-success);
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 0 4px 4px;
    z-index: 2;
}

.nelson-tier-card.is-bespoke .nelson-tier-badge {
    background: var(--showcase-primary);
}

/* Tier Card Image */
.nelson-tier-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: visible;
    background-color: rgba(52, 52, 52, 0.3);
    border-radius: 4px 4px 0 0;
}

.nelson-tier-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform var(--showcase-transition);
}

.nelson-tier-card:hover .nelson-tier-image img {
    transform: scale(1.05);
}

.nelson-tier-card.has-image .nelson-tier-card-inner {
    min-height: auto;
}

.nelson-tier-card-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: auto;
    min-height: auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 4px 4px;
}

.nelson-tier-header {
    margin-bottom: 16px;
}

.nelson-tier-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--showcase-gray-900);
    margin: 0 0 8px 0;
}

.nelson-tier-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.nelson-tier-price .price-from {
    font-size: 13px;
    color: var(--showcase-gray-500);
}

.nelson-tier-price .price-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--showcase-gray-900);
}

.nelson-tier-price .price-amount .woocommerce-Price-amount {
    font-weight: inherit;
}

.nelson-tier-description {
    font-size: 14px;
    color: var(--showcase-gray-500);
    line-height: 1.5;
    margin: 0 0 20px 0;
}

/* Feature List */
.nelson-tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
}

.nelson-tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--showcase-gray-700);
    border-bottom: 1px solid var(--showcase-gray-200);
}

.nelson-tier-features li:last-child {
    border-bottom: none;
}

.nelson-tier-features li svg {
    flex-shrink: 0;
    color: var(--showcase-success);
    margin-top: 2px;
}

/* Meta Info */
.nelson-tier-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--showcase-gray-200);
}

.nelson-tier-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--showcase-gray-500);
}

.nelson-tier-meta-item svg {
    flex-shrink: 0;
}

.nelson-tier-meta-item.bespoke {
    color: var(--showcase-gray-700);
    font-weight: 500;
}

/* CTA Button */
.nelson-tier-button {
    display: block;
    background: var(--showcase-primary);
    color: #fff;
    padding: 14px 20px;
    border-radius: 0 0 var(--showcase-card-radius) var(--showcase-card-radius);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all var(--showcase-transition);
    margin: auto -24px -24px -24px;
    width: calc(100% + 48px);
}

.nelson-tier-button:hover {
    background: var(--showcase-gray-700);
    color: #fff;
    filter: brightness(1.1);
}

.nelson-tier-button.is-bespoke {
    background: transparent;
    border: 2px solid var(--showcase-primary);
    color: var(--showcase-primary);
}

.nelson-tier-button.is-bespoke:hover {
    background: var(--showcase-primary);
    color: #fff;
}

/* ==========================================================================
   Back Link
   ========================================================================== */

.nelson-tiers-back {
    text-align: center;
    padding-top: 20px;
    border-top: none;
}

.nelson-tiers-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color var(--showcase-transition);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nelson-tiers-back-link:hover {
    color: #d4a24c;
}

.nelson-tiers-back-link svg {
    transition: transform var(--showcase-transition);
}

.nelson-tiers-back-link:hover svg {
    transform: translateX(-4px);
}

/* ==========================================================================
   Cabinet Selection Prompt (No cabinet in URL)
   ========================================================================== */

.nelson-tiers-prompt {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.nelson-tiers-prompt h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--showcase-gray-900);
    margin: 0 0 12px 0;
}

.nelson-tiers-prompt > p {
    font-size: 16px;
    color: var(--showcase-gray-500);
    margin: 0 0 40px 0;
}

.nelson-tiers-prompt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.nelson-tiers-prompt-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--showcase-gray-50);
    border: 1px solid var(--showcase-gray-200);
    border-radius: var(--showcase-card-radius);
    text-decoration: none;
    transition: all var(--showcase-transition);
}

.nelson-tiers-prompt-item:hover {
    border-color: var(--showcase-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nelson-tiers-prompt-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.nelson-tiers-prompt-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--showcase-gray-900);
}

/* ==========================================================================
   Animation on scroll (optional enhancement)
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
    .nelson-tier-card {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s ease forwards;
    }
    
    .nelson-tier-card:nth-child(1) { animation-delay: 0.1s; }
    .nelson-tier-card:nth-child(2) { animation-delay: 0.15s; }
    .nelson-tier-card:nth-child(3) { animation-delay: 0.2s; }
    .nelson-tier-card:nth-child(4) { animation-delay: 0.25s; }
    .nelson-tier-card:nth-child(5) { animation-delay: 0.3s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
