#sh-enquiry-popup {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:9999;
}

.sh-popup-overlay {
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

.sh-popup-content {
    position:relative;
    max-width:500px;
    margin:50px auto;
    background:#fff;
    padding:20px;
    border-radius:8px;
    z-index:2;
}

.sh-close-popup {
    position:absolute;
    top:10px;
    right:15px;
    cursor:pointer;
    font-size:20px;
}

.sh-enquiry-btn {
    background:#000;
    color:#fff;
    padding:10px 15px;
    border:none;
    cursor:pointer;
}

#sh-image-preview {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:10px;
}

.sh-img-box {
    position:relative;
    width:80px;
    height:80px;
}

.sh-img-box img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.sh-remove-img {
    position:absolute;
    top:0;
    right:5px;
    color:red;
    cursor:pointer;
    font-size:18px;
}


.sh-error-msg {
    font-size: 12px;
    color: #e53935;
    margin-top: 4px;
}

/* Input error highlight */
input:invalid,
textarea:invalid {
    border: 1px solid #e53935;
}

.sh-form-wrapper {
    font-family: Arial;
    padding: 10px;
}

.sh-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.sh-title {
    font-size: 22px;
    font-weight: 700;
    color: #141414;
}

.sh-desc {
    font-size: 13px;
    color: #666;
}

.sh-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.sh-row label {
    font-size: 13px;
    font-weight: 600;
    color: #141414;
}

.sh-row input,
.sh-row textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.sh-row textarea {
    min-height: 90px;
    resize: vertical;
}

.sh-row input:focus,
.sh-row textarea:focus {
    border-color: #923e9f;
    box-shadow: 0 0 0 2px rgba(146,62,159,0.15);
}

/* Submit Button */
.sh-submit-btn {
    width: 100%;
    padding: 12px;
    background: #923e9f;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.sh-submit-btn:hover {
    background: #7a2f84;
}

/* Image Preview */
#sh-image-preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.sh-img-box {
    position: relative;
    width: 70px;
    height: 70px;
}

.sh-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.sh-remove-img {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #923e9f;
    color: #fff;
    font-size: 14px;
    width: 18px;
    height: 18px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}