body {
    background: linear-gradient(135deg, #F4F6F9 0%, #E9ECEF 100%);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    font-size: 18px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.navbar {
    background: linear-gradient(to right, #1E90FF, #00B4DB);
    margin-bottom: 30px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.navbar-brand, .navbar-nav .nav-link {
    color: #fff;
    font-size: 18px;
}
.navbar-brand:hover, .navbar-nav .nav-link:hover {
    color: #f0f8ff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.results-layout {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.search-panel {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.search-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.search-panel.desktop {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.search-panel.filters {
    width: 100%;
    max-width: 300px;
    padding-right: 15px;
}
.search-panel h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2C3E50;
    border-bottom: 2px solid #F8E66C;
    display: inline-block;
    padding-bottom: 5px;
}
.filter-group {
    margin-bottom: 20px;
    position: relative;
}
.filter-group label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    color: #2C3E50;
    font-size: 18px;
}
.filter-group input, .filter-group select {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
}
.filter-group select {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat right 10px center;
    background-size: 16px;
    padding-right: 30px;
    min-width: 100%;
}
.filter-group input:focus, .filter-group select:focus {
    border-color: #1E90FF;
    box-shadow: 0 0 5px rgba(30, 144, 255, 0.3);
    outline: none;
}
.search-wrapper {
    position: relative;
}
.clear-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 14px;
    display: none;
    line-height: 1;
    z-index: 10;
}
.input-group {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
.price-input-wrapper {
    flex: 1;
    padding: 0 5px;
    position: relative;
    min-width: 120px;
}
.price-input-wrapper input {
    padding-right: 30px;
}
.currency-symbol {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 14px;
}
.btn-search {
    background: #F8E66C;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 25px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #000;
    width: 100%;
    cursor: pointer;
}
.btn-search:hover {
    background: #e6d85b;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.notification {
    display: none;
    color: #FF5555;
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    background: #FFF2F2;
    text-align: center;
}
.filter-strip {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.btn-filter {
    background: #fff;
    border: 1px solid #e9ecef;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
.filter-tags {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    flex-grow: 1;
    padding: 5px 0;
}
.filter-tags::-webkit-scrollbar {
    display: none;
}
.filter-tag {
    background: #f5f5f5;
    padding: 5px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    white-space: nowrap;
}
.filter-tag i {
    cursor: pointer;
    color: #666;
}
.filter-tag i:hover {
    color: #F8E66C;
}
.pagination-container {
    margin: 20px 0;
    text-align: center;
    position: sticky;
    bottom: 20px;
    background: #fff;
    z-index: 100;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 0;
    border-radius: 10px;
}
.pagination > li {
    display: inline;
}
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #333;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #e9ecef;
    font-size: 16px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #f0f0f0;
    border-color: #e9ecef;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #F8E66C;
    border-color: #F8E66C;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #e9ecef;
}
.mobile-filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1050;
    padding: 20px;
    overflow-y: auto;
    display: none;
}
.mobile-filter:not(.hidden) {
    display: block;
}
.mobile-filter .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}
.results-count {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}
#loading-indicator {
    text-align: center;
    margin: 20px 0;
    display: none;
}
#loading-indicator img {
    width: 32px;
    height: 32px;
}
#end-message {
    display: none;
    text-align: center;
    color: green;
    font-weight: bold;
    margin: 10px;
    font-size: 16px;
}
#icerik {
    max-width: 100%;
    padding: 0;
    font-size: 18px;
}
.card {
    transition: box-shadow 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    background: #fff;
    border: none;
    margin-bottom: 25px;
    padding: 25px;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.card .card-title {
    margin: 0;
    cursor: pointer;
    font-size: 26px;
    font-weight: 600;
    color: #2C3E50;
    border-bottom: 2px solid #F8E66C;
    padding-bottom: 5px;
    text-align: left;
}
.card-body p {
    color: #000 !important;
    font-size: 18px;
}
.insta-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    user-select: none;
    border-radius: 10px;
}
.insta-carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.insta-carousel-item {
    display: none;
    width: 100%;
    transition: opacity 0.3s ease;
}
.insta-carousel-item.active {
    display: block;
}
.insta-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    max-width: 100%;
    max-height: 500px;
    background: #fff;
}
.insta-fiyat-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(248, 230, 108, 0.9);
    color: #000;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    z-index: 10;
}
.insta-carousel-info {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    z-index: 10;
}
.insta-carousel-info .fa-camera {
    margin-right: 6px;
}
.insta-carousel-control-prev,
.insta-carousel-control-next {
    width: 40px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    border: none;
}
.insta-carousel:hover .insta-carousel-control-prev,
.insta-carousel:hover .insta-carousel-control-next {
    opacity: 0.8;
}
.insta-carousel-control-prev:hover,
.insta-carousel-control-next:hover {
    opacity: 1;
}
.insta-carousel-control-prev {
    left: 0;
}
.insta-carousel-control-next {
    right: 0;
}
.insta-control-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.insta-carousel-control-prev .insta-control-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></svg>');
}
.insta-carousel-control-next .insta-control-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8.59 16.59L10 18l6-6-6-6-1.41 1.41L13.17 12z"/></svg>');
}
.insta-carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 15;
}
.insta-carousel-indicators li {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}
.insta-carousel-indicators li.active {
    background: rgba(255, 255, 255, 1);
}
.results-container {
    flex: 1;
    padding-left: 15px;
    min-width: 0;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
@media (min-width: 769px) {
    .btn-filter, .mobile-filter {
        display: none;
    }
    .search-panel.filters {
        display: block;
        max-width: 300px;
    }
    .filter-strip {
        display: none;
    }
    .results-container {
        width: 100%;
        max-width: calc(100% - 315px);
        padding-left: 15px;
    }
    .insta-carousel {
        max-width: 600px;
        margin: 0 auto;
    }
    .insta-carousel-inner {
        height: 500px;
    }
    .insta-carousel-item {
        height: 500px;
        text-align: center;
    }
    .insta-img {
        max-height: 500px;
        width: auto;
        max-width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    footer {
        display: none !important;
    }
    .card {
        padding: 10px;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
    }
    .card .card-title {
        font-size: 22px;
    }
    .card-body p {
        font-size: 16px;
        color: #000;
    }
    .insta-carousel {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .insta-carousel-inner {
        width: 100%;
        max-height: 80vh;
        margin: 0;
    }
    .insta-carousel-item {
        width: 100%;
        height: auto;
        max-height: 80vh;
        margin: 0;
    }
    .insta-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 80vh;
        object-fit: cover;
        position: static;
        transform: none;
        margin: 0;
        padding: 0;
    }
    .insta-carousel-control-prev,
    .insta-carousel-control-next {
        width: 30px;
        height: 50px;
        opacity: 0.7;
    }
    .insta-control-icon {
        width: 20px;
        height: 20px;
    }
    .insta-carousel-indicators {
        bottom: 10px;
        z-index: 15;
    }
    .insta-carousel-indicators li {
        width: 6px;
        height: 6px;
        margin: 0 3px;
        background: rgba(255, 255, 255, 0.8);
    }
    .insta-carousel-indicators li.active {
        background: #fff;
    }
    .results-layout {
        flex-direction: column;
    }
    .search-panel.filters {
        display: none;
    }
    .filter-strip {
        display: flex;
    }
    .btn-filter {
        display: flex;
    }
    .results-container {
        padding: 0;
        width: 100%;
    }
    .pagination-container {
        margin: 10px 0;
    }
    .search-panel {
        padding: 15px;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
    }
    .search-panel h4 {
        font-size: 22px;
    }
    .filter-group label {
        font-size: 16px;
    }
    .filter-group input, .filter-group select {
        padding: 10px;
        font-size: 16px;
        height: 40px;
    }
    .filter-group select {
        min-height: 40px;
        background-size: 16px;
        padding-right: 30px;
    }
    .filter-group select option {
        font-size: 16px;
    }
    .btn-search {
        padding: 10px;
        font-size: 16px;
    }
    .notification {
        font-size: 14px;
    }
    .results-count {
        font-size: 14px;
    }
}
@media (max-width: 576px) {
    .input-group {
        flex-direction: column;
    }
    .price-input-wrapper {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
    .search-panel h4 {
        font-size: 18px;
    }
    .filter-strip {
        padding: 5px;
    }
    .btn-filter {
        padding: 4px 8px;
        font-size: 12px;
    }
}
.hidden {
    display: none !important;
}