/**
 * WooCommerce Product Card Styles
 * Version: 1.0.0
 */

.wc-product-card {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin: 0 auto;
}

.wc-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.wc-product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.wc-product-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.wc-product-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.wc-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wc-product-card:hover .wc-product-card-image img {
    transform: scale(1.05);
}

.wc-product-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wc-product-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.wc-product-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.wc-product-card-price {
    font-size: 16px;
    font-weight: 600;
    color: #2c5282;
    margin-bottom: 0;
}

.wc-product-card-price .amount {
    font-weight: 700;
}

.wc-product-card-error {
    padding: 15px;
    background: #fed7d7;
    color: #9b2c2c;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wc-product-card {
        max-width: 100%;
        margin: 0 10px;
    }

    .wc-product-card-content {
        padding: 15px;
    }

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

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

@media (max-width: 480px) {
    .wc-product-card-image {
        height: 150px;
    }
}