/* Container for the description and image */
.woocommerce-Tabs-panel--description {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    overflow: hidden;
}

/* Ensure the description (h2 and list) takes available space */
.woocommerce-Tabs-panel--description ul {
    width: calc(100% - 600px); /* Adjust 300px based on image width */
    margin-top: 10px;
    padding-right: 20px; /* Add some padding between text and image */
}

/* Make sure the h2 Description comes on top */
.woocommerce-Tabs-panel--description h2 {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 1.5em;
    text-align: left;
}

/* Image styling */
.gtd-custom-description-image {
    max-width: 280px; /* Set a fixed width for the image */
    height: auto;
    margin-top: 20px;
    margin-left: 20px;
    float: right; /* Float the image to the right */
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .woocommerce-Tabs-panel--description {
        flex-direction: column;
        align-items: center; /* Center items on smaller screens */
    }

    .woocommerce-Tabs-panel--description ul{
      width: 100%;
      padding-right: 0px;
    }

    .gtd-custom-description-image {
        max-width: 100%;
        float: none; /* Remove float */
        margin: 20px auto; /* Center the image */
    }
}
.gtd-custom-description-images {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.gtd-custom-description-images a {
    display: inline-block;
}
.gtd-thumbnail {
    width: 100px;
    height: auto;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
}
