/* ============================================
   ROAMLYGO — Travel Affiliate Website
   Booking.com-inspired clean design
   ============================================ */

:root {
    --navy:          #003580;
    --primary-blue:  #0071c2;
    --primary-dark:  #005999;
    --accent-orange: #ff9500;
    --light-gray:    #f5f7fa;
    --dark-gray:     #333333;
    --border-light:  #e0e0e0;
    --white:         #ffffff;
    --footer-bg:     #0d1b2a;
    --transition:    all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: 2.6rem; font-weight: 700; line-height: 1.2; margin-bottom: 0.75rem; }
h2 { font-size: 2rem;   font-weight: 700; margin-bottom: 1rem; color: var(--dark-gray); }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.6rem; }
h4 { font-size: 1rem;   font-weight: 600; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; font-size: 1rem; color: #555; }
a  { color: var(--primary-blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 72px 0; }

.grid   { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ===== HEADER / NAVBAR ===== */
header {
    background: var(--navy);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 200;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: -0.02em;
}
.logo span { color: var(--accent-orange); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
}
.nav-links a:hover { color: var(--white); }

.btn-nav-cta {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 0.55rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher { margin-left: 0.75rem; }

#lang-select {
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.45);
    color: var(--white);
    padding: 0.42rem 0.7rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23fff' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.55rem center;
    padding-right: 1.8rem;
}
#lang-select:hover { background-color: rgba(255,255,255,0.25); }
#lang-select option { background: var(--navy); color: var(--white); }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary-blue) 100%);
    padding: 72px 0 96px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 520px; height: 520px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 360px; height: 360px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.hero-search-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2.5rem 2.25rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease;
}

.hero-search-card h1 {
    color: var(--navy);
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
}
.hero-search-card > p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

/* ===== SEARCH BAR ===== */
.search-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--light-gray);
    border-radius: 10px;
    border: 2px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}
.search-bar:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 113, 194, 0.12);
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    color: var(--dark-gray);
}

.search-bar select {
    border: none;
    border-left: 1px solid var(--border-light);
    background: transparent;
    padding: 0.95rem 0.75rem;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    color: var(--dark-gray);
    min-width: 120px;
}

.search-bar button {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.95rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.search-bar button:hover { background: var(--navy); }

.tp-widget-wrap { width: 100%; min-height: 60px; }
.search-bar--secondary { border-top: none; border-radius: 0 0 10px 10px; }

/* ===== TRUST ROW ===== */
.trust-row {
    background: var(--navy);
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-items span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 113, 194, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}
.btn-secondary:hover {
    background: var(--light-gray);
    color: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.88rem; border-radius: 6px; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { font-size: 1.05rem; color: #666; max-width: 560px; margin: 0 auto; }

/* ===== CATEGORY CARDS ===== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
}

.cat-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
    border-color: var(--primary-blue);
}

.cat-card-img {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-card-img span { font-size: 3.5rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); }

.cat-card-body {
    padding: 1.25rem 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cat-card-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.4rem; }
.cat-card-body > p { font-size: 0.88rem; color: #666; flex: 1; margin-bottom: 0.6rem; }
.cat-card-body .count { font-size: 0.78rem; color: #aaa; margin-bottom: 1rem; display: block; }

/* ===== DEALS — HORIZONTAL SCROLL ===== */
.deals-section { background: var(--light-gray); }

.deals-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding: 0.5rem 4px 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) transparent;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}
.deals-scroll:active { cursor: grabbing; }
.deals-scroll::-webkit-scrollbar { height: 5px; }
.deals-scroll::-webkit-scrollbar-track { background: transparent; }
.deals-scroll::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }

.deal-card {
    min-width: 272px;
    max-width: 272px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}
.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.deal-card-img {
    height: 148px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.deal-emoji { font-size: 3.2rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); }

.deal-tag {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--white);
    color: var(--navy);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.deal-tag.featured { background: var(--accent-orange); color: var(--white); }

.deal-card-body {
    padding: 1rem 1.1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.deal-location { font-size: 0.78rem; color: #999; margin-bottom: 0.3rem; }
.deal-card-body h4 { color: var(--navy); font-size: 0.97rem; margin-bottom: 0.3rem; }
.deal-card-body p  { font-size: 0.82rem; color: #666; flex: 1; margin-bottom: 0.75rem; }

.deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.price {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.05rem;
}

/* ===== REGULAR CARDS (generic) ===== */
.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}
.card-image {
    width: 100%; height: 220px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #efefef 100%);
    position: relative;
}
.card-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-blue);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.card-tag.featured { background: var(--accent-orange); color: var(--white); }
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

/* ===== EMAIL SIGNUP ===== */
.signup-section {
    background: var(--primary-blue);
    color: var(--white);
    padding: 64px 0;
    text-align: center;
}
.signup-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.signup-section > .container > p { color: rgba(255, 255, 255, 0.88); font-size: 1.05rem; margin-bottom: 2rem; }

.signup-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}
.signup-form input {
    flex: 1;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}
.signup-form button {
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 0.9rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}
.signup-form button:hover { background: #e07800; transform: translateY(-2px); }

.form-msg {
    margin-top: 0.75rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}
.form-msg--success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-msg--warning { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.form-msg--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ===== FOOTER ===== */
footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 56px 0 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    display: block;
}
.footer-logo span { color: var(--accent-orange); }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); }

.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-links a {
    display: inline-flex;
    width: 36px; height: 36px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.85rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--accent-orange); transform: translateY(-3px); color: var(--white); }

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom { color: rgba(255, 255, 255, 0.45); font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255, 255, 255, 0.45); font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }

/* ===== BLOG LISTING PAGE ===== */
.blog-header { background: var(--light-gray); padding: 72px 0; text-align: center; }
.blog-header h1 { margin-bottom: 0.75rem; }

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.25rem;
    border: 2px solid var(--border-light);
    background: var(--white);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-gray);
}
.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: rgba(0, 113, 194, 0.06);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.13);
}

.blog-card-image {
    width: 100%; height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-cat-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.03em;
    backdrop-filter: blur(4px);
}

.blog-card-emoji {
    font-size: 3.8rem;
    opacity: 0.88;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #aaa;
    margin-bottom: 0.75rem;
}

.blog-category {
    background: var(--light-gray);
    color: #444;
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    border: 1px solid var(--border-light);
}

.blog-card h3 { margin-bottom: 0.5rem; color: var(--dark-gray); line-height: 1.4; font-size: 1.05rem; }
.blog-card p  { margin-bottom: 0.75rem; flex: 1; color: #666; font-size: 0.9rem; }

.read-more {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}
.read-more:hover { gap: 0.75rem; color: var(--navy); }

.section-tight { padding: 48px 0; }

/* ===== POST PAGE ===== */
.post-container { max-width: 740px; margin: 0 auto; padding: 56px 0; }
.post-header { margin-bottom: 2.5rem; }
.post-meta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1.25rem;
}

.post-content { line-height: 1.85; font-size: 1.02rem; }
.post-content h2 { margin: 2rem 0 0.85rem; color: var(--dark-gray); }
.post-content h3 { margin: 1.5rem 0 0.6rem; color: var(--dark-gray); }
.post-content p  { margin-bottom: 1.25rem; color: #555; }
.post-content ul,
.post-content ol { margin-bottom: 1.25rem; margin-left: 1.75rem; }
.post-content li { margin-bottom: 0.6rem; color: #555; }
.post-content blockquote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.25rem;
    margin: 1.75rem 0;
    font-style: italic;
    color: #666;
}

.affiliate-block {
    background: var(--light-gray);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 1.75rem;
    margin: 2rem 0;
    text-align: center;
}
.affiliate-block h4 { color: var(--navy); margin-bottom: 0.5rem; }
.affiliate-block p  { margin-bottom: 1rem; color: #555; }

.related-posts { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 2px solid var(--border-light); }
.related-posts h3 { margin-bottom: 1.75rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero { padding: 56px 0 72px; }
    .hero-search-card h1 { font-size: 1.9rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.4rem; }
    .container { padding: 0 16px; }
    .section { padding: 52px 0; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--navy);
        padding: 1rem 1.25rem 1.5rem;
        gap: 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .nav-links.nav-open { display: flex; }
    .nav-toggle { display: block; }
    #lang-select { font-size: 0.8rem; padding: 0.32rem 0.55rem 0.32rem 0.45rem; }

    .hero-search-card { padding: 1.75rem 1.25rem; }
    .hero-search-card h1 { font-size: 1.6rem; }
    .search-bar { flex-direction: column; border-radius: 10px; gap: 0; }
    .search-bar input,
    .search-bar select { border-left: none; border-bottom: 1px solid var(--border-light); width: 100%; }
    .search-bar select { min-width: auto; }
    .search-bar button { width: 100%; border-radius: 0 0 8px 8px; }

    .trust-items { gap: 1.5rem; }

    .cat-grid { grid-template-columns: repeat(2, 1fr); }

    .signup-form { flex-direction: column; }
    .btn { width: 100%; display: block; }
    .btn-sm { width: auto; display: inline-block; }

    .footer-divider { flex-direction: column; align-items: flex-start; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    .cat-grid { grid-template-columns: 1fr; }
    .hero { padding: 36px 0 56px; }
    .hero-search-card h1 { font-size: 1.4rem; }
    .hero-search-card { padding: 1.5rem 1rem; }
    .deal-card { min-width: 240px; max-width: 240px; }
    .section-header { margin-bottom: 2rem; }
    .post-container { padding: 28px 0; }
    .blog-grid { grid-template-columns: 1fr; gap: 1rem; }
    .footer-content { gap: 1.75rem; }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-muted  { color: #999; }
.text-accent { color: var(--accent-orange); }
.mt-1 { margin-top: 1rem; }   .mt-2 { margin-top: 2rem; }   .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }.mb-2 { margin-bottom: 2rem; }.mb-3 { margin-bottom: 3rem; }
.hidden  { display: none; }
.visible { display: block; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.animate-in { animation: fadeInUp 0.55s ease; }

/* ===== LAZY LOAD ===== */
.lazy-img { background: var(--light-gray); min-height: 200px; transition: var(--transition); }
.lazy-img.loaded { animation: fadeIn 0.3s ease; }
