a {
    text-decoration: none;
}

*, html, body {
    border: 0;
    margin: 0;
    box-sizing: border-box;
}

select option {
    background-color: #18181f;
    color: #f4f4f5;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.delivery_way_auto {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: none;
}

.delivery_way_hand {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: none;
}

.seckill {
    display: none;
}

.coupon {
    display: none;
}

.purchase_count {
    display: none;
}

.draft_status {
    display: none;
}

.commodity-di {
    display: none;
}

.stock {
    display: none;
}

.race-click {
    position: relative;
    padding: 10px 16px;
    background: #1f1f28;
    border: 1px solid #2a2a36;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 13px;
    color: #a1a1aa;
}

.race-click:hover {
    border-color: #6366f1;
    color: #f4f4f5;
}

.race-click.checked {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    color: #818cf8;
}

.race-click .badge-money {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 2px 8px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    color: white;
}

.card-premium {
    position: relative;
    padding: 2px 8px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    color: white;
}

.sku-view .race-click {
    margin-right: 8px;
}

.price {
    font-family: 'Space Mono', monospace;
}

.seckill_timer {
    font-family: 'Space Mono', monospace;
    letter-spacing: 1px;
}

.pay-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #1f1f28;
    border: 1px solid #2a2a36;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #f4f4f5;
    font-size: 13px;
    font-weight: 500;
}

.pay-btn:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: #6366f1;
}

.pay-btn img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.pay_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.seckill-badge {
    display: none;
}

.seckill-badge.hidden {
    display: none;
}

.seckill-badge:not(.hidden) {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.15), rgba(236, 72, 153, 0.15));
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #f43f5e;
}

.mb-3 {
    margin-bottom: 12px;
}

.hidden {
    display: none !important;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}