* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    color: #333;
    margin: 0;
    padding: 0;
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: transparent;
    padding: 20px 0;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}


/* Yeşil çizgi kaldırıldı */

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}


.header-nav {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-left, .nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 900;
    padding: 8px 16px;
    transition: color 0.2s ease;
    font-family: 'Spartan', 'Arial Black', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link.home {
    font-size: 2rem;
    font-weight: 900;
    color: #000000;
    margin-right: 20px;
    font-family: 'Spartan', 'Arial Black', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-logo {
    width: 13tam0px;
    height: 90px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-link.home:hover,
.nav-link.home.active {
    color: #228b22;
}

.nav-link.home:hover .home-logo {
    transform: scale(1.1);
    filter: brightness(1.2);
}


.nav-link:hover,
.nav-link.active {
    color: #000000;
}

.nav-link.football:hover,
.nav-link.football.active {
    color: #228b22;
}

.nav-link.basketball:hover,
.nav-link.basketball.active {
    color: #FF9800;
}

.nav-link.products:hover,
.nav-link.products.active {
    color: #2196f3;
}

.nav-link.login:hover,
.nav-link.login.active {
    color: #7b1fa2;
}

.nav-link.cart:hover,
.nav-link.cart.active {
    color: #B8860B;
}

.nav-link.orders:hover,
.nav-link.orders.active {
    color: #8B0000;
}

.nav-link.profile:hover,
.nav-link.profile.active {
    color: #808080;
}

.nav-link.logout:hover,
.nav-link.logout.active {
    color: #d32f2f;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: linear-gradient(135deg, #FF5722 0%, #F44336 100%);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.6);
    animation: badgePulse 0.6s ease;
    z-index: 1000;
    border: 2px solid white;
}

.nav-link.cart {
    position: relative;
}

@keyframes badgePulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Products Gallery */
.products-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.models-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.products-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px auto 0 auto;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    justify-items: center;
}

.product-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image {
    transform: scale(1.1);
}

/* Product Modal Styles */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.product-modal-container {
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.product-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 50%, #ffffff 100%);
    border-bottom: 2px solid #e0e0e0;
}

.product-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
}

.product-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.product-modal-content {
    padding: 20px;
    text-align: center;
}

.product-modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.model-item {
    background: transparent;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.model-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.product-model {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-model:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #4caf50;
}

.model-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.product-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.model-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.model-item:hover .model-main-image {
    transform: scale(1.05);
}

.product-model:hover .product-main-image {
    transform: scale(1.05);
}

.model-info {
    padding: 25px;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.model-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.model-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.model-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.model-tag {
    background: #4caf50;
    color: white;
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-tag {
    background: #4caf50;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .models-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .model-image-container {
        height: 450px;
    }
    
    .model-info {
        padding: 20px;
    }
    
    .model-info h3 {
        font-size: 1.3rem;
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .product-image-container {
        height: 250px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-info h3 {
        font-size: 1.3rem;
    }
}

.gallery-container {
    position: relative;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
}

.gallery-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #e9ecef;
}

.gallery-header h3 {
    margin: 0 0 10px 0;
    color: #2E7D32;
    font-size: 1.5rem;
    font-weight: bold;
}

.gallery-header p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.gallery-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    align-items: start;
    justify-items: center;
    max-height: calc(90vh - 120px);
}

.gallery-image {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 !important;
    width: 120px !important;
    height: 120px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    cursor: pointer;
}

.gallery-image img {
    width: 100% !important;
    height: 120px !important;
    object-fit: cover !important;
    display: block !important;
    aspect-ratio: 1 !important;
    border-radius: 10px;
    max-width: 120px !important;
    max-height: 120px !important;
}

.gallery-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-close:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

/* Mobile Gallery */
@media (max-width: 768px) {
    .gallery-container {
        width: 98%;
        height: 95vh;
        max-height: 95vh;
    }
    
    .gallery-content {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 6px;
        padding: 15px;
        max-height: calc(95vh - 100px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    
    .gallery-image {
        width: 100px !important;
        height: 100px !important;
        aspect-ratio: 1 !important;
    }
    
    .gallery-image img {
        height: 100px !important;
        width: 100px !important;
        aspect-ratio: 1 !important;
        border-radius: 8px;
        max-width: 100px !important;
        max-height: 100px !important;
    }
}

/* Mobile Header */
@media (max-width: 768px) {
    .header {
        padding: 10px 5px !important;
        min-height: auto !important;
    }
    
    .header-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .nav-left {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        align-items: center;
        width: 100%;
    }
    
    .nav-right {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        align-items: center;
        width: 100%;
        justify-content: flex-start;
    }
    
    .nav-link {
        font-size: 0.6rem !important;
        padding: 3px 6px !important;
        letter-spacing: 0.3px !important;
    }
    
    .nav-link.home {
        font-size: 0.6rem !important;
        margin-right: 8px !important;
        padding: 3px 6px !important;
    }
    
    .home-logo {
        width: 90px !important;
        height: 90px !important;
    }
    
    .nav-link {
        padding: 8px 6px !important;
        font-size: 1rem !important;
        white-space: nowrap;
        text-align: center;
        min-width: 60px !important;
        line-height: 1.2 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 48px !important;
        height: 48px !important;
        font-weight: 600;
        vertical-align: middle !important;
        box-sizing: border-box !important;
    }
    
    .nav-link.home {
        display: flex !important;
        font-size: 1.2rem !important;
        padding: 6px 8px !important;
        background: transparent !important;
        color: #000000 !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: none !important;
        border: none !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-link.home:hover {
        background: transparent !important;
        transform: scale(1.05) !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    .nav-link:not(.home) {
        flex: 1;
        min-width: 0;
        font-size: 1rem !important;
    }
    
    .nav-link.products {
        font-size: 0.6rem !important;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .nav-link.basketball {
        font-size: 0.6rem !important;
    }
    
    .nav-link.football {
        font-size: 0.6rem !important;
    }
    
    .nav-link.cart,
    .nav-link.orders,
    .nav-link.profile,
    .nav-link.logout {
        font-size: 0.6rem !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        display: flex !important;
        line-height: 1.2 !important;
        height: 48px !important;
        vertical-align: middle !important;
    }
    
    .nav-link.orders {
        font-size: 0.6rem !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1.2 !important;
        height: 48px !important;
        vertical-align: middle !important;
        width: 100% !important;
        min-width: 80px !important;
        padding: 8px 4px !important;
        box-sizing: border-box !important;
    }
    
    .nav-link.products {
        font-size: 0.6rem !important;
    }
}

/* Mobile Banner */
@media (max-width: 768px) {
    .hero-banner-section {
        min-height: 80vh !important;
        padding: 30px 15px;
    }
    
    .banner-content {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .banner-half {
        width: 100% !important;
    }
    
    .banner-images-container {
        flex-direction: row !important;
        gap: 15px !important;
    }
    
    .banner-image-item {
        flex: 1 !important;
        min-width: 120px !important;
        max-width: 150px !important;
    }
    
    .banner-image {
        max-width: 100% !important;
        height: auto !important;
    }
    
.banner-description h3 {
    font-size: 0.6rem !important;
    margin-bottom: 10px !important;
}
    
    .banner-description p {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
    }
    
    .banner-common-features {
        position: static !important;
        transform: none !important;
        margin-top: 20px !important;
    }
    
    .banner-common-features .banner-features {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .banner-common-features .banner-feature {
        padding: 12px 20px !important;
        font-size: 0.8rem !important;
    }
}



@media (max-width: 480px) {
    .gallery-container {
        width: 98%;
        height: 95vh;
        max-height: 95vh;
    }
    
    .gallery-content {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 4px;
        padding: 10px;
        max-height: calc(95vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    
    .gallery-image {
        width: 80px !important;
        height: 80px !important;
        aspect-ratio: 1 !important;
    }
    
    .gallery-image img {
        height: 80px !important;  
        width: 80px !important;
        aspect-ratio: 1 !important;
        border-radius: 6px;
        max-width: 80px !important;
        max-height: 80px !important;
    }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1200%); }
}

.main-content {
    display: grid;
    grid-template-columns: 518px 1fr;
    gap: 15px;
    align-items: start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side - Football Field */
.left-side {
    display: flex;
    justify-content: center;
}

.field-container {
    background: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.15),
        0 4px 10px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border: 8px solid #ffffff;
    width: 100%;
    max-width: 466px;
    aspect-ratio: 518/816;
    overflow: hidden;
    position: relative;
}

.field-container::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(45deg, #228b22, #32cd32, #228b22);
    border-radius: 21px;
    z-index: -1;
}

.football-field {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('assets/saha.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.basketball-court {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('assets/basket.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

/* Player Boxes */
.player-box {
    position: absolute;
    width: 72px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #2E7D32;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.player-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.goalkeeper:hover {
    transform: translateX(-50%) !important;
    box-shadow: none !important;
    transition: none !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 15px !important;
}

.goalkeeper {
    transition: none !important;
    position: absolute !important;
    left: 50% !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    box-shadow: none !important;
}

/* Basketball Player Positions */
.basketball-player[data-position="C"] {
    left: 50%;
    top: 65%;
    transform: translateX(-50%);
}

.basketball-player[data-position="PF"] {
    left: 20%;
    top: 50%;
}

.basketball-player[data-position="SF"] {
    left: 65%;
    top: 50%;
}

.basketball-player[data-position="SG"] {
    left: 15%;
    top: 30%;
}

.basketball-player[data-position="PG"] {
    left: 70%;
    top: 30%;
}

.basketball-player:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Basketball player text centering */
.basketball-player .player-text {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    background: transparent !important;
    font-size: 10px !important;
    font-weight: bold !important;
    color: #333 !important;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8) !important;
    outline: none !important;
    padding: 2px !important;
    box-sizing: border-box !important;
    cursor: text !important;
}

/* Basketball specific styles */
/* Football specific styles */
#footballContent .form-section::before {
    background: linear-gradient(90deg, #228b22, #32cd32, #228b22, #32cd32, #228b22);
}

/* Basketball specific styles */
#basketballContent .form-section::before {
    background: linear-gradient(90deg, #FF9800, #FFC107, #FF9800, #FFC107, #FF9800);
}

#basketballContent .btn-success {
    background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

#basketballContent .btn-success:hover {
    background: linear-gradient(135deg, #F57C00 0%, #FF9800 100%);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

#basketballContent .btn-primary {
    background: #FF9800;
    color: white;
}

#basketballContent .btn-primary:hover:not(:disabled) {
    background: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

#basketballContent .btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#footballContent .btn-success {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

#footballContent .btn-success:hover {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* Modal Styles */
.login-modal, .address-modal, .cart-modal, .image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.login-container, .address-container, .cart-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalSlideIn 0.3s ease-out;
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.image-modal-close:hover {
    background: white;
    transform: scale(1.1);
}

#modalImage {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.image-modal-title {
    margin-top: 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.login-header, .address-header, .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.login-header {
    flex-direction: column;
    text-align: center;
    position: relative;
}

.login-logo {
    margin-bottom: 15px;
}

.login-logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    animation: logoPulse 2s ease infinite;
    object-fit: contain;
    padding: 20px; /* Logo için iç boşluk */
}

.login-header h2, .address-header h2, .cart-header h2 {
    margin: 0;
    color: #333;
}

.login-close, .address-close, .cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.login-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.login-close:hover, .address-close:hover, .cart-close:hover {
    background: #f8f9fa;
    color: #333;
}

.login-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.login-tab {
    flex: 1;
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.login-tab.active {
    border-bottom-color: #2E7D32;
    color: #2E7D32;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #2E7D32;
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #f8f9fa;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-danger {
    background: linear-gradient(135deg, #FF5722 0%, #F44336 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(244, 67, 54, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(244, 67, 54, 0.4);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 11px;
}

.remove-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF5722 0%, #F44336 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(244, 67, 54, 0.3);
}

.remove-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(244, 67, 54, 0.4);
}

.remove-icon {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    color: white;
}

.cart-item-info h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.cart-item-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.cart-item-price {
    font-weight: 600;
    color: #2E7D32;
    font-size: 18px;
}

.cart-actions {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

/* Success Alert Modal */
.success-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.success-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 90%;
    animation: slideIn 0.5s ease;
}

.success-icon {
    position: relative;
    margin-bottom: 20px;
}

.success-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    animation: logoPulse 1s ease infinite;
}

.success-checkmark {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    animation: checkmarkBounce 0.6s ease 0.3s both;
}

.success-title {
    color: #2E7D32;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    animation: titleSlide 0.6s ease 0.2s both;
}

.success-message {
    color: #666;
    font-size: 1.1rem;
    margin: 0 0 30px 0;
    animation: messageSlide 0.6s ease 0.4s both;
}

.success-progress {
    width: 100%;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.success-bar {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #2E7D32, #4CAF50);
    border-radius: 2px;
    animation: progressBar 2s ease forwards;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes checkmarkBounce {
    0% { 
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(0deg);
    }
    100% { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes titleSlide {
    from { 
        opacity: 0;
        transform: translateX(-30px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes messageSlide {
    from { 
        opacity: 0;
        transform: translateX(30px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes progressBar {
    from { width: 0%; }
    to { width: 100%; }
}

/* Orders Modal */
.orders-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.orders-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    max-width: 1200px;
    width: 98%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}

.orders-header {
    background: linear-gradient(135deg, #6c757d 0%, #868e96 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.orders-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
}

.orders-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.orders-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.orders-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.orders-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.orders-content {
    padding: 30px;
    text-align: left;
}

/* Orders List Styles - Grid Layout */
.orders-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.order-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(108, 117, 125, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.order-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c757d, #868e96);
}

.order-item:hover {
    box-shadow: 0 8px 30px rgba(108, 117, 125, 0.2);
    transform: translateY(-4px);
    border-color: #6c757d;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
    position: relative;
}

.order-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #6c757d, #868e96);
}

.order-header h4 {
    margin: 0;
    color: #6c757d;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.order-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-processing {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.status-shipped {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-delivered {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.order-date {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
    font-weight: 500;
}

.order-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.order-item-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.order-item-detail:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.order-item-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item-info strong {
    color: #2E7D32;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.team-name {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
    padding: 6px 12px;
    background: #f0f8f0;
    border-radius: 6px;
    border-left: 3px solid #4CAF50;
}

.players-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    margin-top: 15px;
}

.player-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
    border: 1px solid #e8f5e8;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.player-item:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.order-price {
    color: #2E7D32;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-radius: 12px;
    border: 2px solid #4CAF50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.shipping-info {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border-radius: 12px;
    border: 2px solid #2196F3;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.1);
    position: relative;
    overflow: hidden;
}

.shipping-info::before {
    content: '🚚';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.shipping-company {
    color: #1976D2;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.tracking-number {
    color: #666;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid #e0e0e0;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Mobile Responsive for Orders Modal */
@media (max-width: 768px) {
    .orders-container {
        max-width: 98%;
        width: 98%;
        margin: 5px;
    }
    
    .orders-content {
        padding: 20px 15px;
    }
    
    .orders-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .order-item {
        padding: 20px;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-item-detail {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .order-price {
        text-align: center;
        padding: 12px;
    }
    
    .players-list {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 6px;
    }
    
    .player-item {
        text-align: center;
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .shipping-info {
        padding: 15px;
    }
}

.empty-orders {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.empty-icon {
    position: relative;
    margin-bottom: 10px;
}

.empty-cart-icon {
    font-size: 4rem;
    opacity: 0.6;
    animation: cartFloat 3s ease-in-out infinite;
}

.empty-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid #6c757d;
    border-radius: 50%;
    animation: emptyPulse 2s ease infinite;
}

.empty-orders h3 {
    color: #6c757d;
    font-size: 1.5rem;
    margin: 0;
    font-weight: bold;
}

.empty-orders p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.empty-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Animations */
@keyframes cartFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes emptyPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Payment Modal */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.payment-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}

.payment-header {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.payment-logo {
    margin-bottom: 15px;
}

.payment-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    animation: logoPulse 2s ease infinite;
    object-fit: contain;
    padding: 15px;
}

.payment-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.payment-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.payment-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.payment-content {
    padding: 30px;
}

.order-summary {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2E7D32;
}

.order-summary h3 {
    color: #2E7D32;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.payment-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.payment-order-item:last-child {
    border-bottom: none;
}

.total-price {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #2E7D32;
    font-size: 1.2rem;
    color: #2E7D32;
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-methods h3 {
    color: #2E7D32;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #2E7D32;
    background: #f8f9fa;
}

.payment-option input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
}

.payment-option-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.payment-option-text strong {
    color: #2E7D32;
    font-size: 1rem;
}

.payment-option-text small {
    color: #666;
    font-size: 0.9rem;
}

.payment-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #2E7D32;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.order-header h4 {
    margin: 0;
    color: #2E7D32;
    font-size: 1.2rem;
}

.order-status {
    background: #2E7D32;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.order-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.order-items {
    margin-bottom: 15px;
}

.order-item-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.order-item-detail:last-child {
    border-bottom: none;
}

.order-item-info {
    flex: 1;
    margin-right: 15px;
}

.team-name {
    color: #2E7D32;
    font-weight: 600;
    margin: 5px 0;
    font-size: 0.9rem;
}

.players-list {
    margin-top: 8px;
    padding-left: 10px;
}

.player-item {
    color: #666;
    font-size: 0.85rem;
    margin: 3px 0;
    padding: 2px 0;
}

.shipping-info {
    margin-top: 10px;
    padding: 8px 12px;
    background: #e8f5e8;
    border-radius: 6px;
    border-left: 3px solid #4CAF50;
}

.shipping-company {
    color: #2E7D32;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.tracking-number {
    color: #4CAF50;
    font-size: 0.85rem;
    font-family: monospace;
}

/* Order Status Styles */
.order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-onaylandı {
    background: #E8F5E8;
    color: #2E7D32;
}

.status-processing {
    background: #E3F2FD;
    color: #1976D2;
}

.status-shipped {
    background: #FFF3E0;
    color: #F57C00;
}

.status-delivered {
    background: #E8F5E8;
    color: #4CAF50;
}

.status-cancelled {
    background: #FFEBEE;
    color: #F44336;
}

.order-price {
    color: #2E7D32;
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
}

.order-total {
    padding-top: 15px;
    border-top: 2px solid #2E7D32;
    font-size: 1.1rem;
    color: #2E7D32;
    text-align: right;
}

/* Profile Modal */
.profile-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.profile-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}

.profile-header {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.profile-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.profile-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.profile-content {
    padding: 30px;
}

.profile-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #2E7D32;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-item label {
    font-weight: 600;
    color: #2E7D32;
    margin: 0;
}

.info-item span {
    color: #666;
    font-weight: 500;
}

.address-section h3 {
    color: #2E7D32;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2E7D32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.forgot-password-link {
    text-align: right;
    margin: 10px 0;
}

.forgot-password-link a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password-link a:hover {
    color: #45a049;
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile */
    .header {
        padding: 1px 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .header-left {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .header-logo {
        width: 100px;
        height: 100px;
    }
    
    
    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 14px;
        min-width: auto;
    }
    
    /* Main Content Mobile */
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
        display: flex;
        flex-direction: column;
    }
    
    .left-side {
        order: 3; /* Saha oyuncu isimlerinin altında */
    }
    
    .right-side {
        order: 1; /* Form yukarıda */
    }
    
    /* Player names section comes before field on mobile */
    .player-names-section {
        order: 2;
    }
    
    /* Mobile buttons - hide on desktop */
    .mobile-buttons {
        display: none;
    }
    
    /* Show mobile buttons on mobile */
    .mobile-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 20px;
    }
    
    /* Hide desktop buttons on mobile */
    .right-side .action-buttons {
        display: none;
    }
    
    /* Ensure proper order on mobile */
    .main-content .left-side {
        order: 3;
    }
    
    .main-content .right-side {
        order: 1;
    }
    
    .main-content .player-names-section {
        order: 2;
    }
    
    .main-content .mobile-buttons {
        order: 4;
    }
    
    /* Field Container Mobile */
    .field-container {
        width: 100%;
        max-width: 360px;
        aspect-ratio: 518/816;
        margin: 0 auto;
    }
    
    .football-field, .basketball-court {
        height: 100%;
    }
    
    /* Player Boxes Mobile */
    .player-box {
        width: 50px;
        height: 30px;
        font-size: 8px;
    }
    
    .player-text {
        font-size: 7px;
        line-height: 1.1;
    }
    
    /* Goalkeeper Mobile */
    .goalkeeper {
        bottom: 15px !important; /* 10px yukarı taşındı */
    }
    
    /* Form Sections Mobile */
    .form-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .player-input-group {
        margin-bottom: 12px;
    }
    
    .player-input-group label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .player-input-group input {
        padding: 10px;
        font-size: 14px;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .action-buttons {
        gap: 10px;
    }
    
    /* Modals Mobile */
    .login-container, .address-container, .cart-container {
        width: 95%;
        padding: 20px;
        margin: 10px;
    }
    
    .login-header h2, .address-header h2, .cart-header h2 {
        font-size: 1.3rem;
    }
    
    .form-group input, .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    /* Banner Mobile */
    .banner-container {
        width: 95%;
        max-width: 600px;
        height: 75vh;
        max-height: 700px;
        margin: 0 auto;
    }
    
    .banner-header h3 {
        font-size: 1.2rem;
    }
    
    .banner-header p {
        font-size: 0.8rem;
    }
    
    .banner-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .banner-prev {
        left: 5px;
    }
    
    .banner-next {
        right: 5px;
    }
    
    .banner-slide img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    /* Cart Items Mobile */
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cart-item-info h4 {
        font-size: 14px;
    }
    
    .cart-item-info p {
        font-size: 12px;
    }
    
    .cart-item-price {
        font-size: 16px;
    }
    
    /* Orders Mobile */
    .order-item-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-item-info {
        margin-right: 0;
        width: 100%;
    }
    
    .order-price {
        align-self: flex-end;
        font-size: 1rem;
    }
    
    .players-list {
        margin-top: 5px;
        padding-left: 5px;
    }
    
    .player-item {
        font-size: 0.8rem;
        margin: 2px 0;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .header {
        padding: 1px 10px;
    }
    
    
    .nav-link {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .main-content {
        padding: 10px;
        gap: 15px;
    }
    
    .field-container {
        height: 250px;
    }
    
    .player-box {
        width: 45px;
        height: 25px;
        font-size: 7px;
    }
    
    .player-text {
        font-size: 6px;
    }
    
    /* Goalkeeper Extra Small Mobile */
    .goalkeeper {
        bottom: 15px !important; /* 10px yukarı taşındı */
    }
    
    .form-section {
        padding: 12px;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .login-container, .address-container, .cart-container {
        width: 98%;
        padding: 15px;
    }
    
    .banner-container {
        width: 98%;
        max-width: 450px;
        height: 70vh;
        max-height: 600px;
        margin: 0 auto;
    }
    
    .banner-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .banner-prev {
        left: 3px;
    }
    
    .banner-next {
        right: 3px;
    }
    
    .banner-slide img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .main-content {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .left-side {
        order: 1;
    }
    
    .right-side {
        order: 2;
    }
    
    .field-container {
        height: 200px;
    }
    
    .player-box {
        width: 40px;
        height: 20px;
        font-size: 6px;
    }
    
    .player-text {
        font-size: 5px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .nav-link:hover {
        transform: none;
    }
    
    .player-box:hover {
        transform: none;
    }
    
    .banner-arrow:hover {
        transform: none;
    }
    
    /* Touch targets should be at least 44px */
    .btn {
        min-height: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .banner-arrow {
        min-width: 44px;
        min-height: 44px;
    }
}

.player-text {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 9px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    outline: none;
    padding: 2px;
    box-sizing: border-box;
    cursor: text;
    transition: all 0.2s ease;
}

.player-text:focus {
    outline: 2px solid #4caf50;
    outline-offset: 2px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

/* Mobile touch optimizations */
@media (hover: none) and (pointer: coarse) {
    .player-box {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .player-text {
        -webkit-user-select: text;
        user-select: text;
        -webkit-touch-callout: text;
    }
    
    .goalkeeper {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
}

.player-text:empty::before {
    content: attr(data-placeholder);
    color: rgba(255, 255, 255, 0.7);
    font-size: 8px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.goalkeeper {
    bottom: 15px !important; /* 10px yukarı taşındı */
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(255, 193, 7, 0.9);
    border-color: #FF8F00;
    position: absolute !important;
}

.defender {
    background: rgba(33, 150, 243, 0.9);
    border-color: #1976D2;
}

.midfielder {
    background: rgba(76, 175, 80, 0.9);
    border-color: #388E3C;
}

.forward {
    background: rgba(244, 67, 54, 0.9);
    border-color: #D32F2F;
}

/* Right Side - Forms */
.right-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 400px;
    max-width: 500px;
}

.form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        0 4px 15px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border: 2px solid rgba(34, 139, 34, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-section:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.15),
        0 8px 20px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF9800, #FFC107, #FF9800, #FFC107, #FF9800);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(34, 139, 34, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.form-section label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.form-section input, .form-section select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(34, 139, 34, 0.2);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.05),
        0 2px 8px rgba(0,0,0,0.03);
    position: relative;
}

.form-section input:focus, .form-section select:focus {
    outline: none;
    border-color: #228b22;
    box-shadow: 
        0 0 0 4px rgba(34, 139, 34, 0.15),
        0 4px 15px rgba(34, 139, 34, 0.1),
        inset 0 2px 4px rgba(0,0,0,0.05);
    background: white;
    transform: translateY(-1px);
}

.form-section input::placeholder, .form-section select::placeholder {
    color: #999;
    font-weight: 400;
    transition: all 0.3s ease;
}

.form-section input:focus::placeholder, .form-section select:focus::placeholder {
    color: #ccc;
    transform: translateY(-2px);
}

.player-names-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.player-names-section h3 {
    margin-bottom: 15px;
    color: #333;
}

.player-inputs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.player-input-group {
    display: flex;
    flex-direction: column;
}

.player-input-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #555;
}

.player-input-group input {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.player-input-group input:focus {
    outline: none;
    border-color: #2a5298;
}

.action-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    max-width: 400px;
    margin: 20px auto 0 auto;
    justify-content: center;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    min-width: 120px;
    height: 36px;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    border: 1px solid #2E7D32;
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(46, 125, 50, 0.3);
}

.btn-primary:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    border: 1px solid #495057;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(108, 117, 125, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #F57C00 0%, #FF9800 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.payment-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.payment-section h3 {
    margin-bottom: 20px;
    color: #333;
}

.payment-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.payment-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.payment-info p:last-child {
    font-size: 18px;
    font-weight: 700;
    color: #2a5298;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 2spx;
        justify-content: center;
    }
    
    .field-container {
        width: 100%;
        max-width: 518px;
        height: 500px;
        margin: 0 auto;
    }
    
    .right-side {
        min-width: auto;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    
    .field-container {
        height: 400px;
    }
    
    .player-box {
        width: 60px;
        height: 30px;
    }
    
    .player-text {
        font-size: 7px;
    }
}

@media (max-width: 480px) {
    
    .field-container {
        height: 300px;
    }
    
    .player-box {
        width: 48px;
        height: 24px;
    }
    
    .player-text {
        font-size: 6px;
    }
}

/* Shipping Info Styles */
.shipping-info {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.1);
}

.shipping-company {
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 5px;
    font-size: 14px;
}

.tracking-number {
    font-weight: 500;
    color: #388e3c;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Price Information Styles */
.price-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #4caf50;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
}

.price-info h3 {
    color: #2a5298;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.total {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-label {
    font-weight: 600;
    color: #555;
}

.price-item.total .price-label {
    color: white;
}

.price-value {
    font-weight: 700;
    color: #2a5298;
}

.price-item.total .price-value {
    color: white;
    font-size: 1.2rem;
}

/* Model Selection Styles */
.model-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.model-option {
    position: relative;
}

.model-option input[type="radio"] {
    display: none;
}

.model-label {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.model-label:hover {
    border-color: #4caf50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.model-option input[type="radio"]:checked + .model-label {
    border-color: #4caf50;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.model-preview {
    width: 80px;
    height: 60px;
    margin-right: 15px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.model-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-info h4 {
    color: #2a5298;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.model-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Model Price Badge */
.model-price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.model-option {
    position: relative;
}

/* Responsive Model Selection */
@media (max-width: 768px) {
    .model-label {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }
    
    .model-preview {
        width: 100%;
        height: 80px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .model-info h4 {
        font-size: 1rem;
    }
    
    .model-info p {
        font-size: 0.85rem;
    }
    
    .model-price-badge {
        top: 5px;
        right: 5px;
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}

/* Homepage Styles */
.homepage-content {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

/* Ana sayfada sepete ekle butonlarını gizle */
.homepage-content .action-buttons,
.homepage-content .buttons-section,
.homepage-content #addToCart,
.homepage-content #resetSquad,
.homepage-content #basketballAddToCart,
.homepage-content #basketballResetBtn {
    display: none !important;
}

/* Ana sayfa gösterildiğinde global butonları gizle */
body:has(.homepage-content[style*="block"]) .mobile-buttons,
body:has(.homepage-content[style*="block"]) .action-buttons,
body:has(.homepage-content[style*="block"]) #addToCart,
body:has(.homepage-content[style*="block"]) #resetSquad,
body:has(.homepage-content[style*="block"]) #basketballAddToCart,
body:has(.homepage-content[style*="block"]) #basketballResetBtn {
    display: none !important;
}

/* Modern Buton Tasarımı */
.button-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.modern-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn {
    font-weight: 600;
}

/* Primary Modern Button */
.modern-btn.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.modern-btn.btn-primary:hover {
    background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation: none;
}

.modern-btn.btn-primary:disabled {
    background: linear-gradient(135deg, #ccc 0%, #bbb 100%);
    color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    animation: none;
}

/* Pulse animation for Sepete Ekle button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        transform: scale(1);
    }
}

/* Secondary Modern Button */
.modern-btn.btn-secondary {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.modern-btn.btn-secondary:hover {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* Bottom Action Buttons */
.bottom-action-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid #e9ecef;
}

.bottom-action-buttons .button-group {
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .button-group {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .modern-btn {
        flex: 1;
        max-width: 150px;
        min-width: auto;
    }
    
    .bottom-action-buttons {
        padding: 15px;
    }
}

.homepage-hero {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #2a5298;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.4rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
}

.models-section {
    margin-bottom: 100px;
    padding: 60px 0;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 50%, #ffffff 100%);
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.models-header {
    text-align: center;
    margin-bottom: 50px;
}

.models-header h2 {
    font-size: 3rem;
    color: #333;
    font-weight: 800;
    margin-bottom: 20px;
    text-underline-offset: 10px;
}

.models-description {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.models-description p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #34495e;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #4caf50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}



.features-section {
    margin-bottom: 80px;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-header h2 {
    font-size: 2.5rem;
    color: #2a5298;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #4caf50;
}


.feature-card h3 {
    font-size: 1.5rem;
    color: #2a5298;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #2a5298 0%, #4caf50 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 15px;
    min-width: 200px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hero Banner Section */
.hero-banner-section {
    margin: 0 -20px 60px -20px;
    position: relative;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 50%, #ffffff 100%);
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.banner-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: fadeIn 0.8s ease-in-out;
}

.banner-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide[data-sport="basketball"] {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('assets/ef1.png');
}

.banner-slide[data-sport="football"] {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('assets/3.png');
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.banner-content {
    text-align: center;
    color: #333;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.banner-half {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.banner-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-common-features {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner-common-features .banner-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-common-features .banner-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.banner-common-features .banner-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.banner-common-features .feature-icon {
    font-size: 1.2rem;
}

.banner-common-features .banner-feature span:last-child {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.banner-image-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.banner-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 400px;
}

.banner-image:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.banner-description h3 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 900;
    text-shadow: none;
    font-family: 'Orbitron', sans-serif;
}

.banner-description p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: none;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.banner-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 1.8rem;
}

.banner-feature span:last-child {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
    text-shadow: none;
}


/* Banner Progress Bar */
.banner-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
    .hero-banner-section {
        min-height: 100vh;
        margin: 0 -20px 40px -20px;
    }
    
    .banner-description h3 {
        font-size: 2.5rem;
    }
    
    .banner-description p {
        font-size: 1.2rem;
    }
    
    .banner-images-container {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }
    
    .banner-image-item {
        min-width: 120px;
        max-width: 45%;
        flex: 1;
    }
    
    .banner-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .banner-feature {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .banner-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .banner-arrow-left {
        left: 15px;
    }
    
    .banner-arrow-right {
        right: 15px;
    }
}

/* Çok küçük ekranlar için ekstra optimizasyon */
@media (max-width: 480px) {
    .hero-banner-section {
        min-height: 100vh;
    }
    
    .banner-description h3 {
        font-size: 2rem;
    }
    
    .banner-description p {
        font-size: 1rem;
    }
    
    .banner-images-container {
        gap: 10px;
    }
    
    .banner-image-item {
        min-width: 100px;
        max-width: 48%;
    }
    
    .banner-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .banner-feature {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .banner-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .banner-arrow-left {
        left: 10px;
    }
    
    .banner-arrow-right {
        right: 10px;
    }
}
    .hero-title {
        font-size: 2.5rem;
        background: rgba(255, 255, 255, 0.95);
        padding: 15px 20px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.95);
        padding: 12px 18px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        margin-bottom: 25px;
    }
    
    .hero-description {
        background: rgba(255, 255, 255, 0.95);
        padding: 20px 25px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .models-header h2 {
        font-size: 1.1rem !important; /* Çok küçük yapıldı */
        line-height: 1.0;
        padding: 0 20px;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
    }
    
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
   

/* Çok küçük ekranlar için ekstra optimizasyon */
@media (max-width: 480px) {
    .models-header h2 {
        font-size: 0.9rem !important;
        line-height: 1.0;
        padding: 0 25px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2a5298 0%, #4caf50 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
    text-decoration: underline;
}

.contact-info {
    margin-top: 10px;
}

.contact-link {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2e7d32;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Privacy Policy Modal */
.privacy-modal, .terms-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.privacy-container, .terms-container {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.privacy-header, .terms-header {
    background: linear-gradient(135deg, #2a5298 0%, #4caf50 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-header h2, .terms-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.privacy-close, .terms-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.privacy-close:hover, .terms-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.privacy-content, .terms-content {
    padding: 30px;
    line-height: 1.6;
}

.privacy-content h3, .terms-content h3 {
    color: #2a5298;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.privacy-content h3:first-child, .terms-content h3:first-child {
    margin-top: 0;
}

.privacy-content p, .terms-content p {
    color: #555;
    margin-bottom: 15px;
}

.privacy-content ul, .terms-content ul {
    color: #555;
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-content ul li, .terms-content ul li {
    margin-bottom: 8px;
}

.privacy-content a, .terms-content a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
}

.privacy-content a:hover, .terms-content a:hover {
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .privacy-container, .terms-container {
        width: 95%;
        max-height: 85vh;
    }
    
    .privacy-content, .terms-content {
        padding: 20px;
    }
    
    .privacy-header, .terms-header {
        padding: 15px 20px;
    }
    
    .privacy-header h2, .terms-header h2 {
        font-size: 1.5rem;
    }
}

/* Modern Alert Styles - Site Theme */
.modern-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 50%, #66BB6A 100%);
    color: white;
    padding: 35px 45px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(46, 125, 50, 0.4);
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    z-index: 10000;
    max-width: 450px;
    width: 90%;
    animation: slideInScale 0.5s ease-out;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.modern-alert::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 2s infinite;
    pointer-events: none;
}

.modern-alert h3 {
    margin: 0 0 20px 0;
    font-size: 22px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.modern-alert p {
    margin: 0 0 30px 0;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.modern-alert .alert-button {
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.15) 100%);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.modern-alert .alert-button:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.25) 100%);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7) rotate(-5deg);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Special Cart Success Alert */
.modern-alert.cart-success {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 50%, #81C784 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(76, 175, 80, 0.5);
}

.modern-alert.cart-success::after {
    content: '🛒';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
    animation: bounce 2s infinite;
}

.modern-alert.cart-success h3::before {
    content: '✓ ';
    color: #C8E6C9;
    font-size: 1.2em;
    margin-right: 8px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Cart Button Container */
.cart-button-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Kargo Bedava Icon */
.free-shipping-icon {
    width: 50px;
    height: 50px;
    animation: blink 2s infinite;
    object-fit: contain;
    display: block;
    transform: rotate(-20deg) translateY(-8px);
    position: relative;
    z-index: 10;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
        transform: rotate(-20deg) translateY(-8px) scale(1);
    }
    25%, 75% {
        opacity: 0.3;
        transform: rotate(-20deg) translateY(-8px) scale(0.9);
    }
}

/* Payment Modal Styles */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.payment-container {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.payment-header {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.payment-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.payment-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
}

.payment-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.payment-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.payment-content {
    padding: 25px;
}

.order-summary h3,
.payment-method h3 {
    color: #4CAF50;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.order-items {
    margin-bottom: 15px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-name {
    font-weight: 500;
    color: #333;
}

.order-item-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 2px;
}

.order-item-price {
    font-weight: 600;
    color: #4CAF50;
}

.order-total {
    padding: 15px 0;
    border-top: 2px solid #4CAF50;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4CAF50;
}

.payment-method {
    margin-top: 25px;
}

.payment-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.payment-option input[type="radio"] {
    margin-right: 10px;
}

.payment-option label {
    cursor: pointer;
    display: block;
    margin: 0;
}

.payment-option label strong {
    color: #4CAF50;
    font-size: 1rem;
}

.payment-option label small {
    color: #666;
    font-size: 0.85rem;
}

.payment-actions {
    padding: 20px 25px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    border-top: 1px solid #eee;
}

.payment-actions .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.payment-actions .btn-secondary {
    background: #6c757d;
    color: white;
}

.payment-actions .btn-secondary:hover {
    background: #5a6268;
}

.payment-actions .btn-primary {
    background: #4CAF50;
    color: white;
}

.payment-actions .btn-primary:hover {
    background: #45a049;
}

/* Homepage Content */
.homepage-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    margin: 20px 0;
}

.homepage-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: contain;
    display: block;
}

.homepage-image:hover {
    transform: scale(1.02);
}

/* Step Sections */
.step-section {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-title {
    color: #2E7D32;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-title::before {
    content: "✓";
    background: #4CAF50;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.current-step {
    border-color: #4CAF50;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.completed-step {
    border-color: #66BB6A;
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
}

.completed-step .step-title::before {
    background: #66BB6A;
}

.current-step .step-title::before {
    background: #FF6B35;
    content: "→";
}

.step-description {
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
    font-style: italic;
}

/* Page Footer */
.page-footer {
    background: white;
    padding: 40px 20px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    min-height: 120px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #999;
}

.footer-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
    margin: 0;
    padding: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

/* Team Name Input */
.team-name-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.team-name-input:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Formation Select */
.formation-select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.formation-select:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Create Squad Section */
.create-squad-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 60px 20px;
    text-align: center;
    margin: 40px 0 0 0;
}

.create-squad-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.create-squad-btn {
    color: white;
    border: none;
    padding: 20px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.football-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.football-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #66BB6A 0%, #388E3C 100%);
}

.basketball-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.basketball-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
}

.create-squad-btn:active {
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .homepage-content {
        padding: 20px 10px;
        margin: 10px 0;
    }
    
    .homepage-image {
        border-radius: 10px;
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .create-squad-section {
        padding: 40px 15px;
    }
    
    .create-squad-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .create-squad-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
        border-radius: 40px;
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .homepage-content {
        padding: 15px 5px;
        margin: 10px 0;
    }
    
    .homepage-image {
        border-radius: 8px;
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .create-squad-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .create-squad-btn {
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 35px;
        min-width: 220px;
    }
}

@media (max-width: 360px) {
    .homepage-image {
        border-radius: 6px;
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .create-squad-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
        border-radius: 30px;
        min-width: 200px;
    }
}