/* Genel stiller */
body {
    background-color: #f1f1f1;
    font-family: Arial, sans-serif;
}

.container {
    /*background-color: #fff;*/
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Navbar stili */
.navbar {
    background: linear-gradient(to bottom, #333 0%, #222 100%);
    border-bottom: 3px solid #0070c9;
}

.navbar.scrolled {
    /* padding: 0.3rem 0; */
}

.navbar-brand {
    font-weight: bold;
    font-size: 24px;
}

/* Kart stili */
.card {
    transition: transform 0.2s;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 280px;
    object-fit: contain;
    padding: 1rem;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.card-body {
    padding: 1.25rem;
    /*background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);*/
}

.card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #0070c9;
    margin-bottom: 0.75rem;
}

.card-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    padding: 0.5rem;
}

.price.discounted {
    color: #ff4e50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Buton stili */
.btn-primary {
    background: linear-gradient(to bottom, #0070c9 0%, #005baa 100%);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #005baa 0%, #004a8c 100%);
}

/* Modal stili */
.modal-content {
    border: none;
    border-radius: 12px;
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.main-image-container {
    text-align: center;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

#modalImage {
    max-height: 400px;
    width: auto;
    object-fit: contain;
}

.thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.thumbnail.active {
    border-color: #0070c9;
}

.specs-list {
    list-style: none;
    padding: 0;
}

.specs-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.specs-list li:last-child {
    border-bottom: none;
}

.modal-price-container {
    margin-top: 2rem;
    text-align: center;
}

.modal-old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-right: 10px;
}

.modal-price {
    color: #ff4e50;
    font-size: 2rem;
    font-weight: bold;
}

.modal-discount-badge {
    background: linear-gradient(45deg, #ff4e50, #f9d423);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 10px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .card-img-top {
        height: 220px;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .specs-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .specs-list strong {
        margin-bottom: 0.25rem;
    }
}

/* Özellikler tablosu */
.specs-table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: separate;
    border-spacing: 0;
}

.specs-table th,
.specs-table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.specs-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.specs-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.specs-table tr:hover {
    background-color: #f2f2f2;
}

/* Logo stili */
.navbar-brand img {
    filter: brightness(0) invert(1); /* Beyaz logo için */
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

/* Header ve Navbar stilleri */
header {
    background: linear-gradient(135deg, #00123a 0%, #001f5c 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: #4a9eff;
    transform: translateY(-1px);
}

.navbar-brand i {
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

/* Arama kutusu */
.search-container {
    position: relative;
    width: 300px;
}

.search-container input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.search-container input::placeholder {
    color: rgba(255,255,255,0.6);
}

.search-container input:focus {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 0 3px rgba(74,158,255,0.2);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.6);
    pointer-events: none;
}

/* Karşılaştırma butonu */
.btn-compare {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-compare:not(:disabled):hover {
    background: rgba(74,158,255,0.2);
    border-color: rgba(74,158,255,0.4);
    color: #fff;
    transform: translateY(-1px);
}

.btn-compare:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#compareCount {
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.9rem;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .search-container {
        width: 200px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .btn-compare {
        padding: 0.5rem 1rem;
    }
}

/* Resim galerisi stilleri */
.main-image-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.zoom-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.magnifier {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    background-repeat: no-repeat;
    box-shadow: 0 0 0 7px rgba(255,255,255,0.85),
                0 0 7px 7px rgba(0,0,0,0.25);
    transition: opacity 0.2s;
}

.thumbnail-container {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnails {
    display: flex;
    gap: 10px;
    min-width: min-content;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.thumbnail:hover {
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: #0070c9;
}

/* Modal boyutunu artır */
@media (min-width: 992px) {
    .modal-lg {
        max-width: 900px;
    }
}

/* İndirim rozeti */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff4e50, #f9d423);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(5deg);
}

.discount-text {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}

.discount-label {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Fiyat stilleri */
.price-container {
    text-align: center;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin: 0;
}

.price {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    padding: 0.5rem;
}

.price.discounted {
    color: #ff4e50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Modal fiyat stilleri */
.modal-price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.modal-old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.3rem;
    order: 1;
}

.modal-price {
    color: #ff4e50;
    font-size: 1.8rem;
    font-weight: bold;
    order: 2;
}

.modal-discount-badge {
    background: linear-gradient(45deg, #ff4e50, #f9d423);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    order: 3;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hover efektleri */
.card:hover .discount-badge {
    transform: rotate(0deg) scale(1.1);
    transition: transform 0.3s ease;
}

.price.discounted {
    animation: pulse 2s infinite;
}

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

/* Karşılaştırma checkbox stilleri */
.compare-checkbox {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: rgba(255,255,255,0.9);
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Karşılaştırma tablosu stilleri */
.comparison-table {
    margin-top: 20px;
}

.comparison-image {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.comparison-phone-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.comparison-discount {
    color: #ff4e50;
    font-weight: bold;
    font-size: 0.9rem;
}

.comparison-table th {
    min-width: 200px;
    text-align: center;
    vertical-align: top;
    background: #f8f9fa;
}

.comparison-table td {
    text-align: center;
}

.comparison-table tr:hover {
    background-color: #f5f5f5;
}

/* Karşılaştırma butonu stilleri */
#compareButton {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: linear-gradient(45deg, #0070c9, #005baa);
    color: white;
    border: none;
}

#compareButton:disabled {
    opacity: 0.6;
    background: #6c757d;
}

#compareCount {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Mobil ekran için karşılaştırma butonu düzenlemeleri */
@media (max-width: 768px) {
    .navbar .d-flex {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    #compareButton {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        width: auto;
        min-width: auto;
    }

    #compareButton .fas {
        font-size: 0.9rem;
    }

    #compareCount {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }

    /* Arama kutusu ve karşılaştırma butonu düzeni */
    .search-container {
        flex: 1 1 auto;
        min-width: 200px;
    }

    .btn-compare {
        flex: 0 0 auto;
    }
}

/* Modal boyutu */
.modal-xl {
    max-width: 1200px;
}

/* Marka dropdown stilleri */
.dropdown-menu {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 0.5rem;
}

.dropdown-item {
    color: #333;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(74,158,255,0.1);
    color: #4a9eff;
    transform: translateX(5px);
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(0,0,0,0.1);
}

/* Karşılaştırma checkbox'ı düzenlemeleri */
.compare-checkbox {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: rgba(255,255,255,0.95);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.compare-check {
    margin-right: 5px;
}

.form-check-label {
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
}

/* Üst bilgi çubuğu stilleri */
.top-bar {
    background: rgba(255,255,255,0.1);
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.contact-info a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.address-info {
    color: rgba(255,255,255,0.8);
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.address-info i,
.contact-info i {
    color: #4a9eff;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
    }
    
    .contact-info,
    .address-info {
        justify-content: center;
        text-align: left;
        padding: 5px 0;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .address-info {
        justify-content: center;
    }
}

/* Satıldı rozeti */
.sold-out-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #fff;
}

/* Satıldı durumunda kart stilleri */
.card.sold-out .card-img-top {
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.card.sold-out .card-body {
    opacity: 0.7;
}

.card.sold-out .btn-primary {
    background: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
}

.card.sold-out .btn-primary:hover {
    background: #5a6268;
    border-color: #545b62;
}

/* Satıldı hover efekti */
.card.sold-out:hover .card-img-top {
    opacity: 0.7;
}

.sold-out-badge {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: translate(-50%, -50%) rotate(-25deg) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) rotate(-25deg) scale(1.05);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-25deg) scale(1);
    }
}

.phone-specs {
    margin: 10px 0;
}

.phone-specs .badge {
    font-size: 0.8rem;
    font-weight: normal;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-title {
    margin-bottom: 0.5rem;
}

.price-container {
    margin-top: auto;
}

/* Modal fiyat bölümü stilleri */
.modal-price-section {
    margin-top: 2rem;
}

.modal-price-container {
    display: flex;
    justify-content: center;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.modal-old-price {
    color: #dc3545;
    text-decoration: line-through;
    font-size: 1.4rem;
    opacity: 0.7;
}

.modal-price {
    color: #28a745;
    font-size: 2rem;
    font-weight: bold;
}

.modal-discount-badge {
    background: linear-gradient(45deg, #ff4e50, #f9d423);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .price-item {
        padding: 0.8rem 1.5rem;
        gap: 0.8rem;
    }

    .modal-old-price {
        font-size: 1.2rem;
    }

    .modal-price {
        font-size: 1.6rem;
    }

    .modal-discount-badge {
        font-size: 1rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Fiyat bandı stilleri */
.price-banner {
    background: #f8f9fa;
    padding: 0.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.price-banner .old-price {
    color: #dc3545;
    text-decoration: line-through;
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
}

.price-banner .current-price {
    color: #28a745;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-banner .current-price.discounted {
    color: #dc3545;
}

.price-banner .discount-tag {
    background: linear-gradient(45deg, #ff4e50, #f9d423);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-footer {
    background: transparent;
    border-top: none;
    padding: 1rem;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .price-banner .current-price {
        font-size: 1.2rem;
    }

    .price-banner .old-price {
        font-size: 0.8rem;
    }

    .price-banner .discount-tag {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    body {
        /* padding-top: calc(48px + 1rem); */
    }
}

/* Karşılaştırma tablosu responsive stilleri */
@media (max-width: 768px) {
    .comparison-table {
        display: block;
        width: 100%;
    }

    .comparison-table thead,
    .comparison-table tbody {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 1rem;
        border-bottom: 1px solid #dee2e6;
    }

    .comparison-table th,
    .comparison-table td {
        display: block;
        width: 100%;
        text-align: center;
        border: none;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        background: #f8f9fa;
        font-weight: bold;
        width: 100%;
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .comparison-image {
        width: 80px;
        height: auto;
        margin: 0 auto 0.5rem auto;
    }

    .comparison-phone-name {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .comparison-discount {
        font-size: 0.8rem;
    }

    /* Modal boyutunu ayarla */
    .modal-xl {
        max-width: 100%;
        margin: 0.5rem;
    }

    .modal-body {
        padding: 1rem;
    }

    /* Tablo içeriğini daha kompakt yap */
    .comparison-table td, 
    .comparison-table th {
        padding: 0.5rem;
    }
} 

/* WhatsApp link stili */
.whatsapp-link {
    color: rgba(255,255,255,0.8) !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #25D366 !important;
    transform: translateY(-1px);
}

.whatsapp-link i {
    color: #25D366;
    font-size: 1.2rem;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .whatsapp-link {
        background: #25D366;
        color: white !important;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 500;
    }
    
    .whatsapp-link i {
        color: white;
    }
    
    .whatsapp-link:hover {
        background: #128C7E;
        color: white !important;
    }
} 


/* Üst bilgi çubuğu mobil düzenlemeleri */
@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
        background: #333;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .contact-info a {
        background: rgba(255,255,255,0.1);
        padding: 8px 15px;
        border-radius: 20px;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .address-info {
        text-align: center;
        justify-content: center;
        padding-top: 10px;
        font-size: 0.9rem;
    }
    
    /* WhatsApp butonu mobilde daha belirgin */
    .whatsapp-link {
        background: #25D366 !important;
        color: white !important;
        font-weight: 500;
    }
    
    .whatsapp-link i {
        color: white;
    }
    
    /* Navbar mobil düzenlemesi */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
    
    .search-container {
        width: 100%;
        margin: 10px 0;
    }
    
    .search-container input {
        width: 100%;
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 375px) {
    .contact-info a {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .address-info {
        font-size: 0.85rem;
    }
} 


/* Navbar mobil düzenlemeleri */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0;
        color: white;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-collapse {
        background: rgba(0,0,0,0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
    
    .navbar-nav {
        gap: 15px;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .search-container {
        width: 100%;
        margin: 10px 0;
    }
    
    .search-container input {
        width: 100%;
    }
    
    .btn-compare {
        width: 100%;
        margin: 5px 0;
        justify-content: center;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        width: 100%;
        margin-top: 5px;
    }
    
    /* Navbar içindeki butonların hover efekti */
    .btn-compare:hover,
    .dropdown-toggle:hover {
        transform: none;
        background: rgba(255,255,255,0.1);
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 375px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .btn-compare,
    .dropdown-toggle {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* Navbar buton stilleri */
.btn-compare {
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-compare:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}

#compareCount {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.9rem;
} 