.store-order-form {
    margin: 2rem 0;
    border: 1px solid rgba(13, 95, 209, 0.14);
    border-radius: 8px;
    padding: 1.6rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 18px 42px rgba(10, 27, 49, 0.08);
}

.store-order-form-head {
    margin-bottom: 1.2rem;
}

.store-order-form-head span {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--accent-color);
    font-size: 0.88rem;
    font-weight: 900;
}

.store-order-form-head h3 {
    margin: 0 0 0.5rem;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.store-order-form-head p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.65;
}

.store-order-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}

.store-order-summary article {
    border: 1px solid rgba(255, 140, 47, 0.18);
    border-radius: 8px;
    padding: 0.95rem 1rem;
    background: linear-gradient(180deg, #fff8f1 0%, #ffffff 100%);
}

.store-order-summary strong {
    display: block;
    color: #b65400;
    font-size: 0.94rem;
    font-weight: 900;
}

.store-order-summary span {
    display: block;
    margin-top: 0.35rem;
    color: #5f6e7b;
    line-height: 1.55;
}

.store-order-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.store-order-form label {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.store-order-form input,
.store-order-form select,
.store-order-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 51, 102, 0.12);
    border-radius: 8px;
    padding: 0.82rem 0.9rem;
    background: #fff;
    color: var(--text-color);
    font: inherit;
    box-sizing: border-box;
}

.store-order-form input:focus,
.store-order-form select:focus,
.store-order-form textarea:focus {
    outline: none;
    border-color: #0f8dd8;
    box-shadow: 0 0 0 4px rgba(15, 141, 216, 0.12);
}

.store-order-highlight {
    margin: 0 0 1rem;
    border: 1px solid rgba(13, 95, 209, 0.12);
    border-left: 4px solid #ff8c2f;
    border-radius: 8px;
    padding: 1rem 1rem 1rem 1.1rem;
    background: #f8fbff;
}

.store-order-highlight strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 900;
}

.store-order-highlight ul {
    margin: 0.65rem 0 0;
    padding-left: 1rem;
    color: #5b6d7d;
    line-height: 1.65;
}

.store-order-agree {
    flex-direction: row !important;
    align-items: flex-start;
    color: var(--text-light) !important;
    font-weight: 700 !important;
}

.store-order-agree input {
    width: auto;
    margin-top: 0.28rem;
}

.store-hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.store-order-notice {
    margin: 1.5rem 0;
    border-radius: 8px;
    padding: 0.9rem 1rem;
    font-weight: 900;
}

.store-order-notice-success {
    border: 1px solid rgba(34, 197, 94, 0.28);
    background: #f0fdf4;
    color: #166534;
}

.store-order-notice-error {
    border: 1px solid rgba(220, 38, 38, 0.22);
    background: #fef2f2;
    color: #991b1b;
}

@media (max-width: 900px) {
    .store-order-summary {
        grid-template-columns: 1fr;
    }

    .store-order-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .store-order-form {
        padding: 1.1rem;
    }
}
