/* Pequus — Stile griglia prodotti WooCommerce */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* Nascondi elementi WooCommerce che non servono */
.woocommerce .price,
.woocommerce .add_to_cart_button,
.woocommerce-ordering,
.woocommerce-result-count {
    display: none !important;
}

/* Griglia */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    border: 0.5px solid #ffffff10;
}

.woocommerce ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    width: 100% !important;
}

/* Card */
.pequus-product-card {
    cursor: pointer;
    transition: background 0.25s;
    border-right: 0.5px solid #ffffff10;
    border-bottom: 0.5px solid #ffffff10;
    height: 100%;
}

.woocommerce ul.products li.product:nth-child(3n) .pequus-product-card {
    border-right: none;
}

.pequus-product-card:hover {
    background: #161614;
}

.pequus-product-image {
    width: 100%;
    aspect-ratio: 2/3;
    background: #111110;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 0.5px solid #ffffff08;
}

.pequus-product-image .pequus-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
}

/* Placeholder */
.pequus-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
}

.pequus-placeholder svg { opacity: 0.08; }

.pequus-placeholder span {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #333;
    font-family: 'Jost', sans-serif;
}

/* Info prodotto */
.pequus-product-info {
    padding: 22px 24px 28px;
}

.pequus-product-name {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    color: #e0dcd4 !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
}

.pequus-product-desc {
    font-family: 'Jost', sans-serif !important;
    font-size: 12px !important;
    color: #b0aca4 !important;
    font-weight: 300 !important;
    line-height: 1.75 !important;
    margin: 0 !important;
}

/* Sfondo pagina */
body {
    background: #0e0e0c !important;
    color: #e8e4dc !important;
}