.wwpc-catalog-grid {
    display: grid;
    grid-template-columns: repeat(var(--wwpc-columns, 3), 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.wwpc-product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wwpc-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wwpc-catalog-grid .wwpc-product-card .wwpc-product-image {
    position: relative !important;
    width: 100% !important;
    height: 300px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    box-sizing: border-box !important;
}

.wwpc-catalog-grid .wwpc-product-card .wwpc-product-image img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

.wwpc-product-price {
    font-size: 1.3em;
    font-weight: 800;
    color: #1a1a1a;
    margin: 5px 0 10px;
}

/* Single Product Page Styles */
.wwpc-single-product-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.wwpc-single-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.wwpc-single-product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.wwpc-single-product-title {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.wwpc-single-product-excerpt {
    font-size: 1.1em;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.wwpc-single-product-price {
    font-size: 2em;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .wwpc-single-product-grid {
        grid-template-columns: 1fr;
    }
}

.wwpc-product-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wwpc-product-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.3;
}

.wwpc-product-desc {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.wwpc-product-desc p {
    margin: 0 0 10px;
}

.wwpc-inquiry-btn {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.2s;
}

.wwpc-inquiry-btn:hover,
.wwpc-inquiry-btn:focus {
    background-color: #128C7E;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .wwpc-catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .wwpc-catalog-grid {
        grid-template-columns: 1fr !important;
    }
}