.product-card {
    display: flex;
    flex-direction: column;
    width: calc(50% - 1rem);
    max-width: 500px;
    min-height: 400px;
    text-align: center;
    box-sizing: border-box;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto 1.25rem;
}

.product-card-title {
    font-family: 'Didot', serif;
    font-size: 24px;
    color: #2B2B2B;
    margin-bottom: 0.75rem;
}

.product-card-description {
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.product-card-footer {
    margin-top: auto;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #CBBBA0;
    color: #2B2B2B;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #9D8E7D;
    color: white;
}

@media (max-width: 768px) {
    .product-card {
        width: 100%;
        max-width: 400px;
        min-height: 350px;
        padding: 1.5rem;
    }

    .product-card-image {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }

    .product-card-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .product-card {
        min-height: 300px;
        padding: 1.25rem;
    }

    .product-card-image {
        width: 120px;
        height: 120px;
    }

    .product-card-title {
        font-size: 20px;
    }

    .product-card-description {
        font-size: 14px;
    }
}
