.floating-request-btn {
    position: fixed;
    bottom: 30px;
    left: 22px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6F00, #FF8F00);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}
.floating-request-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.6);
}
.floating-request-btn .tooltip {
    display: none;
}
.request-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    overflow-y: auto;
}
.modal-content {
    background: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #FF6F00;
}
.request-header {
    text-align: center;
    margin-bottom: 30px;
}
.request-header h2 {
    font-size: 32px;
    color: #FF6F00;
    margin-bottom: 15px;
    font-weight: 700;
}
.request-header p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
.request-options {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.request-btn {
    background: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FF6F00;
}
.request-btn:hover {
    background: #FF6F00;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.25);
}
.request-btn i {
    font-size: 22px;
}
.request-form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    margin: 0 auto;
    display: none;
}
.request-form.active {
    display: block;
}
.form-title {
    font-size: 24px;
    color: #FF6F00;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #555;
    font-size: 16px;
}
.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    background: #f9f9f9;
    transition: all 0.3s;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6F00;
    box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.1);
    background: white;
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.form-row .form-group {
    flex: 1;
}
.form-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}
.form-actions button {
    padding: 15px 35px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.submit-btn {
    background: linear-gradient(135deg, #FF6F00, #FF8F00);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}
.close-btn {
    background: #f0f0f0;
    color: #666;
}
.form-actions button:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}
.basket-link-input {
    position: relative;
}
.basket-link-input i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #FF6F00;
    font-size: 22px;
}
.basket-link-input input {
    padding-left: 60px;
}
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .request-options {
        flex-direction: column;
        align-items: center;
    }
    .request-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    .modal-content {
        margin: 10% 5%;
        width: 90%;
        padding: 20px;
    }
    .floating-request-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
.upload-btn-style {
    display: inline-block;
    background: linear-gradient(135deg, #FF6F00, #FF8F00);
    color: #fff;
    font-weight: bold;
    border-radius: 12px;
    padding: 10px 25px;
    cursor: pointer;
    margin-top: 4px;
    text-align: center;
    font-size: 16px;
    transition: 0.2s;
}
.upload-btn-style:hover {
    opacity: 0.93;
}
.selected-images-preview {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.selected-images-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #ddd;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.color-circle {
    width: 38px;          /* كان 28 أو 26px، اجعله أكبر */
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #FF6F00;
    display: inline-block;
    cursor: pointer;
    margin: 0 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: 0.2s;
}

.color-circle:hover {
    border: 3px solid #222;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
