/* ===== VERTICAL MODERN T-SHIRT STORE ===== */

/* Reset ve Base */
.vertical-homepage {
    background: #ffffff;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Base template override */
.main-content {
    margin: 0;
    padding: 0;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 30%, #667eea 70%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

.hero-text-area {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-btn {
    background: white;
    color: #ff6b35;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.decoration-dots {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== MAIN WRAPPER ===== */
.main-wrapper {
    background: #fafbfc;
    position: relative;
}

/* ===== PRODUCTS SLIDER ===== */
.products-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 20px; /* Space for navigation arrows */
    padding: 0 50px; /* İç padding ile butonlar için alan */
}

.products-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
    padding-bottom: 10px;
}

.products-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #64748b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.slider-nav:disabled:hover {
    background: white;
    border-color: #e2e8f0;
    color: #64748b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.products-section {
    padding: 80px 0;
    position: relative;
}

.products-section.bestsellers {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
}

.products-section.category-products {
    background: white;
    border-bottom: 1px solid #f1f5f9;
}

.products-section.category-products:nth-child(even) {
    background: #fafbfc;
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.section-title-area h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
}

.section-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.section-link:hover {
    background: #ff6b35;
    color: white;
    transform: translateX(4px);
}

/* ===== HORIZONTAL SCROLL PRODUCTS ===== */
.products-horizontal-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
    -ms-overflow-style: auto;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.products-horizontal-scroll::-webkit-scrollbar {
    height: 8px;
    display: block;
}

.products-horizontal-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.products-horizontal-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.products-horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.products-track {
    display: flex;
    gap: 32px;
    min-width: min-content;
    padding: 0 4px;
}

/* ===== FEATURES SHOWCASE ===== */
.features-showcase {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 100px 0;
    color: white;
}

.features-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.feature-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-visual {
    flex-shrink: 0;
}

.feature-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: white;
    padding: 80px 0;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.newsletter-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
}

.email-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
    }
    
    .products-track {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .section-title-area h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    /* Mobilde slider container düzenlemesi */
    .products-slider-container {
        margin: 0 10px;
        padding: 0 45px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: 0;
    }
    
    .slider-nav.next {
        right: 0;
    }
    
    /* Mobilde ürün kartları boyutu - 2 kart yan yana */
    .products-slider .product-card-slider {
        flex: 0 0 calc(50% - 10px);
        min-width: 160px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-wrapper,
    .section-container,
    .features-container,
    .newsletter-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .products-section {
        padding: 60px 0;
    }
    
    .section-title-area h2 {
        font-size: 1.8rem;
    }
    
    /* Mobilde slider container daha dar */
    .products-slider-container {
        margin: 0 5px;
        padding: 0 40px;
    }
    
    .slider-nav {
        width: 36px;
        height: 36px;
    }
    
    .slider-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .slider-nav.prev {
        left: 0;
    }
    
    .slider-nav.next {
        right: 0;
    }
    
    /* Küçük ekranlarda iki ürün yan yana */
    .products-slider .product-card-slider {
        flex: 0 0 calc(50% - 10px);
        min-width: 140px;
        max-width: 180px;
    }
    
    .features-showcase {
        padding: 60px 0;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.primary-btn:focus,
.secondary-btn:focus,
.section-link:focus,
.overlay-btn:focus,
.product-name a:focus,
.vendor-name:focus,
.email-input:focus,
.subscribe-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* ===== SCROLLBAR CUSTOM ===== */
.products-horizontal-scroll {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.products-horizontal-scroll::-webkit-scrollbar {
    height: 6px;
    display: block;
}

.products-horizontal-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.products-horizontal-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.products-horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
