/* ── 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: 10px 8px;
    border-radius: 6px;
    transition: box-shadow 0.2s, transform 0.15s;
    text-decoration: none;
    color: inherit;
    background: #2E2E2E;
    border: none;
}
.arizer-pc-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}
.arizer-pc-card__img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 4px;
}
.arizer-pc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.arizer-pc-card__title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 4px;
    min-height: 30px;
    color: #fff;
}
.arizer-pc-card__price {
    font-size: 13px;
    font-weight: 700;
    color: #b7943c;
}
.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: 8px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    background: #2558A6;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}
.arizer-pc-card__btn:hover {
    background: #1e4a8a;
}

/* ── 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: #1a1a1a;
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.arizer-pc-lightbox__close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    z-index: 2;
    line-height: 1;
}
.arizer-pc-lightbox__close:hover { color: #ccc; }
.arizer-pc-lightbox__body {
    padding: 30px;
    color: #fff;
}
.arizer-pc-lightbox__body h2,
.arizer-pc-lightbox__body p,
.arizer-pc-lightbox__body span,
.arizer-pc-lightbox__body label,
.arizer-pc-lightbox__body td,
.arizer-pc-lightbox__body th,
.arizer-pc-lightbox__body div {
    color: #fff;
}
.arizer-pc-lightbox__body .price,
.arizer-pc-lightbox__body .price * {
    color: #b7943c !important;
}
/* Variation selectors in lightbox */
.arizer-pc-lightbox__body select {
    color: #fff;
    background: #2e2e2e;
    border: 1px solid #555;
    padding: 8px 12px;
    width: 100%;
    max-width: 250px;
    border-radius: 4px;
    font-size: 14px;
}
.arizer-pc-lightbox__body select option {
    background: #2e2e2e;
    color: #fff;
}
.arizer-pc-lightbox__body .variations {
    margin-bottom: 16px;
}
.arizer-pc-lightbox__body .variations td,
.arizer-pc-lightbox__body .variations th {
    padding: 8px 0;
    vertical-align: middle;
}
.arizer-pc-lightbox__body .variations label {
    font-weight: 600;
}
/* Swatch overrides */
.arizer-pc-lightbox__body .rtwpvs-terms-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.arizer-pc-lightbox__body .rtwpvs-term {
    cursor: pointer;
    border: 2px solid #555 !important;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    background: #3a3a3a !important;
    font-size: 13px !important;
    color: #fff !important;
    transition: border-color 0.2s;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    text-align: center;
    width: auto !important;
    height: auto !important;
}
.arizer-pc-lightbox__body .rtwpvs-term:hover,
.arizer-pc-lightbox__body .rtwpvs-term.selected {
    border-color: #2558A6 !important;
    background: #2558A6 !important;
}
.arizer-pc-lightbox__body .rtwpvs-term .rtwpvs-term-span {
    display: none !important;
}
.arizer-pc-lightbox__body .rtwpvs-term .attribute-options {
    display: inline !important;
    font-size: 13px !important;
    color: #fff !important;
}
.arizer-pc-lightbox__body .cart .button,
.arizer-pc-lightbox__body .cart [type="submit"] {
    background: #2558A6;
    color: #fff !important;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}
.arizer-pc-lightbox__body .cart .button:hover,
.arizer-pc-lightbox__body .cart [type="submit"]:hover {
    background: #1e4a8a;
}
.arizer-pc-lightbox__body .quantity input {
    color: #fff !important;
    background: #2e2e2e;
    border: 1px solid #555;
    padding: 6px 10px;
    width: 60px;
    text-align: center;
}
.arizer-pc-lightbox__body .quantity .minus,
.arizer-pc-lightbox__body .quantity .plus {
    color: #fff !important;
    background: #3a3a3a;
    border: 1px solid #555;
}
.arizer-pc-lightbox__loading {
    text-align: center;
    padding: 40px;
    color: #999;
    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;
    background: #fff;
    border-radius: 4px;
    padding: 10px;
}
.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: #2558A6;
    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: #1e4a8a;
}

/* 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; }
}
