/* Kontakt — Sklep Manawa Flow */

.contact-hero {
    padding-top: calc(var(--page-top) + 20px);
    padding-bottom: 48px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(106, 13, 173, 0.06) 0%, transparent 70%);
}

.contact-hero .hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.contact-hero .hero-desc {
    font-size: 1.05rem;
    color: var(--color-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-section {
    padding-bottom: 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

.msg-box {
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 500;
}
.msg-box.success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.msg-box.error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

.form-heading {
    font-family: var(--font-head);
    font-size: 1.75rem;
    color: var(--color-accent-1);
    margin-bottom: 28px;
    font-weight: 700;
}

.shop-contact-form .form-group { margin-bottom: 22px; }
.shop-contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent-1);
    margin-bottom: 8px;
    font-family: var(--font-head);
}

.shop-contact-form input,
.shop-contact-form textarea,
.shop-contact-form .form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.shop-contact-form input:focus,
.shop-contact-form textarea:focus,
.shop-contact-form .form-select:focus {
    border-color: var(--color-accent-1);
    box-shadow: 0 0 0 1px var(--color-accent-1);
}

.legal-block {
    margin: 28px 0 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border-soft);
}

.legal-text {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.legal-text a {
    color: var(--color-accent-1);
    font-weight: 600;
    text-decoration: underline;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #cbd5e1;
}

.checkbox-container input:checked ~ .checkmark {
    background: var(--color-accent-1);
    border-color: var(--color-accent-1);
}

.checkmark:after {
    content: '';
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after { display: block; }

.full-width { width: 100%; display: block; text-align: center; }

.sidebar-info {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-accent-1) 55%, var(--color-accent-2) 100%);
    padding: 36px;
    color: #fff;
    box-shadow: var(--shadow-hover);
}

.sidebar-info h3 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.divider {
    width: 48px;
    height: 3px;
    background: var(--color-gold);
    margin-bottom: 28px;
}

.info-group { margin-bottom: 18px; }

.info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.65;
    margin-bottom: 4px;
    font-family: var(--font-head);
    font-weight: 600;
}

.info-text, .info-link {
    display: block;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
}

.info-link:hover { color: var(--color-gold); }

@media (max-width: 992px) {
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .info-column { order: -1; }
}
