/* ============================================================
   Presi Plugin – objednávkový formulár
   ============================================================ */

#presi-objednavka {
    font-family: 'Inter', sans-serif;
    max-width: 1100px;
    margin-inline: auto;
}

/* Zhrnutie objednávky */
.obj-zhrnutie {
    background: #f5f7f8;
    border: 1px solid #e8ecee;
    border-left: 4px solid #07627b;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.obj-zhrnutie h3 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #4a5c62;
    margin-bottom: .75rem;
}

.obj-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.obj-table td {
    padding: .3rem 0;
    vertical-align: top;
}

.obj-table td:first-child {
    color: #4a5c62;
    width: 140px;
}

/* Grid */
.obj-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 760px) {
    .obj-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.obj-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #e8ecee;
}

/* Fields */
.obj-field {
    margin-bottom: .875rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.obj-field label {
    font-size: .8rem;
    font-weight: 600;
    color: #0d1a1e;
}

.obj-field input[type="text"],
.obj-field input[type="email"],
.obj-field input[type="tel"],
.obj-field textarea {
    width: 100%;
    padding: .6rem .8rem;
    border: 2px solid #e8ecee;
    border-radius: 4px;
    font-size: .95rem;
    font-family: inherit;
    background: #fff;
    color: #0d1a1e;
    transition: border-color 150ms;
}

.obj-field input:focus,
.obj-field textarea:focus {
    outline: none;
    border-color: #07627b;
}

.obj-field textarea {
    resize: vertical;
}

.obj-field--sm {
    max-width: 120px;
}

.obj-row {
    display: flex;
    gap: .75rem;
}

.obj-row .obj-field { flex: 1; }

/* Checkbox */
.obj-checkbox {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    font-size: .9rem;
    cursor: pointer;
}

.obj-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #07627b;
    cursor: pointer;
}

/* Radio */
.obj-radio {
    margin-bottom: .75rem;
}

.obj-radio label {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    cursor: pointer;
    font-size: .9rem;
    line-height: 1.4;
}

.obj-radio input[type="radio"] {
    margin-top: .15rem;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: #07627b;
    cursor: pointer;
}

.obj-radio span em {
    display: block;
    font-style: normal;
    font-size: .8rem;
    color: #07627b;
    font-weight: 600;
}

/* Zhrnutie ceny */
.obj-ceny {
    background: #fff;
    border: 2px solid #e8ecee;
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.obj-ceny h3 {
    border: none;
    padding: 0;
    margin-bottom: .75rem;
    font-size: .9rem;
}

.obj-ceny__row {
    display: flex;
    justify-content: space-between;
    font-size: .875rem;
    padding: .3rem 0;
    color: #4a5c62;
    border-bottom: 1px solid #f0f0f0;
}

.obj-ceny__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: .75rem;
    margin-top: .25rem;
    font-weight: 700;
    font-size: 1rem;
}

.obj-ceny__total span:last-child {
    font-size: 1.5rem;
    color: #ef4023;
}

/* Submit */
.obj-submit {
    width: 100%;
    margin-top: 1.25rem;
    padding: .9rem 1.5rem;
    background: #ef4023;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Barlow Condensed', 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
    transition: background 200ms, transform 150ms;
}

.obj-submit:hover:not(:disabled) {
    background: #cc3319;
    transform: translateY(-2px);
}

.obj-submit:disabled {
    opacity: .65;
    cursor: not-allowed;
}

/* GDPR */
.obj-gdpr {
    font-size: .75rem;
    color: #9aacb3;
    text-align: center;
    margin-top: .75rem;
    line-height: 1.5;
}

/* Chyba */
.obj-chyba {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: .75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: .9rem;
}

/* Úspech */
.obj-uspech {
    text-align: center;
    padding: 4rem 2rem;
}

.obj-uspech__icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.obj-uspech h2 {
    margin-bottom: 1rem;
    color: #07627b;
}

.obj-uspech p {
    color: #4a5c62;
    font-size: 1rem;
    margin-bottom: .5rem;
}
