/* ==========================================
    PRODUCT CARDS
========================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    padding: 40px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(199, 175, 107, 0.15);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 58, 34, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.8s var(--ease-luxury), box-shadow 0.8s var(--ease-luxury), border-color 0.8s ease;
    cursor: pointer;
    z-index: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 175, 107, 0) 0%, rgba(199, 175, 107, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.8s var(--ease-luxury);
    z-index: -1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(255, 58, 34, 0.08), 0 15px 25px rgba(199, 175, 107, 0.12);
    border-color: rgba(199, 175, 107, 0.5);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-img-wrapper {
    height: 320px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(199, 175, 107, 0.1);
}

.product-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--ease-luxury);
}

.product-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h4 {
    font-family: var(--font-accent);
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 0.85rem;
    color: var(--dark-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.product-info .desc {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-outline-gold {
    background: transparent;
    color: var(--dark-gold);
    border: 1px solid var(--gold);
    padding: 14px 35px;
    border-radius: var(--radius-pill);
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-align: center;
    transition: 0.4s var(--ease-luxury);
    margin-top: auto;
}

.product-card:hover .btn-outline-gold {
    background: var(--gold);
    color: var(--primary-red);
}
