/** Fast Order Telegram CSS */
.fastordertelegram-btn-container {
    margin-top: 15px;
    margin-bottom: 25px;
}

.fastordertelegram-btn {
    background: #ffffff;
    border: 2px solid #333333;
    color: #333333;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fastordertelegram-btn:hover {
    background: #f8f9fa;
    border-color: #111111;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fastordertelegram-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
    color: #FF416C;
}

/* Modal Overlay */
.fastorder-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fastorder-modal-overlay.show {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

/* Modal Content */
.fastorder-modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 480px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fastorder-modal-overlay.show .fastorder-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Close Button */
.fastorder-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.fastorder-modal-close:hover {
    color: #FF416C;
}

/* Header */
.fastorder-modal-header h3 {
    margin-top: 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
}

.fastorder-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Product Card */
.fastorder-product-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #edf2f7;
}

.fastorder-product-card img {
    max-height: 100px;
    object-fit: contain;
}

#fastorder-product-name {
    font-size: 1.3rem;
}

#fastorder-product-combo {
    font-size: 1.05rem;
}

.fastorder-price {
    color: #FF416C;
    font-size: 1.4rem;
}

/* Input */
.fastorder-input {
    border-radius: 10px;
    border: 2px solid #cbd5e0;
    padding: 16px 20px;
    font-size: 1.2rem;
    transition: all 0.2s;
    background: #fdfdfd;
}

.fastorder-input::placeholder {
    color: #a0aec0;
}

.fastorder-input:focus {
    border-color: #FF416C;
    box-shadow: 0 0 0 3px rgba(255, 65, 108, 0.15);
    background: #fff;
    outline: none;
}

/* Submit Button */
.fastorder-submit-btn {
    border-radius: 10px;
    padding: 18px;
    font-weight: bold;
    font-size: 1.25rem;
    background: #FF416C;
    border: none;
    color: #fff;
    position: relative;
    transition: all 0.3s;
}

.fastorder-submit-btn:hover {
    background: #FF4B2B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 65, 108, 0.3);
}

.fastorder-submit-btn:disabled {
    background: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#fastorder-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
