.plg-ccs-section {
    margin: 24px 0;
    width: 100%;
    flex: 0 0 100%;
}

.plg-ccs-title {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}

.plg-ccs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: stretch;
    width: 100%;
}

@media (max-width: 767px) {
    .plg-ccs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.plg-ccs-item {
    display: grid;
    grid-template-rows: auto 2.5em auto auto auto;
    gap: 6px;
    text-align: center;
    align-items: start;
}

.plg-ccs-item--soldout {
    opacity: 0.5;
}

.plg-ccs-image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.plg-ccs-image-wrap--button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.plg-ccs-image-wrap--button:disabled {
    cursor: not-allowed;
}

.plg-ccs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plg-ccs-name {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.plg-ccs-price {
    margin: 0;
    font-size: 0.85rem;
    font-weight: bold;
}

.plg-ccs-form {
    margin: 0;
}

.plg-ccs-btn {
    width: 100%;
    padding: 6px 4px;
    font-size: 0.75rem;
    border: none;
    border-radius: 4px;
    color: #fff;
    background-color: #e60033;
    cursor: pointer;
}

.plg-ccs-btn:disabled {
    cursor: not-allowed;
    background-color: #b9b9b9;
}

.plg-ccs-detail-link {
    font-size: 0.72rem;
    color: #666;
    text-decoration: underline;
}

