.single_product {
    padding-top: 50px;
    padding-bottom: 50px;
}
.product_images {
    display: flex;
    flex-direction: column;
}
.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;
}
.image_selected img {
    width: 100%;
    height: auto;
}
.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;
}
