/* =========================================================
      CATÁLOGO - ESTILO APP COMPACTO
   ========================================================== */

.mothers-catalog {
    padding: 18px 0 90px;
}

.catalog-app-header {
    width: min(1180px, calc(100% - 20px));
    margin: 0 auto 16px;
    padding: 16px;
    border-radius: 20px;
    background:
        radial-gradient(circle at top left, rgba(255,79,179,.22), transparent 35%),
        radial-gradient(circle at bottom right, rgba(177,77,255,.22), transparent 35%),
        rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 30px rgba(0,0,0,.22);
    backdrop-filter: blur(14px);
}

.catalog-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-weight: 800;
    font-size: .68rem;
}

.catalog-app-header h1 {
    font-size: 1.28rem;
    line-height: 1.15;
    letter-spacing: -.4px;
    margin: 0 0 6px;
    color: #fff;
}

.catalog-app-header h1 span {
    background: linear-gradient(135deg, #fff, #ff8ed1, #d5a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.catalog-app-header p {
    color: var(--text-soft);
    line-height: 1.45;
    font-size: .82rem;
    margin: 0;
}

.products-section {
    width: min(1180px, calc(100% - 12px));
    margin: 0 auto;
}

.products-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin: 0 4px 10px;
}

.products-header h2 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
    line-height: 1.2;
}

.products-header p {
    color: var(--text-soft);
    font-size: .72rem;
    line-height: 1.35;
    margin: 3px 0 0;
}

.products-count {
    white-space: nowrap;
    font-size: .68rem;
    font-weight: 800;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--secondary-soft);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 30px rgba(0,0,0,.22);
    backdrop-filter: blur(14px);
}

.product-label {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    padding: 4px 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
    font-size: .55rem;
    font-weight: 900;
    line-height: 1;
}

.product-photo {
    position: relative;
    aspect-ratio: 1 / 1;
    background: rgba(255,255,255,.06);
    overflow: hidden;
}

.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 8px;
}

.product-category {
    display: inline-flex;
    margin-bottom: 4px;
    color: var(--secondary-soft);
    font-size: .58rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.product-info h3 {
    margin: 0 0 5px;
    font-size: .86rem;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
}

.product-info p {
    color: var(--text-soft);
    font-size: .68rem;
    line-height: 1.35;
    margin: 0 0 8px;
}

.price-area {
    margin-bottom: 8px;
}

.price-area small {
    display: block;
    color: var(--text-soft);
    font-size: .62rem;
    line-height: 1;
}

.price-area strong {
    font-size: .95rem;
    color: #fff;
    font-weight: 900;
}

.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    padding: 9px 8px;
    border-radius: 999px;
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: 0 10px 22px rgba(255,79,179,.22);
}

@media (max-width: 980px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .mothers-catalog {
        padding: 12px 0 88px;
    }

    .catalog-app-header {
        width: min(100% - 16px, 1180px);
        padding: 13px;
        border-radius: 18px;
        margin-bottom: 12px;
    }

    .catalog-app-header h1 {
        font-size: 1.05rem;
    }

    .catalog-app-header p {
        font-size: .74rem;
    }

    .products-section {
        width: min(100% - 10px, 1180px);
    }

    .products-header {
        margin: 0 4px 8px;
    }

    .products-header h2 {
        font-size: .92rem;
    }

    .products-header p {
        font-size: .68rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .product-card {
        border-radius: 13px;
    }

    .product-info {
        padding: 7px;
    }

    .product-info h3 {
        font-size: .76rem;
    }

    .product-info p {
        display: none;
    }

    .product-category {
        font-size: .52rem;
    }

    .price-area strong {
        font-size: .86rem;
    }

    .product-btn {
        padding: 8px;
        font-size: .68rem;
    }
}