/* ── Arizer Lightweight Product Carousel ── */
.arizer-pc {
    position: relative;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 40px;
}
.arizer-pc .swiper { overflow: hidden; }

/* Navigation arrows */
.arizer-pc .swiper-button-next,
.arizer-pc .swiper-button-prev {
    color: #fff;
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    z-index: 10;
}
.arizer-pc .swiper-button-next::after,
.arizer-pc .swiper-button-prev::after {
    font-size: 20px;
}
.arizer-pc .swiper-button-next:hover,
.arizer-pc .swiper-button-prev:hover {
    background: rgba(0,0,0,0.8);
}
.arizer-pc .swiper-button-prev { left: 0; }
.arizer-pc .swiper-button-next { right: 0; }

/* ── Product Card ── */
.arizer-pc-card {
    display: block;
    text-align: center;
    cursor: pointer;
    padding: 12px 8px;
    border-radius: 4px;
    transition: box-shadow 0.2s, transform 0.15s;
    text-decoration: none;
    color: inherit;
    background: #2E2E2E;
}
.arizer-pc-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}
.arizer-pc-card__img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 10px;
    background: #1a1a1a;
    border-radius: 4px;
}
.arizer-pc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.arizer-pc-card__title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 6px;
    min-height: 34px;
    color: #fff;
}
.arizer-pc-card__price {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.arizer-pc-card__price del {
    opacity: 0.5;
    font-weight: 400;
    margin-right: 4px;
}
.arizer-pc-card__price ins {
    text-decoration: none;
}
.arizer-pc-card__btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}
.arizer-pc-card__btn:hover {
    background: #555;
}

/* ── Lightbox Overlay ── */
.arizer-pc-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
body.arizer-pc-noscroll { overflow: hidden; }

.arizer-pc-lightbox {
    position: relative;
    background: #fff;
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.arizer-pc-lightbox__close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    z-index: 2;
    line-height: 1;
}
.arizer-pc-lightbox__close:hover { color: #000; }
.arizer-pc-lightbox__body {
    padding: 30px;
    color: #333 !important;
}
.arizer-pc-lightbox__body * {
    color: #333 !important;
}
.arizer-pc-lightbox__body .price,
.arizer-pc-lightbox__body .price * {
    color: #b7943c !important;
}
.arizer-pc-lightbox__body .cart .button,
.arizer-pc-lightbox__body .cart [type="submit"] {
    color: #fff !important;
}
.arizer-pc-lightbox__body .quantity input {
    color: #333 !important;
    background: #fff;
    border: 1px solid #ccc;
    padding: 6px 10px;
    width: 60px;
    text-align: center;
}
.arizer-pc-lightbox__body .quantity .minus,
.arizer-pc-lightbox__body .quantity .plus {
    color: #333 !important;
    background: #f0f0f0;
    border: 1px solid #ccc;
}
.arizer-pc-lightbox__loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 15px;
}

/* Lightbox product layout */
.arizer-pc-lb-product {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.arizer-pc-lb-product__img {
    flex: 0 0 260px;
    max-width: 260px;
}
.arizer-pc-lb-product__img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.arizer-pc-lb-product__info {
    flex: 1;
    min-width: 0;
}
.arizer-pc-lb-product__info h2 {
    font-size: 20px;
    margin: 0 0 10px;
}
.arizer-pc-lb-product__info .price {
    font-size: 18px;
    margin-bottom: 16px;
}
.arizer-pc-lb-product__info .cart .button,
.arizer-pc-lb-product__info .cart [type="submit"] {
    background: #333;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}
.arizer-pc-lb-product__info .cart .button:hover,
.arizer-pc-lb-product__info .cart [type="submit"]:hover {
    background: #555;
}

/* Responsive */
@media (max-width: 600px) {
    .arizer-pc-lb-product {
        flex-direction: column;
    }
    .arizer-pc-lb-product__img {
        flex: none;
        max-width: 100%;
    }
    .arizer-pc-lightbox {
        max-width: 95vw;
    }
    .arizer-pc-lightbox__body { padding: 20px; }
}
