/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1C1C1C;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background-color: #1C1C1C;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    height: 6vh;
    min-height: 60px;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    filter: drop-shadow(0 0 0 transparent);
}

.logo-image:hover {
    transform: scale(1.15);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #F8F4E3;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #F8F4E3;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #EBC42A;
    transition: width 0.3s ease;
}

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


.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}


/* Header arama önerileri kaldırıldı - sadece market sayfasında kullanılıyor */





/* Footer Logo Styles */
.footer-logo-image {
    height: 130px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-logo-image:hover {
    filter: brightness(1) invert(0);
}

/* Cart Button Styles */
.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #F8F4E3;
    text-decoration: none;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
}

.cart-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.cart-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cart-total {
    display: none;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #F8F4E3;
}

.cart-total .tl-symbol {
    font-size: 0.9rem;
    font-weight: 600;
    color: #EBC42A;
}

.cart-total i {
    color: #EBC42A;
    font-size: 0.8rem;
}


/* Cart counter badge removed */

.header-actions button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #F8F4E3;
    width: 100%;
    height: 100%;
    margin: 0;
}

.header-actions button i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.header-actions button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Auth Button Styles */
.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.auth-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

/* User Menu Dropdown Styles */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
    border: 1px solid #e0e0e0;
    pointer-events: none;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.dropdown-header i {
    font-size: 1.5rem;
    color: #EBC42A;
}

.dropdown-header span {
    font-weight: 600;
    color: #1C1C1C;
}

.dropdown-menu {
    padding: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #1C1C1C;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
    box-sizing: border-box;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item i {
    width: 20px;
    color: #666;
}

.logout-btn {
    color: #dc3545 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.75rem 1rem !important;
    text-decoration: none !important;
    border: none !important;
    background: none !important;
    width: 100% !important;
    text-align: left !important;
    cursor: pointer !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
    transition: background-color 0.2s ease !important;
}

.logout-btn:hover {
    background-color: #fff5f5 !important;
}

.logout-btn i {
    color: #dc3545 !important;
    width: 20px !important;
}

/* Cart count stili kaldırıldı */

/* Cart Dropdown Styles */
.cart-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    min-width: 350px;
    max-width: 400px;
    max-height: 70vh;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 10002;
    border: 1px solid #e0e0e0;
    pointer-events: none;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.cart-dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.cart-dropdown-header i {
    font-size: 1.5rem;
    color: #EBC42A;
}

.cart-dropdown-header span {
    font-weight: 600;
    color: #1C1C1C;
}

.cart-dropdown-items {
    padding: 0.5rem 0;
    max-height: calc(70vh - 180px);
    min-height: 100px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    /* Scrollbar stilleri */
    scrollbar-width: thin;
    scrollbar-color: #EBC42A #f0f0f0;
}

/* Webkit tarayıcılar için scrollbar stilleri */
.cart-dropdown-items::-webkit-scrollbar {
    width: 8px;
}

.cart-dropdown-items::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.cart-dropdown-items::-webkit-scrollbar-thumb {
    background: #EBC42A;
    border-radius: 4px;
}

.cart-dropdown-items::-webkit-scrollbar-thumb:hover {
    background: #d4b025;
}

.cart-dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.cart-dropdown-item:last-child {
    border-bottom: none;
}

.cart-dropdown-item:hover {
    background-color: #f8f9fa;
}

.cart-dropdown-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.cart-dropdown-item-info {
    flex: 1;
    min-width: 0;
}

.cart-dropdown-item-name {
    font-weight: 500;
    color: #1C1C1C;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-dropdown-item-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.cart-dropdown-item-price {
    font-weight: 600;
    color: #EBC42A;
    font-size: 0.9rem;
}

.cart-dropdown-empty {
    padding: 2rem 1rem;
    text-align: center;
    color: #666;
}

.cart-dropdown-empty i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.cart-dropdown-empty p {
    margin: 0.5rem 0;
}

.cart-dropdown-footer {
    padding: 1rem;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.cart-dropdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1C1C1C;
}

.cart-dropdown-total-label {
    font-size: 0.9rem;
}

.cart-dropdown-total-amount {
    font-size: 1.1rem;
    color: #EBC42A;
}

.cart-dropdown-button {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #EBC42A;
    color: #1C1C1C;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.95rem;
}

.cart-dropdown-button:hover {
    background: #d4b025;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 196, 42, 0.3);
}

.cart-dropdown-button:active {
    transform: translateY(0);
}

/* Mobile Cart Drawer Styles */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 10002;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    flex-shrink: 0;
}

.cart-drawer-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-drawer-header i {
    font-size: 1.5rem;
    color: #EBC42A;
}

.cart-drawer-header span {
    font-weight: 600;
    color: #1C1C1C;
    font-size: 1.1rem;
}

.cart-drawer-close {
    background: none;
    border: none;
    color: #1C1C1C;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.cart-drawer-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.cart-drawer-items {
    padding: 0.5rem 0;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    /* Scrollbar stilleri */
    scrollbar-width: thin;
    scrollbar-color: #EBC42A #f0f0f0;
}

.cart-drawer-items::-webkit-scrollbar {
    width: 6px;
}

.cart-drawer-items::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.cart-drawer-items::-webkit-scrollbar-thumb {
    background: #EBC42A;
    border-radius: 4px;
}

.cart-drawer-items::-webkit-scrollbar-thumb:hover {
    background: #d4b025;
}

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
    flex-shrink: 0;
}

.cart-drawer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1C1C1C;
}

.cart-drawer-total-label {
    font-size: 1rem;
}

.cart-drawer-total-amount {
    font-size: 1.3rem;
    color: #EBC42A;
}

.cart-drawer-button {
    width: 100%;
    padding: 1rem;
    background: #EBC42A;
    color: #1C1C1C;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
}

.cart-drawer-button:hover {
    background: #d4b025;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 196, 42, 0.3);
}

.cart-drawer-button:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    /* Desktop dropdown'ı mobilde gizle */
    .cart-dropdown {
        display: none !important;
    }
    
    /* Mobil drawer'ı göster */
    .cart-drawer {
        display: flex;
    }
}

@media (min-width: 769px) {
    /* Desktop'ta drawer'ı gizle */
    .cart-drawer-overlay,
    .cart-drawer {
        display: none !important;
    }
    
    /* Desktop'ta dropdown'ı göster */
    .cart-dropdown {
        display: flex;
    }
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #1C1C1C;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #1C1C1C;
    z-index: 10002;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #333;
    background-color: #1C1C1C;
}

.mobile-menu-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #F8F4E3;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-nav {
    padding: 1rem 0;
    flex: 1;
    padding-bottom: 80px; /* Footer için alan bırak */
}

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

.mobile-menu-nav li {
    border-bottom: 1px solid #333;
}

.mobile-menu-nav li:last-child {
    border-bottom: none;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #F8F4E3;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-nav a:hover {
    background-color: rgba(235, 196, 42, 0.1);
    color: #EBC42A;
    padding-left: 2rem;
}

.mobile-menu-nav a i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    border-top: 1px solid #333;
    background: #1C1C1C;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mobile-menu-logout {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    border-radius: 8px;
    color: #dc3545;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.mobile-menu-logout:hover {
    background: #dc3545;
    color: #F8F4E3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.mobile-menu-logout:active {
    transform: translateY(0);
}

.mobile-menu-logout i {
    font-size: 1.1rem;
}

.mobile-menu-logout span {
    font-size: 1rem;
}

/* Responsive Header Search kaldırıldı */

@media (max-width: 480px) {
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 65vh;
    overflow: hidden;
    background-color: #1C1C1C;
}

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

.slider-wrapper {
    height: 100%;
    display: flex;
    /* transform animasyonu kaldırıldı - fade kullanıyoruz */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #F8F4E3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.slide.active .slide-content {
    transform: translateX(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F8F4E3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s ease-out 0.2s;
}

.slide.active .slide-content h2 {
    transform: translateX(0);
    opacity: 1;
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #F8F4E3;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.8s ease-out 0.4s;
}

.slide.active .slide-content p {
    transform: translateX(0);
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden; /* Picture elementi için */
}

/* Slider background görselleri artık JavaScript'ten optimize edilmiş şekilde yükleniyor */
/* CSS'teki hardcoded background-image'ler kaldırıldı - picture elementi kullanılıyor */

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.slider-btn {
    background-color: rgba(235, 196, 42, 0.9);
    color: #1C1C1C;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: #EBC42A;
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(235, 196, 42, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #EBC42A;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: #EBC42A;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8F4E3 0%, #EBC42A 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #1C1C1C;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #EBC42A;
    color: #1C1C1C;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 196, 42, 0.3);
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.8s ease-out 0.6s;
}

.slide.active .cta-button {
    transform: translateX(0);
    opacity: 1;
}

/* Slide Content Wrapper */
.slide-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    min-height: 400px;
}

.slide-text {
    flex: 1.2;
    text-align: left;
    max-width: 600px;
    padding-right: 2rem;
}

.slide-image {
    flex: 0.8;
    text-align: center;
    max-width: 500px;
    background: transparent;
    background-color: transparent;
}

.slide-png,
.slide-image picture img.slide-png,
.slide-image picture .slide-png {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    width: auto;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
}

.slide.active .slide-png,
.slide.active .slide-image picture img.slide-png,
.slide.active .slide-image picture .slide-png {
    transform: translateX(0);
    opacity: 1;
}

.slide-svg {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    width: auto;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
    background: transparent !important;
    background-color: transparent !important;
}

.slide.active .slide-svg {
    transform: translateX(0);
    opacity: 1;
}

/* Picture elementi için genel stil */
.slide-image picture {
    display: block;
    width: 100%;
    height: auto;
}

/* SVG container için stil */
.slide-svg-container {
    background: transparent !important;
    background-color: transparent !important;
    display: inline-block;
}

.slide-svg-container svg {
    background: transparent !important;
    background-color: transparent !important;
    fill: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content-wrapper {
        gap: 2rem;
        max-width: 1000px;
    }
    
    .slide-text {
        max-width: 500px;
    }
    
    .slide-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .slide-content-wrapper {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
        min-height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    
    .slide-text {
        text-align: center;
        max-width: 100%;
        padding-right: 0;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
        margin-top: 0;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .slide-png {
        max-height: 200px;
    }
    
    .slide-svg {
        max-height: 200px;
    }
}

.cta-button:hover {
    background-color: #1C1C1C;
    color: #EBC42A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(28, 28, 28, 0.3);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #EBC42A;
    border-radius: 2px;
}



.product-card {
    background-color: #F8F4E3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(28, 28, 28, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: fadeInUp 0.6s ease forwards;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(28, 28, 28, 0.15);
    border-color: #EBC42A;
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background-color: #fff;
    padding: 0;
}

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

.product-info {
    padding: 1.5rem;
    cursor: pointer;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EBC42A;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #EBC42A;
    color: #1C1C1C;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.sale {
    background-color: #FF6B6B;
    color: white;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #EBC42A;
    font-size: 0.9rem;
}

.rating-count {
    color: #666;
    font-size: 0.8rem;
}

/* Product Size and Stock */
.product-size {
    color: #1C1C1C;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.5rem;
    background-color: rgba(235, 196, 42, 0.1);
    border-radius: 4px;
    display: inline-block;
}

.product-stock {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Old Price */
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.new-price {
    color: #EBC42A;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Add to cart buton stilleri kaldırıldı */

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background-color: #F8F4E3;
    text-align: center;
}

.stats-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.stats-grid {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 3rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
    margin: 0 auto !important;
}

.stats-grid .stat-item {
    flex: 0 0 auto;
    min-width: 150px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #EBC42A;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #1C1C1C;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #F8F4E3;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: #F8F4E3;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(28, 28, 28, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(28, 28, 28, 0.12);
}

.feature-item i {
    font-size: 3rem;
    color: #EBC42A;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
}

/* Footer */
.footer {
    background-color: #1C1C1C;
    color: #F8F4E3;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #EBC42A;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.15rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #F8F4E3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #EBC42A;
}

/* Footer list text color set to white for better readability */
.footer-section ul li,
.footer-section ul li a {
    color: #FFFFFF;
}



.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0.3rem 0;
        height: 8vh;
        min-height: 50px;
        position: relative;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .logo-image {
        height: 60px;
        width: auto;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        left: 0;
        color: #F8F4E3;
        font-size: 1.6rem;
        cursor: pointer;
        z-index: 10;
    }
    
    .header-actions {
        position: absolute;
        right: 0;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .header-actions span {
        display: none;
    }
    
    /* Mobile header icon boyutlarını büyüt */
    .header-actions .cart-btn i,
    .header-actions button i,
    .header-actions .auth-btn i {
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }
    
    .cart-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .user-menu {
        display: none;
    }
    
    .cart-btn,
    .header-actions button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
    }
    
    .hero-slider {
        height: 100vh;
    }
    
    .stats-section {
        height: 32vh;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    /* Market sayfası için devre dışı */
    body:not(.market-page) .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0.25rem 0;
        height: 10vh;
        min-height: 45px;
    }
    
    .logo-image {
        height: 50px;
        width: auto;
    }
    
    /* Küçük ekranlarda icon boyutlarını biraz daha büyüt */
    .mobile-menu-toggle {
        font-size: 1.7rem;
    }
    
    .header-actions .cart-btn i,
    .header-actions button i,
    .header-actions .auth-btn i {
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }
    
    .cart-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .user-menu {
        display: none;
    }
    
    .cart-btn,
    .header-actions button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-slider {
        height: 100vh;
    }
    
    .stats-section {
        height: 35vh;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .slider-nav {
        padding: 0 0.5rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Market sayfası için devre dışı */
    body:not(.market-page) .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Eski slider stilleri kaldırıldı */
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Eski slider stilleri kaldırıldı */
}

/* ===== POPÜLER ÜRÜNLER 4x2 GRID STİLLERİ ===== */

/* Popüler ürünler ana container */
.popular-products {
    padding: 4rem 0;
}

/* Grid wrapper - konteyner içinde ortalama */
.popular-products .popular-products-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* 6x2 Grid düzeni - küçük kartlar */
.popular-products .products-grid {
    display: grid;
    grid-template-columns: repeat(6, 220px);
    gap: 1.2rem;
    margin: 2rem auto 0 auto;
    max-width: 1600px;
    width: fit-content;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

/* Popular products container arka plan */
#popular-products-container {
    background-color: #fff;
    border-radius: 15px;
    padding: 1rem 2rem 2rem 2rem;
}

/* Popüler ürün kartları - küçük */
.popular-products .product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 170px;
    width: 100%;
    min-width: 200px;
    box-shadow: none !important;
}

.popular-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: none !important;
    border-color: transparent !important;
}

/* Popüler ürün resimleri */
.popular-products .product-card .product-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-products .product-card .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.popular-products .product-card .product-image:hover img {
    transform: none;
}

/* Hover sepet simgesi */
.popular-products .product-card .product-image .cart-icon {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1C1C1C;
    color: #FFFFFF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.popular-products .product-card:hover .product-image .cart-icon {
    opacity: 1;
}

.popular-products .product-card .product-image .cart-icon:hover {
    background-color: #333333;
    transform: translateX(-50%) scale(1.1);
}

/* Popüler ürün bilgi alanı */
.popular-products .product-card .product-info {
    padding: 0.25rem 0.5rem 0.25rem 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 20px;
}

/* Popüler ürün isimleri - küçük */
.popular-products .product-card .product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 0;
    line-height: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 1rem;
    padding: 0 0.25rem;
    text-align: center;
}

/* Popüler ürün fiyatları */
.popular-products .product-card .product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.popular-products .product-card .product-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.popular-products .product-card .product-price .new-price {
    color: #1C1C1C;
    font-size: 1rem;
    font-weight: 700;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .popular-products .popular-products-grid {
        padding: 0 1rem;
    }
    
    #popular-products-container {
        padding: 0.75rem 1rem 1.5rem 1rem;
    }
    
    .popular-products .products-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
        width: 100%;
        margin: 2rem auto 0 auto;
        justify-content: center;
        align-items: center;
    }
    
    .popular-products .products-grid .product-row {
        display: flex;
        gap: 1rem;
        width: 100%;
        justify-content: space-between;
        padding: 0 1rem;
    }
    
    .popular-products .products-grid .product-row .product-card {
        flex: 1;
        max-width: calc(50% - 0.5rem);
        min-width: 0;
    }
    
    .popular-products .product-card {
        min-width: 200px;
        min-height: 200px;
    }
    
    .popular-products .product-card .product-image {
        height: 220px;
    }
    
    .popular-products .product-card .product-info {
        padding: 0.25rem 0.5rem 0.25rem 0.5rem;
        min-height: 15px;
        justify-content: flex-start;
    }
    
    .popular-products .product-card .product-name {
        font-size: 0.85rem;
        min-height: 0.9rem;
        padding: 0 0.25rem;
        margin-bottom: 0;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .popular-products .popular-products-grid {
        padding: 0 1rem;
    }
    
    #popular-products-container {
        padding: 0.5rem 0.75rem 1rem 0.75rem;
    }
    
    .popular-products .products-grid {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        max-width: 100%;
        width: 100%;
        margin: 2rem auto 0 auto;
        justify-content: center;
        align-items: center;
    }
    
    .popular-products .products-grid .product-row {
        display: flex;
        gap: 0.8rem;
        width: 100%;
        justify-content: space-between;
        padding: 0 0.5rem;
    }
    
    .popular-products .products-grid .product-row .product-card {
        flex: 1;
        max-width: calc(50% - 0.4rem);
        min-width: 0;
    }
    
    .popular-products .product-card {
        min-width: 180px;
        min-height: 180px;
    }
    
    .popular-products .product-card .product-image {
        height: 200px;
    }
    
    .popular-products .product-card .product-info {
        padding: 0.25rem 0.5rem 0.25rem 0.5rem;
        min-height: 15px;
        justify-content: flex-start;
    }
    
    .popular-products .product-card .product-name {
        font-size: 0.8rem;
        min-height: 0.8rem;
        padding: 0 0.25rem;
        margin-bottom: 0;
        line-height: 1;
    }
}

/* Cart sistemi stilleri kaldırıldı */

/* Quick View Modal Stilleri */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.quick-view-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quick-view-content h2 {
    color: #1C1C1C;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.quick-view-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quick-view-content .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #EBC42A;
    margin-bottom: 1.5rem;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #1C1C1C;
}

/* Notification Stilleri */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/* Cart sayfası stilleri kaldırıldı */

/* Cart stilleri kaldırıldı */


.product-card .product-stock {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Product Actions - Quantity Picker and Add to Cart Button */
.product-card .product-actions {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.product-card .quantity-picker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.product-card .quantity-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #EBC42A;
    background: white;
    color: #1C1C1C;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .quantity-btn:hover {
    background: #EBC42A;
    color: white;
    transform: scale(1.05);
}

.product-card .quantity-btn:disabled {
    background: #e9ecef;
    border-color: #dee2e6;
    color: #adb5bd;
    cursor: not-allowed;
    transform: none;
}

.product-card .quantity-input {
    width: 60px;
    height: 36px;
    border: 2px solid #EBC42A;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1C1C1C;
    border-radius: 6px;
    background: white;
}

.product-card .quantity-input:focus {
    outline: none;
    border-color: #d4b023;
    box-shadow: 0 0 0 3px rgba(235, 196, 42, 0.2);
}

/* Number input spinner oklarını kaldır */
.product-card .quantity-input::-webkit-outer-spin-button,
.product-card .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-card .quantity-input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.product-card .add-to-cart-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #EBC42A;
    color: #1C1C1C;
    text-decoration: none;
}

.product-card .add-to-cart-btn:hover {
    background: #d4b023;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 196, 42, 0.3);
}

.product-card .add-to-cart-btn:active {
    transform: translateY(0);
}

.product-card .add-to-cart-btn i {
    font-size: 1rem;
}

/* Ensure these styles take precedence over global button styles */
.product-card .quantity-picker .quantity-btn,
.product-card .add-to-cart-btn {
    all: unset;
    box-sizing: border-box;
}

.product-card .quantity-picker .quantity-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #EBC42A;
    background: white;
    color: #1C1C1C;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .quantity-picker .quantity-btn:hover {
    background: #EBC42A;
    color: white;
    transform: scale(1.05);
}

.product-card .quantity-picker .quantity-btn:disabled {
    background: #e9ecef;
    border-color: #dee2e6;
    color: #adb5bd;
    cursor: not-allowed;
    transform: none;
}

.product-card .quantity-picker .quantity-input {
    width: 60px;
    height: 36px;
    border: 2px solid #EBC42A;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1C1C1C;
    border-radius: 6px;
    background: white;
}

.product-card .quantity-picker .quantity-input:focus {
    outline: none;
    border-color: #d4b023;
    box-shadow: 0 0 0 3px rgba(235, 196, 42, 0.2);
}

.product-card .add-to-cart-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #EBC42A;
    color: #1C1C1C;
    text-decoration: none;
}

.product-card .add-to-cart-btn:hover {
    background: #d4b023;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 196, 42, 0.3);
}

.product-card .add-to-cart-btn:active {
    transform: translateY(0);
}

.product-card .add-to-cart-btn i {
    font-size: 1rem;
}

/* Feature Items (Anasayfa özellik kartları) */
.feature-item {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(28, 28, 28, 0.08);
    transition: all 0.3s ease;
}

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

.feature-item i {
    font-size: 3rem;
    color: #EBC42A;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #1C1C1C;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Product Cards */
@media (max-width: 768px) {
    .product-card .product-image {
        height: 350px;
    }
    
    .product-card .product-info {
        padding: 1rem;
    }
    
    .product-card .product-info h3 {
        font-size: 1rem;
    }
    
    .product-card .quantity-picker {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .product-card .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .product-card .quantity-input {
        width: 50px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .product-card .add-to-cart-btn {
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Stats Section */
.stats-section {
    height: 29vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1C1C1C 0%, #333 100%);
    color: #F8F4E3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    width: 100%;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #EBC42A;
    margin-bottom: 0.75rem;
    animation: countUp 2s ease-out;
}

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

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

/* Stats Section Responsive */
@media (max-width: 768px) {
    .stats-section {
        height: 32vh;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        height: 35vh;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Mobil için Scroll Bar Gizleme - Tüm Site İçin Geçerli */
@media (max-width: 768px) {
    /* Webkit tabanlı tarayıcılar (Chrome, Safari, Edge) */
    ::-webkit-scrollbar {
        display: none;
    }
    
    /* Firefox */
    html {
        scrollbar-width: none;
    }
    
    /* IE ve Edge */
    body {
        -ms-overflow-style: none;
    }
    
    /* Tüm scrollable elementler için */
    * {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    *::-webkit-scrollbar {
        display: none;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EBC42A 0%, #d4b023 100%);
    color: #1C1C1C;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(235, 196, 42, 0.4);
    transition: all 0.3s ease;
    z-index: 9997;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #d4b023 0%, #EBC42A 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(235, 196, 42, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-3px);
}

/* Responsive Scroll to Top Button */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
        font-size: 0.9rem;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 9996;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-button:active {
    transform: translateY(-3px) scale(1.05);
}

.whatsapp-button i {
    transition: transform 0.3s ease;
}

.whatsapp-button:hover i {
    transform: scale(1.1);
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        left: 1.5rem;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        left: 1rem;
        font-size: 1.2rem;
    }
}
