/* ==========================================
   STORE PAGE STYLES - PROFESSIONAL EDITION
   ========================================== */

/* Store Hero Section */
.store-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.store-hero .container {
    position: relative;
    z-index: 5;
}

.store-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.store-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(234, 156, 34, 0.1);
    border: 1px solid rgba(234, 156, 34, 0.3);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    color: #EA9C22;
    margin-bottom: 24px;
}

.store-hero-title {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.store-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Store Container */
.store-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #EA9C22;
}

.breadcrumb i {
    font-size: 14px;
}

.breadcrumb span:last-child {
    color: #EA9C22;
}

/* Store Header */
.store-header {
    margin-bottom: 48px;
}

.store-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.store-title-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.store-title-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.store-stats {
    display: flex;
    gap: 24px;
}

.stat-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.stat-chip i {
    color: #EA9C22;
    font-size: 14px;
}

.stat-chip strong {
    color: #ffffff;
    font-weight: 600;
}

/* Main Content Layout */
.store-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar */
.store-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.sidebar-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-section h3 i {
    color: #EA9C22;
    font-size: 18px;
}

/* Category List */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateX(4px);
}

.category-item.active {
    background: rgba(234, 156, 34, 0.1);
    border-color: rgba(234, 156, 34, 0.3);
    color: #EA9C22;
}

.category-count {
    font-size: 12px;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.category-item.active .category-count {
    background: rgba(234, 156, 34, 0.2);
    color: #EA9C22;
}

/* Enhanced Support Card */
.support-card {
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.9) 0%, rgba(20, 20, 25, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F05D11, #EA9C22, #F05D11);
    opacity: 0.6;
}

.support-icon {
    width: 64px;
    height: 64px;
    background: rgba(234, 156, 34, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.support-icon i {
    font-size: 32px;
    color: #EA9C22;
}

.support-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.support-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 20px;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    text-align: left;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.support-feature i {
    color: #00c853;
    font-size: 14px;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid #EA9C22;
    border: none;
    border-radius: 12px;
    color: #EA9C22;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.discord-btn:hover {
    background: rgba(234, 156, 34, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 156, 34, 0.15);
}

.discord-btn i {
    font-size: 18px;
}

/* Products Display */
.products-display {
    min-height: 600px;
}

.category-section {
    margin-bottom: 48px;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.category-section-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-section-title i {
    color: #EA9C22;
    font-size: 20px;
}

.category-section-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Product Card - Premium Design */
.store-product-card {
    background: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}

.store-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #EA9C22, #F05D11, #EA9C22, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.store-product-card:hover {
    background: rgba(35, 35, 35, 0.95);
    border-color: rgba(234, 156, 34, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.5);
}

.store-product-card:hover::before {
    transform: translateX(100%);
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.product-status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-available {
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.status-coming-soon {
    background: rgba(255, 220, 145, 0.12);
    border: 1px solid rgba(255, 220, 145, 0.3);
    color: #ffdc91;
}

.status-maintenance {
    background: rgba(255, 104, 104, 0.12);
    border: 1px solid rgba(255, 104, 104, 0.3);
    color: #ff6868;
}

.product-type-badge {
    padding: 4px 12px;
    background: rgba(234, 156, 34, 0.1);
    border: 1px solid rgba(234, 156, 34, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #EA9C22;
    text-transform: uppercase;
}

/* Product Image */
.product-image-container {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin: 20px 0 24px 0;
    position: relative;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.store-product-card:hover .product-image-container img {
    transform: scale(1.05);
}

/* Product Info */
.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 63px;
}

/* Product Features */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.product-feature i {
    color: #EA9C22;
    font-size: 14px;
    flex-shrink: 0;
}

/* Product Footer */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-price {
    text-align: right;
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #F05D11 0%, #FBB131 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-top: 4px;
}

.product-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(240, 93, 17, 0.9) 0%, rgba(251, 177, 49, 0.9) 100%);
    border: none;
    border-radius: 40px;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.product-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 93, 17, 0.25);
    background: linear-gradient(135deg, #F05D11 0%, #FBB131 100%);
}

.product-action-btn.disabled {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-action-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

.empty-state-icon {
    font-size: 56px;
    color: rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.empty-state-title {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.empty-state-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(234, 156, 34, 0.1);
    border-top-color: #EA9C22;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Card Animation */
.store-product-card {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .store-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .store-sidebar {
        position: static;
    }

    .category-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .category-item {
        flex: 1;
        min-width: 140px;
        justify-content: center;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .store-container {
        padding: 0 20px;
    }

    .store-hero {
        padding: 120px 0 60px;
    }

    .store-hero-title {
        font-size: 40px;
    }

    .store-hero-subtitle {
        font-size: 16px;
    }

    .store-header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .product-price {
        text-align: center;
    }

    .product-action-btn {
        width: 100%;
        justify-content: center;
    }

    .category-list {
        flex-direction: column;
    }

    .category-item {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .store-hero-title {
        font-size: 32px;
    }

    .store-title-section h2 {
        font-size: 28px;
    }

    .store-product-card {
        padding: 20px;
    }

    .product-image-container {
        height: 150px;
    }

    .product-title {
        font-size: 18px;
    }

    .store-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
}
/* ==========================================
   NEW PRODUCT CARD — image-top layout
   Appended to original CSS, zero conflicts
   No blue anywhere
   ========================================== */

/* Override card padding: image now fills the top edge */
.store-product-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Product image wrapper */
.product-img-wrap {
    position: relative;
    height: 185px;
    overflow: hidden;
    background: #0f0f0f;
    flex-shrink: 0;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.store-product-card:hover .product-img-wrap img { transform: scale(1.05); }

/* Soft gradient fade at image bottom */
.product-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 56px;
    background: linear-gradient(to top, rgba(25,25,25,0.9), transparent);
    pointer-events: none;
}

/* Status badge sits on the image (replaces .product-badges absolute positioning) */
.product-img-wrap .product-status-badge {
    position: absolute;
    top: 12px;
    left: 14px;
    z-index: 2;
}

/* Card body below the image */
.product-body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Name row: title left, type tag right */
.product-head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

/* Override original product-title margin so head-row alignment works */
.product-head-row .product-title { margin-bottom: 0; flex: 1; }

/* Type tags — gold/orange, zero blue */
.product-type-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 3px;
}

.type-software {
    background: rgba(234,156,34,0.12);
    border: 1px solid rgba(234,156,34,0.28);
    color: #EA9C22;
}

.type-hardware {
    background: rgba(240,93,17,0.12);
    border: 1px solid rgba(240,93,17,0.28);
    color: #F05D11;
}

/* Short clamped description */
.product-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Feature list */
.product-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    flex: 1;
}

.product-feature-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.product-feature-list li i { color: #EA9C22; font-size: 14px; flex-shrink: 0; }

/* Footer: price left, button right */
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: auto;
}

/* Price parts */
.price-from { font-size: 11px; color: rgba(255,255,255,0.4); }

.price-val {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #F05D11 0%, #FBB131 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-sub { font-size: 11px; color: rgba(255,255,255,0.4); }

/* ==========================================
   NEW LAYOUT CLASSES — prefixed "new-"
   Sit below the hero, zero conflict with
   the original hero/card CSS above
   ========================================== */

/* Browse Products bar */
.new-store-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    background: rgba(14,13,11,0.85);
    border: 1px solid rgba(234,156,34,0.14);
    border-radius: 20px;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.new-store-meta-left h2 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.new-store-meta-left p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.new-store-meta-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.new-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 40px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
}

.new-meta-chip i { color: #EA9C22; font-size: 13px; }

/* Main layout grid */
.new-store-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

/* Sidebar */
.new-store-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Category card */
.new-sidebar-card {
    background: rgba(14,13,11,0.85);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.new-sidebar-head {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-sidebar-head i { color: #EA9C22; font-size: 16px; }

.new-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    cursor: pointer;
    border-left: 2px solid transparent;
    transition: background 0.18s, color 0.18s;
    user-select: none;
}

.new-cat-item:hover {
    background: rgba(255,255,255,0.04);
    color: #ffffff;
}

.new-cat-item.active {
    background: linear-gradient(90deg, rgba(240,93,17,0.12), transparent);
    color: #EA9C22;
    font-weight: 600;
    border-left-color: #EA9C22;
}

.new-cat-count {
    font-size: 11px;
    padding: 2px 8px;
    background: rgba(255,255,255,0.07);
    border-radius: 20px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    min-width: 22px;
    text-align: center;
}

.new-cat-item.active .new-cat-count {
    background: rgba(234,156,34,0.15);
    color: #EA9C22;
}

/* Support card */
.new-support-card {
    background: rgba(14,13,11,0.85);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.new-support-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #F05D11, #EA9C22, #F05D11);
    opacity: 0.7;
}

.new-support-icon {
    width: 56px;
    height: 56px;
    background: rgba(234,156,34,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.new-support-icon i { font-size: 26px; color: #EA9C22; }

.new-support-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.new-support-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    margin-bottom: 16px;
}

.new-support-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.new-support-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.new-support-feature i { color: #22C55E; font-size: 14px; }

.new-discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    background: transparent;
    border: 1px solid #EA9C22;
    border-radius: 40px;
    color: #EA9C22;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}

.new-discord-btn:hover {
    background: rgba(234,156,34,0.09);
    transform: translateY(-1px);
    text-decoration: none;
    color: #EA9C22;
}

.new-discord-btn i { font-size: 16px; }

/* Products area */
.new-products-area { min-height: 500px; }

.new-products-section { margin-bottom: 40px; }
.new-products-section:last-child { margin-bottom: 0; }

/* Section header strip */
.new-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 18px;
    background: rgba(14,13,11,0.85);
    border: 1px solid rgba(234,156,34,0.14);
    border-radius: 14px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.new-section-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.new-section-header-left i { color: #EA9C22; font-size: 18px; }

.new-section-count {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.05);
    padding: 3px 10px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .new-store-layout { grid-template-columns: 1fr; }
    .new-store-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .new-sidebar-card { flex: 1; min-width: 180px; }
    .new-support-card { flex: 1; min-width: 220px; }
    .new-store-meta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .new-store-sidebar { flex-direction: column; }
    .new-store-meta-chips { display: none; }
}

/* ==========================================
   STORE FIXES — footer overlap + animations
   ========================================== */

/* Fix hardware section overflowing into footer */
.store-container {
    padding-bottom: 80px;
}

.new-products-area {
    padding-bottom: 20px;
}

/* Ensure last section has no extra margin compounding the overflow */
.new-products-section:last-child {
    margin-bottom: 0;
}

/* ── Product card reveal animations ───────── */
@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Override the original fadeInUp with the new cardReveal */
.store-product-card {
    animation: cardReveal 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Stagger per position — subtle, not distracting */
.store-product-card:nth-child(1) { animation-delay: 0.00s; }
.store-product-card:nth-child(2) { animation-delay: 0.08s; }
.store-product-card:nth-child(3) { animation-delay: 0.16s; }
.store-product-card:nth-child(4) { animation-delay: 0.24s; }
.store-product-card:nth-child(5) { animation-delay: 0.32s; }
.store-product-card:nth-child(6) { animation-delay: 0.40s; }

/* Hover: add a soft gold glow on top of the existing transform */
.store-product-card:hover {
    box-shadow:
        0 20px 35px -10px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(234, 156, 34, 0.14),
        0 0 24px -4px rgba(234, 156, 34, 0.08);
}

/* ==========================================
   STORE HERO EXTRAS — chips + stats row
   ========================================== */

.store-hero-extras {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.store-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    transition: border-color 0.2s, background 0.2s;
}

.store-hero-chip:hover {
    background: rgba(234, 156, 34, 0.08);
    border-color: rgba(234, 156, 34, 0.3);
    color: #EA9C22;
}

.store-hero-chip i { color: #EA9C22; font-size: 14px; }

.store-hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 36px;
}

.store-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.store-stat-num {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 20%, #EA9C22 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    line-height: 1;
}

.store-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 700;
}

.store-stat-sep {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .store-hero-extras { gap: 8px; }
    .store-hero-chip { font-size: 12px; padding: 7px 13px; }
    .store-hero-stats-row { gap: 20px; }
    .store-stat-num { font-size: 22px; }
    .store-stat-sep { height: 26px; }
}

@media (max-width: 420px) {
    .store-hero-stats-row { gap: 14px; }
    .store-stat-sep { display: none; }
}

/* ── Bug fix: footer-glow click blocker ───────────────────────
   .footer .footer-glow is position:absolute; height:100vh —
   it extends a full viewport height above the footer, invisibly
   covering the hardware section and the sticky sidebar button.
   pointer-events:none makes it decorative-only, blocking nothing. */
.footer .footer-glow {
    pointer-events: none;
}

/* ── Bug fix: sticky sidebar z-index ─────────────────────────
   Without an explicit z-index, the sidebar (first in DOM) can
   be stacked below the right-column products area when those
   cards create stacking contexts via animation/transform.
   z-index:10 keeps the sidebar (and its Discord button) on top. */
.new-store-sidebar {
    z-index: 10;
}
