.productLayout {
    display: grid;
    grid-template-rows: repeat(1, auto);
    grid-template-columns: repeat(5, auto);
    gap: 10px;
}

.productDivisions {
    max-width: 500px;
}

.productHomeDivisions {
    max-width: 300px;
}

.productImageHeight {
    aspect-ratio: 1 / 1;
}

.productHomeTextButtons {
    border-style: none;
    background: none;
    display: block;
}

.productImageBorder {
    border: solid;
    border-color: #60646d;
    border-width: 1px;
    border-radius: 5px;
}

.productImageSpacing {
    margin: auto;
    vertical-align: auto;
}

.productText {
    color: #60646d;

}

.productPdfIcon {
    float: left;
    height: 38px;

}

.productHomeImage {
    border-style: none;
}

.productDescription {
    text-align: left;
    max-width: 485px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: inherit;
    -webkit-line-clamp: 3;
    /* Limit to 3 lines */
    -webkit-box-orient: vertical;
}

.addProductLayout {
    display: flex;
}

.addProductSides {
    flex: 1;
}

.addpProductForm {
    margin-top: 100px;
    flex: 1;
}

.addProductFormLayout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 3fr 3fr 3fr 1fr 1fr 2fr;
    gap: 5px;
}

.addProductCell {
    max-height: 75px;
    margin: auto 0;

}

.addProductPdfIcon {
    height: 25px;
}

.productTableThumbnail {
    max-height: 100px;
}

.productMenuSize {
    max-width: 600px;

}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: rgb(255, 133, 0);
    border-color: rgb(255, 133, 0);
}

.indent-btn {
    text-align: left;
    padding-left: calc(1rem + (var(--level, 0) * 1.05rem));
    transition: background-color 0.2s;
}

.indent-btn.active {
    background-color: #ff8800;
    color: #fff;
}

.list-group-item:first-child {
    border-radius: 8px;
    margin-top: 3px;
    margin-bottom: 3px;
}

.list-group-item {
    border-radius: 8px;
    margin-top: 3px;
    margin-bottom: 3px;
}

.split-price-container {
    display: inline-flex;
    align-items: stretch;
    background-color: #f8f9fa;
    /* Light background for the price side */
    border: 1.5px solid #1abc9c;
    /* Unified border color */
    border-radius: 8px;
    /* Smooth corners for the whole unit */
    overflow: hidden;
    /* Ensures the button corners match the container radius */
    height: 42px;
    /* Fixed height for perfect alignment */
}

.quote-button-split {
    background-color: #1abc9c;
    color: white;
    border: none;
    padding: 0 20px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
}

.quote-button-split:hover {
    background-color: #16a085;
}

.price-display-split {
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
}

/* Quote Tray */
.quote-tray {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1050;
    display: none;
    font-family: sans-serif;
}

.quote-header {
    background-color: #1abc9c;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.quote-body {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.quote-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.finalize-btn {
    background-color: #ff8c00;
    /* Use the orange for the final CTA */
    color: white;
    border: none;
    font-weight: bold;
    padding: 10px;
    border-radius: 6px;
}

.finalize-btn:hover {
    background-color: #e67e00;
}

.quote-trigger {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #1abc9c;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1040;
    transition: transform 0.2s ease;
}

.quote-trigger:hover {
    transform: scale(1.05);
    background-color: #16a085;
}

.badge-count {
    background: #ff8c00;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    position: absolute;
    top: -5px;
    right: -5px;
}

.icon-wrapper {
    position: relative;
    font-size: 1.2rem;
}

.trigger-label {
    font-weight: 600;
    font-size: 0.9rem;
}


/* Fix for the Table and Inputs */
.quote-table {
    width: 100%;
    border-collapse: collapse;
}

.quote-table th {
    text-align: left;
    font-size: 0.8rem;
    color: #666;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.qty-input {
    width: 45px !important;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
}

.part-name {
    font-size: 0.85rem;
    color: #333;
}

.part-subtext {
    font-size: 0.75rem;
    color: #888;
}

.remove-item-btn {
    background: #eee;
    border: none;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    line-height: 1;
}

.remove-item-btn:hover {
    background: #ff4d4d;
    color: white;
}

/* The slide-in animation you wanted */
.slide-in {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}