.crp-category-intro {
    margin-bottom: 2rem;
}

.crp-category-products {
    margin: 2rem 0 3rem;
}

.crp-product-placeholder {
    border: 2px dashed #c3c4c7;
    background: #f6f7f7;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    color: #3c434a;
}

.crp-product-placeholder strong,
.crp-product-placeholder span {
    display: block;
}

.crp-product-placeholder span {
    margin-top: .35rem;
    font-size: .92em;
}

.crp-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.crp-product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid #e2e4e7;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.crp-product-image-wrap {
    aspect-ratio: 4 / 3;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.crp-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .75rem;
    box-sizing: border-box;
}

.crp-product-image-placeholder {
    color: #757575;
    font-size: .9rem;
}

.crp-product-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem;
}

.crp-product-brand {
    color: #646970;
    font-size: .8rem;
    line-height: 1.3;
    margin-bottom: .35rem;
}

.crp-product-title {
    font-size: 1rem;
    line-height: 1.35;
    margin: 0 0 .8rem;
}

.crp-product-price-row {
    margin-top: auto;
    line-height: 1.4;
}

.crp-product-from {
    color: #646970;
    font-size: .82rem;
}

.crp-product-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.crp-product-old-price {
    color: #757575;
    font-size: .85rem;
}

.crp-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .7rem;
    color: #646970;
    font-size: .78rem;
    margin-top: .55rem;
}

.crp-stock-status::before {
    content: "✓ ";
}

.crp-product-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: .85rem;
    padding: .65rem .9rem;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    background: #1e73be;
    color: #fff;
}

.crp-product-button:hover,
.crp-product-button:focus {
    background: #155d9b;
    color: #fff;
}

.crp-category-long-content {
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .crp-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .crp-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .9rem;
    }
}

@media (max-width: 480px) {
    .crp-product-grid {
        grid-template-columns: 1fr;
    }
}
