/* ========== store.css - تم آبی-بنفش ========== */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --secondary: #8b5cf6;
    --gold: #fbbf24;
    --bg-dark: #0b0e14;
    --bg-card: #141c28;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-light: rgba(59, 130, 246, 0.25);
}

/* عنوان محصولات */
.neon-title {
    color: var(--primary);
    border-bottom: 2px solid rgba(59, 130, 246, 0.4);
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 0 0 8px var(--primary-glow);
}

/* فیلتر دسته‌بندی */
.category-filter {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 5px;
    margin-bottom: 25px;
    scrollbar-width: none;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-filter a {
    white-space: nowrap;
    text-decoration: none;
    color: var(--text-secondary);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.category-filter a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.category-filter a.cat-active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* گرید محصولات */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

/* کارت محصول */
.product-card {
    padding: 15px;
    border-radius: 20px;
    transition: 0.3s;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.15);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    border-color: var(--glass-border-light);
}

.product-img {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    object-fit: cover;
    background: #1a1f2e;
}

.placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--text-muted);
}

.product-info {
    margin-top: 10px;
}

.price {
    color: var(--primary);
    font-weight: bold;
    text-shadow: 0 0 6px var(--primary-glow);
}

.desc {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
}

.btn-add {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary);
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.btn-add:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}

/* صفحه‌بندی */
.pagination {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 15px;
}

.pagination a, 
.pagination span {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.disabled {
    color: var(--text-muted);
}