﻿
/* CATALOG PRODUCT CARD */

.catalog-product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e6dfc8;
    border-radius: 0.75rem;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.catalog-product-image-wrap {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
    background: #fffdf7;
    border-bottom: 1px solid #f0ead7;
}

.catalog-product-image-wrap img {
        max-height: 100%;
        max-width: 100%;
        width: auto;
        object-fit: contain;
    }

.catalog-product-body {
    padding: 0.85rem 0.9rem 0.95rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.catalog-product-title {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.35;
    min-height: 3.4rem;
    display: block;
}

.catalog-product-title:hover {
        text-decoration: underline;
    }

.catalog-product-price {
    font-size: 0.95rem;
    margin: 0.45rem 0 0;
}

.catalog-product-actions {
    margin-top: auto;
    padding-top: 0.8rem;
}

    .catalog-product-actions .btn {
        margin-right: 0.35rem;
        margin-bottom: 0.35rem;
    }


/* CATALOGS - CATALOG CARD and HERO */

.catalogs-hero {
    background: #fff;
    border: 1px solid #e8e2cf;
    border-radius: 0.9rem;
    padding: 1rem;
}

.catalogs-hero-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fffdf7;
    border: 1px solid #efe7d3;
    border-radius: 0.75rem;
    padding: 0.5rem;
}

    .catalogs-hero-image img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

.catalogs-section-title {
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #d8d0bb;
}

.catalogs-card {
    border: 1px solid #e6dfc8;
    border-radius: 0.8rem;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.15s ease;
}

    .catalogs-card:hover {
        transform: translateY(-2px);
    }

.catalogs-card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
    background: #fffdf7;
    border-bottom: 1px solid #f0ead7;
}

    .catalogs-card-image img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

.catalogs-card-title {
    padding: 0.85rem 0.9rem 1rem;
    text-align: center;
}

    .catalogs-card-title a {
        color: #1f1f1f;
        text-decoration: none;
        font-weight: 600;
        line-height: 1.35;
    }

        .catalogs-card-title a:hover {
            text-decoration: underline;
        }

/* PRODUCT DETAIL */

.bread-link {
    color: darkgreen;
    font-weight: bold;
    text-decoration: none;
}

ul.bullets > li {
    list-style-type: disc;
}

.tip-price-wrap {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0.15rem 0 0.35rem;
}

.tip-price-whole {
    font-size: clamp(2rem, 4vw, 2.35rem);
    line-height: 1;
    color: #1f2937;
}

.tip-price-cents {
    color: #1f2937;
}

.tip-free-shipping-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid rgba(22, 163, 74, 0.32);
    background: rgba(22, 163, 74, 0.1);
    color: #14532d;
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.tip-cart-notice {
    border-radius: 0.5rem;
    border: 1px solid rgba(22, 163, 74, 0.25);
    background: rgba(22, 163, 74, 0.1);
    color: #14532d;
    padding: 0.75rem 0.95rem;
    margin-bottom: 1rem;
}

.tip-qty-row {
    background: transparent;
    border: 0;
    padding: 0;
    margin-bottom: 0.9rem;
}

.tip-qty-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tip-qty-label {
    margin: 0;
    min-width: 84px;
    font-size: 1.05rem;
    font-weight: 600;
}

.tip-qty-select {
    width: 130px;
}

.btn-add-to-cart {
    min-width: 220px;
    box-shadow: 0 0.35rem 1rem rgba(21, 128, 61, 0.22);
}

@media (max-width: 575.98px) {
    .btn-add-to-cart {
        width: 100%;
        min-width: 0;
    }
}

.tip-product-utility-row {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 0.5rem;
    padding-top: 1rem;
    margin-bottom: 1.25rem;
}

    .tip-product-utility-row .popup-button {
        width: 100%;
    }