

.custom-product-container {
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;

    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;

    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* --- Gambar Utama & Display Background --- */

.custom-product-image-display {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 8px;
    position: relative;
}

.custom-product-main-image-pane {
    grid-column: 1 / -1;
}

/* ⭐ ID dengan prefix: cp-main-image */
#cp-main-image {
    width: 100%;
    height: 400px;
    padding-bottom: 0;
}

/* --- Slider Wrapper dan Navigasi --- */

.custom-product-slider-wrapper {
    grid-column: 1 / -1;
    position: relative;
    margin-top: 0;
    padding: 0 5px;
    overflow: hidden;
}

.custom-product-thumbnail-slider {
    display: flex;
    gap: 10px;
    overflow-x: scroll;
    overflow-y: hidden;

    padding: 0 10px 5px 10px;
    scroll-behavior: smooth;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.custom-product-thumbnail-slider::-webkit-scrollbar {
    display: none;
}

.custom-product-thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 4px;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.custom-product-thumbnail:hover,
.custom-product-thumbnail.active {
    border-color: #007bff;
}

.custom-product-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 5px 8px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 1.2em;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.custom-product-nav-arrow:hover {
    opacity: 1;
}

.custom-product-left-arrow {
    left: 5px;
}

.custom-product-right-arrow {
    right: 5px;
}

/* --- Detail Produk & Tombol --- */

.custom-product-details {
    grid-column: 1 / -1;
    padding: 0;
}

.custom-product-details h1 {
    font-size: 2em;
    margin-top: 0;
}

.custom-product-price {
    font-size: 1.5em;
    color: #cc0000;
    font-weight: bold;
    margin: 10px 0 20px 0;
}

.custom-product-actions .custom-product-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-right: 10px;
    transition: background-color 0.2s;
}

.custom-product-add-to-cart {
    background-color: #ffc107;
}

.custom-product-buy-now {
    background-color: #007bff;
    color: white;
}

.custom-product-add-to-cart:hover {
    background-color: #e0a800;
}

.custom-product-buy-now:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {

    .custom-product-container {
        padding: 15px;
    }
}