/* ============================================
   ZIRO13 - Premium Roblox Assets Styles
   Premium Creator Marketplace
   ============================================ */

/* ============================================
   PREMIUM HEADER
   ============================================ */
.premium-header {
    padding: 8rem 4rem 3rem;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.03) 0%, rgba(10, 10, 15, 0.6) 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.premium-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.premium-header-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.premium-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.premium-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.premium-breadcrumb a:hover {
    color: #FFD700;
}

.premium-breadcrumb .active {
    color: #FFD700;
    font-weight: 500;
}

.premium-breadcrumb i {
    width: 0.85rem;
    height: 0.85rem;
    opacity: 0.5;
}

/* Hero */
.premium-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.premium-hero-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    color: #FFD700;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.premium-badge i {
    width: 1rem;
    height: 1rem;
}

.premium-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.premium-hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.premium-hero-actions {
    display: flex;
    gap: 0.75rem;
}

.premium-hero-stats {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.premium-stat-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.5rem;
    min-width: 170px;
}

.premium-stat-card i {
    width: 1.5rem;
    height: 1.5rem;
    color: #FFD700;
    flex-shrink: 0;
}

.premium-stat-number {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.premium-section {
    padding: 5rem 4rem;
}

.premium-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-label.premium-label {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.section-label i {
    width: 0.9rem;
    height: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ============================================
   FEATURED GRID
   ============================================ */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.featured-grid .premium-product-card {
    min-height: 420px;
}

.featured-grid .premium-product-card .premium-card-image {
    padding-top: 65%;
}

/* ============================================
   CATEGORY TABS
   ============================================ */
.premium-category-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.premium-cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.premium-cat-tab:hover {
    border-color: rgba(255, 215, 0, 0.4);
    color: var(--text-primary);
    background: rgba(255, 215, 0, 0.03);
}

.premium-cat-tab.active {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    color: #FFD700;
}

.premium-cat-tab i {
    width: 1rem;
    height: 1rem;
}

/* ============================================
   MAP SUBCATEGORY
   ============================================ */
.map-subcategory {
    margin-bottom: 1.5rem;
}

.map-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    max-width: 600px;
}

.map-type-btn {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.map-type-btn:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.02);
}

.map-type-btn.active {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.06);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.06);
}

.map-type-btn i {
    width: 1.3rem;
    height: 1.3rem;
    color: #FFD700;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.map-type-btn strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.map-type-btn span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================
   TOOLBAR
   ============================================ */
.premium-toolbar {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.premium-search {
    position: relative;
    flex: 1;
    min-width: 250px;
    max-width: 450px;
}

.premium-search .search-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.1rem;
    height: 1.1rem;
    color: var(--text-muted);
    pointer-events: none;
}

.premium-search-input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.875rem;
    outline: none;
    transition: all 0.25s ease;
}

.premium-search-input:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.08);
}

.premium-search-input::placeholder {
    color: var(--text-muted);
}

.search-clear-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.search-clear-btn:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.premium-sort {
    flex-shrink: 0;
}

.premium-sort-select {
    padding: 0.65rem 0.85rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.premium-sort-select:focus {
    border-color: #FFD700;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.premium-products-grid,
.updates-grid,
.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* ============================================
   PREMIUM PRODUCT CARD
   ============================================ */
.premium-product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.premium-product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-lg) + 1px);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-product-card:hover {
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.premium-product-card:hover::before {
    opacity: 1;
}

.premium-card-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.premium-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-product-card:hover .premium-card-image img {
    transform: scale(1.04);
}

/* Badges */
.premium-card-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    gap: 0.4rem;
    z-index: 2;
}

.premium-badge-tag {
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.premium-badge-tag.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
}

.premium-badge-tag.featured {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    color: white;
}

.premium-badge-tag.new {
    background: rgba(46, 213, 115, 0.2);
    color: #2ED573;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.premium-badge-tag.hot {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: white;
}

.premium-badge-tag.updated {
    background: rgba(0, 206, 201, 0.2);
    color: var(--accent);
    border: 1px solid rgba(0, 206, 201, 0.3);
}

/* Version badge */
.premium-card-version {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.2rem 0.55rem;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    z-index: 2;
}

/* Content */
.premium-card-content {
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.premium-card-preview-strip {
    width: 100%;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.38rem 0.75rem;
    background: rgba(255, 215, 0, 0.045);
    border-top: 1px solid rgba(255, 215, 0, 0.14);
    border-bottom: 1px solid rgba(255, 215, 0, 0.14);
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.premium-card-preview-strip:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.22);
}

.premium-card-preview-strip i {
    width: 0.8rem;
    height: 0.8rem;
}

.premium-card-category {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.premium-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.premium-card-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.85rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta */
.premium-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    font-size: 0.73rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.premium-card-meta .version-tag {
    padding: 0.15rem 0.5rem;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-weight: 500;
    color: #FFD700;
}

.premium-card-meta .update-date {
    opacity: 0.7;
}

/* Footer */
.premium-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid var(--glass-border);
}

.premium-card-price {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-card-actions {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-premium-preview {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-premium-preview:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.btn-premium-preview i {
    width: 0.95rem;
    height: 0.95rem;
}

.btn-premium-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.7rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-premium-preview-link:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.btn-premium-preview-link i {
    width: 0.9rem;
    height: 0.9rem;
}

.btn-premium-buy {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: var(--radius-md);
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-premium-buy:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    transform: translateY(-1px);
    color: #1a1a1a;
}

.btn-premium-buy i {
    width: 0.9rem;
    height: 0.9rem;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.premium-empty {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.premium-empty i {
    width: 3rem;
    height: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    opacity: 0.4;
}

.premium-empty h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.premium-empty p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.premium-reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.premium-reset-btn:hover {
    border-color: #FFD700;
    color: #FFD700;
}

/* ============================================
   PAGINATION
   ============================================ */
.premium-pagination {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 2.5rem;
}

.premium-page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.premium-page-btn:hover {
    border-color: #FFD700;
    color: var(--text-primary);
}

.premium-page-btn.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-color: #FFD700;
    color: #1a1a1a;
    font-weight: 700;
}

.premium-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============================================
   MODAL
   ============================================ */
.premium-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.premium-modal.active {
    display: flex;
}

.premium-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
}

.premium-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    z-index: 1;
    animation: modalIn 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.premium-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.premium-modal-close:hover {
    background: rgba(255, 71, 87, 0.1);
    border-color: #FF4757;
    color: #FF4757;
}

.premium-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.premium-modal-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg-tertiary);
}

.premium-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-modal-info h2 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.premium-modal-creator {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.premium-modal-version {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: #FFD700;
    font-family: var(--font-mono);
    margin-bottom: 1rem;
}

.premium-modal-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.premium-modal-meta {
    display: flex;
    gap: 1.25rem;
    padding: 0.85rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 1.25rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.premium-modal-price {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
}

.premium-modal-actions {
    display: flex;
    gap: 0.75rem;
}

.premium-modal-actions .btn-premium-buy {
    flex: 1;
    justify-content: center;
    padding: 0.75rem;
    font-size: 0.9rem;
}

.btn-premium-ticket {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-premium-ticket:hover {
    border-color: #FFD700;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1023px) {
    .premium-header {
        padding: 7rem 2rem 2.5rem;
    }
    
    .premium-section {
        padding: 3.5rem 2rem;
    }
    
    .premium-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .premium-hero-text {
        max-width: 100%;
    }
    
    .premium-hero-actions {
        justify-content: center;
    }
    
    .premium-hero-stats {
        justify-content: center;
    }
    
    .premium-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .premium-products-grid,
    .updates-grid,
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .map-type-selector {
        grid-template-columns: 1fr;
    }
    
    .premium-modal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .premium-header {
        padding: 6rem 1.25rem 2rem;
    }
    
    .premium-section {
        padding: 2.5rem 1.25rem;
    }
    
    .premium-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .premium-products-grid,
    .updates-grid,
    .trending-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .premium-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .premium-category-tabs {
        gap: 0.35rem;
    }
    
    .premium-cat-tab {
        padding: 0.5rem 0.85rem;
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .premium-header {
        padding: 5.5rem 1rem 1.5rem;
    }
    
    .premium-section {
        padding: 2rem 1rem;
    }
    
    .premium-modal-content {
        padding: 1.5rem;
    }
    
    .premium-toolbar {
        flex-direction: column;
    }
    
    .premium-search {
        max-width: 100%;
    }
}


/* ============================================
   UPDATE SYSTEM - NEW
   ============================================ */

/* Update Status Badge */
.premium-update-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.18rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.premium-update-status.active-update {
    background: rgba(46, 213, 115, 0.12);
    color: #2ED573;
    border: 1px solid rgba(46, 213, 115, 0.25);
}

.premium-update-status.maintained {
    background: rgba(0, 206, 201, 0.12);
    color: var(--accent);
    border: 1px solid rgba(0, 206, 201, 0.25);
}

.premium-update-status.new-update {
    background: rgba(108, 92, 231, 0.12);
    color: var(--primary-light);
    border: 1px solid rgba(108, 92, 231, 0.25);
}

.premium-update-status.lts {
    background: rgba(255, 215, 0, 0.12);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.25);
}

.premium-update-status i {
    width: 0.7rem;
    height: 0.7rem;
}

/* Update dot pulse */
.premium-update-status.active-update i {
    animation: updatePulse 2s ease-in-out infinite;
}

@keyframes updatePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Card Update Info */
.premium-card-update-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-page {
    padding: 8rem 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-detail-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-detail-breadcrumb a:hover {
    color: #FFD700;
}

/* Product Detail Hero */
.product-detail-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Image Gallery */
.product-gallery {
    position: relative;
}

.gallery-main {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 215, 0, 0.15);
    margin-bottom: 0.75rem;
}

.gallery-main img,
.gallery-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.gallery-thumb {
    width: 80px;
    height: 56px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.gallery-thumb:hover {
    opacity: 0.9;
    border-color: rgba(255, 215, 0, 0.3);
}

.gallery-thumb.active {
    opacity: 1;
    border-color: #FFD700;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb.video-thumb {
    position: relative;
}

.gallery-thumb.video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.gallery-thumb.video-thumb i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    color: white;
    z-index: 1;
}

/* Product Info */
.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-detail-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.product-detail-creator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-detail-creator .creator-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Version Info Card */
.version-info-card {
    padding: 1rem 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
}

.version-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.version-info-row:last-child {
    margin-bottom: 0;
}

.version-info-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.version-info-label i {
    width: 0.85rem;
    height: 0.85rem;
}

.version-info-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.version-info-value.current-version {
    font-family: var(--font-mono);
    color: #FFD700;
}

.product-detail-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-detail-price-section {
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
}

.product-detail-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-detail-actions .btn-premium-buy {
    flex: 1;
    justify-content: center;
    padding: 0.85rem;
    font-size: 0.95rem;
    min-width: 180px;
}

/* ============================================
   PRODUCT TABS
   ============================================ */
.product-tabs-section {
    margin-bottom: 3rem;
}

.product-tabs-nav {
    display: flex;
    gap: 0.25rem;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.product-tab-btn {
    padding: 0.85rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.product-tab-btn:hover {
    color: var(--text-primary);
}

.product-tab-btn.active {
    color: #FFD700;
    border-bottom-color: #FFD700;
}

.product-tab-btn i {
    width: 1rem;
    height: 1rem;
}

.product-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.product-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   CHANGELOG
   ============================================ */
.changelog-timeline {
    position: relative;
    padding-left: 2rem;
}

.changelog-timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.05));
}

.changelog-entry {
    position: relative;
    padding-bottom: 2rem;
}

.changelog-entry:last-child {
    padding-bottom: 0;
}

.changelog-dot {
    position: absolute;
    left: -1.65rem;
    top: 0.35rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFD700;
    border: 2px solid var(--bg-primary);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.changelog-dot.latest {
    animation: updatePulse 2s ease-in-out infinite;
}

.changelog-version {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.65rem;
}

.changelog-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.changelog-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.changelog-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.changelog-list li i {
    width: 0.9rem;
    height: 0.9rem;
    color: #2ED573;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.changelog-list li.fix i {
    color: #FFBD2E;
}

.changelog-list li.removed i {
    color: #FF5F57;
}

/* ============================================
   INSTALLATION TAB
   ============================================ */
.installation-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.install-step {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.install-step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    flex-shrink: 0;
}

.install-step-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.install-step-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.install-step-content code {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: var(--bg-secondary);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
}

/* Requirements list */
.requirements-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.requirement-item i {
    width: 0.9rem;
    height: 0.9rem;
    color: var(--primary-light);
}

/* ============================================
   UPDATE SHOWCASE
   ============================================ */
.update-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.update-showcase-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
}

.update-showcase-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: var(--bg-secondary);
}

.update-showcase-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.update-showcase-thumb .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: background 0.2s ease;
}

.update-showcase-thumb .play-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

.update-showcase-info {
    padding: 1rem;
}

.update-showcase-info .showcase-version {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.update-showcase-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.update-showcase-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ============================================
   RESPONSIVE (TAMBAHAN)
   ============================================ */
@media (max-width: 1023px) {
    .product-detail-hero {
        grid-template-columns: 1fr;
    }
    
    .update-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-list {
        grid-template-columns: 1fr;
    }
    
    .product-detail-page {
        padding: 7rem 2rem 3rem;
    }
}

@media (max-width: 767px) {
    .product-detail-page {
        padding: 6rem 1.25rem 2rem;
    }
    
    .product-detail-title {
        font-size: 1.5rem;
    }
    
    .product-tab-btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-thumbs {
        gap: 0.35rem;
    }
    
    .gallery-thumb {
        width: 60px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .product-detail-page {
        padding: 5.5rem 1rem 1.5rem;
    }
    
    .product-detail-actions {
        flex-direction: column;
    }
    
    .product-tabs-nav {
        gap: 0;
    }
}
