/* WWC Public Base CSS — dynamic overrides come via inline style */
.wwc-catalog-wrap { width: 100%; }
.wwc-category-block { margin-bottom: 48px; }

.wwc-category-heading-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.wwc-cat-title { line-height: 1.2; }

.wwc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.wwc-product-card {
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.wwc-product-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.13) !important;
}
.wwc-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.wwc-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wwc-product-name { line-height: 1.3; margin: 0; }
.wwc-product-desc { font-size: 13px; color: #666; margin: 0; }
.wwc-card-footer { margin-top: auto; padding-top: 6px; }

.wwc-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.1s;
}
.wwc-btn-wa:hover { opacity: 0.85; transform: translateY(-1px); }
.wwc-btn-wa:active { transform: translateY(0); }
.wwc-btn-wa svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 768px) {
    .wwc-product-card img { height: 160px; }
}
