@font-face {
    font-family: 'Glacial Indifference';
    src: url('../fonts/glacial-indifference-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('../fonts/glacial-indifference-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    font-family: 'Glacial Indifference', Arial, sans-serif;
    background: #ffe6e3;
    background-image: url('../img/fondo.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center top;
    color: #342d2f;
}

.catalog-header {
    display: grid;
    grid-template-columns: 160px 1fr 190px;
    align-items: start;
    gap: 24px;
    max-width: 980px;
    min-height: 178px;
    margin: 0 auto;
    padding: 34px 28px 0;
    box-sizing: border-box;
}

.brand-logo {
    width: 118px;
    height: auto;
    margin-top: 0;
}

.header-title {
    text-align: center;
}

.mother-day {
    text-align: center;
    color: #efc7c2;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 0.9;
}

.mother-day p {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.mother-day strong {
    display: block;
    font-size: 36px;
    font-weight: 700;
}

.mother-day span {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 8px;
    background: #f5dad7;
    color: #dc9eae;
    font-family: 'Glacial Indifference', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.container {
    text-align: center;
    padding: 34px 20px 40px;
}

h1 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #b64873;
    font-size: 36px;
    margin: 0;
}

h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #df8caf;
    font-weight: normal;
    margin: 6px 0 0;
}

.status {
    margin: 0;
    color: #6c5c62;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

.card {
    background: #f3e5e5;
    padding: 15px 15px 22px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.card h3 {
    margin: 22px 0 0;
    color: #050505;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
}

.card p {
    margin: 26px 0 0;
    color: #2f2427;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 23px;
    line-height: 1.3;
}

.card span {
    display: block;
    margin-top: auto;
    padding-top: 18px;
    font-weight: bold;
    color: #5a8d3b;
    font-size: 32px;
}

@media (max-width: 520px) {
    .catalog-header {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: 0;
        padding: 24px 18px 30px;
        background: #fbfbfb;
    }

    .brand-logo {
        margin: 0 auto;
        width: 100px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        margin-bottom: 12px;
    }

    .container {
        padding: 28px 14px;
    }
}
