/* Own listing indicator styles */
.own-listing-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    color: #000;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    z-index: 20;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Takas Rozeti - Fiyatın Altında */
.trade-badge-below-price {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-top: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Eski Takas Rozeti - Artık kullanılmıyor */
.trade-badge {
    position: absolute;
    top: 30px;
    right: 5px;
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* İlan Kartı Link Stili */
.listing-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.listing-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Ana sayfa ilan kartlari stilleri */
.ilan_div {
    background-color: rgb(30 30 31) !important;
    border: 1px solid rgb(45 45 47) !important;
    border-radius: 8px !important;
    padding: 12px !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer;
}

.ilan_div:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.ilan_div .img {
    width: 100%;
    height: 150px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.ilan_div .img img {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.ilan_div:hover .img img {
    transform: scale(1.05);
}

.vitrin_ilani {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 6px rgb(255 255 255 / 40%);
}

.ilan_div .user_info {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #ccc;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ilan_div .user_info a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ilan_div .user_info a:hover {
    color: #fff;
}

.ilan_div .user_info span {
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ilan_div .user_info img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.ilan_div .user_info .user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ilan_div .user_info .seller-label {
    font-size: 10px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ilan_div .ilan_title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.6em;
    word-wrap: break-word;
    min-height: 36px;
}

.ilan_div .ilan_desc {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ilan_div .ilan_price {
    color: #28a745;
    font-weight: bold;
    text-align: center;
    margin-top: auto;
}

/* İlan Fiyat Kutusu */
.listing-price-box {
    /* background: linear-gradient(135deg, #1e3a2e, #2d4a3e); */
    /* border: 1px solid #28a745; */
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.listing-price-box:hover {
    background: linear-gradient(135deg, #2d4a3e, #1e3a2e);
    border-color: #20c997;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.price-title {
    font-size: 10px;
    color: #8a8a8a;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.price-amount {
    font-size: 14px;
    color: #ffc107;
    font-weight: 700;
    line-height: 1.2;
}

/* Devamını oku span stili */
.read-more {
    color: #68747e;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
}

/* Açıklama kutusu footer */
.description-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Görüntülenme sayısı */
.view-count {
    display: flex;
    align-items: center;
    color: #8a9ba8;
    font-size: 10px;
    font-weight: 500;
    background: rgba(255,255,255,0.05);
    padding: 2px 6px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.view-count:hover {
    background: rgba(255,255,255,0.1);
    color: #17a2b8;
    transform: scale(1.05);
}

.view-count svg {
    color: #b8172a;
    flex-shrink: 0;
}

/* Chat Box Stilleri */
.chat-container {
    background: linear-gradient(135deg, #1e3a2e, #2d4a3e);
    border: 1px solid #28a745;
    border-radius: 8px;
    margin: 10px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    width: 60%;
    max-width: 600px;
}

.chat-container.collapsed {
    max-height: 50px;
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.chat-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
}

.chat-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.chat-messages {
    flex: 1;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: rgba(0,0,0,0.1);
}

.chat-message {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.chat-message:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(2px);
}

.chat-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.chat-username {
    font-weight: 600;
    color: #28a745;
    font-size: 12px;
}

.chat-time {
    font-size: 10px;
    color: #ccc;
}

.chat-content {
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    word-wrap: break-word;
}

.chat-input {
    padding: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 0 0 8px 8px;
}

.chat-input .input-group {
    display: flex;
    gap: 8px;
}

.chat-input .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
}

.chat-input .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    color: #fff;
}

.chat-input .form-control::placeholder {
    color: #ccc;
}

.chat-input .btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.chat-input .btn:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.chat-login-prompt {
    padding: 15px;
    text-align: center;
    background: rgba(0,0,0,0.2);
    border-radius: 0 0 8px 8px;
}

.chat-login-prompt p {
    color: #fff;
    font-size: 13px;
    margin: 0;
}

.chat-login-prompt a {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
}

.chat-login-prompt a:hover {
    color: #20c997;
    text-decoration: underline;
}

/* Chat Scrollbar */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(40, 167, 69, 0.5);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(40, 167, 69, 0.7);
}

/* Responsive Chat */
@media (max-width: 768px) {
    .chat-container {
        margin: 10px 10px;
        max-height: 350px;
        width: 95%;
        max-width: none;
    }
    
    .chat-messages {
        max-height: 250px;
        padding: 8px;
    }
    
    .chat-message {
        padding: 6px 10px;
        margin-bottom: 6px;
    }
    
    .chat-input {
        padding: 8px;
    }
    
    .chat-input .form-control {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .chat-input .btn {
        padding: 6px 10px;
    }
    
    /* Mobil cihazlarda trade badge pozisyonu */
    .trade-badge {
        top: 28px;
        right: 3px;
        font-size: 9px;
        padding: 3px 6px;
    }
    
    /* Mobil cihazlarda görüntülenme sayısı */
    .description-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .view-count {
        font-size: 9px;
        padding: 1px 4px;
    }
    
    .view-count svg {
        width: 10px;
        height: 10px;
    }
}

/* Navbar User Menu Sağa Dayalı */
.user_menu {
    margin-left: auto !important;
    justify-content: flex-end !important;
}

/* Responsive duzenlemeler */
@media (max-width: 1200px) {
    .ilan_div .img img {
        height: 130px;
    }
}

@media (max-width: 768px) {
    .ilan_div .img img {
        height: 120px;
    }
    
    .ilan_div .ilan_title {
        font-size: 13px;
        min-height: 36px;
        -webkit-line-clamp: 2;
        max-height: 2.6em;
    }
    
    .ilan_div .ilan_desc {
        font-size: 11px;
        min-height: 30px;
    }
    
    .listing-price-box {
        padding: 6px 10px;
        margin-top: 8px;
    }
    
    .price-title {
        font-size: 9px;
    }
    
    .price-amount {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .ilan_div .img img {
        height: 100px;
    }
    
    .vitrin_ilani {
        font-size: 8px;
        padding: 2px 6px;
    }
    
    .listing-price-box {
        padding: 5px 8px;
        margin-top: 6px;
    }
    
    .price-title {
        font-size: 8px;
    }
    
    .price-amount {
        font-size: 12px;
    }
}

/* Ilan Detay Bilgi Kartlari */
.listing-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.info-card {
    background: linear-gradient(135deg, #2a2a2a, #1e1e1f);
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #17a2b8, #20c997);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: #4a4a4a;
}

.info-card:hover::before {
    opacity: 1;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #17a2b8, #20c997);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-icon svg {
    color: white;
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
}

.info-card:hover .info-icon svg {
    transform: rotate(5deg);
}

.info-content {
    flex: 1;
    min-width: 0;
}

.info-label {
    font-size: 12px;
    color: #8a8a8a;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
}

/* Vitrin Ilani Ozel Kartı */
.featured-card {
    background: linear-gradient(135deg, #2d4a3e, #1e3a2e);
    border-color: #20c997;
}

.featured-card .info-icon {
    background: linear-gradient(135deg, #ffc107, #ff8c00);
}

.featured-card .info-value {
    color: #ffc107;
    font-weight: 700;
}

.featured-card:hover {
    border-color: #28a745;
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.2);
}

.featured-card:hover::before {
    background: linear-gradient(90deg, #ffc107, #ff8c00);
}

/* Ilan Aciklama Kutusu */
.listing-description-box {
    background: linear-gradient(135deg, #2a2a2a, #1e1e1f);
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* İlan detay başlık sınırlaması */
.ilan_icerik h1 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-word;
    max-height: 4.5em;
    line-height: 1.5;
}

/* İlan detay görselleri */
.swiper-thumbs .swiper-slide {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 80px !important;
    flex-shrink: 0;
}

.swiper-thumbs .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
}

.swiper-thumbs {
    overflow: visible !important;
    width: 100%;
}

.swiper-thumbs .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: auto !important;
    transform: none !important;
}

.swiper-thumbs .swiper-slide {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 80px !important;
    flex-shrink: 0;
    margin-right: 8px;
}

/* Breadcrumb başlık sınırlaması */
.navigation_bar span[itemprop="name"] {
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.swiper-thumbs .swiper-slide:hover {
    border-color: #ffc107;
    transform: scale(1.05);
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active {
    border-color: #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

/* Thumbnail container için ek stiller */
.product-gallery .swiper-thumbs {
    margin-top: 15px;
    padding: 0 10px;
}

.product-gallery .swiper-thumbs .swiper-wrapper {
    justify-content: flex-start;
    align-items: center;
}

/* Swiper navigation butonları */
.swiper-products .swiper-button-next,
.swiper-products .swiper-button-prev {
    color: #ffc107;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    transition: all 0.3s ease;
}

.swiper-products .swiper-button-next:hover,
.swiper-products .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.swiper-products .swiper-button-next:after,
.swiper-products .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.swiper-products .swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive thumbnail düzenlemesi */
@media (max-width: 768px) {
    .swiper-thumbs .swiper-slide {
        width: 60px !important;
        height: 60px;
    }
    
    .swiper-thumbs .swiper-slide img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .swiper-products .swiper-button-next,
    .swiper-products .swiper-button-prev {
        width: 30px;
        height: 30px;
        margin-top: -15px;
    }
    
    .swiper-products .swiper-button-next:after,
    .swiper-products .swiper-button-prev:after {
        font-size: 12px;
    }
}

.listing-description-box .description-content.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    word-wrap: break-word;
    word-break: break-word;
}

.listing-description-box:hover {
    border-color: #4a4a4a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.description-title {
    font-size: 16px;
    font-weight: 600;
    color: #cccccccf;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.description-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #6c757d, #6c757d);
    border-radius: 2px;
}

.description-content {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
    word-wrap: break-word;
}

/* Takas Aciklama Ozel Stili */
.trade-description-box {
    border-color: #20c997 !important;
    background: linear-gradient(135deg, #1e3a2e, #2d4a3e) !important;
}

.trade-description-box .description-title {
    color: #20c997 !important;
}

.trade-description-box .description-title::before {
    background: linear-gradient(135deg, #20c997, #28a745) !important;
}

.trade-description-box:hover {
    border-color: #28a745 !important;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.2) !important;
}

/* Responsive Tasarim */
@media (max-width: 768px) {
    .listing-info-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .info-card {
        padding: 14px;
        gap: 10px;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
    }
    
    .info-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .info-label {
        font-size: 11px;
    }
    
    .info-value {
        font-size: 13px;
    }
    
    .listing-description-box {
        padding: 16px;
    }
    
    .description-title {
        font-size: 15px;
    }
    
    .description-content {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .listing-info-cards {
        gap: 10px;
    }
    
    .info-card {
        padding: 12px;
        gap: 8px;
    }
    
    .info-icon {
        width: 32px;
        height: 32px;
    }
    
    .info-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .listing-description-box {
        padding: 14px;
    }
    
    .description-title {
        font-size: 14px;
    }
    
    .description-content {
        font-size: 12px;
    }
}

/* Diğer İlanlar Modal Stilleri */
.other-listing-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.other-listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.other-listing-card .card-img-top-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.other-listing-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.other-listing-card:hover .card-img-top {
    transform: scale(1.05);
}

.other-listing-card .card-img-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    padding: 4px 8px;
}

.other-listing-card .card-img-overlay .badge {
    font-size: 11px;
    font-weight: 500;
}

.other-listing-card .card-body {
    padding: 15px;
}

.other-listing-card .card-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 36px;
}

.other-listing-card .card-text {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 50px;
}

.other-listing-card .btn {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.other-listing-card .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Modal responsive */
@media (max-width: 768px) {
    .other-listing-card .card-img-top-container {
        height: 150px;
    }
    
    .other-listing-card .card-body {
        padding: 12px;
    }
    
    .other-listing-card .card-title {
        font-size: 13px;
        min-height: 32px;
    }
    
    .other-listing-card .card-text {
        font-size: 11px;
        min-height: 44px;
    }
}

/* Profil Sayfası Buton Hover Efektleri */
#btnActive:hover {
    background: linear-gradient(135deg, #ffb300, #ff6f00) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 193, 7, 0.4) !important;
    transition: all 0.3s ease;
}

#btnSold:hover {
    background: linear-gradient(135deg, #ff9800, #ff5722) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 179, 0, 0.4) !important;
    transition: all 0.3s ease;
}

#btnPurchased:hover {
    background: linear-gradient(135deg, #ff7043, #d84315) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 167, 38, 0.4) !important;
    transition: all 0.3s ease;
}

/* Buton ikonları için hover efekti */
#btnActive:hover i,
#btnSold:hover i,
#btnPurchased:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
