/* --- Product Grid Container --- */
.scwp-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 10rem;
}

/* --- Individual Product Card --- */
.scwp-product-card {
    background-color: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.scwp-card-link {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* --- Product Image --- */
.scwp-card-image {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

.scwp-card-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* --- Product Content (Title & Price) --- */
.scwp-card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Product Content (Title & Price) --- */
.scwp-card-title {
    font-size: 1em;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: #00bad0;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scwp-card-price {
    font-size: 1.1em;
    font-weight: bold;
    color: #000;
    margin: 0;
}

.scwp-card-price .price-prefix {
    font-size: 0.9em;
    font-weight: normal;
    color: #888888;
}

/* --- NEW Badge --- */
.scwp-product-card .scwp-badge-new {
    position: absolute;
    left: -5px;
    background-color: #f8d400;
    color: #333;
    padding: 8px 12px;
    font-size: 0.9em;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 90% 100%, 80% 70%, 70% 100%, 60% 70%, 50% 100%, 40% 70%, 30% 100%, 20% 70%, 10% 100%, 0% 70%);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .scwp-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .scwp-product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* --- Editor-specific styles for better preview --- */
.wp-block[data-type="acf/scwp-product-grid"] .scwp-product-grid {
    border: 1px dashed #cccccc; /* Outline for the block in editor */
    padding: 15px;
}

.wp-block[data-type="acf/scwp-product-grid"] .scwp-product-grid .scwp-product-card {
    border: 1px solid #e0e0e0;
    box-shadow: none;
    transform: none;
}
.wp-block[data-type="acf/scwp-product-grid"] .scwp-card-link {
    pointer-events: none;
    cursor: default;
}

/* Placeholder for when no products are selected in editor */
.wp-block[data-type="acf/scwp-product-grid"] p {
    color: #555;
}