* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}

/* HEADER */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
}

.logo span {
    color: #ef4444;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    font-weight: 600;
    font-size: 15px;
}

.main-nav a:hover {
    color: #ef4444;
}

.menu-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 26px;
    cursor: pointer;
}


/* HERO */

.hero {
    background: linear-gradient(135deg, #fff1f2, #ffffff);
    padding: 90px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-badge {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111827;
}

.hero h1 span {
    color: #ef4444;
}

.hero p {
    font-size: 18px;
    color: #6b7280;
    max-width: 650px;
    margin-bottom: 30px;
}

.search-box {
    max-width: 650px;
    display: flex;
    background: #ffffff;
    border: 1px solid #d1d5db;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px;
    font-size: 15px;
}

.search-box button {
    background: #ef4444;
    color: #ffffff;
    border: none;
    padding: 0 25px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

.popular-searches {
    margin-top: 15px;
    color: #6b7280;
    font-size: 14px;
}

.popular-searches a {
    color: #ef4444;
    font-weight: 600;
    margin-left: 10px;
}

.hero-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    text-align: center;
}

.hero-card-icon {
    font-size: 65px;
    margin-bottom: 20px;
}

.hero-card h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.hero-card p {
    font-size: 15px;
    margin-bottom: 25px;
}

.primary-btn {
    display: inline-block;
    background: #ef4444;
    color: #ffffff;
    padding: 13px 25px;
    border-radius: 6px;
    font-weight: 700;
}


/* STATS */

.stats {
    background: #111827;
    color: #ffffff;
    padding: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 25px;
}

.stat-box span {
    color: #d1d5db;
    font-size: 14px;
}


/* SECTIONS */

.section {
    padding: 80px 0;
}

.light-section {
    background: #f8fafc;
}

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-label {
    color: #ef4444;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.section-heading h2 {
    font-size: 36px;
    margin: 8px 0;
    color: #111827;
}

.section-heading p {
    color: #6b7280;
}


/* STORES */

.store-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.store-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 25px 15px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.store-logo,
.mini-logo {
    background: #fee2e2;
    color: #dc2626;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin: auto auto 15px;
    font-size: 22px;
}

.store-card h3 {
    margin-bottom: 7px;
}

.store-card span {
    color: #ef4444;
    font-size: 13px;
    font-weight: 700;
}


/* COUPONS */

.coupon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.coupon-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    transition: 0.3s;
}

.coupon-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.coupon-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.coupon-store {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-logo {
    width: 45px;
    height: 45px;
    border-radius: 8px;
}

.coupon-store strong {
    display: block;
}

.coupon-store small {
    color: #6b7280;
}

.verified {
    color: #16a34a;
    font-size: 12px;
    font-weight: 700;
}

.coupon-discount {
    font-size: 28px;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 10px;
}

.coupon-card p {
    color: #6b7280;
    margin-bottom: 20px;
}

.coupon-meta {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 20px;
}

.coupon-btn {
    width: 100%;
    border: none;
    background: #111827;
    color: #ffffff;
    padding: 13px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}

.coupon-btn:hover {
    background: #ef4444;
}


/* DEALS */

.deal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.deal-card {
    background: #111827;
    color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
}

.deal-icon {
    font-size: 45px;
}

.deal-label {
    font-size: 11px;
    color: #fca5a5;
    font-weight: 800;
}

.deal-content h3 {
    font-size: 21px;
    margin: 5px 0 8px;
}

.deal-content p {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 15px;
}

.deal-btn {
    color: #fca5a5;
    font-weight: 700;
}


/* STEPS */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 55px;
    height: 55px;
    background: #ef4444;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
    font-size: 20px;
    font-weight: 800;
}

.step-card h3 {
    margin-bottom: 10px;
}

.step-card p {
    color: #6b7280;
}


/* ABOUT */

.about-section {
    padding: 80px 0;
    background: #fff1f2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 38px;
    margin-top: 10px;
}

.about-content p {
    color: #4b5563;
    margin-bottom: 15px;
}


/* NEWSLETTER */

.newsletter {
    background: #ef4444;
    color: #ffffff;
    text-align: center;
    padding: 70px 0;
}

.newsletter h2 {
    font-size: 35px;
    margin-bottom: 10px;
}

.newsletter p {
    margin-bottom: 25px;
}

.newsletter-form {
    max-width: 550px;
    margin: auto;
    display: flex;
    background: #ffffff;
    padding: 5px;
    border-radius: 7px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 13px;
}

.newsletter-form button {
    border: none;
    background: #111827;
    color: #ffffff;
    padding: 0 25px;
    border-radius: 5px;
    cursor: pointer;
}


/* FOOTER */

.site-footer {
    background: #111827;
    color: #d1d5db;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand p {
    margin-top: 15px;
    max-width: 300px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-column a {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
    }

    .store-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .deal-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #ddd;
    }

    .main-nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .coupon-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 5px;
    }

    .newsletter-form button {
        padding: 13px;
    }

    .coupon-meta {
        flex-direction: column;
        gap: 5px;
    }

}