/* AVM Magazalar CSS - Test Kuralı */
.avm-magazalar-test {
    background-color: #c3002f !important;
    color: white !important;
    padding: 10px !important;
    text-align: center !important;
    font-weight: bold !important;
    margin: 10px 0 !important;
    border-radius: 8px !important;
}

/* Search Container Styles */
.search-container {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(195, 0, 47, 0.1);
}

.search-input:focus {
    outline: none;
    border-color: #c3002f;
    box-shadow: 0 6px 25px rgba(195, 0, 47, 0.2);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #c3002f;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
}

.search-input:focus + .search-icon {
    transform: translateY(-50%) scale(1.1);
    color: #c3002f;
}

.search-animation {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #c3002f, #ff512f);
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.search-input:focus ~ .search-animation {
    width: 80%;
}

/* Category Swiper Styles */
.category-swiper-container {
    position: relative;
    padding: 0 50px;
}

.category-swiper {
    padding: 10px 0;
}

.category-swiper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
}

.category-swiper-next,
.category-swiper-prev {
    background: rgba(195, 0, 47, 0.8);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.category-swiper-next:hover,
.category-swiper-prev:hover {
    background: rgba(195, 0, 47, 1);
    transform: scale(1.1);
}

.category-swiper-next::after,
.category-swiper-prev::after {
    font-size: 14px;
    font-weight: bold;
}

/* Category Filter Buttons */
.category-filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    margin: 0 5px;
    cursor: pointer;
}

.category-filter-btn:hover {
    border-color: #c3002f;
    color: #c3002f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(195, 0, 47, 0.2);
}

.category-filter-btn.active {
    background: #c3002f;
    border-color: #c3002f;
    color: white;
    box-shadow: 0 4px 15px rgba(195, 0, 47, 0.3);
}

/* Store Cards */
.store-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(195, 0, 47, 0.2);
    border-color: #c3002f;
}

.store-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.store-card:hover .store-image {
    transform: scale(1.1);
}

.store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(195, 0, 47, 0.8), rgba(255, 81, 47, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-card:hover .store-overlay {
    opacity: 1;
}

.store-overlay-btn {
    background: white;
    color: #c3002f;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    transform: translateY(20px);
}

.store-card:hover .store-overlay-btn {
    transform: translateY(0);
}

.store-overlay-btn:hover {
    background: #c3002f;
    color: white;
    transform: scale(1.05);
}

.store-content {
    padding: 1.5rem;
}

.store-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.store-category {
    color: #c3002f;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.store-rating {
    display: flex;
    align-items: center;
    color: #ffc107;
}

.store-rating i {
    margin-right: 2px;
}

.store-rating span {
    color: #666;
    margin-left: 5px;
    font-size: 0.9rem;
}

.store-actions {
    display: flex;
    gap: 10px;
}

.store-btn {
    padding: 6px 12px;
    border: 1px solid #c3002f;
    background: transparent;
    color: #c3002f;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.store-btn:hover {
    background: #c3002f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(195, 0, 47, 0.3);
}

.store-btn i {
    margin-right: 5px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.no-results-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-results-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.no-results-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Search Not Found */
.search-not-found {
    text-align: center;
    padding: 2rem 1rem;
    color: #666;
}

.search-not-found-icon {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.search-not-found-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.search-not-found-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.search-not-found-description #searchTerm {
    color: #c3002f;
    font-weight: 600;
}

/* Loading States */
.store-skeleton {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.skeleton-image {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton-content {
    padding: 1.5rem;
}

.skeleton-title {
    height: 20px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 80%;
}

.skeleton-category {
    height: 16px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 60%;
}

.skeleton-description {
    height: 16px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-description:last-child {
    width: 70%;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-swiper-container {
        padding: 0 30px;
    }
    
    .store-content {
        padding: 1rem;
    }
    
    .store-title {
        font-size: 1.1rem;
    }
    
    .store-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .store-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .search-input {
        padding: 12px 45px 12px 15px;
        font-size: 1rem;
    }
    
    .category-filter-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
        margin: 0 3px;
    }
}


.kategori-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #fff 0%, #ffeaea 100%);
    border-radius: 18px;
    width: 110px;
    height: 120px;
    padding: 14px 18px 10px 18px;
    cursor: pointer;
    box-shadow: 0 2px 8px #c3002f11;
    border: 2px solid transparent;
    transition: all 0.18s;
    font-weight: 600;
    color: #b71c50;
    font-size: 1.08rem;
    outline: none;
    position: relative;
    margin-bottom: 4px;
    user-select: none;
}

    .kategori-card .kategori-icon-bg {
        background: linear-gradient(135deg, #ffe082 0%, #ff512f 100%);
        color: #c3002f;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 6px;
        box-shadow: 0 2px 8px #ff512f22;
    }

    .kategori-card .kategori-title {
        font-size: 1.08rem;
        font-weight: 700;
        text-align: center;
        margin-top: 2px;
    }

    .kategori-card.active, .kategori-card:focus {
        background: linear-gradient(90deg, #ffe082 0%, #ff512f 100%);
        color: #c3002f;
        border: 2.5px solid #c3002f;
        box-shadow: 0 6px 24px #ff512f33;
        z-index: 2;
    }

        .kategori-card.active .kategori-icon-bg, .kategori-card:focus .kategori-icon-bg {
            background: linear-gradient(135deg, #ff512f 0%, #ffe082 100%);
            color: #fff;
        }

    .kategori-card:hover {
        background: #fff6;
        color: #ff512f;
        border-color: #ff512f;
        box-shadow: 0 2px 12px #c3002f22;
    }

    .kategori-card:active {
        transform: scale(0.97);
    }

/* Store Card Styles */
.store-card-inner {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
}

    .store-card-inner:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(195, 0, 47, 0.2);
    }

.store-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.store-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .store-placeholder::before {
        content: '\f54e';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 3rem;
        color: #ccc;
    }

.store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(195, 0, 47, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.store-card-inner:hover .store-overlay {
    opacity: 1;
}

.store-card-inner:hover .store-image {
    transform: scale(1.1);
}

.store-button {
    background: white;
    color: #c3002f;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    transform: scale(0.8);
}

.store-card-inner:hover .store-button {
    transform: scale(1);
}

.store-button:hover {
    background: #c3002f;
    color: white;
    text-decoration: none;
}

.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #c3002f;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.rating-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
}

.rating-text {
    background: #ffc107;
    color: #212529;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.store-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 120px;
}

.store-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.3;
}

.store-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 12px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.store-location {
    color: #888;
    font-size: 0.8rem;
}

.store-link {
    color: #c3002f;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

    .store-link:hover {
        color: #a0003a;
        text-decoration: none;
        transform: translateX(2px);
    }

/* Shimmer Loading Styles */
.shimmer-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 350px;
    position: relative;
}

.shimmer-image {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.shimmer-content {
    padding: 16px;
}

.shimmer-title {
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 12px;
}

.shimmer-text {
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.shimmer-button {
    height: 32px;
    width: 80px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 16px;
    margin-top: 8px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Not Found Card Styles */
.not-found-card {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff 0%, #ffeaea 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(195, 0, 47, 0.1);
    border: 2px solid rgba(195, 0, 47, 0.1);
}

.not-found-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c3002f, #ff512f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(195, 0, 47, 0.3);
}

.not-found-title {
    color: #c3002f;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.not-found-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.not-found-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .not-found-actions .btn {
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease-in-out;
    }

        .not-found-actions .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(195, 0, 47, 0.3);
        }

/* Search Not Found Card Styles */
.search-not-found-card {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.05);
    animation: slideInUp 0.6s ease-out;
}

.search-not-found-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c757d, #495057);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
    animation: pulse 2s infinite;
}

.search-not-found-title {
    color: #495057;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.search-not-found-description {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

    .search-not-found-description #searchTerm {
        color: #c3002f;
        font-weight: 600;
        background: rgba(195, 0, 47, 0.1);
        padding: 2px 8px;
        border-radius: 12px;
    }

.search-not-found-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .search-not-found-actions .btn {
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease-in-out;
    }

        .search-not-found-actions .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(195, 0, 47, 0.3);
        }

/* Search Animation Styles */
.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(195, 0, 47, 0.1);
    position: relative;
    overflow: hidden;
}

    .search-input:focus {
        outline: none;
        border-color: #c3002f;
        box-shadow: 0 6px 25px rgba(195, 0, 47, 0.2);
        transform: translateY(-2px);
    }

        .search-input:focus::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(195, 0, 47, 0.1), transparent);
            animation: searchShine 1.5s ease-in-out;
        }

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #c3002f;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
    animation: searchIconPulse 2s infinite;
}

.search-input:focus + .search-icon {
    transform: translateY(-50%) scale(1.1);
    color: #c3002f;
    animation: searchIconBounce 0.6s ease-out;
}

.search-animation {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #c3002f, #ff512f);
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.search-input:focus ~ .search-animation {
    width: 80%;
    animation: searchProgress 0.8s ease-out;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes searchShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes searchIconPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.05);
    }
}

@keyframes searchIconBounce {
    0% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.2);
    }

    100% {
        transform: translateY(-50%) scale(1.1);
    }
}

@keyframes searchProgress {
    0% {
        width: 0;
    }

    50% {
        width: 60%;
    }

    100% {
        width: 80%;
    }
}

/* Smart Pagination Styles */
.pagination-container {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #ffeaea 100%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(195, 0, 47, 0.1);
    border: 1px solid rgba(195, 0, 47, 0.1);
    /* Sayfalama her zaman görünür olsun */
    visibility: visible !important;
    opacity: 1 !important;
    /* Sayfalama container'ı her zaman görünür olsun */
    position: relative !important;
    z-index: 1000 !important;
    /* Sayfalama container'ı her zaman görünür olsun */
    min-height: 100px !important;
    width: 100% !important;
    /* Sayfalama container'ı her zaman görünür olsun */
    overflow: visible !important;
    clip: auto !important;
    /* Sayfalama container'ı her zaman görünür olsun */
    transform: none !important;
    filter: none !important;
    /* Sayfalama container'ı her zaman görünür olsun */
    pointer-events: auto !important;
    user-select: auto !important;
    /* Sayfalama container'ı her zaman görünür olsun */
    margin: 2rem auto 0 auto !important;
    padding: 1.5rem !important;
}

.pagination-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

    .pagination-info strong {
        color: #c3002f;
        font-weight: 700;
    }

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-input-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1rem;
}

.pagination-input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 2px solid #ffe082;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #c3002f;
    background: #fff;
    transition: all 0.3s ease;
}

    .pagination-input:focus {
        outline: none;
        border-color: #c3002f;
        box-shadow: 0 0 0 3px rgba(195, 0, 47, 0.1);
    }

    .pagination-input::-webkit-inner-spin-button,
    .pagination-input::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.pagination-go-btn {
    padding: 6px 12px;
    background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(195, 0, 47, 0.2);
}

    .pagination-go-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(195, 0, 47, 0.3);
    }

    .pagination-go-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

#magazaPagination {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    /* Sayfalama butonları her zaman görünür olsun */
    visibility: visible !important;
    opacity: 1 !important;
    /* Sayfalama butonları her zaman görünür olsun */
    position: relative !important;
    z-index: 1001 !important;
}

    #magazaPagination button {
        min-width: 36px;
        min-height: 36px;
        padding: 6px 10px;
        border-radius: 10px;
        background: linear-gradient(135deg, #fff 0%, #ffeaea 100%);
        color: #c3002f;
        border: 2px solid #ffe082;
        font-weight: 600;
        font-size: 0.9rem;
        font-family: 'Roboto', Arial, sans-serif;
        box-shadow: 0 2px 8px rgba(195, 0, 47, 0.1);
        transition: all 0.3s ease;
        outline: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        /* Sayfalama butonları her zaman görünür olsun */
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        /* Sayfalama butonları her zaman görünür olsun */
        position: relative !important;
        z-index: 1002 !important;
    }

        #magazaPagination button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        #magazaPagination button:hover::before {
            left: 100%;
        }

        #magazaPagination button:hover,
        #magazaPagination button:focus {
            background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
            color: #fff;
            border-color: #c3002f;
            box-shadow: 0 4px 16px rgba(195, 0, 47, 0.3);
            transform: translateY(-2px);
        }

        #magazaPagination button.active {
            background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
            color: #fff;
            border-color: #c3002f;
            font-weight: 700;
            box-shadow: 0 4px 16px rgba(195, 0, 47, 0.4);
            transform: scale(1.05);
        }

        #magazaPagination button:disabled {
            background: #f5f5f5;
            color: #ccc;
            border-color: #e0e0e0;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

            #magazaPagination button:disabled:hover {
                background: #f5f5f5;
                color: #ccc;
                border-color: #e0e0e0;
                transform: none;
                box-shadow: none;
            }

.pagination-ellipsis {
    color: #c3002f;
    font-weight: 700;
    padding: 0 8px;
    user-select: none;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination-container {
        padding: 1rem;
        gap: 0.75rem;
    }

    .pagination-controls {
        gap: 0.25rem;
    }

    #magazaPagination button {
        min-width: 32px;
        min-height: 32px;
        padding: 4px 8px;
        font-size: 0.85rem;
    }

    .pagination-input {
        width: 50px;
        height: 32px;
        font-size: 0.85rem;
    }

    .pagination-go-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

    .pagination-info {
        font-size: 0.85rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .pagination-container {
        padding: 0.75rem;
    }

    .pagination-input-container {
        margin: 0 0.5rem;
    }

    .pagination-controls {
        flex-direction: column;
        gap: 0.5rem;
    }

    #magazaPagination {
        order: 1;
    }

    .pagination-input-container {
        order: 2;
    }

    .pagination-info {
        order: 3;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .kategori-card {
        min-width: 80px;
        min-height: 60px;
        padding: 8px 8px 6px 8px;
        font-size: 0.98rem;
    }

        .kategori-card .kategori-icon-bg {
            width: 28px;
            height: 28px;
            font-size: 1.1rem;
        }

    .search-input {
        padding: 12px 45px 12px 15px;
        font-size: 1rem;
    }

    .category-swiper-container {
        padding: 0 40px;
    }

    .category-swiper-next,
    .category-swiper-prev {
        width: 30px;
        height: 30px;
    }

        .category-swiper-next::after,
        .category-swiper-prev::after {
            font-size: 12px;
        }
}

@media (max-width: 576px) {
    .search-container {
        max-width: 100%;
    }

    .category-swiper-container {
        padding: 0 30px;
    }

    .not-found-actions {
        flex-direction: column;
        align-items: center;
    }

        .not-found-actions .btn {
            width: 100%;
            max-width: 250px;
        }
}
