﻿li.yanyana {
    display: inline;
    list-style: none;
    margin-inline: 5px;
   /* font-size: 1rem;*/
}

li.baslik {
    list-style: none;
    padding: 5px;
    color:white;
}

.hdd {
    display: none;
}

.yazi {
    font-family: 'Bookman Old Style';
    font-weight: bold;
    font-size: large;
    color: white;
}

.kyazi {
    font-family: 'Bookman Old Style';
    font-weight: bold;
    font-size: large;
    color: white;
}

.syazi {
    font-family: 'Bookman Old Style';
    font-weight: bold;
    font-size: medium;
    color: white;
}
.nNoti {
    background-color: #5a9292;
}

.nMessages {
    background-color: #5a9292;
}

.nRMessages {
    background-color: #ff6a00;
}

.box--end {
    background: transparent;
    -webkit-transition: background 2s; /* For Safari */
    transition: background 2s
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-login:hover {
        background: rgba(255,255,255,0.15);
        border-color: #fff;
        transform: translateY(-1px);
    }

.btn-register {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: #fff;
    border: none;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

    .btn-register:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 6px 18px rgba(0,0,0,0.25);
        color: #fff;
    }

.star-rating {
    font-size: 28px;
    cursor: pointer;
}

.star {
    color: #ccc;
}

    .star.selected {
        color: gold;
    }
.swal2-container {
    z-index: 99999 !important;
}
.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    background-color: transparent;
    color: #ffffff;
}

    .form-select:disabled {
        color: #ffffff;
        opacity: 1;
    }



select option {
    background-color: #394243;
    color: #ffffff;
}
/*.form-select {
    background-image: url('../../images/white-arrow-png-41944.png');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    background-color: transparent;
    color: #ffffff;
}

    .form-select:disabled {
        background-image: url('../../images/white-arrow-png-41944.png');
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 16px 12px;
        background-color: transparent;
        color: #ffffff;
    }

select option {
    background-color: #394243;
    color: #ffffff;
}
*//* .card {
            position: inherit;
        }*/
.rating-star {
    font-size: 1.4rem;
    margin-right: 4px;
    position: relative;
    display: inline-block;
    color: #ccc; /* boş yıldız */
}

    .rating-star .fill {
        position: absolute;
        left: 0;
        top: 0;
        width: 0%;
        overflow: hidden;
        color: gold;
    }
.star-rating-premium {
    display: flex;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

/* STAR */
.star {
    width: 34px;
    height: 34px;
    position: relative;
    transition: transform 0.15s ease;
}

    /* BACK */
    .star::before {
        content: "★";
        position: absolute;
        font-size: 34px;
        color: #ddd;
    }

    /* FRONT */
    .star::after {
        content: "★";
        position: absolute;
        font-size: 34px;
        left: 0;
        top: 0;
        width: var(--fill, 0%);
        overflow: hidden;
        background: linear-gradient(45deg, #FFD700, #FFB300);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* HOVER EFFECT */
    .star:hover {
        transform: scale(1.2);
    }

    /* CLICK ANIMATION */
    .star.clicked {
        animation: pop 0.25s ease;
    }

@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.35);
    }

    100% {
        transform: scale(1);
    }
}

/* TEXT */
.rating-text {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
    color: white;
}
.comment-section {
    max-height: 400px;
    overflow-y: auto;
}
.skeleton {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
    background-size: 400% 100%;
    animation: shimmer 1.2s ease infinite;
    border-radius: 6px;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.skeleton-line {
    height: 12px;
    margin-bottom: 8px;
}

.new-comment {
    animation: fadeSlide 0.5s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #111;
    color: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 99999;
}

    .thank-you.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

.edit-star {
    font-size: 1.4rem;
    margin-right: 4px;
    position: relative;
    display: inline-block;
    color: #ccc;
}

.edit-star.active {
    color: #ffc107;
    transform: scale(1.1);
}

.edit-star.hover {
        color: #ffda6a;
       
        transform: scale(1.2)
    }


.erating-star {
    font-size: 1.4rem;
    margin-right: 4px;
    position: relative;
    display: inline-block;
    color: #ccc; /* boş yıldız */
}

    .erating-star .fill {
        position: absolute;
        left: 0;
        top: 0;
        width: 0%;
        overflow: hidden;
        color: gold;
    }

.estar-rating-premium {
    display: flex;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

/* STAR */
.estar {
    width: 34px;
    height: 34px;
    position: relative;
    transition: transform 0.15s ease;
}

    /* BACK */
    .estar::before {
        content: "★";
        position: absolute;
        font-size: 34px;
        color: #ddd;
    }

    /* FRONT */
    .estar::after {
        content: "★";
        position: absolute;
        font-size: 34px;
        left: 0;
        top: 0;
        width: var(--fill, 0%);
        overflow: hidden;
        transition: width 0.2s ease;
        background: linear-gradient(45deg, #FFD700, #FFB300);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* HOVER EFFECT */
    .estar:hover {
        transform: scale(1.2);
    }

    /* CLICK ANIMATION */
    .estar.clicked {
        animation: pop 0.25s ease;
    }

@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.35);
    }

    100% {
        transform: scale(1);
    }
}


@media (max-width: 768px) {
    .order-table thead,
    .order-table tfoot {
        display: none;
    }

    .order-table,
    .order-table tbody,
    .order-table tr,
    .order-table td {
        display: block;
        width: 100%;
    }

        .order-table tr {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 10px;
          
        }

        .order-table td {
            text-align: right !important;
            padding-left: 45%;
            position: relative;
            border: none;
            border-bottom: 1px solid #eee;
        }

            .order-table td::before {
                position: absolute;
                left: 10px;
                width: 40%;
                text-align: left;
                font-weight: bold;
            }

            .order-table td:nth-child(1)::before {
                content: "Oluşturulma Tarihi";
            }

            .order-table td:nth-child(2)::before {
                content: "Sipariş No";
            }

            .order-table td:nth-child(3)::before {
                content: "Durumu";
            }

            .order-table td:nth-child(4)::before {
                content: "Tutar";
            }

            .order-table td form,
            .order-table td button,
            .order-table td a {
                width: 100%;
                margin-top: 5px;
            }
}
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 1200px;
    background: rgba(33, 37, 41, .96);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,.35);
    z-index: 999999;
    padding: 15px;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.6;
}

.cookie-buttons {
    flex-shrink: 0;
}

.cookie-hide {
    opacity: 0;
    transform: translate(-50%, 150%);
    transition: all .3s ease;
}

/* Mobil */

@media (max-width: 768px) {

    .cookie-banner {
        bottom: 10px;
        width: calc(100% - 10px);
        padding: 12px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
    }

        .cookie-buttons .btn {
            width: 100%;
        }

    .cookie-text {
        font-size: 13px;
    }
}

.about-section {
    padding: 80px 20px;
    background-color: transparent;
    font-family: Arial, sans-serif;
    color: white;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 45px;
}

.about-badge {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 15px;
    background-color: #e0f2fe;
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.about-header h1 {
    font-size: 42px;
    margin: 0 0 15px;
    color: #0f172a;
}

.about-header p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-card,
.about-box,
.about-footer {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

    .about-card h2,
    .about-box h3 {
        margin-top: 0;
        margin-bottom: 12px;
        color: #0f172a;
    }

    .about-card p,
    .about-box p,
    .about-footer p {
        margin: 0;
        font-size: 16px;
        line-height: 1.8;
        color: #475569;
    }

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-footer {
    text-align: center;
    background: #0f172a;
}

    .about-footer p {
        color: #ffffff;
        font-size: 17px;
    }

@media (max-width: 768px) {
    .about-section {
        padding: 50px 15px;
    }

    .about-header h1 {
        font-size: 32px;
    }

    .about-header p {
        font-size: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card,
    .about-box,
    .about-footer {
        padding: 24px;
    }
}
.contact-section {
    padding: 80px 20px;
    
    font-family: Arial, sans-serif;
    color: white;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 45px;
}

.contact-badge {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 15px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.contact-header h1 {
    font-size: 42px;
    margin: 0 0 15px;
    color: #0f172a;
}

.contact-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
    align-items: stretch;
}

.contact-info,
.contact-form {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

    .contact-info h2 {
        margin-top: 0;
        margin-bottom: 14px;
        color: #0f172a;
        font-size: 28px;
    }

    .contact-info p {
        margin-bottom: 28px;
        color: #475569;
        line-height: 1.7;
    }

.contact-item {
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
}

    .contact-item:last-child {
        border-bottom: none;
    }

    .contact-item strong {
        display: block;
        margin-bottom: 6px;
        color: #0f172a;
        font-size: 15px;
    }

    .contact-item span {
        color: #475569;
        font-size: 16px;
    }

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: white;
        font-weight: 600;
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #d1d5db;
        border-radius: 12px;
        font-size: 15px;
        font-family: Arial, sans-serif;
        outline: none;
        box-sizing: border-box;
        transition: 0.2s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0369a1;
            box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.12);
        }

    .form-group textarea {
        resize: vertical;
    }

.contact-form button {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    background: #0f172a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

    .contact-form button:hover {
        background: #0369a1;
    }

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 15px;
    }

    .contact-header h1 {
        font-size: 32px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 24px;
    }
}
.contact-form,
.contact-form .card,
.contact-form .card-body,
.contact-form .bg-white,
.contact-form .bg-light {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}
/*.card{
    background-color:transparent;
}
.card-body{
    color:white;
}*/
/*
.expert-contact-card {
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    padding: 16px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.expert-contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 13px 0;
}

    .expert-contact-row:not(:last-child) {
        border-bottom: 1px solid rgba(255,255,255,.18);
    }

.expert-contact-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.expert-contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.expert-contact-title {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.75);
    margin-bottom: 2px;
}

.expert-contact-number {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

.expert-call-btn {
    background: #16a34a;
    color: #fff !important;
    border-radius: 10px;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: .2s;
}

    .expert-call-btn:hover {
        background: #15803d;
        color: #fff !important;
        transform: translateY(-1px);
    }

@media (max-width: 768px) {

    .expert-contact-row {
        flex-direction: column;
        align-items: stretch;
    }

    .expert-call-btn {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    .expert-contact-number {
        font-size: 17px;
    }
}
.expert-whatsapp-btn {
    background: #25D366;
    color: #fff !important;
    border-radius: 10px;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .expert-whatsapp-btn:hover {
        background: #1ebe5d;
        color: #fff !important;
    }*/
/*.card {
    background: rgba(20, 18, 32, .92);*/
/* border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.28);*/
/*}*/
/*.expert-contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
}

    .expert-contact-row:not(:last-child) {
        border-bottom: 1px solid rgba(255,255,255,.14);
    }*/

/*.expert-contact-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.expert-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-contact-title {
    color: rgba(255,255,255,.68);
    font-size: 13px;
    font-weight: 600;
}

.expert-contact-number {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
}

.expert-contact-actions {
    display: flex;
    gap: 8px;
}

.expert-call-btn,
.expert-whatsapp-btn {
    height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.expert-call-btn {
    background: #16a34a;
}

.expert-whatsapp-btn {
    background: #22c55e;
}

@media (max-width: 576px) {
    .expert-contact-row {
        flex-direction: column;
        align-items: stretch;
    }

    .expert-contact-actions {
        width: 100%;
    }

    .expert-call-btn,
    .expert-whatsapp-btn {
        flex: 1;
        justify-content: center;
    }
}*/
.live-support {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(37,211,102,.4);
    transition: all .3s ease;
}

    .live-support i {
        font-size: 32px;
    }

    .live-support:hover {
        color: #fff;
        transform: scale(1.08);
    }

.live-support-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    min-width: 230px;
    background: #fff;
    color: #222;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

    .live-support-tooltip strong {
        display: block;
        color: #25D366;
        font-size: 14px;
        margin-bottom: 3px;
    }

    .live-support-tooltip span {
        color: #666;
        font-size: 13px;
    }

    .live-support-tooltip::after {
        content: "";
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        border-left: 8px solid #fff;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }

.live-support:hover .live-support-tooltip,
.live-support.show-tooltip .live-support-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Hafif nabız efekti */
.live-support::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(37,211,102,.25);
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.ask-answer-card {
    background: rgba(15, 23, 42, .72);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 14px 35px rgba(0,0,0,.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ask-answer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

    .ask-answer-header h5 {
        color: #fff;
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .ask-answer-header p {
        color: rgba(255,255,255,.72);
        margin-bottom: 0;
    }

.ask-answer-header-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    background: rgba(255,255,255,.13);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.ask-question-form,
.ask-answer-form {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.ask-question-input,
.ask-answer-input {
    flex: 1;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.95);
    color: #111827;
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
}

.ask-question-btn,
.ask-answer-btn,
.ask-login-btn {
    border: none;
    border-radius: 12px;
    padding: 12px 17px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.ask-question-btn {
    background: #2563eb;
}

.ask-answer-btn {
    background: #16a34a;
}

.ask-login-btn {
    background: #2563eb;
}

.ask-login-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-radius: 15px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    margin-bottom: 18px;
}

.ask-login-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    color: #facc15;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.ask-login-content h6 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.ask-login-content p {
    color: rgba(255,255,255,.82);
    margin-bottom: 10px;
}

.ask-answer-item {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 12px;
}

.ask-question-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    gap: 9px;
    align-items: center;
}

    .ask-question-title i {
        color: #60a5fa;
    }

.ask-answer-reply {
    background: rgba(22,163,74,.16);
    border-left: 4px solid #22c55e;
    padding: 12px;
    border-radius: 10px;
}

    .ask-answer-reply span {
        display: block;
        color: #86efac;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .ask-answer-reply p {
        color: #fff;
        margin-bottom: 0;
    }

.ask-answer-pending {
    color: #fde68a;
    background: rgba(250,204,21,.12);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ask-empty-box {
    text-align: center;
    color: rgba(255,255,255,.75);
    padding: 20px;
}

    .ask-empty-box i {
        font-size: 32px;
        margin-bottom: 8px;
    }

@media (max-width: 768px) {
    .ask-question-form,
    .ask-answer-form {
        flex-direction: column;
    }

    .ask-question-btn,
    .ask-answer-btn {
        width: 100%;
        justify-content: center;
    }

    .ask-login-box {
        flex-direction: column;
        text-align: center;
    }
}
.ask-owner-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 14px;
    background: rgba(59, 130, 246, .18);
    border: 1px solid rgba(96, 165, 250, .35);
    color: #fff;
    font-weight: 600;
    margin-bottom: 18px;
}

    .ask-owner-box i {
        color: #93c5fd;
        font-size: 22px;
    }
@media (max-width: 576px) {

    .ask-answer-card {
        padding: 14px;
        border-radius: 14px;
    }

    .ask-answer-header {
        align-items: flex-start;
        margin-bottom: 14px;
    }

        .ask-answer-header h5 {
            font-size: 22px;
            margin-bottom: 4px;
        }

        .ask-answer-header p {
            font-size: 14px;
            line-height: 1.35;
        }

    .ask-answer-header-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
        font-size: 20px;
    }

    .ask-login-box {
        padding: 14px;
        gap: 12px;
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .ask-login-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 22px;
    }

    .ask-login-content h6 {
        font-size: 17px;
        line-height: 1.25;
    }

    .ask-login-content p {
        font-size: 14px;
        line-height: 1.35;
        margin-bottom: 10px;
    }

    .ask-login-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 12px;
        font-size: 15px;
    }
}
.whatsapp-support {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.whatsapp-icon {
    
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, .45);
    transition: .3s;
    animation: whatsappFloat 2.5s ease-in-out infinite;
    width: 70px !important;
    height: 70px !important;
}

.whatsapp-support .whatsapp-icon .fa-whatsapp {
    font-size: 58px !important;
}


.whatsapp-support:hover .whatsapp-icon {
    transform: scale(1.08);
}

.whatsapp-hover-text {
    position: absolute;
    right: 80px;
    background: #25D366;
    color: #fff;
    padding: 10px 15px;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: .3s;
}

.whatsapp-support:hover .whatsapp-hover-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-bubble {
    position: absolute;
    right: 0;
    bottom: 90px;
    background: #fff;
    color: #222;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    min-width: 210px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

    .whatsapp-bubble::after {
        content: "";
        position: absolute;
        right: 24px;
        bottom: -8px;
        border-top: 8px solid #fff;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
    }

.whatsapp-support.show-welcome .whatsapp-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: .35s;
}
@keyframes whatsappFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}