/* ===== HERO SLIDER STİLLERİ ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.slide-background img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    width: 90%;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide-content h1,
.slide-content h2 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Buton Stilleri */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #e60000;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: #c40000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cta-button.primary {
    background: #e60000;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: #c40000;
}

.cta-button.secondary:hover {
    background: white;
    color: #333;
}

/* Swiper Navigation Stilleri */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #e60000;
    opacity: 1;
    transform: scale(1.2);
}

/* ===== T-SHIRT SLIDER STİLLERİ ===== */
.tshirt-slider {
    padding: 60px 0;
    background: white;
}

.tshirt-slider .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.tshirt-slider .section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tshirt-slider .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.tshirt-swiper {
    padding: 20px 10px;
}

.tshirt-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.tshirt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.tshirt-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.tshirt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tshirt-card:hover .tshirt-image img {
    transform: scale(1.1);
}

.tshirt-content {
    padding: 25px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tshirt-content h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.tshirt-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e60000;
    margin-bottom: 15px;
}

.tshirt-button {
    display: inline-block;
    background: #333;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.tshirt-button:hover {
    background: #e60000;
    transform: translateY(-2px);
}

/* T-Shirt Slider Navigation */
.tshirt-slider .swiper-button-next,
.tshirt-slider .swiper-button-prev {
    color: #333;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tshirt-slider .swiper-button-next:after,
.tshirt-slider .swiper-button-prev:after {
    font-size: 20px;
}

.tshirt-slider .swiper-button-next:hover,
.tshirt-slider .swiper-button-prev:hover {
    background: #e60000;
    color: white;
    transform: scale(1.1);
}

.tshirt-slider .swiper-pagination-bullet {
    background: #333;
    opacity: 0.5;
}

.tshirt-slider .swiper-pagination-bullet-active {
    background: #e60000;
    opacity: 1;
}

/* ===== QUICK FEATURES STİLLERİ ===== */
.quick-features {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
}

.quick-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-right: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    min-height: 80px;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2rem;
    color: #e60000;
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.feature-text {
    text-align: left;
}

.feature-text strong {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.feature-text span {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* ===== RESPONSIVE TASARIM ===== */

/* Tablet Görünümü */
@media (max-width: 1024px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h1,
    .slide-content h2 {
        font-size: 2.8rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature-item:nth-child(3) {
        border-right: none;
    }
}

/* Mobil Görünümü */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-content h1,
    .slide-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        width: 45px;
        height: 45px;
        display: none; /* Mobilde navigasyon butonlarını gizle */
    }
    
    .hero-slider .swiper-button-next:after,
    .hero-slider .swiper-button-prev:after {
        font-size: 18px;
    }
    
    .tshirt-slider {
        padding: 40px 0;
    }
    
    .tshirt-slider .section-header h2 {
        font-size: 2rem;
    }
    
    .tshirt-image {
        height: 200px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-item:nth-child(2) {
        border-right: none;
    }
    
    .feature-item {
        padding: 12px 15px;
        min-height: 70px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
        margin-right: 10px;
        width: 30px;
    }
    
    .feature-text strong {
        font-size: 0.9rem;
    }
    
    .feature-text span {
        font-size: 0.8rem;
    }
}

/* Küçük Mobil Görünümü */
@media (max-width: 480px) {
    .hero-slider {
        height: 350px;
    }
    
    .slide-content h1,
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .tshirt-slider .section-header h2 {
        font-size: 1.8rem;
    }
    
    .tshirt-content {
        padding: 20px 15px;
    }
    
    .tshirt-content h3 {
        font-size: 1.1rem;
    }
    
    .tshirt-price {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        border-right: none !important;
        border-bottom: 1px solid #e0e0e0;
        justify-content: flex-start;
        padding: 15px;
    }
    
    .feature-item:last-child {
        border-bottom: none;
    }
}

/* Swiper Container için genel stiller */
.swiper-container {
    position: relative;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
    display: flex;
}

/* Loading state */
.hero-slider.loading {
    opacity: 0.7;
}

.hero-slider.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #e60000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}