﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
body {
    margin-top: 0px;
    margin-left: 0px;
    font-family: Montserrat, sans-serif !important;
    overflow-x: hidden !important;
}

#shop-breadcrumb {
    background: url(../../Assets/Img/Shop/shop_page.webp) center center no-repeat;
    background-size: cover;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

#shop-breadcrumb h1 {
    color: #FFF;
    font-size: 40px;
    font-weight: 800;
    text-align: center;
}

/***************/
#shop-products {
    background-color: #fff;
}

#shop-products,
#shop-products * {
    font-family: "Montserrat", sans-serif;
}

#shop-products .container {
    max-width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    position: relative;
   
}

/* ============================================
   CATEGORIES & SLIDER WRAPPER
   ============================================ */

#shop-products .categories-slider-wrapper {
    display: flex;
    gap: 20px; /* 20 -> 32, ürün alanından daha net ayrılır */
    margin-bottom: 30px;
    clear: both;
    align-items: stretch;
}
/* Sol Sidebar - Ülke Seçimi ve Kategoriler */
#shop-products .left-sidebar {
    flex: 0 0 280px;   /* genişlik artır */
    min-width: 280px;
    padding-left: 12px;
    padding-right: 0;
    align-self: stretch;
}

/* Categories - Sol Taraf */
#shop-products .categories {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    max-height: calc(100vh - 130px);
    overflow: hidden; /* scrollbar ve içerik kutu içinde kalsın */
}
#shop-products .categories #category-list {
    max-height: calc(100vh - 210px); /* başlık+padding düşülmüş */
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    padding: 0 2px 12px 0; 
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #bdbdbd transparent;
}
#shop-products .categories #category-list::-webkit-scrollbar {
    width: 3px;                     
}
#shop-products .categories #category-list::-webkit-scrollbar-track {
    background: transparent;
}
#shop-products .categories #category-list::-webkit-scrollbar-thumb {
    background: #bdbdbd;
    border-radius: 999px;
}

#shop-products .categories #category-list li:last-child {
    margin-bottom: 8px;
}
#shop-products .mobile-category-filter {
    display: none;
}

#shop-products .categories h2 {
    margin-bottom: 10px;
    color: #333;
}

#shop-products .categories ul {
    list-style-type: none;
    padding: 0;
}

#shop-products .categories li {
    cursor: pointer;
    padding: 8px 0; /* 5px -> 8px */
    color: #666;
    transition: all 0.2s ease;
}

#shop-products .categories li:hover {
    color: #000;
    font-weight: bold;
}

#shop-products .categories li.active {
    color: #000;
    font-weight: bold;
    position: relative;
}

#shop-products .categories li.active::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: #6b46c1; /* Take a Look tonu */
    border-radius: 2px;
}


/* Right Content Wrapper - Slider, Ülke Seçimi ve Grid */
#shop-products .right-content-wrapper {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* ============================================
   CASHBACK SLIDER
   ============================================ */

#shop-products .cashback-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 20px;
}
/* Cashback Slider Başlık */
#shop-products .cashback-slider-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}
#shop-products .cashback-slider-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

#shop-products .cashback-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#shop-products .cashback-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

#shop-products .cashback-slide-item {
    flex: 0 0 25%; /* Her ürün %25 genişliğinde (4 ürün görünsün) */
    min-width: 25%;
    padding: 0 5px;
    box-sizing: border-box;
}

#shop-products .cashback-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e0e0e0;
    /* grid yerine normal card */
}

#shop-products .cashback-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #4caf50;
}

#shop-products .cashback-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#shop-products .cashback-product-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

#shop-products .cashback-product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#shop-products .cashback-product-card:hover .cashback-product-image-wrapper img {
    transform: scale(1.1);
}

#shop-products .cashback-product-card h3 {
    font-size: 14px;
    color: #333;
    margin: 12px 15px 8px 15px;
    line-height: 1.4;
    font-weight: 600;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#shop-products .cashback-product-card .cashback-badge {
    margin: 0 15px 12px 15px;
    padding: 4px 10px;
    font-size: 11px;
    display: inline-block;
    width: fit-content;
}

#shop-products .cashback-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 10px;
}

#shop-products .cashback-slider-controls .slider-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 11;
}

#shop-products .cashback-slider-controls .slider-btn:hover {
    background: #4caf50;
    color: #fff;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

#shop-products #cashback-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 0;
}

#shop-products #cashback-slider-dots .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

#shop-products #cashback-slider-dots .slider-dot:hover {
    background: #4caf50;
    transform: scale(1.2);
}

#shop-products #cashback-slider-dots .slider-dot.active {
    background: #4caf50;
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   COUNTRY SELECTOR
   ============================================ */
   #shop-products .countries {    
    top: 100px; 
    align-self: flex-start; 
    max-height: calc(100vh - 120px); 
    overflow-y: auto;
    margin-bottom: 20px;
}

#shop-products .countries h2 {
    margin-bottom: 10px;
    color: #333;
}

#shop-products .countries ul {
    list-style-type: none;
    padding: 0;
}

#shop-products .countries li {
    cursor: pointer;
    padding: 5px 0;
    color: #666;
    transition: all 0.2s ease;
}

#shop-products .countries li:hover {
    color: #000;
    font-weight: bold;
}

#shop-products .countries li.active {
    color: #000;
    font-weight: bold;
    position: relative;
}

#shop-products .countries li.active::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: #4caf50;
    border-radius: 2px;
}

/* Categories - Sol Taraf */
#shop-products .categories {
    position: sticky;
    top: 100px; 
    align-self: flex-start; 
    /*max-height: calc(100vh - 120px); 
    overflow-y: auto; */
}

/* ============================================
   PORPOINT HERO
   ============================================ */
   #shop-products .shop-porpoint-hero {
    width: 100%;
    margin-bottom: 20px; /* grid ile arayı aç */
    border-radius: 20px;
    background: #f0f0f2; /* veya tasarıma göre */
    padding: 30px 30px 0px;
    box-sizing: border-box;
}
#shop-products .shop-porpoint-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
#shop-products .shop-porpoint-hero__title {
    margin: 0 0 16px;
    font-size: 2.3rem;
    font-weight: 700;
    color: #111;
}
#shop-products .shop-porpoint-hero__cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 9999px;
    background: #6b46c1; /* mor — marka rengine göre değiştir */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2vh;
    margin-bottom: 2vh;
}
#shop-products .shop-porpoint-hero__cta:hover {
    color: #000;
    border-bottom-color: rgba(85, 60, 154, 0.55);
    transition: all 0.3s ease;
}
#shop-products .shop-porpoint-hero__icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
#shop-products .shop-porpoint-hero__icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
#shop-products .shop-porpoint-hero__icon-box img {
    width: 100%;  
    height: auto;
    object-fit: contain;
}
#shop-products .shop-porpoint-hero__icon-box--align-up img {
    transform: translateY(-20px); 
}

/* ============================================
   PRODUCT GRID
   ============================================ */

#shop-products .right-content-wrapper .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-top: 0;
    width: 100%;
}

#shop-products .product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

#shop-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

#shop-products .product-card img {
    max-width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-inline: auto;
    display: block;
}

#shop-products .product-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    text-decoration: none;
}

#shop-products .product-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

#shop-products .product-card .price {
    font-size: 16px;
    color: #4caf50;
    font-weight: bold;
}

#shop-products .product-card .quantity {
    font-size: 14px;
    color: #666;
}

#shop-products .product-card .discount-badge {
    background-color: #ffc107;
    padding: 5px;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

#shop-products .product-card .limited-offer {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

#shop-products .product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    width: 100%;
}

#shop-products .product-card-link:hover {
    text-decoration: none;
}

#shop-products .product-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* ============================================
   CASHBACK BADGE
   ============================================ */

#shop-products .cashback-badge {
    display: inline-block;
    background: #4caf50;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 0;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#shop-products .cashback-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

#shop-products .product-card:hover .cashback-badge::before {
    left: 100%;
}

#shop-products .cashback-badge .cashback-text {
    white-space: nowrap;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
}

#shop-products .product-card:hover .cashback-badge {
    background: #45a049;
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.35);
    transform: translateY(-1px);
}

/* ============================================
   PAGINATION
   ============================================ */

#shop-products .right-content-wrapper .pagination-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
}

#shop-products .pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 999px;
    background-color: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#shop-products .pagination li {
    margin: 0;
}

#shop-products .pagination button {
    border: none;
    background: transparent;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    transition: all 0.2s ease;
    min-width: 36px;
}

#shop-products .pagination button:hover:not(:disabled) {
    background-color: #e0e0e0;
    color: #000;
}

#shop-products .pagination button.active {
    background-color: #4caf50;
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
}

#shop-products .pagination button:disabled {
    opacity: 0.4;
    cursor: default;
}

/* ============================================
   NO PRODUCTS MESSAGE
   ============================================ */

#shop-products .no-products-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    color: #777;
    border: 1px dashed #ccc;
    border-radius: 8px;
    background-color: #fafafa;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

#shop-product-detail {
    padding: 40px 0;
    background-color: #fff;
}

#shop-product-detail .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#shop-product-detail .product-image-wrapper {
    margin-bottom: 20px;
}

#shop-product-detail .product-main-image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#shop-product-detail .product-banner-image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    margin-top: 20px;
}

#shop-product-detail .product-info h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

#shop-product-detail .product-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

#shop-product-detail .product-category {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

#shop-product-detail .product-category strong {
    color: #333;
}

#shop-product-detail .btn-back-to-shop {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4caf50;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

#shop-product-detail .btn-back-to-shop:hover {
    background-color: #45a049;
    text-decoration: none;
    color: #fff;
}

#shop-product-detail .product-cashback-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#shop-product-detail .product-cashback-badge::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.6s ease;
}

#shop-product-detail .product-cashback-badge:hover::before {
    left: 100%;
}

#shop-product-detail .product-cashback-badge:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

#shop-product-detail .product-cashback-badge .cashback-text {
    white-space: nowrap;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* ============================================
   PRODUCT BREADCRUMB
   ============================================ */

#shop-product-breadcrumb {
    background: transparent;
    padding-top: 10vh;
    padding-bottom: 5vh;
}

#shop-product-breadcrumb .product-breadcrumb-banner {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#shop-product-breadcrumb h1 {
    text-align: center;
    color: #333;
    font-size: 32px;
}

#shop-breadcrumb .breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 14px;
    color: #fff;
}

#shop-breadcrumb .breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

#shop-breadcrumb .breadcrumb-nav a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

#shop-breadcrumb .breadcrumb-separator {
    margin: 0 10px;
    color: #fff;
    opacity: 0.7;
}

#shop-breadcrumb .breadcrumb-current {
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}

/* ============================================
   APP STORE BUTTONS
   ============================================ */

.app-store-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.app-store-buttons .store-button {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    flex: 0 0 auto;
}

.app-store-buttons .store-button img {
    max-width: 160px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.app-store-buttons .store-button:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.app-store-buttons .store-button:hover img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
/* MinMac */
   @media (min-width:1921px){
    #shop-products .shop-porpoint-hero__icon-box img {
        width: 80%;  
        height: auto;
        object-fit: contain;
        margin-top: 2vh;
    }
    #shop-products .shop-porpoint-hero__cta {      
        margin-top: 0vh;
        margin-bottom: 0vh;
    }
   }

/* Tablet (max-width: 1200px) */
@media (max-width: 1200px) {
    #shop-products .cashback-slide-item {
        flex: 0 0 33.333%; /* 3 ürün görünsün */
        min-width: 33.333%;
    }
    
    #shop-products .right-content-wrapper .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    /* Mobilde soldaki klasik kategori bloğunu gizle */
#shop-products .left-sidebar {
    display: none;
}
/* Mobil dropdown filtre */
#shop-products .mobile-category-filter {
    display: block;
    margin: 0 auto 14px;
    width: 100%;
    max-width: 320px;
}
#shop-products .mobile-category-filter__label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #3a3a3a;
}
#shop-products .mobile-category-filter__select-wrap {
    position: relative;
    width: 100%;
}

#shop-products .mobile-category-filter__select {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #d8dce3;
    border-radius: 12px;
    background-color: #fff;
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-align-last: center;
    appearance: none;          /* native ok geri gelsin */
    -webkit-appearance: menulist;
    box-sizing: border-box;
    margin-left: 5%;
}
#shop-products .mobile-category-filter__select:focus {
    border-color: #6b46c1;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.12);
}

    #shop-products .container {
        max-width: 95%;
        padding: 15px;
    }
    /* Sol sidebar ve içeriği dikey sırala */
    #shop-products .categories-slider-wrapper {
        flex-direction: column;
    }
    #shop-products .left-sidebar {
        flex: 0 0 100%;
        min-width: 100%;
        padding-right: 0;
    }
    #shop-products .countries {
        position: relative;
        top: auto;
        max-height: none;
        overflow-y: visible;
        margin-bottom: 20px;
    }
    
    #shop-products .categories {
        position: relative;
        top: auto;
        max-height: none;
        overflow-y: visible;
    }
   
    #shop-products .right-content-wrapper {
        width: 100%;
    }
    
    #shop-products .cashback-slider-container {
        width: 100%;
    }
    
    #shop-products .cashback-slide-item {
        flex: 0 0 50%; /* 2 ürün görünsün */
        min-width: 50%;
    }
    
    #shop-products .right-content-wrapper .grid-container {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 15px;
    }
    
    #shop-product-detail .product-info h1 {
        font-size: 28px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    #shop-products .shop-porpoint-hero {
        padding: 30px 30px 0px;
    }

    #shop-products .shop-porpoint-hero__icons {
        grid-template-columns: repeat(2, 1fr);
    }
    #shop-products .shop-porpoint-hero__icon-box--align-up img {
        transform: translateY(-15px); 
    }
    #shop-breadcrumb {
        padding-top: 8vh;
        padding-bottom: 8vh;
    }
    
    #shop-breadcrumb h1 {
        font-size: 24px;
    }
    
    #shop-breadcrumb .breadcrumb-nav {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    #shop-breadcrumb .breadcrumb-separator {
        margin: 0 5px;
    }
    
    #shop-products .container {
        max-width: 100%;
        padding: 10px;
        margin: 10px auto;
    }

     /* Sol sidebar mobilde */
     #shop-products .left-sidebar {
        width: 100%;
        min-width: 100%;
        flex: 0 0 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Countries mobilde */
    #shop-products .countries {
        background-color: #f8f9fa;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 20px;
        position: relative;
        top: auto;
        max-height: none;
        overflow-y: visible;
    }
    
    #shop-products .countries h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    #shop-products .countries ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #shop-products .countries li {
        background-color: #fff;
        padding: 8px 15px;
        border-radius: 20px;
        border: 1px solid #ddd;
        transition: all 0.2s ease;
        font-size: 14px;
        cursor: pointer;
    }
    
    #shop-products .countries li:hover,
    #shop-products .countries li.active {
        background-color: #4caf50;
        color: #fff;
        border-color: #4caf50;
        font-weight: 600;
    }
    
    #shop-products .countries li.active::before {
        display: none; /* Mobilde yeşil çizgiyi kaldır */
    }
    
    
    #shop-products .categories {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        margin: 0 0 16px 0;
        position: relative; /* mobilde sticky kapalı */
        top: auto;
        max-width: none;
        overflow-y: visible;
    }
    
    #shop-products .categories ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #shop-products .categories li {
        background-color: #fff;
        padding: 8px 15px;
        border-radius: 20px;
        border: 1px solid #ddd;
        transition: all 0.2s ease;
        font-size: 14px;
    }
    
    #shop-products .categories li:hover,
    #shop-products .categories li.active {
        background-color: #4caf50;
        color: #fff;
        border-color: #4caf50;
        font-weight: 600;
    }
    #shop-products .categories li.active::before {
        display: none; /* Mobilde yeşil çizgiyi kaldır */
    }
    
    /* Cashback slider başlık mobilde */
    #shop-products .cashback-slider-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    #shop-products .cashback-slide-item {
        flex: 0 0 50%; /* 2 ürün görünsün */
        min-width: 50%;
        padding: 0 5px;
    }
    
    #shop-products .cashback-product-image-wrapper {
        height: 150px;
    }

    #shop-products .cashback-product-card h3 {
        font-size: 12px;
        margin: 10px 12px 6px 12px;
    }
    
    #shop-products .cashback-slider-controls .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    #shop-products .right-content-wrapper .grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 12px;
    }
    
    #shop-products .product-card {
        padding: 12px;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }
    
    #shop-products .product-card img {
        height: 140px;
        border-radius: 6px;
        margin-bottom: 8px;
    }
    
    #shop-products .product-card h3 {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 36px;
    }
    
    #shop-products .product-card .cashback-badge {
        font-size: 10px;
        padding: 3px 8px;
        margin-top: 4px;
    }
    
    #shop-products .pagination {
        flex-wrap: wrap;
        padding: 5px;
    }
    
    #shop-products .pagination button {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 32px;
    }
    
    #shop-product-detail {
        padding: 20px 0;
    }
    
    #shop-product-detail .container {
        padding: 15px;
    }
    
    #shop-product-detail .row {
        flex-direction: column;
    }
    
    #shop-product-detail .col-md-6 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    #shop-product-detail .product-main-image {
        max-width: 100%;
        margin: 0 auto 20px;
    }
    
    #shop-product-detail .product-info h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    #shop-product-detail .product-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    #shop-product-detail .product-category {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .app-store-buttons {
        justify-content: center;
        gap: 10px;
    }
    
    .app-store-buttons .store-button img {
        max-width: 120px;
    }
    
    #shop-product-detail .btn-back-to-shop {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
    #shop-products .cashback-slide-item {
        flex: 0 0 100%; /* 1 ürün görünsün */
        min-width: 100%;
        padding: 0 10px;
    }
    #shop-products .cashback-product-image-wrapper {
        height: 200px;
    }

    #shop-products .cashback-product-card h3 {
        font-size: 14px;
        margin: 12px 15px 8px 15px;
    }
    
    /* Cashback slider başlık küçük mobilde */
    #shop-products .cashback-slider-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    /* Countries ve Categories küçük mobilde */
    #shop-products .countries ul,
    #shop-products .categories ul {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }

    
    #shop-products .countries li,
    #shop-products .categories li {
        white-space: nowrap;
        flex-shrink: 0;
    }
   
    
    #shop-products .right-content-wrapper .grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    
    #shop-products .product-card {
        padding: 12px;
    }
    
    #shop-products .product-card img {
        height: 150px;
    }
    
    #shop-products .cashback-badge {
        font-size: 9px;
        padding: 3px 7px;
        margin-top: 4px;
    }
    
    #shop-products .cashback-badge .cashback-text {
        font-size: 10px;
    }
    
    #shop-product-detail .product-info h1 {
        font-size: 20px;
    }
    
    #shop-product-detail .product-description {
        font-size: 13px;
    }
    
    #shop-product-detail .product-cashback-badge {
        font-size: 13px;
        padding: 8px 14px;
        gap: 5px;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-store-buttons .store-button {
        width: 100%;
        max-width: 200px;
    }
    
    .app-store-buttons .store-button img {
        width: 100%;
        max-width: 200px;
    }
    
    #shop-products .pagination button {
        padding: 5px 8px;
        font-size: 11px;
        min-width: 28px;
    }
}
