#global-response-message {
    display: none;
    text-align: center;
    margin-top: 0;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    color: #333;
    font-weight: bold;
    border-radius: 5px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wishlist-btn-upper,
.add-to-cart {
    background-color: #df3500;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    color: white;
    font-weight: 600;
    padding: 10px 15px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
}
.add-to-cart-related:disabled {
    opacity: 0.6;
    border: none;
    cursor: pointer;
    text-align: center;
    cursor: not-allowed;
    transition: background-color 0.3s ease-in-out;
}
.wishlist-btn-upper:hover{
    background-color: #fff;
    color: #df3500;
    border: 2px solid #df3500;
}
.add-to-cart:hover {
    background-color: #fff;
    color: #df3500;
    border: 2px solid #df3500;
}


.add-to-cart:disabled {
    background-color: #df3500;
    opacity: 0.6;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    color: white;
    font-weight: 600;
    padding: 10px 15px;
    cursor: pointer;
    text-align: center;
    cursor: not-allowed;
    transition: background-color 0.3s ease-in-out;
}
.wishlist-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #DF3500;
    cursor: pointer;
    text-align: center;
    padding: 5px;
}

.wishlist-btn:hover {
    color: white;
}
.product-image {
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}

#zoom-view {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    border-left: 1px solid #ccc;
    z-index: 1000;
    overflow: hidden;
}

.related-products-hr {
    border: none;
    border-top: 2px dotted black;
    opacity: .3;
    width: 30%;
}

.breadcrumb {
    display: flex;
    justify-content: end;
    align-items: center;
}

.breadcrumb li {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin: 0 10px;
}

.breadcrumb li.active {
    color: #df3500;
}

.brand-title {
    color: blue;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.out-of-stock-overlay {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: red;
    font-size: 22px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    z-index: 2;
    white-space: nowrap;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 40px;
    height: 40px;
    background-color: black;
    border-radius: 50%;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    transition: none;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: black;
    color: white;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'FontAwesome';
    font-size: 20px;
    color: white;
}

.slick-prev {
    left: -50px;
}

.slick-prev:before {
    content: '\f104';
}

.slick-next {
    right: -50px;
}

.slick-next:before {
    content: '\f105';
}

@media (max-width: 768px) {
    .slick-prev {
        left: -30px;
    }

    .slick-next {
        right: -30px;
    }
}