/* Gallery điều hướng ảnh — không phụ thuộc Tailwind opacity */
.product-gallery-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: #18181b;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    transition: background-color 0.2s ease;
    pointer-events: auto;
}

.product-gallery-nav-btn:hover {
    background-color: #000;
}

.product-gallery-nav-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.product-gallery-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 9999px;
    background-color: #18181b;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

/* Chống tràn viền ngang trên mobile — trang chi tiết sản phẩm */
#product-hero {
    overflow-x: clip;
    max-width: 100%;
}

#product-hero .grid {
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

#product-hero .grid > *,
#gallery-container,
#product-info {
    min-width: 0;
    max-width: 100%;
}

#gallery-container [x-data] {
    min-width: 0;
    max-width: 100%;
}

#gallery-container .aspect-square {
    width: 100%;
    max-width: 100%;
}

#gallery-container .aspect-square img,
#main-product-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

#gallery-container .overflow-x-auto {
    max-width: 100%;
}

@media (max-width: 1023px) {
    .site-main {
        overflow-x: clip;
    }
}
