.pagination-simple-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 150px;
}

.pagination-simple-wrapper .pagination-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.pagination-simple-wrapper .pagination-box:not(.disabled):hover {
    border-color: #999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pagination-simple-wrapper .pagination-box.disabled {
    opacity: 0.6;
    background: #fafafa;
    cursor: not-allowed;
}

.pagination-simple-wrapper .btn-reload {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    outline: none;
}

.pagination-simple-wrapper .btn-reload:hover {
    color: #333;
    transform: rotate(180deg);
}

.pagination-simple-wrapper .page-text {
    font-size: 15px;
    color: #666;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-simple-wrapper strong {
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

.pagination-simple-wrapper .total {
    color: #999;
}

@media screen and (max-width: 850px) {
    .pagination-simple-wrapper {
        padding-top: 2rem;
        padding-bottom: 10rem;
    }
}

/* ===== 반응형 카드 배치: PC 4개 / 태블릿 3개 / 모바일 2개 ===== */
.product-card-item-container-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.product-card-item-container {
    width: calc(25% - 18px) !important;
    max-width: calc(25% - 18px) !important;
    flex-direction: column;
    box-sizing: border-box;
}
/* 태블릿: 3개 (769px ~ 1024px) */
@media screen and (max-width: 1024px) {
    .product-card-item-container-list {
        gap: 16px;
    }
    .product-card-item-container {
        width: calc(33.333% - 11px) !important;
        max-width: calc(33.333% - 11px) !important;
    }
}
/* 모바일: 2개 (768px 이하) */
@media screen and (max-width: 768px) {
    .product-card-item-container-list {
        gap: 12px;
    }
    .product-card-item-container {
        width: calc(50% - 6px) !important;
        max-width: calc(50% - 6px) !important;
    }
    .product-card-item-left a img {
        height: 140px;
        object-fit: cover;
    }
}
/* ===== END 반응형 카드 배치 ===== */
