/* ===== FORM ORDER SECTION STYLES ===== */

.form-order-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(180deg, #fff5f0 0%, #ffeee5 30%, #fff8f3 70%, #fffaf5 100%);
    overflow: hidden;
    min-height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Background Shapes */
.form-order-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 154, 108, 0.12), rgba(255, 107, 107, 0.08));
    border-radius: 50%;
    z-index: 0;
}

.form-order-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 193, 150, 0.15), rgba(255, 154, 108, 0.1));
    border-radius: 50%;
    z-index: 0;
}

/* Extra decorative shape */
.form-order-shape {
    position: absolute;
    top: 40%;
    left: -80px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 220, 180, 0.12), rgba(255, 182, 125, 0.08));
    border-radius: 50%;
    z-index: 0;
}

.form-order-shape-2 {
    position: absolute;
    bottom: 30%;
    right: -60px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 200, 160, 0.1), rgba(255, 170, 120, 0.08));
    border-radius: 50%;
    z-index: 0;
}

/* Floating Stickers */
.form-order-floating-stickers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.form-order-sticker {
    position: absolute;
    opacity: 0.12;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.form-order-sticker-1 {
    width: 80px;
    top: 10%;
    left: 5%;
    animation: formFloat 8s ease-in-out infinite;
}

.form-order-sticker-2 {
    width: 70px;
    top: 15%;
    right: 8%;
    animation: formFloat 7s ease-in-out infinite 1s;
}

.form-order-sticker-3 {
    width: 60px;
    bottom: 20%;
    left: 10%;
    animation: formFloat 9s ease-in-out infinite 0.5s;
}

.form-order-sticker-4 {
    width: 65px;
    bottom: 15%;
    right: 12%;
    animation: formFloat 6s ease-in-out infinite 1.5s;
}

/* Header Text */
.form-order-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin-bottom: 40px;
}

.form-order-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.form-order-title .highlight {
    background: linear-gradient(135deg, #ff9a6c, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-order-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Form Container */
.form-order-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 550px;
}

/* Order Form Styling */
.order-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(107, 62, 38, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #6b3e26;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid #f0e0d8;
    border-radius: 12px;
    background: #fffaf8;
    color: #4a3728;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #ff9a6c;
    box-shadow: 0 0 0 4px rgba(255, 154, 108, 0.15);
    background: white;
}

.form-input::placeholder {
    color: #b5a095;
}

.form-hint {
    display: block;
    font-size: 0.82rem;
    color: #8b6f5c;
    margin-top: 6px;
}

/* Payment Options */
.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-option {
    cursor: pointer;
}

.payment-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    background: #fffaf8;
    border: 2px solid #f0e0d8;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.payment-option input:checked+.payment-card {
    border-color: #ff9a6c;
    background: linear-gradient(135deg, #fff5f0, #ffe8dd);
    box-shadow: 0 4px 15px rgba(255, 154, 108, 0.25);
}

.payment-card:hover {
    border-color: #ffb896;
    transform: translateY(-2px);
}

.payment-icon {
    font-size: 1.5rem;
}

.payment-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b3e26;
}

/* Order Summary */
.order-summary {
    background: linear-gradient(135deg, #fff5f0, #ffeee5);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #4a3728;
    border-bottom: 1px solid rgba(107, 62, 38, 0.1);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.bonus {
    font-size: 0.88rem;
    color: #8b6f5c;
}

.summary-row .free {
    color: #4caf50;
    font-weight: 700;
}

.summary-row.total {
    border-top: 2px solid rgba(107, 62, 38, 0.15);
    border-bottom: none;
    padding-top: 16px;
    margin-top: 8px;
}

.summary-row.total span {
    font-weight: 800;
    color: #6b3e26;
}

.total-price {
    font-size: 1.5rem;
    color: #ff6b6b !important;
}

/* Submit Button */
.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, #6b3e26 0%, #8b5a3e 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 62, 38, 0.35);
    font-family: inherit;
}

.submit-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(107, 62, 38, 0.45);
    background: linear-gradient(135deg, #5a3420 0%, #7a4a2e 100%);
}

.submit-cat {
    width: 32px;
    height: auto;
    animation: wiggle 1s ease-in-out infinite;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

/* Secure Text */
.form-secure {
    text-align: center;
    font-size: 0.85rem;
    color: #8b6f5c;
    margin-top: 20px;
}

/* Float Animation */
@keyframes formFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-order-section {
        padding: 80px 15px;
        min-height: auto;
    }

    .form-order-title {
        font-size: 1.6rem;
    }

    .form-order-subtitle {
        font-size: 1rem;
    }

    .order-form {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .form-input {
        padding: 14px 16px;
    }

    .payment-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-card {
        padding: 14px 10px;
    }

    .order-summary {
        padding: 20px;
    }

    .summary-row {
        font-size: 0.9rem;
    }

    .total-price {
        font-size: 1.3rem;
    }

    .submit-button {
        padding: 18px 24px;
        font-size: 1.1rem;
    }

    .submit-cat {
        width: 28px;
    }

    .form-order-sticker-1 {
        width: 60px;
    }

    .form-order-sticker-2 {
        width: 55px;
    }

    .form-order-sticker-3 {
        width: 45px;
    }

    .form-order-sticker-4 {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .form-order-section {
        padding: 60px 15px;
    }

    .form-order-title {
        font-size: 1.4rem;
    }

    .order-form {
        padding: 24px 16px;
    }

    .payment-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .payment-card {
        padding: 12px 8px;
    }

    .payment-icon {
        font-size: 1.3rem;
    }

    .payment-name {
        font-size: 0.75rem;
    }

    .form-order-sticker-1,
    .form-order-sticker-2 {
        width: 50px;
    }

    .form-order-sticker-3,
    .form-order-sticker-4 {
        width: 40px;
    }
}