:root {
    --primary: #1e3a8a;
    --accent: #ff007f;
    --dark: #0f172a;
    --light: #f8fafc;
    --ai-glow: #06b6d4;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
}

/* AI Banner styling */
.ai-banner {
    background: linear-gradient(90deg, #0f172a, #1e293b);
    color: #fff;
    padding: 18px;
    font-size: 1.1rem;
    border-bottom: 10px solid var(--ai-glow);
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ai-badge {
    background: rgba(6, 182, 212, 0.2);
    color: var(--ai-glow);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--ai-glow);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.75rem;
    white-space: nowrap;
}

header {
    background: #fff;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.hero {
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 { font-size: 2.5rem; margin-bottom: 10px; }

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section { margin-bottom: 50px; }
.section-title { margin-bottom: 20px; font-size: 1.8rem; color: var(--primary); }

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 25px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: red;
    padding: 4px 20px;
    font-size: 0.8rem;
    border-radius: 20px;
}

.price {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: bold;
    margin: 10px 0;
}

.btn {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
    margin-top: 15px;
}

.btn:hover { background: #111827; }
.btn.secondary { background: #e2e8f0; color: var(--dark); }
.btn.secondary:hover { background: #cbd5e1; }

footer {
    text-align: center;
    padding: 40px;
    background: #e2e8f0;
    font-size: 0.85rem;
    color: #64748b;
}

.partner-banner {
    display: block;
    margin: 15px auto 0 auto; /* Adds clean spacing on top and centers it */
    max-width: 100%;          /* Prevents the image from breaking out of the card */
    height: auto;             /* Keeps the image aspect ratio perfect */
    border-radius: 8px;       /* Matches the clean, rounded look of your site */
}
