    :root {
            --nav-bg: #ffffff;
            --text-dark: #1f1f1f;
            --color-bordo: #8a2b3b;
            --color-koyu-mavi: #6b728e;
            --color-acik-mavi: #63a4d0;
            --color-mor: #856a84;
            --color-dark-bordo: #5a1420;
            --btn-red: #e60000;
            --badge-bg: #4a1520;
            --border-color: #eaeaea;
            --card-radius: 24px;
            --gold-text: #cca352;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background: #f4f4f4;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 250px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
            z-index: 0;
            pointer-events: none;
        }

        /* --- TOP BAR --- */
        .top-bar { 
            position: relative; 
            z-index: 1; 
            text-align: center; 
            padding: 12px 0 16px 0; 
            font-size: 15px; 
            font-family: 'Urbanist', sans-serif;
            font-weight: 600; 
            color: #111111; 
            text-shadow: none;
        }
        
        /* --- HEADER --- */
      .navbar-container { 
            background-color: var(--nav-bg); 
            width: 97%; 
            max-width: 1700px; 
            margin: 1px auto 0 auto; /* Üstten biraz daha boşluk bırakılarak aşağı alındı */
            border-radius: 45px; 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
            padding: 14px 30px; 
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); 
            position: relative; 
            z-index: 1000; 
        }
        
        .mobile-left-icons { display: none; gap: 10px; align-items: center; }
        .logo-area { display: flex; align-items: center; text-decoration: none; justify-content: center; }
        
        .logo-area img {
            height: 52px; 
            width: auto;
        }
        
        /* Sağdaki İkonlar Büyütüldü (40px -> 48px, SVG'ler 20px -> 24px) */
        .nav-icons { display: flex; gap: 15px; align-items: center; margin-right: 20px; }
        .icon-btn { background: transparent; border: 1px solid #e0e0e0; border-radius: 50%; width: 48px; height: 48px; display: flex; justify-content: center; align-items: center; cursor: pointer; color: #333; transition: all 0.3s; }
        .icon-btn svg { width: 24px; height: 24px; }
        .icon-btn:hover { background-color: #f9f9f9; }
        .cart-wrapper { position: relative; }
        .cart-badge { position: absolute; top: -2px; right: -2px; background-color: var(--badge-bg); color: white; font-size: 11px; font-weight: bold; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid white; }
        
        .nav-sidebar { display: flex; align-items: center; height: 100%; }
        .sidebar-header { display: none; }
        
        .nav-links { display: flex; align-items: center; gap: 20px; list-style: none; height: 100%; }
        .nav-links > li { height: 100%; display: flex; align-items: center; }
        
        .nav-links > li > a { 
            text-decoration: none; 
            color: var(--text-dark); 
            font-size: 15px; 
            font-weight: 600; 
            text-transform: uppercase; 
            padding: 16px 0; 
            transition: opacity 0.2s; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            width: 100%; 
        }
        .nav-links > li > a:hover { opacity: 0.7; }
        .chevron-icon { display: none; }
        .link-bordo { color: var(--color-bordo) !important; }
        .link-koyu-mavi { color: var(--color-koyu-mavi) !important; text-transform: none !important; }
        .link-acik-mavi { color: var(--color-acik-mavi) !important; text-transform: capitalize !important;}
        .link-mor { color: var(--color-mor) !important; text-transform: capitalize !important;}
        
        /* HEDİYE KARTI BUTONU (Urbanist - 800) */
        .gift-card-btn {
            position: absolute;
            top: 100% !important;
            bottom: auto !important;
            right: 55px;
            background-color: var(--btn-red);
            color: white;
            padding: 14px 34px; 
            font-family: 'Urbanist', sans-serif;
            font-weight: 800;
            font-size: 15px; 
            text-decoration: none;
            border-radius: 0 0 25px 25px;
            box-shadow: 0 6px 15px rgba(230, 0, 0, 0.35);
            z-index: 1005;
            letter-spacing: 0.8px;
            transition: transform 0.2s;
        }
        .gift-card-btn:hover { transform: translateY(2px); }

        /* MEGA MENÜ GENEL */
        .has-dropdown { position: static; }
        .has-dropdown > a { position: relative; }
        .has-dropdown:hover > a::after { content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 24px; height: 4px; background: linear-gradient(to right, var(--color-bordo) 50%, #437bb2 50%); border-radius: 2px; }
        
        .mega-menu { position: absolute; top: 100%; left: 0; width: 100%; background-color: #ffffff; border-top: 1px solid var(--border-color); display: flex; border-radius: 0 0 30px 30px; box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease-in-out; z-index: 100; overflow: hidden; align-items: stretch;}
        .has-dropdown:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        
        .menu-col { flex: 1; padding: 40px; display: flex; flex-direction: column; border-right: 1px solid var(--border-color); }
        .menu-col:last-child { border-right: none; }
        .menu-img-col { flex: 0 0 35%; max-width: 400px; padding: 0; position: relative; background-color: #f0f0f0; }
        .menu-img-col img { width: 100%; height: 100%; object-fit: cover; }
        
        .menu-col h4 { color: var(--color-bordo); font-size: 14px; margin-bottom: 15px; font-weight: 700; text-transform: uppercase; }
        .menu-col h4.mt { margin-top: 30px; }
        .menu-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .menu-col ul li a { color: #444; text-transform: none; font-weight: 500; font-size: 14px; text-decoration: none; transition: color 0.2s; display: block; }
        .menu-col ul li a:hover { color: var(--color-bordo); }
        .divider { height: 1px; background-color: var(--border-color); margin: 30px 0; }
        
        .player-item { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; text-decoration: none; color: #444; transition: transform 0.2s; }
        .player-item:hover { transform: translateX(5px); color: var(--color-bordo); }
        .player-avatar { width: 35px; height: 35px; border-radius: 50%; object-fit: cover; background: #e0e0e0; }
        .player-name { font-size: 13px; font-weight: 600; text-transform: uppercase; }
        .player-number { margin-left: auto; font-size: 15px; font-weight: 700; color: #111; }
        
        .gift-btn-inside { 
            position: absolute; 
            top: 0; 
            right: 0; 
            background-color: var(--btn-red); 
            color: white; 
            padding: 12px 25px; 
            font-family: 'Urbanist', sans-serif;
            font-weight: 800; 
            font-size: 14px; 
            text-decoration: none; 
            border-radius: 0 0 0 20px; 
            z-index: 2; 
        }

        /* --- DİĞER BÖLÜMLER --- */
        .slider-container { width: 99%; max-width: 1700px; margin: 35px auto 20px auto; position: relative; overflow: hidden; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); z-index: 1; }
        .slider-wrapper { display: flex; transition: transform 0.5s ease-in-out; width: 100%; }
        .slide { min-width: 100%; aspect-ratio: 21 / 9; background-color: #ddd; }
        .slide picture, .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(255, 255, 255, 0.2); border: 1px solid white; border-radius: 50%; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; transition: all 0.2s; z-index: 10; }
        .slider-btn:hover { background-color: rgba(255,255,255,0.4); }
        .prev-btn { left: 20px; }
        .next-btn { right: 20px; }
        .slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; align-items: center; }
        .dot { width: 24px; height: 6px; background-color: rgba(255, 255, 255, 0.7); border-radius: 6px; cursor: pointer; transition: all 0.3s; }
        .dot.active { background-color: #8a2b3b; width: 32px; }
        .menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999998; }

        @media (max-width: 992px) {
            .slider-container { margin: 15px auto; border-radius: 0; width: 100%; }
            .slide { aspect-ratio: 4 / 5; min-height: 440px; }
            .slider-btn { display: none; }
            .slider-dots { bottom: 15px; gap: 6px; }
            .dot { width: 18px; height: 5px; }
            .dot.active { width: 26px; }
        }

        .product-section { width: 99%; max-width: 1700px; margin: 40px auto; position: relative; z-index: 1;}
        .prod-carousel-wrapper { overflow-x: auto; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; scroll-snap-type: x mandatory; padding-bottom: 10px; }
        .prod-carousel-wrapper::-webkit-scrollbar { display: none; }
        .prod-track { display: flex; gap: 20px; list-style: none; }
        .prod-slide { flex: 0 0 calc(25% - 15px); scroll-snap-align: start; min-height: 400px; position: relative; }
        .category-card { background-color: #ffffff; border-radius: var(--card-radius); height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; position: relative; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
        .category-card::before { content: ''; position: absolute; top: -20px; left: -20px; width: 150%; height: 150%; background-image: radial-gradient(circle at top left, rgba(138,43,59,0.05) 0%, transparent 70%); z-index: 0; pointer-events: none; }
        .category-title { color: var(--color-bordo); font-size: 20px; font-weight: 900; z-index: 1; text-transform: uppercase; padding-right: 45px; word-break: break-word; line-height: 1.25; }
        .category-arrow { position: absolute; bottom: 25px; right: 25px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--color-bordo); display: flex; align-items: center; justify-content: center; color: var(--color-bordo); text-decoration: none; font-size: 18px; transition: all 0.3s; z-index: 2; }
        .category-arrow:hover { background-color: var(--color-bordo); color: white; }
        .product-card { background-color: #fff; border-radius: var(--card-radius); height: 100%; position: relative; overflow: hidden; display: block; text-decoration: none; }
        .product-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.4s; }
        .product-card:hover img { transform: scale(1.03); }
        .card-gradient { position: absolute; bottom: 0; left: 0; right: 0; height: 45%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; pointer-events: none; }
        .prod-title { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 5px; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .prod-price { color: #fff; font-size: 18px; font-weight: 800; }
        .badge-free-shipping { position: absolute; top: 15px; left: 15px; background-color: #000; color: #fff; font-size: 10px; font-weight: bold; padding: 5px 12px; border-radius: 20px; z-index: 2; }
        .btn-favorite { position: absolute; top: 15px; right: 15px; background-color: rgba(200, 200, 200, 0.5); border: none; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; z-index: 2; backdrop-filter: blur(4px); transition: background 0.3s; }
        .btn-favorite:hover { background-color: rgba(200, 200, 200, 0.8); }
        .carousel-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background-color: rgba(255,255,255,0.7); border: none; box-shadow: 0 2px 8px rgba(0,0,0,0.1); cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; color: #333; }
        .carousel-nav-btn:hover { background-color: #fff; }
        .c-prev { left: -15px; }
        .c-next { right: -15px; }

        .category-card-retro { background: linear-gradient(135deg, #ebf4f8 0%, #f7e8ea 100%); }
        .category-card-retro::before { display: none; }
        .retro-logo { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); width: 120px; height: auto; opacity: 0.9; }
        .category-card-retro .category-title { color: var(--color-dark-bordo); line-height: 1.2; }
        .category-card-retro .category-arrow { border-color: var(--color-dark-bordo); color: var(--color-dark-bordo); }
        .category-card-retro .category-arrow:hover { background-color: var(--color-dark-bordo); color: white; }

        .design-section { width: 99%; max-width: 1700px; margin: 60px auto; background-color: #ffffff; border-radius: 30px; padding: 40px; box-shadow: 0 5px 25px rgba(0,0,0,0.05); position: relative; z-index: 1;}
        .design-container { display: flex; align-items: stretch; gap: 40px; }
        .design-left { flex: 1; display: flex; flex-direction: column; }
        .design-title-txt { font-size: 42px; font-weight: 900; font-style: italic; line-height: 1.1; margin-bottom: 30px; text-transform: uppercase; background: linear-gradient(to right, #6a1a29, #4a75a4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .acc-item { margin-bottom: 15px; border-radius: 25px; overflow: hidden; background-color: #f9f9f9; border: 1px solid var(--border-color); transition: all 0.3s; }
        .acc-header { padding: 15px 25px; font-weight: 700; font-size: 15px; color: #333; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
        .acc-item.active { background-color: transparent; border: none; }
        .acc-item.active .acc-header { background-color: var(--color-dark-bordo); color: #fff; border-radius: 25px 25px 0 0; }
        .acc-body { display: none; padding: 20px; background-color: #fff; border: 1px solid var(--color-dark-bordo); border-top: none; border-radius: 0 0 25px 25px; }
        .acc-item.active .acc-body { display: block; }
        .input-group { margin-bottom: 15px; }
        .input-group label { display: block; font-size: 13px; color: #555; margin-bottom: 5px; font-weight: 500; }
        .input-wrapper { position: relative; }
        .input-wrapper input, .input-wrapper select { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; outline: none; transition: border 0.3s; }
        .input-wrapper input:focus, .input-wrapper select:focus { border-color: var(--color-dark-bordo); }
        .char-count { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); font-size: 12px; color: #aaa; }
        .design-middle { flex: 1.5; display: flex; justify-content: center; align-items: center; position: relative; }
        .thumbnails { position: absolute; left: 0; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 15px; z-index: 10; }
        .thumb-img { width: 60px; height: 70px; border: 1px solid var(--border-color); border-radius: 8px; object-fit: contain; cursor: pointer; padding: 5px; background: #fff; transition: all 0.3s; }
        .thumb-img.active { border-color: var(--color-dark-bordo); box-shadow: 0 0 5px rgba(90, 20, 32, 0.3); }
        .preview-circle { width: 350px; height: 350px; background: radial-gradient(circle, #ffffff 0%, #f0f0f0 100%); border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 10px 40px rgba(0,0,0,0.08); position: relative; }
        .jersey-img { width: 280px; height: auto; z-index: 1; transition: opacity 0.3s ease; }
        .jersey-text-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
        #liveJerseyNumber { position: absolute; top: 30%; left: 0; width: 100%; text-align: center; font-family: 'Impact', 'Arial Narrow', sans-serif; color: var(--gold-text); font-size: 115px; letter-spacing: -2px; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); transform: scaleY(1.1); line-height: 1; }
        #liveJerseyName { position: absolute; top: 76%; left: 0; width: 100%; text-align: center; font-family: 'Impact', 'Arial Narrow', sans-serif; color: var(--gold-text); font-size: 26px; letter-spacing: 2px; text-transform: uppercase; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); transform: scaleY(1.2); line-height: 1; }
        .design-right { flex: 1; display: flex; flex-direction: column; }
        .product-title-right { font-size: 20px; font-weight: 800; color: #111; margin-bottom: 20px; line-height: 1.3; }
        .option-label { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
        .size-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
        .size-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #ddd; background: #fff; color: #999; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .size-btn:not(.disabled):hover { border-color: var(--color-dark-bordo); color: var(--color-dark-bordo); }
        .size-btn.active { background: var(--color-dark-bordo); color: #fff; border-color: var(--color-dark-bordo); }
        .size-btn.disabled { opacity: 0.4; cursor: not-allowed; }
        .style-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
        .style-btn { padding: 12px 20px; border-radius: 30px; border: 1px solid #ddd; background: #fff; text-align: center; font-weight: 700; font-size: 14px; cursor: pointer; transition: all 0.3s; color: #333; }
        .style-btn:hover { border-color: #6a1a29; }
        .style-btn.active-gradient { background: linear-gradient(to right, #6a1a29, #4a75a4); color: white; border: none; }
        .price-area { margin-top: auto; }
        .price-note { font-size: 11px; color: var(--btn-red); margin-bottom: 5px; }
        .final-price { font-size: 28px; font-weight: 900; margin-bottom: 15px; }
        .add-to-cart-btn { background-color: var(--color-dark-bordo); color: #fff; border: none; padding: 15px; border-radius: 30px; font-size: 16px; font-weight: bold; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px; transition: background 0.3s; }
        .add-to-cart-btn:hover { background-color: #3d0d15; }
        .cart-arrow { background: #000; border-radius: 50%; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }

        .players-section { width: 99%; max-width: 1700px; margin: 40px auto; position: relative; z-index: 1;}
        .players-container { background-color: #ffffff; border-radius: 30px; padding: 40px; box-shadow: 0 5px 25px rgba(0,0,0,0.05); }
        .players-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
        .players-filters { display: flex; gap: 20px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
        .players-filters::-webkit-scrollbar { display: none; }
        .filter-btn { background: none; border: none; font-size: 14px; font-weight: 600; color: #888; cursor: pointer; white-space: nowrap; padding: 12px 25px; border-radius: 30px; transition: all 0.3s; text-transform: uppercase; }
        .filter-btn:hover { color: #333; }
        .filter-btn.active-filter { background: linear-gradient(to right, #693b48, #9eb0c4); color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
        .view-all-link { color: var(--color-bordo); font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 5px; font-size: 15px; }
        .players-carousel-wrapper { overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; scroll-snap-type: x mandatory; padding-bottom: 10px; }
        .players-carousel-wrapper::-webkit-scrollbar { display: none; }
        .players-track { display: flex; gap: 20px; list-style: none; }
        .player-slide { flex: 0 0 calc(20% - 16px); scroll-snap-align: start; aspect-ratio: 2 / 3; border-radius: 20px; overflow: hidden; background-color: #c0cbe0; position: relative; }
        .player-slide img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s ease; }
        .player-slide:hover img { transform: scale(1.03); }
        .mobile-only { display: none; }
        .desktop-only { display: flex; }

        .image-grid-section { width: 99%; max-width: 1700px; margin: 60px auto; position: relative; z-index: 1;}
        .collection-header { text-align: center; margin-bottom: 30px; }
        .collection-title { font-size: 20px; font-weight: 700; color: var(--text-dark); display: inline-block; position: relative; padding-bottom: 15px; }
        .collection-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background-color: #999; }
        .collection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .collection-card { position: relative; border-radius: 25px; overflow: hidden; display: block; aspect-ratio: 3 / 4; text-decoration: none; background-color: #ddd; }
        .collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .collection-card:hover img { transform: scale(1.03); }
        .card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 40%; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%); pointer-events: none; z-index: 1; }
        .collection-label { position: absolute; bottom: 25px; left: 25px; color: #fff; font-size: 18px; font-weight: 700; z-index: 2; text-transform: uppercase; }

        /* --- FOOTER (Urbanist - 700 Fontu Uygulandı) --- */
        .site-footer { width: 99%; max-width: 1700px; margin: 40px auto 20px; background-color: #ffffff; border-radius: 30px; box-shadow: 0 5px 25px rgba(0,0,0,0.05); padding: 40px; color: #333; position: relative; z-index: 1;}
        .footer-top { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; margin-bottom: 30px; }
        .footer-logo { display: flex; align-items: center; font-size: 28px; font-weight: 900; color: var(--color-bordo); text-decoration: none; }
        .social-icons { display: flex; gap: 15px; }
        .social-icon { width: 40px; height: 40px; border: 1px solid var(--color-dark-bordo); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-dark-bordo); text-decoration: none; transition: 0.3s; }
        .social-icon:hover { background: var(--color-dark-bordo); color: #fff; }

        .footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr 1.5fr; gap: 30px; margin-bottom: 30px; }
        .footer-heading { 
            color: var(--color-dark-bordo); 
            font-size: 16px; 
            font-family: 'Urbanist', sans-serif;
            font-weight: 700; /* Urbanist - 700 */
            margin-bottom: 20px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            text-transform: uppercase; 
        }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { color: #444; text-decoration: none; font-size: 14px; transition: color 0.2s; }
        .footer-links a:hover { color: var(--color-bordo); }

        .newsletter-col { border-left: 1px solid var(--border-color); padding-left: 30px; }
        .newsletter-desc { font-size: 14px; margin-bottom: 15px; color: #444; }
        .newsletter-input-group { display: flex; border: 1px solid #ccc; border-radius: 30px; overflow: hidden; padding: 4px; margin-bottom: 15px; }
        .newsletter-input-group input { border: none; flex: 1; padding: 10px 15px; outline: none; font-size: 14px; }
        .newsletter-input-group button { background: var(--color-dark-bordo); color: #fff; border: none; padding: 10px 25px; border-radius: 30px; font-weight: bold; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: 0.3s; }
        .newsletter-input-group button:hover { background: #3d0d15; }

        .newsletter-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: #555; line-height: 1.5; margin-bottom: 20px; }
        .newsletter-checkbox input { margin-top: 3px; cursor: pointer; }
        .newsletter-checkbox a { color: #333; text-decoration: underline; font-weight: 600; }

        .footer-action-btns { display: flex; gap: 15px; }
        .f-action-btn { flex: 1; border: 1px solid #ccc; border-radius: 30px; padding: 12px; background: #fff; color: var(--color-dark-bordo); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; transition: 0.3s; }
        .f-action-btn:hover { border-color: var(--color-dark-bordo); background: #fafafa; }

        .footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-color); padding-top: 20px; }
        .copyright { font-size: 13px; color: #888; }
        .payment-icons { display: flex; gap: 15px; align-items: center; font-weight: 800; font-style: italic; color: #111;}
        .payment-icons span { display: flex; align-items: center; gap: 4px;}
        .payment-icons .guvenli { color: #2e7d32; font-style: normal; font-size: 14px; }
        .payment-icons .wu { color: #ffd600; }
        .payment-icons .visa { color: #1a237e; font-style: normal; }

        .sub-footer { text-align: center; padding: 10px 0 40px; font-size: 20px; font-weight: 700; color: #333; display: flex; justify-content: center; align-items: center; gap: 8px;}
        .sub-footer .ticimax { color: #0a1f44; font-size: 16px; display: flex; align-items: center;}
        
        .footer-toggle-icon { display: none; }

        .back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%; background-color: #000; color: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
        .back-to-top.show { opacity: 1; visibility: visible; }
        .back-to-top:hover { transform: translateY(-5px); background-color: #222; }

        /* =========================================
           MOBİL UYUMLULUK
           ========================================= */
        @media (max-width: 992px) {
            .navbar-container { padding: 10px 15px; border-radius: 50px; }
            .mobile-left-icons { display: flex; }
            .nav-sidebar { display: none; }
            .desktop-search { display: none; }
            
            .logo-area img { height: 26px !important; }

            .icon-btn { width: 40px; height: 40px; }
            .nav-icons { gap: 8px; }
            
            .gift-card-btn { display: none; }

            .nav-sidebar { display: block; position: fixed; top: 0; left: -100%; width: 90%; max-width: 400px; height: 100vh; background-color: #ffffff; z-index: 999999; transition: left 0.3s ease-in-out; overflow-y: auto; box-shadow: 2px 0 15px rgba(0,0,0,0.2); }
            .nav-sidebar.active { left: 0; }
            .menu-overlay.active { display: block; }
            .sidebar-header { display: flex; height: 60px; background: linear-gradient(to right, #63a4d0, #856a84, #8a2b3b); justify-content: flex-end; align-items: center; padding: 0 20px; }
            .close-btn { background: none; border: none; color: white; cursor: pointer; }
            
            .nav-links { flex-direction: column; padding: 0; gap: 0; }
            .nav-links > li { width: 100%; border-bottom: 1px solid var(--border-color); height: auto; flex-direction: column; align-items: flex-start; }
            .nav-links > li > a { padding: 18px 20px; font-size: 14px; font-weight: 500; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; width: 100%; }
            .nav-links > li:hover > a::after { display: none; }
            .chevron-icon { display: block; width: 16px; height: 16px; transition: transform 0.3s; }
            .has-dropdown.open .chevron-icon { transform: rotate(90deg); }
            .mega-menu { position: static; display: none; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-radius: 0; border-top: none; background-color: #f9f9f9; flex-direction: column; width: 100%; }
            .has-dropdown:hover .mega-menu { display: none; }
            .has-dropdown.open .mega-menu { display: flex; }
            .menu-col { padding: 15px 30px; width: 100%; border-right: none; }
            .menu-img-col { display: none; }
            .divider { margin: 15px 0; }
            .menu-col h4 { font-size: 14px; margin-bottom: 10px; }
            
            .slide { aspect-ratio: 16 / 9; }
            .slider-btn { width: 35px; height: 35px; }
            .dot { width: 20px; height: 4px; }
            
            .prod-slide { flex: 0 0 calc(50% - 7.5px); scroll-snap-align: start; min-height: 320px; }
            .prod-track { padding: 0 15px; gap: 15px; }
            .card-gradient { padding: 12px; }
            .prod-title { font-size: 11px; white-space: normal; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 4px; }
            .prod-price { font-size: 15px; }
            .badge-free-shipping { font-size: 8px; padding: 4px 8px; top: 10px; left: 10px; }
            .btn-favorite { width: 30px; height: 30px; top: 10px; right: 10px; }
            .btn-favorite svg { width: 14px; height: 14px; }
            .carousel-nav-btn { width: 30px; height: 30px; background-color: rgba(255,255,255,0.4); color: #fff; border: 1px solid rgba(255,255,255,0.6); }
            .carousel-nav-btn svg { width: 14px; height: 14px; }
            .c-prev { left: 5px; }
            .c-next { right: 5px; }

            .design-section { padding: 20px; }
            .design-container { flex-direction: column; gap: 30px; }
            .thumbnails { position: static; transform: none; flex-direction: row; justify-content: center; margin-bottom: 20px; }
            .preview-circle { width: 280px; height: 280px; margin: 0 auto; }
            .jersey-img { width: 220px; }
            #liveJerseyNumber { font-size: 85px; top: 30%; }
            #liveJerseyName { font-size: 20px; top: 76%; }

            .players-container { padding: 25px 20px; }
            .players-header { margin-bottom: 20px; }
            .desktop-only { display: none !important; }
            .mobile-only { display: flex; }
            .filter-btn { font-size: 12px; padding: 10px 18px; }
            .player-slide { flex: 0 0 calc(50% - 10px); aspect-ratio: auto; height: 320px; }
            .players-mobile-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 25px; }
            .mobile-section-title { font-size: 22px; font-weight: 900; color: var(--color-dark-bordo); line-height: 1.1; text-transform: uppercase; }
            .mobile-nav-arrows { display: flex; gap: 10px; }
            .m-arrow { width: 45px; height: 45px; border-radius: 50%; border: 1px solid #222; background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #222; }
            .m-arrow:active { background: #f0f0f0; }

            .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
            .collection-title { font-size: 18px; }
            .collection-label { font-size: 14px; bottom: 15px; left: 15px; }
            .retro-logo { width: 80px; }
            .category-card-retro .category-title { font-size: 18px; }

            .site-footer { padding: 25px 20px; border-radius: 20px; }
            .footer-top { flex-direction: column; gap: 20px; border-bottom: none; padding-bottom: 0; margin-bottom: 20px; }
            .footer-main { grid-template-columns: 1fr; gap: 0; margin-bottom: 20px; }
            .newsletter-col { border-left: none; padding-left: 0; border-top: 1px solid var(--border-color); padding-top: 25px; margin-top: 10px; }
            
            .footer-col:not(.newsletter-col) { border-bottom: 1px solid var(--border-color); }
            .footer-heading { margin-bottom: 0; padding: 15px 0; cursor: pointer; font-size: 15px; }
            .footer-toggle-icon { display: block; transition: transform 0.3s; }
            .footer-links { display: none; padding-bottom: 15px; }
            .footer-col.active .footer-links { display: flex; }
            .footer-col.active .footer-toggle-icon { transform: rotate(180deg); }

            .footer-action-btns { flex-direction: column; gap: 10px; }
            .footer-bottom { flex-direction: column-reverse; gap: 15px; text-align: center; }
            .payment-icons { justify-content: center; flex-wrap: wrap; }
        }
   /* =========================================
   SAĞDAN AÇILAN SEPET ÇEKMECESİ (DRAWER)
   ========================================= */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(2px);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: #ffffff;
    z-index: 999999;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease-in-out;
    display: flex;
    flex-direction: column;
    visibility: hidden;
}

.cart-drawer.active {
    right: 0;
    visibility: visible;
}

@media (max-width: 768px) {
    .cart-drawer {
        max-width: 100%;
    }
}

/* Sepet Header */
.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 25px;
    border-bottom: 1px solid var(--border-color);
}

.cart-drawer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.cart-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: transform 0.2s;
}
.cart-close-btn:hover {
    transform: scale(1.1);
}

/* Sepet İçerik (Boş Durum) */
.cart-drawer-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.empty-cart-icon {
    margin-bottom: 25px;
    color: #111;
}

.empty-cart-heading {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.empty-cart-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 280px;
}

.cart-action-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
    letter-spacing: 0.5px;
}

.btn-discover {
    background-color: #000;
    color: #fff;
    border: none;
    margin-bottom: 12px;
}

.btn-login {
    background-color: #000;
    color: #fff;
    border: none;
}

.cart-action-btn:hover {
    opacity: 0.85;
}

/* Mobil Uyumluluk */
@media (max-width: 480px) {
    .cart-drawer {
        max-width: 100%;
        right: -100%;
    }
}

/* --- MOBİL ALT NAVİGASYON BARI & YÜZEN BUTONLAR (SADECE MOBİLDE) --- */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ffffff;
    border-top: 1px solid #E5E7EB;
    z-index: 99995;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #4B5563;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    flex: 1;
    cursor: pointer;
}
.mobile-nav-item svg { color: #4B5563; }
.mobile-nav-item:hover, .mobile-nav-item.active { color: #700018; }
.mobile-nav-item:hover svg, .mobile-nav-item.active svg { color: #700018; }

.cart-deal-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: 75px;
    height: 75px;
    background-color: #4A071E;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-decoration: none;
    padding: 10px;
    z-index: 99995;
}

@media (max-width: 992px) {
    body {
        padding-bottom: 60px !important;
    }
    .product-section {
        width: 100% !important;
        margin: 20px auto !important;
        padding: 0 !important;
    }
    .prod-carousel-wrapper {
        padding: 0 15px 15px 15px !important;
    }
    .prod-track {
        gap: 15px !important;
    }
    .prod-slide {
        flex: 0 0 85% !important;
        min-height: 440px !important;
        scroll-snap-align: center !important;
    }
    .category-card {
        padding: 20px !important;
        border-radius: 20px !important;
    }
    .category-title {
        font-size: 18px !important;
        padding-right: 40px !important;
    }
    .category-arrow {
        bottom: 20px !important;
        right: 20px !important;
        width: 36px !important;
        height: 36px !important;
    }
    .c-prev {
        left: 5px !important;
    }
    .c-next {
        right: 5px !important;
    }
    .carousel-nav-btn {
        width: 36px !important;
        height: 36px !important;
        background-color: rgba(255, 255, 255, 0.85) !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
        z-index: 20 !important;
    }
    .mobile-bottom-nav {
        display: flex !important;
    }
    .cart-deal-badge {
        position: fixed !important;
        bottom: 72px !important;
        left: 12px !important;
        width: 70px !important;
        height: 70px !important;
        font-size: 10.5px !important;
        z-index: 99996 !important;
    }
    .back-to-top, #backToTopBtn {
        position: fixed !important;
        bottom: 72px !important;
        right: 12px !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        background-color: #000000 !important;
        color: #ffffff !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 99996 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
    }
}