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

body {
    font-family: 'Figtree', sans-serif;
    line-height: 1.6;
    color: #333;

    margin-top: 90px; /* Header için margin ekle */
}

/* Mobilde body margin-top'ı azalt */
@media (max-width: 768px) {
    body {
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    body {
        margin-top: 65px;
    }
}

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

/* Header Styles */
.header {

    position: fixed; /* absolute yerine fixed kullan */
    top: 0;
    width: 100%;
    background: white !important;
    backdrop-filter: blur(25px) !important;
    z-index: 1000;
    border-bottom: none;

    height: 90px; /* Sabit yükseklik */
}

/* Main Header - Logo ve Menü */
.main-header {

    padding: 5px 0;
    background: white !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: none;

    margin-top: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;

    padding: 15px 10px;
    gap: 0;
}

.nav-logo {
    display: flex;
    align-items: center;

    gap: 0.5rem;
    margin-left: 0;

    margin-right: 1rem;
}

.logo-img {

    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-left {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    margin-left: 0;
    align-items: center;
}

.nav-menu-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-item.has-mega-menu {
    position: static;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #e74c3c;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #165d8a;
    transition: width 0.3s ease;
}

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

/* Corporate Dropdown Menu Styles */
.corporate-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 220px;
    border: 1px solid #f0f0f0;
}

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

.corporate-menu-content {
    padding: 12px 0;
}

.corporate-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.corporate-menu-item:hover {
    background: #f8f9fa;
    color: #e74c3c;
    transform: translateX(5px);
}

.corporate-menu-item i {
    width: 16px;
    color: #666;
    transition: color 0.3s ease;
}

.corporate-menu-item:hover i {
    color: #e74c3c;
}

.corporate-menu-item span {
    flex: 1;
}

/* Corporate Sub Menu Styles */
.corporate-submenu {
    background: white;

    border-bottom: none;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    z-index: 998;
    width: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.corporate-submenu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 100px;
}

.corporate-submenu-content {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    align-items: center;

    padding-left: 200px;
    max-width: 1200px;
    margin: 0 auto;
}

.corporate-submenu-item {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;

    padding: 12px 0;
}

.corporate-submenu-item:hover {
    color: #e74c3c;
}

.corporate-submenu-item.see-all {
    color: #e74c3c;
    margin-left: auto;
    font-weight: 600;
}

.corporate-submenu-item.see-all:hover {
    color: #c0392b;
}

.corporate-submenu-item.see-all i {
    font-size: 12px;
    margin-left: 5px;
}

/* Corporate Menu Responsive */
@media (max-width: 768px) {
    .corporate-submenu {

        padding: 0;
    }
    
    .corporate-submenu-content {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 0 20px;
    }
    
    .corporate-submenu-item {

        padding: 14px 0;
        font-size: 14px;
    }
    
    .corporate-submenu-item i {
        font-size: 14px;
    }
}

/* Brands Sub Menu Styles */
.brands-submenu {
    background: white;

    border-bottom: none;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    z-index: 998;
    width: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brands-submenu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 100px;
}

.brands-submenu-content {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    align-items: center;
    padding-left: 200px;
    max-width: 1200px;
    margin: 0 auto;
}

.brands-submenu-item {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;

    padding: 12px 0;
}

.brands-submenu-item:hover {
    color: #e74c3c;
}

.brands-submenu-item.see-all {
    color: #e74c3c;
    margin-left: auto;
    font-weight: 600;
}

.brands-submenu-item.see-all:hover {
    color: #c0392b;
}

.brands-submenu-item.see-all i {
    font-size: 12px;
    margin-left: 5px;
}

/* Brands Menu Responsive */
@media (max-width: 768px) {
    .brands-submenu {

        padding: 0;
    }
    
    .brands-submenu-content {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 0 20px;
    }
    
    .brands-submenu-item {

        padding: 14px 0;
        font-size: 14px;
    }
    
    .brands-submenu-item i {
        font-size: 14px;
    }
}

/* Mega Menu Styles - Yaşar Makina Tasarımı */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    border-top: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;

    padding: 1rem 0;
    border-radius: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(0) scale(0.95);
}

.nav-item.has-mega-menu .mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mega-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0 1.5rem;
}

/* Sütun Ayırıcıları */
.mega-menu-column:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 1.5rem;
}

.mega-menu-column:not(:first-child) {
    padding-left: 1.5rem;
}

/* Sütun Başlıkları */
.mega-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.mega-menu-header h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
    border: none;
}

.mega-menu-header i {
    color: #666;
    font-size: 0.8rem;
}

/* CTA Linkleri */
.mega-menu-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.mega-menu-cta:hover {
    color: #333;
}

.mega-menu-cta i {
    font-size: 0.7rem;
}


/* Mega Menu Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 8px;
}

/* Tüm sütunlardaki product-grid'ler aynı olsun */
.mega-menu-column .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mega-menu-column:nth-child(1) .product-grid,
.mega-menu-column:nth-child(2) .product-grid,
.mega-menu-column:nth-child(3) .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.product-item {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.product-item:hover {
    border-color: #165d8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 93, 138, 0.15);
}

.product-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Mega Menu Footer */
.mega-menu-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mega-menu-all-products {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #165d8a 0%, #1e7bb4 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(22, 93, 138, 0.2);
}

.mega-menu-all-products:hover {
    background: linear-gradient(135deg, #1e7bb4 0%, #165d8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22, 93, 138, 0.3);
    color: white;
    text-decoration: none;
}

.mega-menu-all-products i:first-child {
    font-size: 1rem;
}

.mega-menu-all-products i:last-child {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mega-menu-all-products:hover i:last-child {
    transform: translateX(4px);
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-right: 0;
    position: relative;
    z-index: 1001;
    justify-content: flex-end;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 9999;
}

.search-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10000;
}

.search-btn:hover {
    background: #f8f9fa;
    color: #165d8a;
}

/* Language Selector - Modern Design */
.language-selector {
    position: relative;
}

.lang-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    border: 2px solid #e0e0e0;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 10000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lang-btn:hover {
    background: linear-gradient(135deg, #165d8a 0%, #1a7db8 100%);
    border-color: #165d8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 93, 138, 0.3);
}

.lang-btn:hover .lang-arrow {
    color: white;
}

.lang-flag {
    font-size: 1.3rem;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.lang-flag-img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.lang-code {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.lang-name-btn {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.lang-arrow {
    font-size: 0.7rem;
    color: #999;
    transition: all 0.3s ease;
    margin-left: 2px;
}

.language-selector:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    overflow: hidden;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: #333;
    text-decoration: none;
    transition: all 0.25s ease;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    background: white;
}

.lang-option:first-child {
    border-radius: 14px 14px 0 0;
}

.lang-option:last-child {
    border-bottom: none;
    border-radius: 0 0 14px 14px;
}

.lang-option:hover {
    background: linear-gradient(90deg, #f0f7ff 0%, #e8f4ff 100%);
    color: #165d8a;
    padding-left: 22px;
}

.lang-option.active {
    background: linear-gradient(90deg, #165d8a 0%, #1a7db8 100%);
    color: white;
    font-weight: 600;
}

.lang-option.active .lang-name,
.lang-option.active .lang-code-small {
    color: white;
}

.lang-option .flag {
    font-size: 1.4rem;
    width: 28px;
    text-align: center;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
    flex-shrink: 0;
}

.flag-img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.lang-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.lang-name {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

.lang-code-small {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.lang-option.active .lang-code-small {
    color: rgba(255, 255, 255, 0.8);
}

.lang-check {
    color: white;
    font-size: 0.9rem;
    margin-left: auto;
    animation: checkPulse 0.4s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 10000;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: #f8f9fa;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.bar {
    width: 28px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.slide.active {
    opacity: 1;
}

.slide-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%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.slide-text {
    text-align: center;
    width: 100%;
}

.slide-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    line-height: 1.1;
}

.slide-text p {
    font-size: clamp(15px, 2.5vw, 20px);
    font-style: normal;
    font-weight: 300;
    line-height: clamp(24px, 3vw, 28px);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Slide Numbers - Sağda Alt Kısımda */
.slide-numbers,
.slider-numbers {
    position: absolute;
    right: 50px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

/* Override: Slider sayi kutularini dikeyde ortala (desktop) */
.hero-slider .slide-numbers,
.hero-slider .slider-numbers {
	top: 50%;
	bottom: auto;
	right: 50px;
	transform: translateY(-50%);
}

@media (max-width: 768px) {
	.hero-slider .slide-numbers,
	.hero-slider .slider-numbers {
		top: auto;
		bottom: 20px;
		right: 20px;
		transform: none;
	}

	.hero-slider .slide-number {
		width: 48px;
		height: 48px;
	}
	

	

}

.slide-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slide-number:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slide-number.active {
    background: #165d8a;
    border-color: #165d8a;
    box-shadow: 0 0 20px rgba(22, 93, 138, 0.5);
    transform: scale(1.1);
}





/* Footer */
.footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;

    margin-top: 20px;
    clear: both;
    z-index: 1;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e74c3c;
}

/* Company Info Section */
.company-info {
    padding-right: 40px;
}

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

.footer-logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.company-description {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    transform: translateY(-2px);
}

/* Footer Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #e74c3c;
}

.footer-section ul li a:hover {
    color: #fff;
    padding-left: 15px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

/* Contact Info */
.contact-info .contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
}

.contact-info .contact-item i {
	color: #e74c3c;
	font-size: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}

.contact-info .contact-item div {
	flex: 1;
}

.contact-info .contact-item div strong {
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
}

.contact-info .contact-item div a {
	color: #bdc3c7;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.contact-info .contact-item div a:hover {
	color: #e74c3c;
}

.contact-info .contact-item div br + * {
	margin-top: 5px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 14px;
    margin: 0;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.credits-text {
    color: #95a5a6;
    font-weight: 400;
}

.credits-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.credits-link:hover {
    color: #fff;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.credits-link:hover .credits-brand {
    letter-spacing: 0.5px;
}

.credits-brand {
    transition: letter-spacing 0.3s ease;
}

.credits-link i {
    font-size: 10px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74c3c;
}


/* Section Styles */
.section-title {
        text-align: center;

    font-size: clamp(24px, 3vw, 48px);
    font-style: normal;
    font-weight: 300;
    line-height: 74px;
    letter-spacing: -1.44px;
    margin-bottom: 10px;
    color: #2c3e50;
    position: relative;
}

/* Ana Sayfa Sections */
.home-page .products-section {
    padding: 80px 0;
    background: white;
}


.home-page .products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 30px;

    text-align: center;
}


.home-page .products-content {
    flex: 1;

    text-align: left;
}


.home-page .products-content .section-title {
    font-size: clamp(24px, 3vw, 48px);
    font-style: normal;
    font-weight: 300;
    line-height: 74px;
    letter-spacing: -1.44px;
    margin-bottom: 10px;
    color: #000;
    text-align: left;
}


.home-page .products-content .section-subtitle {
    font-size: clamp(15px, 2.5vw, 20px);
    font-style: normal;
    font-weight: 300;
    line-height: clamp(24px, 3vw, 28px);
    color: #000;

    text-align: left;
}


.home-page .products-cta {
    flex-shrink: 0;
    margin-top: 10px;

    text-align: center;
}


.home-page .products-cta .cta-button {
    background: #e74c3c;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}


.home-page .products-cta .cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}


.home-page .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}


.home-page .product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    border: 2px solid #e1e5e9;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    text-decoration: none; /* Alt çizgiyi kaldır */
}


.home-page .product-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 12px 30px rgba(22, 93, 138, 0.15);
    border-color: #165d8a;
}


.home-page .products-section .product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}


.home-page .products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}


.home-page .product-card:hover .product-image img {
    transform: scale(1.08);
}


.home-page .product-info {
    padding: 20px;
    background: white;
    text-align: center;
    flex-grow: 1;
    display: flex;

    flex-direction: column;
    justify-content: center;
    position: relative;
}


.home-page .product-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0; /* Alt margin ekle */
    line-height: 1.4;
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
    text-decoration: none; /* Alt çizgiyi kaldır */
}


.home-page .product-description {
    font-size: 14px;
    color: #6c757d;
    margin: 10px 0 15px 0;
    line-height: 1.5;
    text-align: center;
    text-decoration: none; /* Alt çizgiyi kaldır */
}

.home-page .product-brand {
    font-size: 12px;
    font-weight: 600;

    color: #e74c3c;
    background: #fff5f5;
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none; /* Alt çizgiyi kaldır */

}




/* Home Page Brands Section */
.home-page .brands-section {
    padding: 80px 0;
    background: white;

}

.home-page .brands-header {
    margin-bottom: 60px;
}

.home-page .brands-header .section-subtitle {
    font-size: clamp(15px, 2.5vw, 20px);
    font-style: normal;
    font-weight: 300;
    line-height: clamp(24px, 3vw, 28px);
    color: #000;
    text-align: left;
    margin-bottom: 0;
}

.home-page .brands-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;
}

.home-page .brands-title-row .section-title {
    margin-bottom: 0;
    text-align: left;
}


/* Markalar bölümündeki buton için özel stil */
.home-page .brands-title-row .cta-button {
    background: #e74c3c;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}


.home-page .brands-title-row .cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}


.home-page .brands-content {
    margin-bottom: 40px;
}

.home-page .brands-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}


.home-page .brands-content .section-subtitle {
    font-size: clamp(15px, 2.5vw, 20px);
    font-style: normal;
    font-weight: 300;
    line-height: clamp(24px, 3vw, 28px);
    color: #000;

    max-width: 800px;
    margin: 0 auto 30px;
}

.home-page .brands-cta {
    margin-bottom: 50px;
    text-align: center;

}

/* Mobil butonları desktop'ta gizle */
.mobile-cta-button {
    display: none;
}

/* Mobil butonları mobilde göster */
@media (max-width: 768px) {
    .mobile-cta-button {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .mobile-cta-button {
        display: block !important;
    }
}

/* Desktop butonları mobilde gizlemek için ek güvenlik */
@media (max-width: 768px) {
    .home-page .products-cta,
    .home-page .brands-cta,
    .home-page .brands-header .cta-button {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .home-page .products-cta,
    .home-page .brands-cta,
    .home-page .brands-header .cta-button {
        display: none !important;
    }
}

.home-page .brands-cta .cta-button {
    background: #e74c3c;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.home-page .brands-cta .cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.home-page .brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}

.home-page .brand-item {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.home-page .brand-item:hover {
    transform: translateY(-5px);
    border-color: #165d8a;
    box-shadow: 0 8px 25px rgba(22, 93, 138, 0.15);
}

.home-page .brand-logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    object-fit: contain;
}

.home-page .brand-item:hover .brand-logo {
    filter: grayscale(0%);
}

/* Home Page About Section */
.home-page .about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.home-page .about-header {
		text-align: center;

}

.home-page .about-content {
    margin-bottom: 40px;
}

.home-page .about-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.home-page .about-cta {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.home-page .about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #004085);
}

.home-page .about-description {
    max-width: 800px;
    margin: 0 auto 50px;
}

.home-page .about-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.home-page .about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.home-page .stat-item {
		text-align: center;

    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.home-page .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.home-page .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.home-page .stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Mobil Menu ve Responsive Tasarım İçin Mobil Stiller */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(247, 247, 247, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    overflow-y: auto;
    padding: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
}

.mobile-menu.active {
    display: block;
    transform: translateX(0);
}

.mobile-menu-header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
}

.mobile-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
}

.mobile-logo {
    flex: 1;
}

.mobile-logo a {
    display: inline-block;
    line-height: 0;
}

.mobile-logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.mobile-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.3));
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.mobile-lang-btn {
    background: white;
    border: 1px solid #dee2e6;
    color: #333;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex: 1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.mobile-lang-btn:hover {
    background: #f8f9fa;
    border-color: #165d8a;
    color: #165d8a;
    box-shadow: 0 2px 6px rgba(22, 93, 138, 0.1);
}

.mobile-flag-img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.mobile-lang-text {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Mobil dil dropdown */
.mobile-language-selector {
    position: relative;
    flex: 1;
}

.mobile-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.mobile-language-selector:hover .mobile-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.25s ease;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}

.mobile-lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.mobile-lang-option:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.mobile-lang-option:hover {
    background: linear-gradient(90deg, #f0f7ff 0%, #e6f2ff 100%);
    color: #165d8a;
    padding-left: 20px;
}

.mobile-lang-option.active {
    background: linear-gradient(135deg, #165d8a 0%, #1a7db8 100%);
    color: white;
}

.mobile-lang-option.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    font-size: 0.85rem;
}

.mobile-lang-option.active .lang-text {
    color: white;
}

.mobile-lang-option .flag {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.mobile-lang-option .mobile-flag-img {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-lang-option .lang-text {
    font-weight: 500;
    font-size: 0.95rem;
    flex: 1;
}

.mobile-search-btn {
    background: linear-gradient(135deg, #165d8a 0%, #1a7db8 100%);
    border: none;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(22, 93, 138, 0.2);
}

.mobile-search-btn:hover {
    background: linear-gradient(135deg, #1a7db8 0%, #165d8a 100%);
    box-shadow: 0 4px 12px rgba(22, 93, 138, 0.3);
    transform: translateY(-1px);
}

.mobile-search-btn i {
    font-size: 0.95rem;
}

.mobile-close-btn {
    background: #f8f9fa;
    border: none;
    color: #666;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

/* Ana Navigasyon */
.mobile-nav {
    padding: 0.5rem 0 1rem;
    background: white;
    margin: 0.5rem 1rem 1rem;
    border-radius: 8px;
}

.mobile-nav-item {
    position: relative;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link:hover {
    background-color: #f8f9fa;
    color: #e74c3c;
    transform: translateX(5px);
}

.mobile-nav-link.active {
    background-color: #f0f0f0;
}

.mobile-nav-link i {
    color: #999;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.mobile-nav-link.active i {
    transform: rotate(180deg);
    color: #e74c3c;
}

/* Alt Menü */
.mobile-sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-sub-menu.active {
    max-height: 500px;
}

.mobile-sub-menu li a {
    display: block;
    padding: 0.8rem 2rem 0.8rem 3rem;
    color: #555;
    text-decoration: none;

    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #e9e9e9;
}

.mobile-sub-menu li a:hover {
    background-color: #e9e9e9;
    color: #e74c3c;
    transform: translateX(8px);
    padding-left: 2.8rem;
}

/* Mobil menü iletişim bilgileri */
.mobile-contact {
    background: white;
    margin: 1rem;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

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

.mobile-contact .contact-item:hover {
    background: #f8f9fa;
    padding-left: 0.5rem;
    border-radius: 6px;
}

.mobile-contact .contact-item i {
    color: #e74c3c;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.mobile-contact .contact-item span,
.mobile-contact .contact-item a {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-contact .contact-item a:hover {
    color: #165d8a;
    text-decoration: underline;
}

/* Mobil menü sosyal medya ikonları */
.mobile-social {
    background: white;
    margin: 1rem;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.mobile-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;

    color: #666;
    text-decoration: none;
    margin: 0 8px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.mobile-social .social-icon:hover {
    background: #e74c3c;
    color: white;

    border-color: #e74c3c;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(231, 76, 60, 0.3);
}

.mobile-social .social-icon i {
    font-size: 1.2rem;
}

/* Arama Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10002;
    backdrop-filter: blur(5px);
}

.search-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.search-modal-content {
    background: white;

    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    margin: auto;
    position: relative;
    top: 15%;
}

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

.search-modal-header {
    display: flex;
    justify-content: space-between;

    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.search-modal-header h3 {
    margin: 0;

    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}


.search-close-btn {
    background: none;
    border: none;

    font-size: 1.5rem;
    color: #666;
    cursor: pointer;

    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-close-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.search-modal-body {
    padding: 1.5rem;
}

.search-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #165d8a;
}

/* Arama önerileri ve popüler aramalar */
.search-suggestions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.search-suggestions h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.suggestion-tags {
    display: flex;

    flex-wrap: wrap;
    gap: 10px;

    justify-content: center;
}

.suggestion-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;

    text-decoration: none;
}

.suggestion-tag:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.search-submit-btn {
    background: #165d8a;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-submit-btn:hover {
    background: #0f4a6b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* Desktop menüleri mobilde gizle */
    .nav-menu {
        display: none !important;
    }
    
    .nav-menu-left {
        display: none !important;
    }
    
    .nav-menu-right {
        display: none !important;
    }
    
    /* Mega menüyü mobilde gizle */
    .mega-menu {
        display: none !important;
    }
    
    /* Corporate ve Brands submenu'ları mobilde gizle */
    .corporate-submenu {
        display: none !important;
    }
    
    .brands-submenu {
        display: none !important;
    }
    
    /* Mobil menü görünürlüğü */
    .mobile-menu {
        display: none;
    }
    
    /* Mobil menü aktif olduğunda body scroll'u engelle */
    body.mobile-menu-open {
        overflow: hidden;
    }
    
    /* Mobil menü responsive düzenlemeleri */
    .mobile-menu-header {
        padding: 1rem 1rem 0.8rem;
    }
    
    .mobile-logo-img {
        height: 32px;
    }
    
    .mobile-nav {
        margin: 0.8rem;
    }
    
    .mobile-nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .mobile-sub-menu li a {
        padding: 0.7rem 1.5rem 0.7rem 2.5rem;
        font-size: 0.95rem;
    }
    
    /* Mobil menü iletişim responsive - Tablet */
    .mobile-contact {
        margin: 0.8rem;
        padding: 1.3rem;
    }
    
    .mobile-contact .contact-item {
        padding: 0.7rem 0;
    }
    
    .mobile-contact .contact-item i {
        font-size: 1.05rem;
        width: 19px;
    }
    
    /* Mobil dil dropdown responsive - Tablet */
    .mobile-lang-dropdown {
        min-width: 150px;
    }
    
    .mobile-lang-option {
        padding: 11px 13px;
    }
    
    /* Mobil sosyal medya responsive - Tablet */
    .mobile-social {
        margin: 0.8rem;
        padding: 1.3rem;
    }
    
    .mobile-social .social-icon {
        width: 42px;
        height: 42px;
        margin: 0 6px;
    }
    
    .mobile-social .social-icon i {
        font-size: 1.1rem;
    }
    
    /* Arama modal responsive - Tablet */
    .search-modal-content {
        top: 18%;
        max-width: 450px;
    }
    
    /* Arama önerileri responsive - Tablet */
    .search-suggestions {
        margin-top: 1.8rem;
        padding-top: 1.4rem;
    }
    
    .search-suggestions h4 {
        font-size: 1.05rem;
        margin-bottom: 0.9rem;
    }
    
    .suggestion-tag {
        padding: 7px 14px;
        font-size: 0.88rem;
    }
    
    .nav-logo {
        margin-left: 0;
    }
    
    .header-container {
        padding: 16px 15px;
        gap: 1rem;
        min-height: 70px;
    }
    
    /* Mobilde margin-top'ı kaldır */
    .main-header {
        margin-top: 0;
        padding: 0;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .nav-logo {
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .header-right {
        gap: 0.6rem;
        margin-right: 0;
    }
    
    /* Mobilde hamburger menüyü sağa kaydır */
    .hamburger {
        margin-right: 0;
    }
    
    .language-selector {
        display: none;
    }
    
    /* Tablet header yüksekliği */
    .header {
        height: auto;
        min-height: 70px;
    }
    
    /* Home page responsive */
    .home-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Anasayfa ürün resimleri - tablet */
    .home-page .products-section .product-image {
        height: 220px;
    }
    
    .home-page .products-section .product-image img {
        object-fit: contain;
        object-position: center;
    }
    
    .home-page .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .home-page .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .home-page .products-header {
        flex-direction: column;
    text-align: center;

        gap: 20px;
    }
    
    /* Mobilde ürünler başlığını ve yazısını ortala */
    .home-page .products-header .products-content {
        text-align: center !important;
    }
    
    .home-page .products-header .products-content .section-title {
        text-align: center !important;
    }
    
    .home-page .products-header .products-content .section-subtitle {
        text-align: center !important;
    }
    
    .home-page .brands-header {
        margin-bottom: 40px;
    }
    
    .home-page .brands-title-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .home-page .brands-title-row .section-title {
        text-align: center;
    }
    
    .home-page .brands-header .section-subtitle {
        text-align: center;
    }
    
    .home-page .about-header {
        margin-bottom: 40px;
    }
    
    .header-actions .search-btn {
        display: none;
    }
    
    /* Hero slider responsive */
    .slide-numbers {
        right: 20px;
        bottom: 180px;
    }
    
    .slide-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .slide-content {
        text-align: center;
    }
    
    .slide-text h1 {
        font-size: 2.5rem;
    }
    
    .slide-text p {
        font-size: 1.2rem;
    }
    
    /* Container padding mobilde artır */
    .container {
        padding: 0 25px;
    }
    
    /* Buton responsive */
    .home-page .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Desktop butonlarını mobilde gizle */
    .home-page .products-cta {
        display: none !important;
    }
    
    .home-page .brands-cta {
        display: none !important;
    }
    
    .home-page .brands-header .cta-button {
        display: none !important;
    }
    
    /* Mobil butonlar - Sadece mobilde görünür */
    .mobile-cta-button {
        display: block;
        text-align: center;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .mobile-cta-btn {
        display: inline-block;
    background: #e74c3c;
    color: white;

        padding: 15px 30px;
        border-radius: 8px;
    text-decoration: none;

        font-weight: 600;
        font-size: 16px;
    transition: all 0.3s ease;

        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
        text-transform: uppercase;
        letter-spacing: 0.5px;
}


    .mobile-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);

        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    }
    
    /* Section padding mobilde azalt */
    .home-page .brands-section,
    .home-page .products-section {
        padding: 60px 0;
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        margin-top: 15px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    }
    
    .company-info {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 25px;
    margin-top: 10px;
}

    .footer-content {
        grid-template-columns: 1fr;
    gap: 30px;
}


    .company-info {
    text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-center {
        order: 2;
    }
    
    .footer-credits {
        order: 3;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .home-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    /* Home page responsive - Çok küçük ekranlar */
    .home-page .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Anasayfa ürün resimleri - mobil */
    .home-page .products-section .product-image {
        height: 250px;
    }
    
    .home-page .products-section .product-image img {
        object-fit: contain;
        object-position: center;
    }
    
    .home-page .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .home-page .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .home-page .section-title {
        font-size: 2rem !important;
    }
    
    .home-page .section-subtitle {
        font-size: 1rem !important;
    }
    
    /* Hero slider responsive - Çok küçük ekranlar */
    .slide-text h1 {
        font-size: 2rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    .slide-numbers {
        right: 15px;
        bottom: 150px;
    }
    
    .slide-number {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    /* Buton responsive - Çok küçük ekranlar */
    .home-page .cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .home-page .products-cta {
        display: none !important;
    }
    
    /* Container padding çok küçük ekranlarda daha da artır */
    .container {
        padding: 0 20px;
    }
    
    /* Section padding çok küçük ekranlarda daha da azalt */
    .home-page .brands-section,
    .home-page .products-section {
        padding: 50px 0;
    }
    
    .home-page .products-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .home-page .brands-cta {
        display: none !important;
    }
    
    .home-page .brands-header .cta-button {
        display: none !important;
    }
    
    /* Mobilde ürünler başlığını ve yazısını ortala */
    .home-page .products-header .products-content {
        text-align: center !important;
    }
    
    .home-page .products-header .products-content .section-title {
        text-align: center !important;
    }
    
    .home-page .products-header .products-content .section-subtitle {
        text-align: center !important;
    }
    
    /* Mobil butonlar - 480px için optimize */
    .mobile-cta-button {
        display: block;
        text-align: center;
        margin-top: 35px;
        padding: 0 15px;
    }
    
    .mobile-cta-btn {
        display: inline-block;
        background: #e74c3c;
        color: white;
        padding: 14px 25px;
    border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-cta-btn:hover {
        background: #c0392b;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    }
    
    /* Mobil menü responsive düzenlemeleri - Çok küçük ekranlar */
    .mobile-menu-header {
        padding: 0.8rem 0.8rem 0.6rem;
    }
    
    .mobile-logo-img {
        height: 28px;
    }
    
    .mobile-nav {
        margin: 0.6rem;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .mobile-sub-menu li a {
        padding: 0.6rem 1.2rem 0.6rem 2.2rem;
        font-size: 0.9rem;
    }
    
    .mobile-actions {
        gap: 0.3rem;
    }
    
    .mobile-lang-btn,
    .mobile-search-btn,
    .mobile-close-btn {
        padding: 0.4rem;
        font-size: 0.85rem;
    }
    
    /* Mobil menü iletişim responsive - Çok küçük ekranlar */
    .mobile-contact {
        margin: 0.6rem;
        padding: 1.2rem;
    }
    
    .mobile-contact .contact-item {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .mobile-contact .contact-item i {
        font-size: 1rem;
        width: 18px;
    }
    
    .mobile-contact .contact-item span,
    .mobile-contact .contact-item a {
        font-size: 0.9rem;
    }
    
    /* Mobil dil dropdown responsive - Çok küçük ekranlar */
    .mobile-lang-dropdown {
        min-width: 140px;
        right: -10px;
    }
    
    .mobile-lang-option {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-lang-option .flag {
        font-size: 1.1rem;
        width: 22px;
    }
    
    .mobile-lang-option .lang-text {
        font-size: 0.9rem;
    }
    
    /* Mobil sosyal medya responsive - Çok küçük ekranlar */
    .mobile-social {
        margin: 0.6rem;
        padding: 1.2rem;
    }
    
    .mobile-social .social-icon {
        width: 38px;
        height: 38px;
        margin: 0 5px;
    }
    
    .mobile-social .social-icon i {
        font-size: 1rem;
    }
    
    /* Arama modal responsive - Çok küçük ekranlar */
    .search-modal-content {
        top: 20%;
        max-width: 95%;
        width: 95%;
    }
    
    .search-modal-header {
        padding: 0.8rem 1.2rem;
    }
    
    .search-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .search-modal-body {
        padding: 1.2rem;
    }
    
    .search-input {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    /* Arama önerileri responsive - Çok küçük ekranlar */
    .search-suggestions {
        margin-top: 1.5rem;
        padding-top: 1.2rem;
    }
    
    .search-suggestions h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .suggestion-tags {
        gap: 8px;
    }
    
    .suggestion-tag {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    /* Çok küçük ekranlarda header'ı daha da optimize et */
    .header {
        height: auto;
        min-height: 65px;
    }
    
    .main-header {
        padding: 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hamburger {
        margin-right: 0;
    }
    
    .nav-logo {
        margin-left: 0;
        flex: 1;
    }
    
    .header-container {
        padding: 14px 12px;
        gap: 0.8rem;
        min-height: 65px;
    }
    
    .home-page .products-cta {
        display: none !important;
    }
    
    .home-page .brands-cta {
        display: none !important;
    }
}

