/* Hero / Landing */
.hero {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 70px;
}

.hero h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 15px;
}

.hero p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 25px;
}

.hero button {
    padding: 16px 28px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* Dashboard Stats */
.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.stat {
    background: #f8fafc;
    border: 1px solid #e2e2e2;
    border-radius: 18px;
    padding: 24px;
}

.stat p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.stat h3 {
    margin-top: 10px;
    font-size: 30px;
    font-weight: 700;
}

/* Section */
.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Gift Cards */
.cards {
    columns: 280px;
    column-gap: 30px;
}

.card {
    break-inside: avoid;
    margin-bottom: 30px;
}


.card {
    border: 1px solid #d1d1d1;
    border-radius: 20px;
    padding: 26px;
    transition: 0.25s;
}


.card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: #a1a1a1;
    cursor: pointer;
}

.brand {
    font-size: 22px;
    font-weight: 700;
}

.discount {
    margin-top: 6px;
    font-size: 15px;
    color: #16a34a;
    font-weight: 600;
}

.denom-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;

    background-color: #f9fafb;
    border: 1.5px solid #e2e8f0;
    padding: 15px 44px 15px 16px;
    border-radius: 16px;

    font-size: 16px;
    font-weight: 500;
    color: #0f172a;

    cursor: pointer;
    transition: all 0.2s ease;

    background-image:
        linear-gradient(45deg, transparent 50%, #475569 50%),
        linear-gradient(135deg, #475569 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50%;
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

.denom-select:focus {
    background-color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
    outline: none;
}

/* Option text only (background is OS controlled) */
.denom-select option {
    color: #020617;
}



/* Better Select */
select {
    width: 100%;
    margin-top: 18px;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 14px;
    border: 1px solid #cbd5f5;
    background: #f8fafc;
    appearance: none;
    cursor: pointer;
}

.price {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #334155;
}

.buy-btn {
    margin-top: 20px;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

footer {
    margin-top: 80px;
    padding: 24px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 34px;
    }
}




/* ===============================
   WHY CHOOSE US SECTION
================================ */
.why-us {
    margin-bottom: 90px;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

/* Card */
.why-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px 24px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle top accent */
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
    border-color: #c7d2fe;
    cursor: pointer;
}

/* Icon */
.why-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

/* Title */
.why-card h4 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #020617;
}

/* Description */
.why-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

.brand-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}

.brand-logo img {
    width: 18rem;
    max-width: 100%;
    height: auto;
    border-radius: 12px; /* adjust for more/less rounding */
    overflow: hidden;
}
#giftcards{
    margin: 30px 0px;
}
