/* Product WhatsApp Button */
.wpt-whatsapp-button-wrapper {
    margin: 15px 0;
}

.wpt-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none !important;
    font-weight: 600;
    line-height: 1.3;
    transition: .2s ease;
    border: none;
    cursor: pointer;
}

.wpt-whatsapp-button:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.wpt-whatsapp-button span {
    color: inherit;
}

.wpt-full-width {
    width: 100%;
    box-sizing: border-box;
}

.wpt-icon {
    font-size: 18px;
}

.wpt-style-custom {
    color: #fff !important;
}

.wpt-style-whatsapp {
    background: #25D366;
    color: #fff !important;
    border-radius: 8px;
}

.wpt-style-dark {
    background: #111;
    color: #fff !important;
    border-radius: 6px;
}

.wpt-style-outline {
    background: transparent;
    color: #25D366 !important;
    border: 2px solid #25D366;
    border-radius: 8px;
}

.wpt-style-outline:hover {
    background: #25D366;
    color: #fff !important;
}

.wpt-style-premium {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    border-radius: 999px;
    padding-left: 24px;
    padding-right: 24px;
    box-shadow: 0 8px 18px rgba(37, 211, 102, .25);
}

/* Floating Contact Menu */
.wpt-floating-menu {
    position: fixed;
    z-index: 99999;
}

.wpt-floating-trigger {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

.wpt-floating-trigger:hover {
    transform: translateY(-2px);
    opacity: .92;
}

.wpt-floating-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .2s ease;
    pointer-events: none;
}

.wpt-floating-open .wpt-floating-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.wpt-floating-action {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 165px;
    padding: 12px 14px;
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,.16);
    transition: .2s ease;
}

.wpt-floating-action:hover {
    transform: translateY(-2px);
    opacity: .92;
}

.wpt-floating-action span {
    font-size: 18px;
    line-height: 1;
}

.wpt-floating-left .wpt-floating-actions {
    align-items: flex-start;
}

.wpt-floating-right .wpt-floating-actions {
    align-items: flex-end;
}

@media (max-width: 768px) {
    .wpt-floating-hide-mobile {
        display: none !important;
    }

    .wpt-floating-action {
        min-width: 150px;
        padding: 11px 13px;
    }
}


/* Quote Modal */
.wpt-modal {
    display: none;
}

.wpt-modal.wpt-modal-open {
    display: block;
}

.wpt-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 100000;
}

.wpt-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(92vw, 460px);
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    z-index: 100001;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.wpt-modal-content h3 {
    margin: 0 0 8px;
}

.wpt-modal-content p {
    margin: 0 0 18px;
    color: #555;
}

.wpt-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.wpt-quote-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.wpt-quote-form input,
.wpt-quote-form textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 12px;
    box-sizing: border-box;
}

.wpt-kvkk {
    display: flex !important;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    font-weight: 400 !important;
}

.wpt-kvkk input {
    width: auto;
    margin-top: 3px;
}

.wpt-submit-btn {
    width: 100%;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 18px;
    font-weight: 700;
    cursor: pointer;
}

.wpt-submit-btn:hover {
    opacity: .92;
}