.single_product {
    padding-top: 50px;
    padding-bottom: 50px;
}
.product_images {
    display: flex;
    flex-direction: column;
}
.image_gallery {
    width: 100%;
}
.image_list_container {
    max-height: 600px; /* 6 images * 100px */
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}
.image_list_container::-webkit-scrollbar {
    width: 6px;
}
.image_list_container::-webkit-scrollbar-track {
    background: transparent;
}
.image_list_container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.image_list_container::-webkit-scrollbar-thumb:hover {
    background: #999;
}
.image_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.image_list li {
    margin-bottom: 10px;
    cursor: pointer;
}
.image_list img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}
.image_list li.active img {
    border-color: #007bff;
}
.image_selected {
    position: relative;
}
.image_selected img {
    width: 100%;
    height: auto;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}
.arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.left-arrow {
    left: 10px;
}
.right-arrow {
    right: 10px;
}

/* Mobile carousel horizontal */
@media (max-width: 991px) {
    .image_selected {
        margin-bottom: 20px;
    }
    .image_list {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .image_list_container {
        max-height: none;
        overflow-y: hidden;
        overflow-x: auto;
    }
    .image_list li {
        margin-bottom: 0;
        margin-right: 10px;
        flex-shrink: 0;
    }
}
.product_description {
    padding-top: 30px;
}
.product_category {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}
.product_name {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Days One', sans-serif;
}
.product_price {
    font-size: 20px;
    color: #e74c3c;
    margin-bottom: 20px;
}
.product_text {
    margin-bottom: 20px;
}
.product_info {
    margin-bottom: 10px;
}
.product_info strong {
    display: inline-block;
    width: 100px;
}
.button_container {
    margin-top: 20px;
}
.cart_button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
.cart_button:hover {
    background: #c0392b;
}
.quote_button {
    background: #17a2b8;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
.quote_button:hover {
    background: #138496;
}
.out_of_stock_button {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: not-allowed;
    opacity: 0.7;
}
.out_of_stock_button:hover {
    background: #5a6268;
}
.trust-signals {
    background-color: rgba(225, 242, 252, 0.2);
    padding: 30px 0;
    margin: 30px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}
.trust-signals p {
    font-size: 16px;
    font-weight: bold;
    color: #495057;
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}
.trust-signals i {
    color: #004c5b;
}

/* Product Description Content Styling */
#description {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

#description p {
    margin-bottom: 1.2em;
    font-size: 16px;
}

#description strong {
    font-weight: 600;
    color: #2c3e50;
}

#description ul, #description ol {
    margin: 1em 0;
    padding-left: 1.5em;
}

#description ul li, #description ol li {
    margin-bottom: 0.5em;
    font-size: 15px;
    line-height: 1.5;
}

#description ul li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

#description ul li {
    list-style: none;
}

#description ol {
    counter-reset: item;
}

#description ol li {
    counter-increment: item;
}

#description ol li:before {
    content: counter(item) ".";
    color: #3498db;
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
    text-align: right;
}

body {
    background-color: #ffffff;
}

/* Zoom Modal Styles */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.zoom-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}

.zoom-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.zoom-close:hover,
.zoom-close:focus {
    color: #bbb;
    text-decoration: none;
}

.zoom-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}
