#colorSwatches {
    display: flex;
    flex-wrap: wrap
}

.custom_option_list,
.colorSwatch {
    display: inline-block;
    /* cursor: pointer; */
    /* margin-right: 5px; */
    /* border: 1px solid #ccc; */
    /* padding: 0 10px; */
    /* border-radius: 10px; */
}


.colorSwatch.selected {
    /* border: 1px solid var(--black);
    background-color: var(--black);
    color: var(--white); */
}

.colorSwatch:hover {
    /* border: 1px dashed var(--black); */
}


#rotatedPricingTable {
    margin-bottom: 0;
}



/* #rotatedPricingTable .hasQty {
    cursor: pointer;
    outline: 1px dashed #f7f7f7;
    padding: 4px;
    background: #f7f7f71a;
    border-radius: 10px;
}

#rotatedPricingTable .hasQty:hover {
    cursor: pointer;
    outline: 1px dashed var(--primaryColor);
    padding: 4px;
    background: #f7f7f71a;
    border-radius: 10px;
} */

.color-attribute-wrap,
.pricing-wrap,
.options-select-wrap,
.form-fields-wrap {
    /* margin-bottom: 10px; */
    padding: 10px;

}

.single-product-top .product_meta .product-weight .label,
.single-product-top .product_meta .product-dimensions .label {
    color: #000;
    display: inline-block;
    font-weight: 500;
    padding: 0 5px 0 0;
    text-transform: capitalize;
}

.single-product-top .product_meta .product-weight,
.single-product-top .product_meta .product-dimensions {
    display: block;
    margin-bottom: 10px;
}

.product-information {
    text-decoration: underline;
    text-decoration-style: dashed;
    color: var(--primaryColor);

}

/** Meta Information Start **/
/** Overlay and Interaction Styles **/

.select-option-wrap label {
    margin-top: 5px;
    display: block;
    font-size: 110%;
    font-weight: 600;
}

.expand-table {
    text-align: center;
    cursor: pointer;
    padding: 15px 0;
    color: var(--primaryColorDark);
    font-size: 18px;
}

.table-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 0.5s ease-out;
    z-index: 1;
    pointer-events: none;
}

.table-wrapper.expanded .table-overlay {
    pointer-events: auto;
}


.table-wrapper {
    position: relative;
    /* For positioning overlay */
    height: 150px;
    /* Initial collapsed height */
    overflow: hidden;
    transition: height 0.5s ease-out;
    /* Smooth transition for expanding and collapsing */
    background: #f9f9f9;
    /* Light background color for the wrapper */
    border-radius: 4px;
    /* Optional: rounded corners for the wrapper */
}

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

/* Update expanded height for clarity */
.table-wrapper.expanded {
    height: auto;
    /* Expand to fit content */
    transition: height 0.5s ease-in;
}

.responsive_table {
    width: 100%;
    margin: 0;
    margin-bottom: 0;
    /* Removes default margin */
    padding: 0;
    /* Removes default padding */
    border-collapse: collapse;
    /* Ensures that the borders between cells are merged */
}

.responsive_table td {
    border: 1px solid #ccc;
    /* Light grey border for readability */
    padding: 8px;
    /* Adequate padding for content */
    text-align: left;
    /* Aligns text to the left */
    vertical-align: top;
    /* Aligns content to the top of the cell */
}

.responsive_table .label {
    font-weight: bold;
    /* Makes label text bold */
    color: #333;
    /* Dark color for better readability */
    background: #e6e6e6;
    /* Slightly darker background for labels */
    width: 16%;
    vertical-align: middle;
}

.responsive_table a {
    text-decoration: underline;
    text-decoration-style: dashed;
}

/** Media query for mobile devices **/
@media (max-width: 600px) {

    .responsive_table .label {
        width: 100%;
    }

    .responsive_table,
    .responsive_table tbody,
    .responsive_table tr,
    .responsive_table td {
        display: block;
        /* Makes every table part behave like a block */
        width: 100%;
        /* Each block takes full width */
        border-bottom: 0 !important;
    }

    .responsive_table tr {
        margin-bottom: 10px;
        /* Adds space between rows when stacked */
    }

}

/** Meta Information End **/

#contact-fields {
    display: none;
}

#request-quote-button {
    display: block;
    margin-left: 10px;
    margin-top: 10px;
}

.form-error {
    color: red;
    font-weight: bold;
}

.form-success {
    color: green;
    font-weight: bold;
}

#contact-fields button {
    margin-top: 10px
}

#contact-fields label {
    margin-top: 10px;
    display: block;
}

/*** sage product pop up ***/

#contact-fields {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.half-width {
    width: 48%;
}

.full-width {
    width: 100%;
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea.form-control {
    resize: vertical;
    border: 0;
    border-radius: 12px;
}

.form-group label {
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

button.add-set,
button.remove-set {
    padding: 5px;
    cursor: pointer;
    height: 30px;
    line-height: 1;
    width: 30px;
    border-radius: 50px;
    margin-right: 5px;
}

button.remove-set {
    background-color: #ff4d4d;
    color: white;
}

button.add-set {
    background-color: #4CAF50;
    color: white;
}

.product-option-set {
    padding: 10px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    margin-bottom: 10px;
}
