

/* ===================================
   No Products Found Styling
   =================================== */
.no-products-found {
    text-align: center;
    padding: 80px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 20px 0;
}

.no-products-found .no-products-icon {
    margin-bottom: 24px;
}

.no-products-found .no-products-icon svg {
    color: #7a7a7a;
    opacity: 0.5;
}

.no-products-found h3 {
    font-size: 24px;
    font-weight: 500;
    color: #3a473a;
    margin-bottom: 12px;
}

.no-products-found p {
    font-size: 16px;
    color: #707c69;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-products-found .btn-reset-filters {
    display: inline-block;
    padding: 12px 32px;
    background: #3a473a;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.no-products-found .btn-reset-filters:hover {
    background: #2a3729;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 71, 58, 0.2);
}

/* ===================================
   Review Card — Initials Avatar
   =================================== */
.custom-review-slider .review-card__profile--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}

/* ===================================
   Product Listing — Image Size & Radius
   =================================== */
.products-section .product-card .product-image {
    border-radius: 10px;
    overflow: hidden;
}

.products-section .product-card .product-image img {
    width: 512px;
    height: 359px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* ===================================
   Product Gallery — Dynamic Sizing
   =================================== */
.prod-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.prod-main-slider {
    overflow: hidden;
    border-radius: 10px;
}

.prod-main-slider-img {
    width: 100%;
    height: auto;
    max-width: 685px;
    aspect-ratio: 685 / 315;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.more-images.two-cards {
    width: 100%;
}

.more-images.two-cards .row {
    /* keep bootstrap row behavior but remove any grid override so columns behave normally */
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.more-images.two-cards .col-12,
.more-images.two-cards .col-md-6 {
    /* provide inner gutter and rounded cropping for images */
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    overflow: hidden;
    border-radius: 10px;
}

.prod-gallery-img {
    width: 100%;
    height: auto;
    aspect-ratio: 338 / 277;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.more-images.full-width {
    width: 100%;
}

.more-images.full-width .col-12 {
    overflow: hidden;
    border-radius: 10px;
}

.prod-gallery-img-last {
    width: 100%;
    height: auto;
    aspect-ratio: 685 / 277;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}



/* ===================================
   Location Rows — Positie Styling
   =================================== */
.opt-location-rows .select-box p {
    white-space: nowrap;
    margin: 0;
}

.opt-location-rows .select-box .form-control {
    max-width: 50%;
}

/* ===================================
   Cart Confirm Modal
   =================================== */
.cart-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cart-confirm-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-confirm-box {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.25s ease;
}

.cart-confirm-overlay.active .cart-confirm-box {
    transform: scale(1);
}

.cart-confirm-box .confirm-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: #e8ece5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-confirm-box .confirm-icon svg {
    width: 28px;
    height: 28px;
    color: #3a473a;
}

.cart-confirm-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #3a473a;
    margin-bottom: 8px;
}

.cart-confirm-box p {
    font-size: 14px;
    color: #6b7a68;
    margin-bottom: 24px;
}

.cart-confirm-box .confirm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.cart-confirm-box .btn-confirm-cancel {
    padding: 10px 24px;
    border: 1px solid #3a473a;
    background: #fff;
    color: #3a473a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-confirm-box .btn-confirm-cancel:hover {
    background: #f4f6f3;
}

.cart-confirm-box .btn-confirm-delete {
    padding: 10px 24px;
    border: none;
    background: #3a473a;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-confirm-box .btn-confirm-delete:hover {
    background: #2a3729;
}


/* ===================================
   Cart Item & Order Summary
   =================================== */
.cart-item-link {
    text-decoration: none;
    color: inherit;
}

.cart-item-link:hover {
    color: inherit;
}

.cart-item-dimensions {
    font-size: 0.9em;
    color: #6b7a68;
    margin-bottom: 0;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.order-summary-label {
    flex: 1;
}

.order-summary-price {
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
}

/* ===================================
   Forgot Products Card
   =================================== */
.forgot-product-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.forgot-product-title a {
    text-decoration: none;
    color: inherit;
}

.forgot-product-title a:hover {
    color: #3a473a;
}

.forgot-product-dimensions {
    font-size: 0.85em;
    color: #6b7a68;
    margin-bottom: 0.5rem;
}

/* ===================================
   Forgot Products — Image Sizing
   =================================== */
.forgot-products .forgot-product-card .product-image {
    text-align: center;
    margin-bottom: 0;
    overflow: hidden;
    cursor: pointer;
}

.forgot-products .forgot-product-card .product-image img {
    max-width: 100%;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ===================================
   Option Info Modal
   =================================== */
.option-info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.option-info-overlay.active {
    opacity: 1;
    visibility: visible;
}

.option-info-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 520px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.25s ease;
    position: relative;
}

.option-info-overlay.active .option-info-modal {
    transform: scale(1);
}

.option-info-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: #f4f6f3;
    border: none;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a473a;
    z-index: 2;
    transition: background 0.2s;
}

.option-info-close:hover {
    background: #e8ece5;
}

.option-info-content {
    padding: 32px;
    color: #3a473a;
    font-size: 15px;
    line-height: 1.6;
}

.option-info-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #3a473a;
    margin-bottom: 16px;
}

/* ===================================
   Cart Page — Min Height
   =================================== */
.cart-content .jouw-section {
    min-height: 60vh;
}

/* ===================================
   Wishlist
   =================================== */
.bk-wishlist.active svg {
    color: #d98a1f;
}

.wishlist-view-btn {
    background: #3a473a;
    color: #fff;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 13px;
    text-decoration: none;
}

.wishlist-view-btn:hover {
    background: #2a3729;
    color: #fff;
}

.wishlist-remove-btn {
    background: none;
    border: 1px solid #d9dcd6;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    color: #6b7a68;
    cursor: pointer;
}

.wishlist-remove-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.wishlist-add-cart-btn {
    background: #3a473a;
    color: #fff;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.wishlist-add-cart-btn:hover {
    background: #2a3729;
    color: #fff;
}
.badge { font-size: 0.9rem;color: #222222;font-weight: normal;border: 1px solid #d4d4d4;margin: 2px; }
#total_price { width:90%;display: inline-block; }
.price-details-span { display: inline-block;width: 5%;margin-top: -0.5rem;vertical-align: text-top; }
.tooltip-inner { padding: 0px !important;border: 2px solid #3a473a;max-width: 300px !important; }


/* ===================================
   Checkout — Disabled Payment Method
   =================================== */
.payment-warning-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

/* Fade only the content elements, not the warning icon */
.payment-option-faded {
    opacity: 0.4;
    pointer-events: none;
}

/* Subtle disabled background on the whole row */
.payment-option-card:has(.payment-option-faded) {
    background-color: #f8f8f8;
    cursor: default;
}

.payment-warning-popup {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.4;
    padding: 7px 12px;
    border-radius: 6px;
    white-space: normal;
    max-width: 260px;
    text-align: center;
    z-index: 999;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Arrow pointing down */
.payment-warning-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
}

.payment-warning-icon:hover .payment-warning-popup {
    display: block;
}

/* ===================================
   Sticky Product Bar
   =================================== */
.detail-content .bk-product-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    background-color: transparent;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.detail-content .bk-product-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
}

/* ===================================
   Product Details — Delivery Options
   =================================== */
.detail-content .delivery-section {
    margin-bottom: 1.5rem;
}

.detail-content .delivery-title {
    color: #707c69;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.detail-content .delivery-options {
    border: 1px solid #707c69;
    overflow: hidden;
}

.detail-content .delivery-option {
    display: grid;
    grid-template-columns: 1fr 0.4fr 30px;
    align-items: center;
    gap: 1rem;
    padding: 0.4rem 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid #707c69;
    transition: 0.3s ease;
}

.detail-content .delivery-option:last-child {
    border-bottom: 0;
}

.detail-content .delivery-option:has(input:checked) {
    background: #e6e3d5;
    box-shadow: inset 0 0 0 2px rgba(58, 71, 58, 0.8);
}

.detail-content .delivery-option.disabled {
    cursor: default;
    opacity: 0.65;
}

.detail-content .delivery-option input[type=radio] {
    width: 22px;
    height: 22px;
    accent-color: #707c69;
    cursor: pointer;
    display: none;
}

.detail-content .delivery-option input[type=radio] + .custom-radio {
    background-color: transparent;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 1px solid #3a473a;
    position: relative;
}

.detail-content .delivery-option input[type=radio] + .custom-radio img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.3s;
}

.detail-content .delivery-option input:checked + .custom-radio img {
    opacity: 1;
    transform: scale(1);
}

.detail-content .delivery-option span {
    color: #707c69;
    font-size: 1rem;
}

.detail-content .delivery-option strong {
    color: #707c69;
    font-size: 1rem;
    font-weight: 400;
}

.detail-content .delivery-lock-note {
    color: #707c69;
    font-size: 0.85rem;
    margin: 0.75rem 0 0;
}

.detail-content .delivery-lock-note a {
    color: #3a473a;
    text-decoration: underline;
}

.detail-content .delivery-lock-note a:hover {
    color: #707c69;
}

@media (max-width: 767px) {
    .detail-content .delivery-option {
        grid-template-columns: 1fr;
        row-gap: 0.5rem;
    }

    .detail-content .delivery-option strong {
        text-align: left;
    }
}
