.ptfc-wrap {
    max-width: 480px;
    margin: 0 auto;
}

.ptfc-message {
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: bold;
}

.ptfc-message--error {
    background: #fdecea;
    color: #c0392b;
    border: 1px solid #f5c6cb;
}

.ptfc-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ptfc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ptfc-field label {
    font-weight: bold;
    font-size: 0.95em;
}

.ptfc-field input[type="text"] {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

.ptfc-field input[type="text"]:focus {
    outline: none;
    border-color: #888;
}

.ptfc-autocomplete {
    position: relative;
}

.ptfc-suggestions {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    right: 0;
    margin: 4px 0 0;
    padding: 4px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.ptfc-suggestions li {
    padding: 8px 12px;
    font-size: 0.9em;
    cursor: pointer;
}

.ptfc-suggestions li:hover {
    background: #f0f4f2;
}

.ptfc-radio-group {
    display: flex;
    gap: 20px;
}

.ptfc-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: normal;
    font-size: 0.95em;
    cursor: pointer;
}

.ptfc-radio-label input {
    width: auto;
    margin: 0;
}

.ptfc-submit {
    padding: 14px 20px;
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05em;
    font-weight: bold;
    cursor: pointer;
}

.ptfc-submit:hover {
    background: #1b4332;
}

.ptfc-submit:disabled {
    opacity: 0.6;
    cursor: default;
}

.ptfc-result {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    background: #e6f4ea;
    border: 1px solid #b7e1c1;
    text-align: center;
}

@keyframes ptfc-result-in {
    0% {
        opacity: 0;
        transform: translateY(8px) scale(0.96);
    }
    60% {
        opacity: 1;
        transform: translateY(-2px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ptfc-result--animate {
    animation: ptfc-result-in 0.5s ease-out;
}

.ptfc-result--error {
    background: #fdecea;
    border: 1px solid #f5c6cb;
}

.ptfc-result-price {
    margin: 0;
    font-size: 1.3em;
    font-weight: bold;
    color: #1b4332;
}

.ptfc-result--error .ptfc-result-price {
    color: #c0392b;
    font-size: 1em;
}

.ptfc-disclaimer {
    margin-top: 12px;
    font-size: 0.8em;
    color: #888;
}

.ptfc-line-button {
    display: block;
    margin: 14px auto 0;
    padding: 12px 20px;
    max-width: 280px;
    background: #06c755;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 24px;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(6, 199, 85, 0.35);
}

.ptfc-line-button:hover {
    background: #05b34c;
}

@keyframes ptfc-line-button-in {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    60% {
        opacity: 1;
        transform: translateY(-2px) scale(1.03);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ptfc-line-button--animate {
    animation: ptfc-line-button-in 0.5s ease-out;
}

.ptfc-hidden {
    display: none !important;
}
