/* Modal ve genel kullanıcı arayüzü stilleri */
.haustiq-user-modal {display:none;position:fixed;z-index:9999;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,0.7);overflow:auto;}
.haustiq-user-modal-content {position:relative;background:#fff;margin:5% auto;padding:20px;width:90%;max-width:700px;border-radius:8px;box-shadow:0 4px 20px rgba(0,0,0,0.2);}
.haustiq-user-close {position:absolute;top:10px;right:20px;color:#aaa;font-size:28px;font-weight:bold;cursor:pointer;}
.haustiq-user-close:hover {color:#000;}
.haustiq-user-modal-image {width:100%;max-height:80vh;object-fit:contain;display:block;margin:0 auto;}

/* Kart stillerini standart hale getirme */
.haustiq-card {
    background:#fff;
    border-radius:10px;
    padding:30px;
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
    width:100%;
    border-top:3px solid #e1306c;
    position:relative;
    overflow:hidden;
    margin-bottom:40px;
    text-align:center;
}
.haustiq-card:last-child {
    margin-bottom:0;
}

/* Parlaklık animasyonu */
@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 200%;
    }
}

.shine-effect {
    animation: shine 3s infinite ease-in-out;
}

/* Mobil responsive tablo için */
@media screen and (max-width: 768px) {
    .shop_table {
        border-collapse: collapse;
        width: 100%;
        display: block;
    }
    
    .shop_table thead {
        display: none;
    }
    
    .shop_table tbody {
        display: block;
        width: 100%;
    }
    
    .shop_table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .shop_table td {
        display: flex;
        padding: 12px 8px !important;
        border-bottom: 1px solid #eee;
        justify-content: space-between;
        align-items: center;
        min-height: 35px;
    }
    
    .shop_table td:last-child {
        border-bottom: none;
    }
    
    .shop_table td::before {
        content: attr(data-title);
        font-weight: 600;
        width: 40%;
        text-align: left;
    }
    
    .shop_table td img {
        max-width: 60px !important;
    }
}

@media screen and (max-width: 576px) {
    .shop_table {
        font-size: 13px;
    }
    
    .shop_table td {
        padding: 10px 8px !important;
        flex-wrap: wrap;
    }
    
    .shop_table td::before {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .shop_table td img {
        max-width: 50px !important;
    }
    
    .haustiq-user-modal-content {
        width: 95%;
        padding: 15px;
    }
} 