* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

header {
    background: #111;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

header h1 {
    font-size: 38px;
    margin-bottom: 8px;
}

header p {
    font-size: 18px;
}

.hero {
    max-width: 900px;
    margin: 40px auto;
    padding: 60px 20px;
    text-align: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}

button {
    background: #ff4b2b;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
}

button:hover {
    opacity: 0.85;
}

.gifts {
    max-width: 900px;
    margin: 30px auto;
    text-align: center;
    padding: 20px;
}

.gifts h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

.gift-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gift-list div {
    background: white;
    padding: 25px 10px;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

footer {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    background: #111;
    color: white;
}

@media (max-width: 700px) {
    .gift-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h2 {
        font-size: 32px;
    }
}.buy-button {
    display: inline-block;
    background: #ff4b2b;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
}

.buy-button:hover {
    opacity: 0.85;
}