/* ======================================
   PRODUCT DETAIL - BOURBON STREET
   ====================================== */
.productview {
    position: relative;
    margin: 0;
    margin: 70px 0 120px;
    color: var(--white);
}

.productview .container {
    position: relative;
    z-index: 1;
}

.productview .product-preview-container {
    margin-top: 52px; // height of breadcrumb
}

.product-information-container {
    display: flex;
    flex-direction: column;
}

.productview .breadcrumb.breadcrumb-custom {
    gap: 8px;
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.productview .breadcrumb.breadcrumb-custom a,
.productview .breadcrumb.breadcrumb-custom .active {
    color: var(--white-transparent);
}

.productview .breadcrumb.breadcrumb-custom a:hover {
    color: var(--white);
    text-decoration: none;
}

.productview #myCarousel {
    position: relative;
    border-radius: 12px;
    height: 100%;
    border: 4px solid transparent;
    background: linear-gradient(135deg, rgba(70, 8, 8, 0.78) 0%, rgba(95, 10, 10, 0.76) 45%, rgba(40, 6, 6, 0.72) 100%);
    background-clip: padding-box;
    box-shadow: 0 0 0 2px var(--theme-900), 0 18px 45px rgba(0, 0, 0, 0.32);
    overflow: hidden;
}

.productview #myCarousel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(244, 245, 239, 0.08) 0%, rgba(244, 245, 239, 0.04) 100%);
    opacity: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.productview .carousel-inner {
    margin-bottom: 0;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(244, 245, 239, 0.08);
}

.productview .carousel-inner .item {
    min-height: 420px;
}

.productview .carousel-inner .image,
.productview .carousel-inner .video-container {
    width: 100%;
    min-height: 420px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.productview #thumbCarousel {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 24px 24px;
}

.productview .thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    border: 1px solid rgba(232, 38, 38, 0.18);
    background: rgba(244, 245, 239, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    cursor: pointer;
}

.productview .thumb .image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.productview .thumb.active {
    border-color: var(--theme-400);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28);
    background: rgba(244, 245, 239, 0.12);
}

.productview .box.ppbox {
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 24px;
    border-radius: 16px;
    border: 4px solid transparent;
    background: linear-gradient(135deg, rgba(70, 8, 8, 0.82) 0%, rgba(95, 10, 10, 0.78) 45%, rgba(45, 6, 6, 0.74) 100%);
    background-clip: padding-box;
    padding: 32px;
    box-shadow: 0 0 0 2px var(--theme-900), 0 18px 45px rgba(0, 0, 0, 0.34);
    position: relative;
}

.productview .box.ppbox:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(244, 245, 239, 0.08) 0%, rgba(244, 245, 239, 0.04) 100%);
    opacity: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.productview h1 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    color: var(--white);
}

.productview .pp-price {
    margin-top: 8px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white-transparent);
}

.productview .pp-price p.prijs {
    margin: 0;
    color: var(--white);
}

.productview .pp-price p.prijs b {
    font-size: 26px;
    color: var(--white);
    font-weight: 700;
}

.productview .productview-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(232, 38, 38, 0) 0%, rgba(232, 38, 38, 0.28) 50%, rgba(232, 38, 38, 0) 100%);
}

.productview .boxtitle {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
}

.productview .boxtitle .left {
    min-width: 120px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--white-transparent);
    letter-spacing: 0.05em;
}

.productview .boxtitle .right {
    flex: 1;
}

.productview select.form-control,
.productview .aantal-input input {
    width: 100%;
    background: rgba(244, 245, 239, 0.08);
    border: 1px solid rgba(232, 38, 38, 0.18);
    border-radius: 8px;
    color: var(--white);
    height: 48px;
    padding: 0 16px;
    box-shadow: none;
    transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.productview select.form-control:focus,
.productview .aantal-input input:focus {
    border-color: var(--theme-400);
    background: rgba(244, 245, 239, 0.12);
    box-shadow: 0 0 0 3px rgba(232, 38, 38, 0.18);
    outline: none;
}

.productview .aantal-input {
    position: relative;
}

.productview .aantal-input span.ovti {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--white-transparent);
    text-transform: uppercase;
}

.productview .options .boxtitle {
    margin-top: 20px;
}

.productview button.bnt-calcu {
    border: none;
    background: none;
    padding: 0;
    font-weight: 700;
    color: var(--theme-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 200ms ease;
}

.productview button.bnt-calcu:hover {
    color: var(--theme-200);
    opacity: 1;
}

.productview .checkmarks {
    margin: 16px 0 8px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.productview .checkmarks li {
    position: relative;
    padding-left: 32px;
    color: var(--white);
    opacity: 0.88;
}

.productview .checkmarks span.material-icons {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-300);
    font-size: 18px;
}

.productview button.button.product-add {
    width: 100%;
    margin-top: 24px;
}

.productview button.button.product-add i.material-icons {
    font-size: 20px;
}

/* Gallery video poster adjustments */
.productview .video-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.productview .video-container .play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.5) 100%);
}

.productview .video-container .material-icons {
    font-size: 64px;
    color: var(--white);
    text-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.product-description > * {
    max-width: 60ch;
    margin: 0 auto;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1199px) {

    .productview .carousel-inner .item {
        min-height: 360px;
    }

    .productview .carousel-inner .image,
    .productview .carousel-inner .video-container {
        min-height: 360px;
    }
}

@media (max-width: 991px) {
    .productview {
        margin: 70px 0 120px;
    }

    .productview .product-preview-container {
        margin-top: 0; // no margin top on mobile
    }

    .productview .box.ppbox {
        margin-top: 40px;
    }

    .breadcrumb-custom {
        display: none;
    }
}

@media (max-width: 767px) {
    .productview {
        margin: 60px 0 100px;
    }

    .productview .carousel-inner .item,
    .productview .carousel-inner .image,
    .productview .carousel-inner .video-container {
        min-height: 300px;
    }

    .productview .thumb {
        width: 60px;
        height: 60px;
    }

    .productview h1 {
        font-size: 32px;
    }

    .productview .box.ppbox {
        padding: 26px;
        gap: 20px;
    }

    .productview .boxtitle {
        flex-direction: column;
        gap: 10px;
    }

    .productview .boxtitle .left {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .productview .thumb {
        width: 52px;
        height: 52px;
    }

    .productview .box.ppbox {
        padding: 24px;
    }

    .productview .carousel-inner .item,
    .productview .carousel-inner .image,
    .productview .carousel-inner .video-container {
        min-height: 260px;
    }
}

