/* Product Images */
.gallery-container {
    width: 100%; /* Set the width of the container */
    margin: 2px auto; /* Center the container and set top and bottom margins */
    padding: 0; /* Remove the border padding */
    box-sizing: border-box;
}

.image-gallery-title {
    font-size: 17px;
    text-align: center; /* Align the title to the center */
    margin: 0 auto; /* Set the title's margin to auto and center it */
    background-color: #607D8B; /* Set the background color of the title */
    color: #FFFFFF; /* Set the title's text color to white */
    padding: 10px 0; /* Set the padding above and below the title */
    width: 100%; /* Match the title's width to the container's width */
    box-sizing: border-box; /* Set the box-sizing method to border-box */
}

.image-row {
    display: flex; /* Use Flexbox layout */
    flex-wrap: wrap; /* Allow Flex items to wrap */
    justify-content: flex-start; /* Align images to the center */
    width: 100%; /* Match the image row's width to the container's width */
    gap: 5px; /* Set the gap between images and rows */
}

.product-image {
    width: calc(50% - (5px / 2)); /* Adjust the width of the image (considering the gap space) */
    border: 1px solid #dcdcdc; /* Set the image border color to a soft gray */
    box-sizing: border-box; /* Set the box-sizing method to border-box */
}

.product-image:nth-last-of-type(2):nth-child(odd), .product-image:last-of-type:nth-child(even) {
    margin-right: 0px;
}
/* Product Description TABLE */
table.spec {
    font-size: 16px;
    color: #333;
    line-height: 1.4em;
    min-width: 350px;
    border: 1px solid #b0c4de; /* Light steel blue */
    border-collapse: collapse;
    margin: 0 0 20px 0;
}

table.spec th {
    border: 1px solid #b0c4de; /* Light steel blue */
    background: #e6f2ff; /* Lighter blue */
    padding: 8px;
    font-weight: bold;
    text-align: center;
    background: -moz-linear-gradient(top, rgba(230, 246, 255, 1) 0%, rgba(214, 234, 248, 1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 246, 255, 1)), color-stop(100%, rgba(214, 234, 248, 1)));
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6f2ff', endColorstr='#d6eaf8', GradientType=0);
}

table.spec td {
    width: 70%;
    padding: 10px;
    border: 1px solid #b0c4de; /* Light steel blue */
    text-align: left;
    background: #fff;
}

.product-desc-foot-note-container {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border: 1px solid #d1e0e0; /* Adjusted for light blue theme */
}
.product-desc-foot-note-important {
    color: #0096c7; /* Bright blue */
    font-weight: 600;
}
.product-desc-foot-note-p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 18px;
    color: #555;
}
.product-desc-foot-note-ul {
    list-style-type: none;
    padding: 0;
}
.product-desc-foot-note-li {
    background-color: #eef7fa; /* Very light blue */
    margin-bottom: 12px;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #0096c7; /* Bright blue */
    font-size: 16px;
    line-height: 1.4;
}
.bg-related-products-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    flex-direction: column;
    background-color: #eef7fa; /* Very light blue */
    border-radius: 8px;
    overflow: hidden;
}
.bg-related-products-title {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    color: #333;
    margin-bottom: 20px;
}
.bg-products-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.bg-products-table td {
    padding: 10px;
}

.bg-related-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.bg-product-image {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
}

.bg-product-info {
    padding: 15px;
    text-align: center;
}

.bg-product-name {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

.bg-product-price {
    font-size: 16px;
    color: #5dade2; /* Light blue */
    font-weight: bold;
}

.bg-product-link {
    margin-top: 15px;
    padding: 8px 12px;
    background-color: #7fb3d5; /* Soft light blue */
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.bg-product-link:hover {
    background-color: #5499c7; /* Darker soft light blue */
}
