/* ============================
   CATEGORY PAGE GRID LAYOUT
============================ */

.catalogue-wrapper {
    max-width: 1200px;
    margin: 40px auto 80px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding: 0 20px;
}

.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    display: block;
    padding-top: 30px;
}

.product-card .product-name {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    margin: 12px 14px 4px;
}

.product-card .product-info {
    font-size: 14px;
    margin: 0 14px 14px;
    opacity: 0.8;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.category-intro {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: var(--deep-plum);
    max-width: 900px;
    margin: 30px auto 40px;
    padding: 0 20px;
    text-align: center;
}

