:root {
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #1e293b;
    --accent-color: #2563eb;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: rgba(30, 58, 138, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Header - Contains Top Bar + Navbar */
header {
    position: relative;
    z-index: 1001;
    width: 100%;
}

@media (max-width: 968px) {
    header {
        position: relative;
        z-index: 1001;
    }
    
    .navbar {
        position: relative;
        z-index: 1001;
    }
    
    .nav-toggle {
        z-index: 1002;
        position: relative;
    }
}

/* Top Bar */
.top-bar {
    position: relative;
    background: #1e3a8a;
    color: var(--bg-white);
    padding: 0.6rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bg-white);
}

.top-bar-item svg {
    width: 18px;
    height: 18px;
    color: #25D366;
    flex-shrink: 0;
}

.top-bar-item:first-child svg {
    color: var(--bg-white);
}

.top-bar-item:last-child svg {
    color: var(--bg-white);
}

.top-bar-item span {
    font-weight: 500;
}

.top-bar-separator {
    margin: 0 0.75rem;
    opacity: 0.5;
    font-weight: 300;
}


@media (max-width: 768px) {
    .top-bar {
        padding: 0.75rem 0;
        font-size: 0.7rem;
    }
    
    .top-bar-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 0.75rem;
        padding: 0 10px;
        align-items: start;
    }
    
    .top-bar-item {
        gap: 0.4rem;
        font-size: 0.7rem;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .top-bar-item span {
        display: block;
        font-size: 0.7rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .top-bar-item svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .top-bar-separator {
        display: none;
    }
    
    /* Very small screens */
    @media (max-width: 480px) {
        .top-bar-content {
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 0.5rem;
        }
        
        .top-bar-item {
            font-size: 0.65rem;
        }
        
        .top-bar-item span {
            font-size: 0.65rem;
        }
        
        .top-bar-item svg {
            width: 12px;
            height: 12px;
        }
    }
}

/* Navigation */
.navbar {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    width: 100%;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 1rem 15px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 1rem 10px;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.nav-brand:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    outline: none;
}

.nav-menu a:focus {
    color: var(--primary-color);
    outline: none;
}

.nav-menu a:active {
    color: var(--primary-color);
    transform: none;
    background: transparent;
}

.nav-menu a:focus {
    color: var(--primary-color);
    outline: none;
}

.nav-menu a:not(.btn-contact):not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:not(.btn-contact):not(.dropdown-toggle):hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 10000 !important;
    border: 1px solid var(--border-color);
    display: block !important;
    max-height: 12.5rem; /* 5 öğe için yaklaşık yükseklik (her öğe ~2.5rem) */
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light);
}

/* Webkit scrollbar stilleri */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    position: relative;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

.btn-contact {
    background: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    outline: none;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    vertical-align: middle;
}

.btn-contact .cart-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
    margin: 0;
}

.btn-contact span {
    display: inline-block;
    white-space: nowrap;
}

.btn-contact:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.btn-contact:active {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.btn-contact:focus {
    background: var(--primary-color);
    color: var(--bg-white);
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.btn-contact:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
/* Hero / Slider Section */
.hero {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0;
}

.hero.hero-slider {
    overflow: hidden;
}

/* Hero Slider - Override flex for slider only */
section.hero.hero-slider {
    display: block;
    align-items: unset;
    justify-content: unset;
}

/* Hero Page Background (non-slider pages) */
.hero:not(.hero-slider),
.hero.page-hero {
    background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&h=1080&fit=crop') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

.hero:not(.hero-slider)::before,
.hero.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero:not(.hero-slider) .hero-content,
.hero.page-hero .hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero:not(.hero-slider),
    .hero.page-hero {
        background-attachment: scroll !important;
    }
    
    .hero.page-hero[style*="background-attachment: fixed"] {
        background-attachment: scroll !important;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 450px;
    max-height: 600px;
    z-index: 1;
}

/* Slider Container */
.hero-slider .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slider .slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 769px) {
    .slider-background {
        background-attachment: fixed;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    animation: fadeInUp 1s ease;
    width: 100%;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content-inner {
    position: relative;
    z-index: 3;
}

.hero-content.text-left {
    text-align: left;
}

.hero-content.text-left .container {
    text-align: left;
}

.hero-content.text-right {
    text-align: right;
}

.hero-content.text-right .container {
    text-align: right;
}

.hero-content.text-center {
    text-align: center;
}

.hero-content.text-center .container {
    text-align: center;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    border: none;
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-indicator.active {
    background: var(--bg-white);
    width: 30px;
    border-radius: 6px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7), 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: -0.8px;
    line-height: 1.15;
    color: #ffffff !important;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.75;
    font-weight: 300;
    opacity: 0.98;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
    color: var(--bg-white);
}

.btn-primary:hover:active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.btn-primary:active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.btn-secondary:active {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.btn-primary:focus {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-secondary:focus {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn {
    outline: none;
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
    outline: none;
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    border-color: var(--bg-white);
}

/* WhatsApp butonu - İletişim sayfası için mavi renk, hover'da değişmez */
.contact-info-card .btn-secondary {
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
}

.contact-info-card .btn-secondary:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
}

.btn-secondary:hover:active {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--bg-white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--bg-white);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* Features Section */
.features {
    padding: 70px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px var(--shadow);
    outline: none;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
}

.feature-card:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 70px 0;
    background: var(--bg-white);
}

/* Products Section */
.products {
    padding: 70px 0;
    background: var(--bg-light);
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.product-category-label {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px var(--shadow);
    outline: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow);
    outline: none;
    opacity: 1;
    transform: scale(1);
}

.product-card.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    outline: none;
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.service-link:active {
    color: var(--primary-color);
    transform: translateX(1px);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 70px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin: 2rem 0;
}

.about-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* References Section */
.references {
    padding: 100px 0;
    background: var(--bg-light);
}

.references-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
    padding: 1rem;
}

.carousel-slide {
    min-width: calc((100% - 3rem) / 3);
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}

.reference-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.carousel-slide:hover .reference-image {
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.2);
    z-index: 10;
    transition: var(--transition);
    color: var(--primary-color);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.carousel-indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--bg-white);
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--bg-white);
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 30px;
    height: 30px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-map {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    background: var(--bg-white);
}

.form-group input:focus:hover,
.form-group textarea:focus:hover,
.form-group select:focus:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group input:active,
.form-group textarea:active {
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    background: var(--bg-white);
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.7rem;
    font-size: 0.85rem;
    color: var(--primary-color);
}
.form-group input,
.form-group textarea {
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
}

/* Form Message - Modern Bildirim (Butonun Üstünde) */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-left-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.form-message-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-left-color: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.form-message-icon {
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.form-message-success .form-message-icon {
    background: rgba(16, 185, 129, 0.25);
    color: #10b981;
}

.form-message-error .form-message-icon {
    background: rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

.form-message-text {
    flex: 1;
    font-weight: 500;
}

/* Notification Container - Sayfanın Üstünde */
.notification-container {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
    pointer-events: none;
}

/* Notification - Toast Style */
.notification {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-left: 4px solid;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.notification-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-left-color: #10b981;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.notification-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-left-color: #ef4444;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25);
}

.notification-icon {
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.notification-success .notification-icon {
    background: rgba(16, 185, 129, 0.25);
    color: #10b981;
}

.notification-error .notification-icon {
    background: rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

.notification-text {
    flex: 1;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: currentColor;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    opacity: 0.7;
    flex-shrink: 0;
}

.notification-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
    .notification-container {
        top: 80px;
        max-width: calc(100% - 40px);
        padding: 0 20px;
    }
    
    .notification {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .notification-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1.25rem;
    }
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-col h3 {
    font-size: 1.4rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

/* Footer menü scrollbar stilleri */
.footer-menu-list {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.footer-menu-list::-webkit-scrollbar {
    width: 6px;
}

.footer-menu-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.footer-menu-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.footer-menu-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.footer-contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 0.25rem;
}

.footer-contact-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Responsive Design */
.mobile-logo,
.mobile-contact-info {
    display: none;
}

@media (max-width: 968px) {
    .mobile-logo,
    .mobile-contact-info {
        display: block;
    }
    .nav-menu {
        position: fixed !important;
        left: -100%;
        top: 0 !important;
        flex-direction: column;
        background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
        width: 100%;
        max-width: 280px;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 30px rgba(30, 58, 138, 0.2);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1000000 !important;
        display: flex;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-light) var(--bg-light);
        isolation: isolate;
        transform: translateZ(0);
        will-change: transform;
    }
    
    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: var(--bg-light);
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--primary-light);
        border-radius: 10px;
    }
    
    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: var(--primary-color);
    }
    
    .mobile-logo {
        display: block;
        padding: 1.25rem 1rem 1rem;
        padding-left: 1rem;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 0.5rem;
        margin-left: 0;
        background: var(--bg-white);
        position: sticky;
        top: 0;
        z-index: 10;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .nav-brand-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--primary-color);
        transition: var(--transition);
    }
    
    .nav-brand-mobile:hover {
        transform: scale(1.02);
    }
    
    .nav-brand-mobile .nav-logo {
        width: 50px;
        height: 50px;
        object-fit: contain;
        border-radius: 8px;
        transition: var(--transition);
    }
    
    .nav-brand-mobile:hover .nav-logo {
        transform: scale(1.05);
    }

    .nav-menu.active {
        left: 0 !important;
        box-shadow: 2px 0 25px rgba(30, 58, 138, 0.25);
        padding: 0 !important;
        margin: 0 !important;
        z-index: 100000 !important;
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(-15px);
        transition: all 0.25s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.08s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.11s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.14s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.17s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.23s; }

    .nav-menu > li {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
    }
    
    .nav-menu > li:not(.mobile-logo):not(.mobile-contact-info) {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-dark);
        border-radius: 10px;
        transition: all 0.3s ease;
        outline: none;
        position: relative;
        margin-bottom: 0.25rem;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: linear-gradient(180deg, var(--primary-light), var(--primary-color));
        border-radius: 0 3px 3px 0;
        transition: height 0.3s ease;
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
        background: linear-gradient(90deg, rgba(30, 58, 138, 0.05) 0%, rgba(30, 58, 138, 0.02) 100%);
        color: var(--primary-color);
        padding-left: 1.25rem;
        transform: translateX(3px);
    }
    
    .nav-menu a:hover::before,
    .nav-menu a:focus::before {
        height: 60%;
    }
    
    .mobile-logo a {
        border-radius: 0;
        padding: 0;
        margin: 0;
    }
    
    .mobile-logo a::before {
        display: none;
    }
    
    .mobile-logo a:hover,
    .mobile-logo a:focus {
        padding-left: 0;
        background: transparent;
        transform: none;
    }

    .nav-menu a:active {
        background: rgba(30, 58, 138, 0.05);
        transform: none;
    }

    .nav-menu a.btn-contact {
        margin: 0.75rem;
        padding: 0.75rem 1.25rem;
        border-radius: 12px;
        border: none;
        text-align: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        font-size: 0.85rem;
        color: var(--bg-white) !important;
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-menu a.btn-contact .cart-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin: 0;
        display: block;
    }
    
    .nav-menu a.btn-contact span {
        display: inline-block;
    }
    
    .nav-menu a.btn-contact::before {
        display: none;
    }

    .nav-menu a.btn-contact:hover,
    .nav-menu a.btn-contact:focus {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        padding-left: 1.25rem;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    }

    .nav-menu a.btn-contact:active {
        transform: translateY(0) scale(0.98);
    }
    
    .mobile-contact-info {
        margin-top: auto;
        padding: 1.25rem 1.25rem 1rem;
        border-top: 1px solid var(--border-color);
        background: linear-gradient(180deg, var(--bg-white) 0%, rgba(30, 58, 138, 0.03) 100%);
        position: sticky;
        bottom: 0;
        z-index: 10;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.6rem 0.75rem;
        color: var(--text-dark);
        font-size: 0.85rem;
        border-radius: 8px;
        transition: var(--transition);
        margin-bottom: 0.5rem;
    }
    
    .mobile-contact-item:last-child {
        margin-bottom: 0;
    }
    
    .mobile-contact-item:hover {
        background: rgba(30, 58, 138, 0.05);
    }
    
    .mobile-contact-item svg {
        width: 18px;
        height: 18px;
        color: var(--primary-color);
        flex-shrink: 0;
    }
    
    .mobile-contact-item span {
        color: var(--text-light);
        font-weight: 500;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border-color);
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(0, 0, 0, 0.02);
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu a {
        padding-left: 2.5rem;
        font-size: 0.85rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    /* Menu overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 99999 !important;
        transition: all 0.3s ease;
        backdrop-filter: blur(4px);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hero {
        min-height: 400px;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
        color: #ffffff !important;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin: 0 auto 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row-name {
        grid-template-columns: 1fr !important;
    }
    
    .contact-grid {
        max-width: 100% !important;
        grid-template-columns: 1fr !important;
    }
    
    /* Cart Section Responsive */
    .cart-section > .container > div > div {
        grid-template-columns: 1fr !important;
    }
    
    .cart-section .item-quantity {
        width: 50px !important;
        font-size: 0.85rem !important;
    }
    
    .cart-section table {
        font-size: 0.85rem;
    }
    
    .cart-section table th,
    .cart-section table td {
        padding: 0.75rem 0.25rem !important;
    }
    
    .cart-section table img {
        width: 60px !important;
        height: 60px !important;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    /* Slider Mobile */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
        max-height: 500px;
    }
    
    .slider-background {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        color: #ffffff !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin: 0 auto 1.5rem;
        max-width: 95%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
    
    .slider-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .slider-indicator {
        width: 8px;
        height: 8px;
    }
    
    .slider-indicator.active {
        width: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-categories {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .contact-map {
        margin-top: 1.5rem;
    }
    
    .contact-map iframe {
        height: 250px;
    }
    
    .carousel-slide {
        min-width: calc(50% - 0.75rem);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-slide {
        min-width: 100%;
    }
    
    .references {
        padding: 60px 0;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        top: 45%;
    }
    
    .carousel-prev {
        left: 0.5rem;
    }
    
    .carousel-next {
        right: 0.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* Product Page Styles */
.product-hero {
    padding: 90px 0 50px;
    margin-top: 0;
    background: var(--bg-light);
}

.breadcrumb-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.breadcrumb-toggle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(30, 58, 138, 0.3);
}

.breadcrumb-toggle:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.breadcrumb-toggle.active {
    background: var(--primary-dark);
}

.breadcrumb-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.breadcrumb-toggle.active svg {
    transform: rotate(90deg);
}

.breadcrumb {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(30, 41, 59, 0.05) 100%);
    padding: 1rem 1.5rem 1rem 3.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 58, 138, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    max-width: 600px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.breadcrumb.active {
    max-width: 100%;
    padding-right: 3.5rem;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.85rem 1.25rem 0.85rem 3rem;
        font-size: 0.8rem;
    }
    
    .breadcrumb-toggle {
        width: 35px;
        height: 35px;
    }
    
    .breadcrumb-toggle svg {
        width: 18px;
        height: 18px;
    }
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-light);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 90px;
}

.product-main-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--bg-white);
    box-shadow: 0 4px 15px var(--shadow);
}

.image-zoom-container {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.product-image-clickable {
    cursor: pointer;
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-main-image:hover img {
    transform: scale(1.2);
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.thumbnail {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    background: var(--bg-white);
}

.thumbnail img {
    transition: transform 0.3s ease;
    display: block;
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 3px 15px rgba(30, 58, 138, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 1.5rem 0;
}

.product-category-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.view-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-left: 10px;
}

.view-count svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    color: var(--text-light);
    flex-shrink: 0;
}

.view-count span {
    color: var(--text-light);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .rating-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .view-count {
        margin-left: 0;
    }
}

.product-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.85rem;
}

.feature-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Product Specs Wrapper */
.product-specs-wrapper {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.spec-value.stock-in {
    color: #10b981;
}

.product-option-wrapper {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-option-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.product-option-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.product-option-select:hover {
    border-color: var(--primary-color);
}

.product-option-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* Trust Badges */
.product-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.trust-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.trust-item:hover {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.08);
    transform: translateY(-2px);
}

.trust-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 10px;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.trust-icon svg {
    width: 22px;
    height: 22px;
}

.trust-content {
    flex: 1;
}

.trust-content h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.trust-content p {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Payment Methods */
.product-payment-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin: 1.25rem 0;
}

.payment-label-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.payment-methods-list {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.payment-method-item {
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.payment-method-item:hover {
    transform: scale(1.2);
}

/* Action Buttons */
.product-action-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-action {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    outline: none;
}

.btn-action svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-cart {
    background: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
}

.btn-cart:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.btn-cart:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.btn-ask {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-ask:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
}

.btn-ask:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
}

.btn-action:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.btn-cart.added {
    background: #10b981;
    border-color: #10b981;
}

.btn-cart:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Product Details Section */
.product-details {
    padding: 60px 0;
    background: var(--bg-white);
}

.details-tabs {
    display: flex;
    gap: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: -2px;
    font-family: 'Poppins', sans-serif;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tab-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem;
}

.tab-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.tab-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tab-content ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.tab-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table td {
    padding: 1rem;
    color: var(--text-light);
}

.specs-table td:first-child {
    width: 30%;
    color: var(--text-dark);
    font-weight: 500;
}

.specs-table td strong {
    color: var(--text-dark);
}

/* Reviews Section */
.review-item {
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.add-review-section {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.add-review-section h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .review-form .form-row {
        grid-template-columns: 1fr;
    }
}

.review-form .form-group input,
.review-form .form-group textarea,
.review-form .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.review-form .form-group input:focus,
.review-form .form-group textarea:focus,
.review-form .form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.review-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.review-form .btn-primary {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.reviewer-info strong {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.review-stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Related Products */
.related-products {
    padding: 60px 0;
    background: var(--bg-light);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--bg-white);
}

.cta-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
    border-color: var(--bg-light);
}

/* Responsive - Product Page */
@media (max-width: 968px) {
    .product-hero {
        padding: 80px 0 40px;
    }

    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    .product-title {
        font-size: 1.6rem;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .product-specs-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .product-trust-badges {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .product-payment-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .product-action-buttons {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
    }

    .details-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .tab-content h3 {
        font-size: 1.3rem;
    }

    .specs-table {
        font-size: 0.85rem;
    }

    .specs-table td {
        padding: 0.6rem 0.4rem;
    }

    .specs-table td:first-child {
        width: 40%;
    }

    .review-header {
        flex-direction: column;
        gap: 0.4rem;
    }

    .review-form .form-row {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Slider Responsive */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
        max-height: 550px;
    }
    
    .slider-background {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.25rem;
        color: #ffffff !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    .slider-indicator {
        width: 10px;
        height: 10px;
    }
    
    .slider-indicator.active {
        width: 25px;
    }
    
    
    .top-bar {
        padding: 0.5rem 0;
    }
    
    .navbar {
        position: relative;
    }
    
    .nav-menu {
        top: 0 !important;
        height: 100vh !important;
        left: -100% !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 100000 !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 100000 !important;
    }
    
    .nav-menu > li {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .nav-menu > li:not(.mobile-logo):not(.mobile-contact-info) {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .nav-overlay {
        top: 0 !important;
        z-index: 99999 !important;
        position: fixed !important;
    }
    
    .hero {
        margin-top: 0;
        padding-top: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        color: #ffffff !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .product-hero {
        padding: 30px 0;
        margin-top: 0;
    }
    

    .breadcrumb-wrapper {
        padding: 0.75rem 1rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .product-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-specs-wrapper {
        padding: 1rem;
    }

    .product-specs-grid {
        grid-template-columns: 1fr;
    }

    .product-trust-badges {
        grid-template-columns: 1fr;
    }

    .trust-item {
        padding: 0.85rem;
    }

    .trust-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }

    .trust-icon svg {
        width: 18px;
        height: 18px;
    }

    .tab-content h3 {
        font-size: 1.2rem;
    }

    .tab-content h4 {
        font-size: 1.1rem;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }
}

/* Cart Count Badge */
.cart-count {
    margin-left: 5px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 20px;
    line-height: 1;
}

.cart-count:empty {
    display: none;
}

/* Cart Notification - Fixed Position (Üste kayma yapmaz) */
.cart-notification {
    position: fixed;
    top: 120px;
    right: 20px;
    z-index: 9999;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.cart-notification-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-left: 4px solid #047857;
}

.cart-notification-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-left: 4px solid #b91c1c;
}

/* =====================================================
   SAYFA İÇERİĞİ STİLLERİ (sayfa.php)
   ===================================================== */
.page-content {
    padding: 80px 0;
    background: var(--bg-white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-body {
    line-height: 1.8;
    color: var(--text-dark);
}

.content-body h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.3;
}

.content-body h2:first-child {
    margin-top: 0;
}

.content-body h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-dark);
    font-weight: 600;
    line-height: 1.3;
}

.content-body h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
    line-height: 1.3;
}

.content-body p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.content-body ul,
.content-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.content-body li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.content-body a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-body a:hover {
    color: var(--primary-dark);
}

.content-body strong {
    color: var(--text-dark);
    font-weight: 600;
}

.content-body blockquote,
.content-body .highlight-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.content-body blockquote p,
.content-body .highlight-box p {
    margin: 0;
    color: var(--text-dark);
    font-style: italic;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.content-body table th,
.content-body table td {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.content-body table th {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .content-body h2 {
        font-size: 1.5rem;
    }
    
    .content-body h3 {
        font-size: 1.3rem;
    }
    
    .content-body h4 {
        font-size: 1.1rem;
    }
    
    .content-body p,
    .content-body li {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .cart-notification {
        top: 100px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .cart-notification.show {
        transform: translateY(0);
    }
}