.add-to-quote-button {
    background:none;
    border:none;
    padding: 10px 20px;             
    cursor: pointer;
    font-size: 16px;
    text-decoration: underline;
}   
.add-to-quote-button:hover {
    color: #c0392b; /* Darker shade on hover */
}
.woo-quote-dropdown {
    position: absolute;
    right: 0;
    top: 30px;
    width: 420px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 9999;
    border-radius: 8px;
    font-family: inherit;
}
.quote-dropdown-inner { padding: 24px 24px 16px 24px; }
.quote-dropdown-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.quote-dropdown-title { font-size: 2rem; font-weight: 400; }
.quote-dropdown-close { background: none; border: none; font-size: 2rem; cursor: pointer; line-height: 1; }
.quote-dropdown-list { border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin-bottom: 18px; }
.quote-dropdown-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid #eee; }
.quote-dropdown-item:last-child { border-bottom: none; }
.quote-dropdown-img { width: 56px; height: 56px; object-fit: contain; border-radius: 50%; background: #fafafa; }
.quote-dropdown-details { flex: 1; }
.quote-dropdown-title-row { display: flex; justify-content: space-between; align-items: flex-start; }
.quote-dropdown-product-title { font-size: 1.1rem; font-weight: 400; margin-bottom: 6px; }
.quote-dropdown-remove { background: none; border: none; font-size: 1.2rem; color: #222; cursor: pointer; margin-left: 8px; }
.quote-dropdown-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.quote-dropdown-price { font-size: 1.1rem; font-weight: 500; }
.quote-dropdown-old-price { font-size: 1.1rem; color: #aaa; text-decoration: line-through; }
.quote-dropdown-link { color: #222; font-size: 0.98rem; text-decoration: underline; cursor: pointer; }
.quote-dropdown-enquire { display: block;margin:0 auto; }
.quote-dropdown-empty { text-align: center; color: #888; padding: 30px 0; }
.quote-dropdown-form{
    display: none;
} 
.quote-info {
    color: #000000;
    font-size: 14px;
    margin-bottom: 10px;
    background: #fafafa;
    border-radius: 10px;
    margin-top: 10px;
    padding: 10px 20px 10px;
    list-style: 12px;
}
form.quote-form {
    padding: 20px;
    border: solid 1px #f0f0f0;
    border-radius: 10px;
}

form.quote-form input {
    background: #f8f8f8;
}

button.btn_main {
    margin: 10px auto;
    display: block;
}
form.quote-form  label {
    margin-right: 10px;
}

#quote_data{
    display: none;
}

#quote-form-response  {
    background: #48ffee;
    border-radius: 5px;
    padding: 2px 10px;
    margin: 10px auto;
}

.quote-current-status {
   
    display: inline;
    padding: 3px 8px;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
}

.new {
 background: blue;
}
.processing {
 background: #ffc107;
}
.completed {
 background: green;
}
.hold {
 background: #f44336;
}

button.add-to-quote-button.disabled {
    pointer-events: none;
    opacity: .5;
}

