* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f6f7fb;
    color: #1a1a1a;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-header {
    background: linear-gradient(90deg, #b3002d, #e0245e);
    color: #fff;
    padding: 0.75rem 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    font-weight: 100;
    font-size: 0.75rem;
}
.category {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    background-color: #5f9ea0;
    border-radius: 0.5rem;
    padding: .5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.description {
   
    display: flex;
    font-size:1em;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 1fr);
    overflow-x: auto;
    gap: 12px;
}
.nav {
    display: flex;
    border-radius: 0.2rem;
    margin-bottom: 0.5rem;
    margin-top: 0rem;
    padding: 0.1rem 1rem;
    gap: 5px;
    background: linear-gradient(90deg, #2563eb, #9333ea);
    overflow-x: auto;
}
.nav a {
    margin-left: 1rem;
    font-weight: 500;
    opacity: 0.9;
}
    .nav a:hover {
        opacity: 1;
        color:gray;
    }
.nav-text {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    margin-right:auto;
    margin-left: auto;
    color: #fff;
    text-align:center;
    font-size: 1.2rem;
}
.main-content {
    padding: 0 1rem;
    
}

.hero {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
}

    .hero h1 {
        margin-top: 0;
    }

.gift-grid {
    display: flex;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 1fr);
    overflow-x: auto;
    gap: 12px;
}
.gift-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

    .gift-card img {
        width: 100%;
        border-radius: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .gift-card h3 {
        margin: 0.25rem 0;
    }

    .gift-card p {
        font-size: 0.9rem;
        opacity: 0.85;
    }

.price {
    font-weight: 600;
    margin-top: 0.5rem;
}

.btn-primary {
    display: flex;
    margin-top: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: #e0245e;
    color: #fff;
    font-weight: 400;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 10em;
    height: 2em;
}
    .btn-primary:hover {
        background: #c91e51;
        text-decoration: none;
    }

.div-viewall {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: #e0245e;
    color: #fff;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
}
    .div-viewall:hover {
        background: #c91e51;
        text-decoration: none;
    }

    
.site-footer {
    background: #101010;
    color: #ccc;
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.disclaimer {
    opacity: 0.8;
}
