/*
Theme Name: A2Z Deal Premium Speed Theme
Theme URI: https://itexpertdesk.com/
Author: IT Expert Desk
Description: Ultra-lightweight, high-performance hybrid affiliate theme optimized for zero CPU load and automated SEO Rich Snippets.
Version: 1.2
Version: 2026
Text Domain: a2zdeal-theme
*/

/* Reset & CSS Custom Properties */
:root {
    --primary: #ff6600;
    --primary-hover: #e65c00;
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* Core Web Vitals Responsive CSS Grid */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin: 24px 0 48px;
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
}

/* Button & UI styling components */
.btn {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 16px;
    background: var(--primary);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.btn:hover {
    background: var(--primary-hover);
}

.badge {
    background: #fff3cd;
    color: #856404;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}