.wco-wrap {
    max-width: 780px;
    margin: 42px auto;
    padding: 34px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wco-wrap * {
    box-sizing: border-box;
}

.wco-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wco-wrap h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.15;
    color: #111827;
    font-weight: 850;
}

.wco-intro,
.wco-wrap p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.65;
}

.wco-form {
    margin-top: 24px;
}

.wco-field {
    margin-bottom: 18px;
}

.wco-field label,
.wco-section-title {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
    color: #111827;
    font-size: 14px;
}

.wco-field input,
.wco-field textarea,
.wco-field select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    font-size: 15px;
    background: #fff;
    color: #111827;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wco-field input:focus,
.wco-field textarea:focus,
.wco-field select:focus {
    border-color: #111827;
    box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.08);
}

.wco-field textarea {
    min-height: 115px;
    resize: vertical;
}

.wco-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    padding: 14px 24px;
    background: #111827;
    color: #ffffff !important;
    font-weight: 850;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s ease;
}

.wco-button:hover {
    background: #000000;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.wco-products {
    margin: 22px 0;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.wco-product-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 124px;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.wco-product-row:last-child {
    border-bottom: none;
}

.wco-product-title {
    font-weight: 800;
    color: #111827;
    line-height: 1.35;
}

.wco-product-meta {
    color: #6b7280;
    font-size: 13px;
    margin-top: 3px;
}

.wco-check-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.wco-check-wrap input {
    width: 20px;
    height: 20px;
    accent-color: #111827;
}

.wco-qty label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 800;
}

.wco-qty input {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
}

.wco-alert {
    padding: 15px 17px;
    border-radius: 16px;
    margin: 20px 0;
    font-weight: 700;
    line-height: 1.55;
}

.wco-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.wco-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.wco-summary,
.wco-consent-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
    margin: 22px 0;
    color: #111827;
}

.wco-summary span,
.wco-consent-box p {
    color: #4b5563;
}

@media (max-width: 680px) {
    .wco-wrap {
        padding: 24px;
        margin: 24px 0;
        border-radius: 18px;
    }

    .wco-product-row {
        grid-template-columns: 28px 1fr;
    }

    .wco-qty {
        grid-column: 2;
    }
}
