body {
    background: #f9fafb;
    color: #111827;
}

/* SECTION CARDS */
.quote-section-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .04);
    padding: 22px;
    height: 100%;
}

.quote-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.quote-section-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: #111827;
}

.quote-section-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

.small-hint {
    font-size: 12px;
    color: #6b7280;
}

/* WISHLIST */
#wishlist {
    max-height: 420px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-right: 4px;
}

#wishlist::-webkit-scrollbar {
    width: 6px;
}

#wishlist::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.wishlist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    background: #fff;
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

.wishlist-item:hover {
    border-color: #dbe2ea;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
    transform: translateY(-1px);
}

.wishlist-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.wishlist-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    background: #f3f4f6;
}

.wishlist-meta {
    min-width: 0;
}

.wishlist-title {
    font-weight: 700;
    font-size: 13px;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wishlist-alias {
    font-size: 11px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wishlist-remove {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    transition: .15s;
}

.wishlist-remove:hover {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.wishlist-empty {
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px dashed #dbe2ea;
    border-radius: 14px;
    color: #94a3b8;
    text-align: center;
    background: #fafcff;
}

@media(max-width:576px) {
    #wishlist {
        grid-template-columns: 1fr;
    }
}

/* CONTACT STYLE FORM */
.ps-contact-form {
    width: 100%;
}

.ps-form--contact-us .form-group {
    margin-bottom: 0;
}

.ps-form--contact-us .form-control {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: none;
    padding: 0 14px;
    background: #fff;
    color: #111827;
}

.ps-form--contact-us .form-control:focus {
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, .08);
}

.ps-form--contact-us textarea.form-control {
    height: auto;
    min-height: 120px;
    padding-top: 12px;
    padding-bottom: 12px;
    resize: vertical;
}

.ps-form--contact-us .form-control::placeholder {
    color: #94a3b8;
}

.field-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.field-required {
    color: #dc2626;
    margin-left: 2px;
}

/* PRODUCT CARD */
.quote-product-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease, background .2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    backface-visibility: hidden;
    position: relative;
    border: none !important;
}

.quote-product-card:hover {
    border-color: #cbd5e1;
    background: #f7efef !important;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
    transform: translateY(-4px);
    cursor: grab;
}

.quote-product-card:active {
    cursor: grabbing;
}

.quote-tooltip {
    position: fixed;
    background: #e2e0e0;
    color: #FF0000;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
    pointer-events: none;
    z-index: 9999;
    display: none;

    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
    transition: 0.15s ease;
    white-space: nowrap;
}

.quote-product-card.is-selected {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, .95), 0 10px 24px rgba(17, 24, 39, .12);
}

.quote-product-card .ps-product__thumbnail {
    flex-shrink: 0;
}

.quote-product-card .ps-product__thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.quote-product-card .ps-product__container {
    flex-shrink: 0;
}

.quote-product-card .ps-product__title {
    display: block;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    line-height: 1.2;
    word-break: break-word;
}

.product-cat .ps-product__title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px;
}

.product-grid-wrap {
    margin-top: 8px;
}

#loader {
    font-size: 13px;
    color: #6b7280;
    padding: 18px 0 6px;
}

/* ACTIONS ALWAYS VISIBLE - BOTTOM RIGHT */
.quote-product-actions {
    position: absolute;
    left: 10px;
    top: 10px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.quote-action-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
    transition: .2s ease;
    text-decoration: none;
    padding: 0;
}

.quote-action-btn:hover {
    background: #111827;
    color: #fff;
}

.quote-action-btn.is-wished {
    background: #fff;
    color: #ef4444;
}
