/* ============================================
   BMT STORE - Catalog Styles
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    overflow-y: scroll; /* Always show scrollbar to prevent layout shift during AJAX navigation */
}

/* Global link reset - NO blue links */
a {
    color: inherit !important;
    text-decoration: none !important;
}

a:visited {
    color: inherit !important;
}

a:link {
    color: inherit !important;
}

/* ============================================
   Header
   ============================================ */
.header {
    background: #1a1a1a;
    border-bottom: 2px solid #333;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #fff;
}

.logo-box {
    background: #fff;
    color: #000;
    padding: 8px 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    border: 2px solid #fff;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
    transform: skew(-5deg);
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: #fff !important;
    color: #000 !important;
}

.btn-primary:visited,
.btn-primary:link {
    color: #000 !important;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #444;
    color: #fff;
}

.btn-secondary:hover {
    background: #666;
}

/* Outline button for header username - white text, transparent bg */
.btn-outline {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:visited,
.btn-outline:link {
    color: #fff !important;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* ============================================
   Container & Page Header
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px;
}

/* Catalog-specific container - uses unique class to avoid conflicts with cabinet inline styles */
.catalog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px;
}

.page-header {
    margin-bottom: 32px;
    text-align: center;
}

.page-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.page-subtitle {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 8px;
}

/* ============================================
   Filters
   ============================================ */
.filters {
    background: #1a1a1a;
    padding: 24px 16px;
    border-radius: 12px;
    margin-bottom: 32px;
    border: 1px solid #333;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.filters-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 1 auto;
    min-width: 160px;
    max-width: 220px;
}

.filter-label {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.filter-input,
.filter-select {
    padding: 12px;
    border: 2px solid #444;
    border-radius: 6px;
    font-size: 14px;
    background: #2a2a2a;
    color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

/* Checkbox styles */
.filter-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    border: 2px solid #444;
    background: #2a2a2a;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
    white-space: nowrap;
    height: 48px;
    min-width: 160px;
}

.filter-checkbox:hover {
    border-color: #666;
    background-color: rgba(255, 255, 255, 0.05);
}

.filter-checkbox input[type="checkbox"]:checked + span {
    color: #ffeb3b;
    text-shadow: 0 0 8px rgba(255, 235, 59, 0.5);
}

.filter-checkbox input[type="checkbox"]:checked {
    accent-color: #ffeb3b;
}

.filter-checkbox:has(input[type="checkbox"]:checked) {
    border-color: #ffeb3b;
    background-color: rgba(255, 235, 59, 0.1);
    box-shadow: 0 0 12px rgba(255, 235, 59, 0.2);
}

.filter-input-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #ffeb3b;
    transition: transform 0.2s ease;
}

.filter-checkbox:hover .filter-input-checkbox {
    transform: scale(1.1);
}

/* ============================================
   Products Grid
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

/* ============================================
   Product Card
   ============================================ */
.product-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #444;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: fadeInUp 0.5s ease-out both;
    /* Flex layout for equal height cards */
    display: flex;
    flex-direction: column;
}

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

/* Stagger animation for cards */
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }

.product-card:hover {
    transform: translateY(-5px);
    border-color: #fff;
    box-shadow: 0 8px 24px rgba(255,255,255,0.1), 0 0 0 2px rgba(255, 235, 59, 0.2);
}

.product-cover {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
}

/* Default cover icon when no image */
.product-cover::before {
    content: '';
    width: 120px;
    height: 120px;
    background: url('/static/bmt-default-cover.png') no-repeat center center;
    background-size: contain;
    border-radius: 12px;
    opacity: 0.6;
    z-index: 1;
}

.product-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Hide ::before when image exists - img covers it with z-index */
.product-cover:has(img)::before {
    opacity: 0;
}

.product-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.exclusive-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f59e0b;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.free-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
    animation: pulse-free 2s infinite;
    z-index: 2;
}

@keyframes pulse-free {
    0%, 100% { box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 2px 16px rgba(34, 197, 94, 0.7); }
}

.product-info {
    padding: 16px;
    /* Flex grow to push player to bottom */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #aaa;
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-beatmaker {
    font-size: 13px;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
    text-decoration: none;
}

.product-prices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #444;
    /* Push to bottom of card */
    margin-top: auto;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.price-label {
    font-size: 11px;
    color: #aaa;
    font-weight: 500;
    text-transform: uppercase;
}

/* ============================================
   Inline Audio Player - Modern Design
   ============================================ */
.inline-audio-player {
    width: 100%;
    padding: 10px 14px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-top: 1px solid rgba(255, 235, 59, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.inline-audio-player:hover {
    background: linear-gradient(135deg, #252525 0%, #2a2a2a 100%);
    border-top-color: rgba(255, 235, 59, 0.4);
}

.inline-play-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    border: 2px solid #ffeb3b;
    background: rgba(255, 235, 59, 0.1);
    border-radius: 50%;
    color: #ffeb3b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
}

.inline-play-btn:hover {
    background: rgba(255, 235, 59, 0.25);
    transform: scale(1.08);
    box-shadow: 0 0 16px rgba(255, 235, 59, 0.6);
}

.inline-play-btn:active {
    transform: scale(0.95);
}

.inline-play-btn.playing {
    background: rgba(255, 235, 59, 0.3);
    animation: pulse-glow 2s infinite;
}

.inline-play-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.inline-play-btn.loading::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-top-color: #ffeb3b;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-sizing: border-box;
}

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 12px rgba(255, 235, 59, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 235, 59, 0.8);
    }
}

.inline-play-btn svg {
    width: 20px;
    height: 20px;
    transition: opacity 0.2s;
}

.inline-play-btn.playing .play-icon {
    display: none;
}

.inline-play-btn.playing .pause-icon {
    display: block !important;
}

/* Progress Container */
.inline-progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

/* Progress Bar */
.inline-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: height 0.2s;
}

.inline-progress-bar:hover {
    height: 8px;
}

.inline-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffeb3b 0%, #ffc107 100%);
    border-radius: 3px;
    transition: width 0.1s linear;
    position: relative;
    box-shadow: 0 0 8px rgba(255, 235, 59, 0.5);
}

.inline-progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #ffeb3b;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 235, 59, 0.8);
    opacity: 0;
    transition: opacity 0.2s;
}

.inline-progress-bar:hover .inline-progress-fill::after {
    opacity: 1;
}

/* Time Display */
.inline-time-display {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.3px;
    font-variant-numeric: tabular-nums;
}

.current-time {
    color: #ffeb3b;
}

.total-time {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   States: Loading, Empty
   ============================================ */
.loading {
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: #aaa;
}

/* Skeleton Loading Animation */
.skeleton {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #333;
}

.skeleton-cover {
    height: 280px;
}

.skeleton-info {
    padding: 16px;
}

.skeleton-title {
    height: 20px;
    margin-bottom: 12px;
    width: 80%;
}

.skeleton-meta {
    height: 16px;
    width: 60%;
    margin-bottom: 8px;
}

.skeleton-price {
    height: 24px;
    width: 40%;
    margin-top: 12px;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.empty-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.empty-text {
    font-size: 16px;
    color: #aaa;
}

/* ============================================
   Product Counter
   ============================================ */
.product-counter {
    font-size: 14px;
    color: #888;
    padding: 8px 16px;
    background: #2a2a2a;
    border-radius: 6px;
    border: 1px solid #444;
    white-space: nowrap;
}

.product-counter span {
    color: #fff;
    font-weight: bold;
}

/* ============================================
   Footer (Design System v1.0)
   ============================================ */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #333;
    padding: 20px 24px;
    margin-top: 30px;
    font-family: 'Roboto', sans-serif;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-stats {
    color: #666;
    font-size: 12px;
    margin-bottom: 15px;
    text-align: center;
}

.footer-stat {
    color: #666;
}

.footer-stat span {
    color: #888;
}

.footer-stat-sep {
    color: #444;
    margin: 0 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #888 !important;
    text-decoration: none !important;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff !important;
}

.footer-links a:visited {
    color: #888 !important;
}

.footer-copyright {
    color: #555;
    font-size: 12px;
    text-align: center;
    margin: 0;
}

/* ============================================
   Mobile Responsive (Improved)
   ============================================ */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-content {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
    }
    
    .header-actions .btn {
        flex: 1;
        text-align: center;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    /* Page Header Mobile - Counter visible! */
    .page-header-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .product-counter {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Page Title Mobile */
    .page-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    /* Container Mobile */
    .container {
        padding: 20px 16px;
    }
    
    /* Filters Mobile */
    .filters {
        padding: 16px;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Products Grid Mobile */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
    
    .product-cover {
        height: 160px;
        font-size: 32px;
    }
    
    .skeleton-cover {
        height: 160px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .product-meta {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 12px;
    }
    
    .product-beatmaker {
        font-size: 12px;
    }
    
    .price {
        font-size: 16px;
    }
    
    .price-label {
        font-size: 10px;
    }
    
    /* Inline Audio Player Tablet */
    .inline-audio-player {
        padding: 9px 12px;
        gap: 10px;
    }
    
    .inline-play-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        max-width: 40px;
        min-height: 40px;
        max-height: 40px;
    }
    
    .inline-time-display {
        font-size: 10px;
    }
    
    /* Footer Mobile - Stats visible! */
    .footer {
        padding: 24px 16px;
    }
    
    .footer-stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4px;
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .footer-stat-sep {
        margin: 0 6px;
    }
    
    .footer-links {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        font-size: 12px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .logo-box {
        font-size: 22px;
        padding: 6px 12px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-cover {
        height: 140px;
    }
    
    /* Product card mobile improvements */
    .product-info {
        padding: 10px;
    }
    
    .product-title {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 6px;
        /* Two line truncate */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal;
    }
    
    .product-meta {
        margin-bottom: 8px;
        gap: 6px;
        font-size: 11px;
    }
    
    .product-beatmaker {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .product-prices {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
        padding-top: 8px;
    }
    
    .price {
        font-size: 14px;
    }
    
    .price-label {
        font-size: 9px;
    }
    
    /* Inline Audio Player Mobile */
    .inline-audio-player {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .inline-play-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        max-width: 36px;
        min-height: 36px;
        max-height: 36px;
    }

    .inline-play-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .inline-time-display {
        font-size: 10px;
    }
    
    .inline-progress-bar {
        height: 5px;
    }
    
    .inline-progress-bar:hover {
        height: 5px; /* Don't expand on mobile */
    }
    
    .inline-progress-fill::after {
        width: 10px;
        height: 10px;
    }
    
    /* Footer small phones */
    .footer-stats {
        font-size: 10px;
    }
    
    /* Header buttons on small phones */
    .header-actions {
        gap: 8px;
    }
    
    .header-actions .btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* FREE button mobile */
    .btn-free-download {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    /* License prices mobile */
    .license-prices-row {
        gap: 8px;
    }
    
    .license-price {
        padding: 6px;
    }
    
    .license-price .price {
        font-size: 14px;
    }
}
/* ============================================
   FREE Download Button & Price Layout
   ============================================ */

/* Custom price badge in meta row - golden style */
.product-meta-item.custom-price-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

/* FREE download button - full width */
.free-download-row {
    width: 100%;
    margin-bottom: 8px;
}

.btn-free-download {
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-free-download:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-free-download:active {
    transform: translateY(0);
}

.free-hint {
    width: 100%;
    padding: 8px 12px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #22c55e;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

/* Custom price offer button for FREE products */
.custom-price-offer-row {
    width: 100%;
    margin-top: 8px;
}

.btn-custom-price-offer {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-custom-price-offer:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-custom-price-offer:active {
    transform: translateY(0);
}

/* License prices row - Lease left, Exclusive right */
.license-prices-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.license-price {
    flex: 1;
    text-align: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.license-price.single-price {
    flex: none;
    width: 100%;
}

.license-price .price-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.license-price .price {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* Toast Notification */
.bmt-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(30, 30, 30, 0.95);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.bmt-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}