/* Prime Roleplay Store - Clean Design */
:root {
    --bg-dark: #0f1419;
    --bg-card: #1a1f26;
    --bg-hover: #242a33;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --green: #22c55e;
    --gold: #f59e0b;
    --text: #ffffff;
    --text-muted: #9ca3af;
    --border: #2d3748;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.5;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 55px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.cart-btn {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.cart-btn:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main */
main {
    padding-top: 80px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 30px 20px 20px;
}

.hero-badge {
    display: none;
}

.hero h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.hero p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Categories */
.categories-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.category-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.category-tab:hover {
    color: var(--text);
    background: var(--bg-hover);
}

.category-tab.active {
    color: var(--accent);
    background: rgba(59, 130, 246, 0.15);
}

.category-tab i {
    font-size: 0.85rem;
}

/* Category Sections */
.category-section {
    margin-bottom: 30px;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-title i {
    color: var(--accent);
    font-size: 0.9rem;
}

.tier-price {
    font-size: 0.8rem;
    color: var(--gold);
    margin-left: auto;
    font-weight: 500;
    text-transform: none;
}

.category-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.category-note i {
    color: var(--accent);
    margin-right: 6px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

/* Product Cards - Small */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.product-card.featured {
    border-color: var(--gold);
}

.badge-popular {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--gold);
    color: #000;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 5;
}

/* Product Image */
.product-image {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-hover);
    position: relative;
}

.product-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.product-icon {
    font-size: 2rem;
    color: var(--text-muted);
    opacity: 0.4;
}

.product-image img + .product-icon {
    display: none;
}

/* Tier badges */
.tier-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    z-index: 2;
}

.tier-badge.tier1 { background: #cd7f32; color: white; }
.tier-badge.tier2 { background: #c0c0c0; color: #000; }
.tier-badge.tier3 { background: #ffd700; color: #000; }

/* Gradients for different categories */
.bronze-gradient { background: linear-gradient(135deg, #3d2817 0%, #1a1f26 100%); }
.prata-gradient { background: linear-gradient(135deg, #2a2a2a 0%, #1a1f26 100%); }
.ouro-gradient { background: linear-gradient(135deg, #3d3010 0%, #1a1f26 100%); }
.diamante-gradient { background: linear-gradient(135deg, #1a2a3d 0%, #1a1f26 100%); }
.prime-gradient { background: linear-gradient(135deg, #0a2a1a 0%, #1a1f26 100%); }
.money-gradient { background: linear-gradient(135deg, #1a3020 0%, #1a1f26 100%); }
.backpack-gradient { background: linear-gradient(135deg, #1a2030 0%, #1a1f26 100%); }
.pack-gradient { background: linear-gradient(135deg, #1e3a5f 0%, #1a1f26 100%); }
.extras-gradient { background: linear-gradient(135deg, #4a1a4a 0%, #1a1f26 100%); }
.extras-gradient { background: linear-gradient(135deg, #2a1a20 0%, #1a1f26 100%); }
.car-image { background: var(--bg-hover); }

/* Product Info */
.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.money-amount {
    color: var(--green) !important;
    font-weight: 600;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.car-price {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background: var(--accent);
    border: none;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.add-to-cart-btn:hover {
    background: var(--accent-light);
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -380px;
    width: 380px;
    max-width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 201;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
}

.cart-close:hover {
    color: var(--danger);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.3;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
}

.cart-item-image {
    width: 50px;
    height: 50px;
    background: var(--bg-hover);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.cart-item-price {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    cursor: pointer;
    font-size: 0.9rem;
}

.qty-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.cart-item-qty {
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-remove {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    border-radius: 6px;
    color: var(--danger);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 8px 10px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: var(--danger);
    color: white;
}

.cart-footer {
    padding: 16px;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cart-total span:last-child {
    color: var(--accent);
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    background: var(--green);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-btn:hover {
    opacity: 0.9;
}

.checkout-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
}

.modal-close:hover {
    color: var(--danger);
}

/* Checkout Modal */
.checkout-modal {
    padding: 25px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 20px;
}

.checkout-header i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.checkout-header h2 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.checkout-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.checkout-summary {
    background: var(--bg-dark);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
    max-height: 150px;
    overflow-y: auto;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-price {
    color: var(--accent);
    font-weight: 600;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group label i {
    margin-right: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.payment-label i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: var(--text-muted);
}

.payment-option input:checked + .payment-label {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
}

.payment-option input:checked + .payment-label i {
    color: var(--accent);
}

.payment-option:hover .payment-label {
    border-color: var(--accent);
}

/* Car Selection Section */
.car-selection-section {
    background: var(--bg-dark);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.car-selection-section h4 {
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-selection-note {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

/* VIP Car Selection */
.vip-car-selection {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
}

.vip-car-selection h5 {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.selection-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding: 8px 10px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--accent);
}

.selection-info i {
    margin-right: 6px;
}

.car-slot {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.car-slot:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.car-slot-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.car-slot label {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 4px;
    font-weight: 500;
}

.tier-select,
.car-select {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s;
}

.tier-select:focus,
.car-select:focus {
    border-color: var(--accent);
    outline: none;
}

.tier-select option,
.car-select option {
    background: var(--bg-dark);
    color: var(--text);
}

.car-select option:disabled {
    color: var(--text-muted);
    font-style: italic;
}

.car-dropdowns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.car-dropdowns .car-select {
    flex: 1;
    min-width: 150px;
}

.car-slot.simple {
    padding: 0;
    border-bottom: none;
    margin-bottom: 10px;
}

.car-slot.simple label {
    font-weight: 500;
    margin-bottom: 6px;
}

/* Promo Code Section */
.promo-code-section {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-dark);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.promo-code-section label {
    display: block;
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.promo-code-section label i {
    margin-right: 8px;
    color: var(--accent);
}

.promo-code-input {
    display: flex;
    gap: 8px;
}

.promo-code-input input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    text-transform: uppercase;
}

.promo-code-input input:focus {
    outline: none;
    border-color: var(--accent);
}

.promo-code-input input:disabled {
    opacity: 0.7;
    background: var(--bg-dark);
}

.promo-code-input button {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

#applyPromoBtn {
    background: var(--accent);
    color: white;
}

#applyPromoBtn:hover:not(:disabled) {
    background: var(--accent-hover);
}

#applyPromoBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#removePromoBtn {
    background: #e74c3c;
    color: white;
    padding: 10px 12px;
}

#removePromoBtn:hover {
    background: #c0392b;
}

.promo-status {
    margin-top: 8px;
    font-size: 0.85rem;
    min-height: 20px;
}

.promo-status.success {
    color: #2ecc71;
}

.promo-status.error {
    color: #e74c3c;
}

/* Checkout Total */
.checkout-total {
    padding: 15px;
    background: var(--bg-dark);
    border-radius: 10px;
    margin-bottom: 20px;
}

.checkout-subtotal,
.checkout-discount {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 8px 0;
    color: var(--text-muted);
}

.checkout-discount span:last-child {
    color: #2ecc71;
}

.checkout-final {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 600;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
}

.checkout-final span:last-child {
    color: var(--green);
}

.submit-order-btn {
    padding: 14px;
    background: var(--green);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-order-btn:hover {
    opacity: 0.9;
}

/* Payment Method Sections */
.payment-method-section {
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-dark);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.payment-instructions h4 {
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-info-box {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
}

.payment-info-box.warning {
    border-color: var(--gold);
    background: rgba(245, 158, 11, 0.1);
}

.payment-info-box.info {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
}

.payment-info-box p {
    margin: 8px 0;
    line-height: 1.6;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin: 10px 0 !important;
}

.payment-reference {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    margin: 10px 0 !important;
    padding: 10px;
    background: var(--bg-dark);
    border-radius: 5px;
    text-align: center;
}

.payment-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px !important;
    font-style: italic;
}

.confirm-payment-btn {
    width: 100%;
    padding: 14px;
    background: var(--green);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    margin-top: 15px;
}

.confirm-payment-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.discord-ticket-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.discord-ticket-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

.help-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 5px;
    cursor: help;
}

.help-link {
    display: block;
    margin-top: 5px;
    color: var(--accent);
    font-size: 0.85rem;
    cursor: pointer;
}

.help-link:hover {
    text-decoration: underline;
}

/* Success Modal */
.success-modal {
    padding: 30px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--green);
    margin-bottom: 15px;
}

.success-modal h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--green);
}

.success-modal > p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.order-details {
    background: var(--bg-dark);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 0.9rem;
}

.order-details p {
    margin-bottom: 8px;
}

.order-details strong {
    color: var(--accent);
}

.success-close-btn {
    padding: 12px 30px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Product Modal */
.product-modal {
    max-width: 500px;
    padding: 0;
}

.product-detail {
    padding: 25px;
}

.product-detail-image {
    height: 180px;
    background: var(--bg-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.product-detail-image img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
}

.product-detail-image i {
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.4;
}

.product-detail h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.product-detail-desc {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.product-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.product-detail-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-detail-btn:hover {
    background: var(--accent-light);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--green);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 400;
    opacity: 0;
    transition: all 0.3s;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Footer */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 30px 20px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logo-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.logo-footer img {
    height: 32px;
}

.logo-footer span {
    font-size: 1rem;
    font-weight: 600;
}

footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.social-links a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Hide sections when filtering */
.category-section.hidden {
    display: none;
}

/* Remove particles and background effects */
.bg-animation, .particles {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 12px;
    }

    .product-image {
        height: 100px;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 0.9rem;
    }

    .categories-nav {
        padding: 10px;
    }

    .category-tab {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Rules Button */
.rules-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.rules-btn:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Discord Buttons */
.discord-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.hero-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 28px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    animation: pulse-discord 2s ease-in-out infinite;
}

.hero-discord-btn:hover {
    background: #4752C4;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

@keyframes pulse-discord {
    0%, 100% { box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(88, 101, 242, 0); }
}

.footer-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 24px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

/* Snow Effect */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 1rem;
    opacity: 0.8;
    animation: fall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    will-change: transform;
}

@keyframes fall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Discord buttons */
@media (max-width: 768px) {
    .discord-btn span,
    .discord-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .hero-discord-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
