/* Dosya: assets/css/style.css | Yol: /home/main/public_html/ipekhali.net/assets/css/style.css */
/* Geliştiren: Muhsin İŞSEVER */
/* E-posta: muhsin.issever@gmail.com */
/* Web sitesi: https://ai.zefre.net/ */

/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --success: #27ae60;
    --info: #3498db;
    --warning: #f39c12;
    --danger: #e74c3c;
    --light: #ecf0f1;
    --dark: #34495e;
    --white: #ffffff;
    --black: #000000;
    --gray: #95a5a6;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--light);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 1rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--dark);
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.cart-count[data-count="0"] {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.6) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 200;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--light);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray);
}

/* Section Commons */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark);
    opacity: 0.7;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-link {
    display: block;
    color: inherit;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 400px;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}

.badge-new {
    background: var(--success);
    color: var(--white);
}

.badge-discount {
    background: var(--secondary);
    color: var(--white);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: var(--white);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: var(--transition);
}

.btn-quick-view:hover {
    background: var(--primary);
    color: var(--white);
}

.product-info {
    padding: 2rem;
}

.product-category {
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.product-price {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--gray);
    margin-right: 0.5rem;
}

.price-current {
    color: var(--secondary);
    font-weight: 600;
}

.product-description {
    color: var(--dark);
    opacity: 0.7;
    line-height: 1.6;
}

.product-actions {
    padding: 0 2rem 2rem;
}

.btn-add-cart {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--dark);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 2rem;
}

.about-description {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-feature {
    text-align: center;
}

.feature-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
}

.feature-text {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-images {
    position: relative;
}

.about-image-main {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--secondary);
    color: var(--white);
    padding: 2rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-year {
    display: block;
    font-size: 2rem;
    font-weight: 600;
}

.badge-text {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* New Products Carousel */
.new-products {
    padding: 6rem 0;
    background: var(--light);
}

.products-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.carousel-item {
    min-width: 300px;
    flex-shrink: 0;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary);
    color: var(--white);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
}

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

.testimonial-item {
    text-align: center;
    padding: 2rem;
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.star {
    color: var(--light);
    font-size: 1.5rem;
}

.star.filled {
    color: var(--accent);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-section a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary);
}

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

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.powered-by img {
    height: 40px;
    width: auto;
}

.powered-by a {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.powered-by a:hover {
    opacity: 1;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 2px solid var(--light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animations */
.animate-fadeInUp {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid var(--light);
    color: var(--primary);
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination .current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gray);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .active {
    color: var(--primary);
}

/* Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding-top: 5rem;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Header ve Breadcrumb Optimizasyonu - assets/css/style.css içine eklenecek */

/* Navigation - Optimized */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px; /* Sabit yükseklik */
}

/* Logo optimizasyonu */
.logo {
    font-size: 1.75rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}

.logo:hover {
    color: var(--secondary);
    transform: scale(1.02);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.75rem 0;
    text-decoration: none;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Cart Icon Optimized */
.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.cart-icon:hover {
    background: rgba(44, 62, 80, 0.1);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--secondary);
    color: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

/* Body padding for fixed header */
body {
    padding-top: 90px; /* Header yüksekliği + margin */
}

/* Breadcrumb Optimized */
.breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(44, 62, 80, 0.1), transparent);
}

.breadcrumb .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray);
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.75rem;
    color: var(--gray);
    font-weight: 400;
    opacity: 0.6;
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.breadcrumb a:hover {
    color: var(--primary);
    background: rgba(44, 62, 80, 0.05);
}

.breadcrumb .active {
    color: var(--primary);
    font-weight: 500;
}

/* Dropdown Menu Optimized */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: var(--transition);
    padding: 0.75rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    z-index: 1002;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: rgba(44, 62, 80, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 1px;
}

/* Scroll Effect */
nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

nav.scrolled .nav-container {
    padding: 0.75rem 2rem;
}

/* Page Content Spacing */
.page-content {
    margin-top: 0; /* Header padding'i body'de var */
}

/* Hero Section Adjustment */
.hero {
    margin-top: -90px; /* Header'ı üstüne çık */
    padding-top: 90px; /* İçeriği aşağı it */
}

/* Responsive Optimizations */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
        min-height: 60px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: var(--transition);
        z-index: 999;
        justify-content: flex-start;
        gap: 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .breadcrumb {
        padding: 1rem 0;
    }
    
    .breadcrumb ol {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .hero {
        margin-top: -70px;
        padding-top: 70px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 1rem;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        color: var(--gray);
    }
}

@media (max-width: 480px) {
    .breadcrumb ol {
        font-size: 0.8rem;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
    }
}

/* Animation Enhancements */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links li {
    animation: slideInFromTop 0.6s ease-out forwards;
}

.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }

/* Print Styles */
@media print {
    nav, .breadcrumb {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    animation: searchSlideUp 0.3s ease-out;
}

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

.search-form-header {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-form-header input {
    flex: 1;
    padding: 1.5rem 2rem;
    border: none;
    font-size: 1.25rem;
    outline: none;
    background: transparent;
}

.search-form-header input::placeholder {
    color: #999;
}

.search-form-header button {
    padding: 1.5rem 2rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form-header button:hover {
    background: var(--dark);
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: var(--transition);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Mobile search overlay */
@media (max-width: 768px) {
    .search-container {
        width: 95%;
        padding: 0 1rem;
    }
    
    .search-form-header input {
        padding: 1.25rem 1.5rem;
        font-size: 1.125rem;
    }
    
    .search-form-header button {
        padding: 1.25rem 1.5rem;
    }
    
    .search-close {
        top: -50px;
        width: 40px;
        height: 40px;
    }
}

/* Footer Newsletter Row - Yeni ve Şık Tasarım */
.footer-newsletter-row {
    text-align: center;
    padding: 3rem 2rem;
    margin: 0 auto 2rem auto;
    max-width: 800px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-row h4 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer-newsletter-row p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-newsletter-row .newsletter-form-container {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px; /* Hap şeklinde tasarım */
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-newsletter-row .newsletter-form-container:focus-within {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
    border-color: var(--secondary);
}

.footer-newsletter-row #newsletterForm input[type="email"] {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1.25rem;
    color: var(--white);
    font-size: 1rem;
    width: 100%;
}

.footer-newsletter-row #newsletterForm input[type="email"]::placeholder {
    color: var(--gray);
}

.footer-newsletter-row #newsletterForm input[type="email"]:focus {
    outline: none;
}

.footer-newsletter-row #newsletterForm button {
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50px; /* Hap şeklinde tasarım */
    padding: 0.75rem 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-newsletter-row #newsletterForm button:hover {
    background: #c0392b; /* Darker red */
    transform: scale(1.05);
}

/* Önceki dikey form stillerini (varsa) kaldırın */
.footer-section form#newsletterForm,
#newsletterForm input[type="email"],
#newsletterForm button {
    /* Bu blok boş kalabilir veya önceki dikey stiller buradan silinebilir. */
    /* Yeni stiller .footer-newsletter-row seçicisi ile daha öncelikli olacaktır. */
}

/* Swiper.js CSS */
@import url('https://unpkg.com/swiper/swiper-bundle.min.css');

/* Hero Section & Slider Styles - Frontend için düzeltilmiş */

/* Hero Section Container */
.hero-section {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    max-height: 900px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Swiper Container */
.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Custom Content Slides */
.custom-content-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: white;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    margin-top: 2rem;
}

.btn-hero {
    padding: 1.25rem 3rem;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    border: 2px solid transparent;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
    background: #c0392b;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Product Showcase Slides */
.product-showcase-slide {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    position: relative;
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    font-weight: 100;
    margin-bottom: 1rem;
}

.showcase-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin: 0;
}

/* Product Swiper for Showcase */
.product-swiper {
    width: 100%;
    height: auto;
    padding: 2rem 0;
}

.product-showcase-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 420px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-showcase-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-showcase-image {
    width: 100%;
    height: 280px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

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

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.product-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.product-placeholder span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-showcase-item:hover .product-overlay {
    opacity: 1;
}

.view-product {
    background: white;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.product-showcase-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-category {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-info {
    margin-top: auto;
}

.product-showcase-info .price {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 700;
    display: block;
}

.size-info {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.25rem;
    display: block;
}

.price-request {
    font-size: 1rem;
    color: var(--info);
    font-weight: 600;
    font-style: italic;
}

/* Hero Navigation */
.hero-nav {
    color: white !important;
    --swiper-navigation-size: 24px;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.hero-nav::after {
    font-size: 18px;
    font-weight: 700;
}

/* Single slide durumunda navigation'ı gizle */
.hero-swiper .swiper-slide:only-child ~ .swiper-button-next,
.hero-swiper .swiper-slide:only-child ~ .swiper-button-prev {
    display: none !important;
}

/* Hero Pagination */
.hero-pagination {
    bottom: 30px !important;
}

.hero-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    width: 12px;
    height: 12px;
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.3);
}

/* Single slide durumunda pagination'ı gizle */
.hero-swiper .swiper-slide:only-child ~ .hero-pagination {
    display: none !important;
}

/* Swiper Override Styles - Çakışmaları önlemek için */
.swiper {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

/* Hero Swiper Specific */
.hero-swiper .swiper-wrapper {
    transform: translate3d(0px, 0px, 0px);
}

.hero-swiper .swiper-slide {
    opacity: 1;
}

.hero-swiper .swiper-slide-active {
    z-index: 2;
}

/* Product Swiper Specific */
.product-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

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

/* Swiper Varsayılan Stil Override */
.swiper-button-next,
.swiper-button-prev {
    margin-top: 0 !important;
    width: 50px !important;
    height: 50px !important;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.35 !important;
    cursor: auto !important;
    pointer-events: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons !important;
    font-size: 16px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-variant: initial !important;
    line-height: 1 !important;
}

/* Hero Navigation Force Visibility */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Force navigation visibility on load */
.hero-swiper.swiper-initialized .swiper-button-next,
.hero-swiper.swiper-initialized .swiper-button-prev {
    display: flex !important;
}

/* Force pagination visibility */
.hero-swiper .swiper-pagination {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-swiper.swiper-initialized .swiper-pagination {
    display: flex !important;
}

/* Hero Fallback */
.hero-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #4a6741 50%, #8b956d 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Fallback - Boş alan düzeltmesi */
.hero-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #4a6741 50%, #8b956d 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

/* Swiper Slide Default Backgrounds - Güçlendirilmiş */
.hero-swiper .swiper-slide {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6741 50%, #8b956d 100%) !important;
    min-height: 600px !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Duplicate slides için özel kontrol */
.hero-swiper .swiper-slide-duplicate {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6741 50%, #8b956d 100%) !important;
}

.hero-swiper .swiper-slide-duplicate .custom-content-slide,
.hero-swiper .swiper-slide-duplicate .product-showcase-slide {
    background: inherit !important;
}

/* Custom Content Slides - Background kontrolü */
.custom-content-slide {
    width: 100% !important;
    height: 100% !important;
    min-height: 600px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Eğer background-image yoksa default gradient kullan */
.custom-content-slide:not([style*="background-image"]) {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6741 50%, #8b956d 100%) !important;
}

/* Product Showcase Slide Background */
.product-showcase-slide {
    width: 100% !important;
    height: 100% !important;
    min-height: 600px !important;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
    padding: 4rem 0 !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
}

/* Duplicate slide content fix */
.swiper-slide-duplicate-active .custom-content-slide,
.swiper-slide-duplicate-next .custom-content-slide,
.swiper-slide-duplicate-prev .custom-content-slide {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6741 50%, #8b956d 100%) !important;
}

.swiper-slide-duplicate-active .product-showcase-slide,
.swiper-slide-duplicate-next .product-showcase-slide,
.swiper-slide-duplicate-prev .product-showcase-slide {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
}

/* Empty Showcase Background */
.empty-showcase {
    background: white !important;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--gray);
    margin: 2rem auto;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.empty-showcase-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.empty-showcase h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.5rem;
}

.empty-showcase p {
    margin-bottom: 2rem;
    color: var(--gray);
}

.empty-showcase .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.empty-showcase .btn-secondary:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

/* Features Section Enhancement */
.features {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

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

.feature-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    color: var(--secondary);
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 500;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* New Products Carousel Enhancement */
.new-products {
    padding: 6rem 0;
    background: white;
}

.products-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
}

.carousel-item {
    min-width: 300px;
    flex-shrink: 0;
}

.carousel-item .product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.carousel-item .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.carousel-item .product-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.carousel-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.carousel-item .product-info {
    padding: 1.5rem;
}

.carousel-item .product-info h4 {
    font-size: 1.1rem;
    margin: 0 0 0.75rem 0;
    color: var(--primary);
    font-weight: 500;
    line-height: 1.3;
}

.carousel-item .price {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
    margin: 0;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .product-showcase-item {
        height: 380px;
    }
    
    .product-showcase-image {
        height: 240px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: 60vh;
        min-height: 450px;
    }
    
    .showcase-header {
        margin-bottom: 2rem;
    }
    
    .product-showcase-slide {
        padding: 2rem 0;
    }
    
    .product-showcase-item {
        height: 350px;
    }
    
    .product-showcase-image {
        height: 220px;
    }
    
    .carousel-prev,
    .carousel-next {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-hero {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .product-showcase-slide {
        padding: 1.5rem 0;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .product-showcase-item {
        height: 320px;
    }
    
    .product-showcase-image {
        height: 200px;
    }
    
    .product-showcase-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 2rem 1rem;
    }
    
    .carousel-container {
        gap: 1rem;
    }
    
    .carousel-item {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 45vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-hero {
        padding: 0.875rem 1.75rem;
        font-size: 0.85rem;
    }
    
    .showcase-title {
        font-size: 1.75rem;
    }
    
    .showcase-subtitle {
        font-size: 1rem;
    }
    
    .product-showcase-item {
        height: 300px;
    }
    
    .product-showcase-image {
        height: 180px;
    }
    
    .hero-nav {
        width: 40px;
        height: 40px;
    }
    
    .hero-nav::after {
        font-size: 14px;
    }
    
    .carousel-item {
        min-width: 250px;
    }
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Loading States */
.hero-swiper.loading {
    opacity: 0.7;
}

.hero-swiper.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000;
}

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

/* Branding Section */
/* Dropdown Menu Styles - Marka Menüsü İçin Eklenen Stiller */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 220px;
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    list-style: none;
    margin: 0.5rem 0 0 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: none !important;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, var(--primary), var(--info));
    color: var(--white);
    padding-left: 1.25rem;
}

.dropdown-divider {
    height: 1px;
    background: var(--light);
    margin: 0.5rem 0;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.05);
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-menu li a {
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.8);
    }
    
    .dropdown-menu li a:hover {
        background: rgba(255,255,255,0.1);
        color: var(--white);
        padding-left: 2rem;
    }
}