/* Root değişkenlerini güncelle - en üste */
:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --header-bg: rgba(255, 255, 255, 0.98);
    --card-bg: #ffffff;
    --border-color: #eeeeee;
    --shadow-color: rgba(0,0,0,0.1);
    --hover-bg: #f5f5f5;
    --footer-bg: #1a1a1a;
    --footer-text: #ffffff;
    --menu-hover: #f8f8f8;
    --link-color: #333333;
    --product-text: #666666;
    --section-bg: #ffffff;
    --button-text: #ffffff;
    --header-scrolled-bg: rgba(255, 255, 255, 0.9);
    --dropdown-bg: #ffffff;
    --dropdown-hover-bg: #f8f8f8;
    --category-label-bg: rgba(255, 255, 255, 0.95);
    --category-label-color: #c40c0c;
}

/* Koyu tema için değişkenler */
[data-theme="dark"] {
    --bg-color: #121212;
    --text-color: #ffffff;
    --header-bg: rgba(18, 18, 18, 0.98);
    --card-bg: #1e1e1e;
    --border-color: #2d2d2d;
    --shadow-color: rgba(0,0,0,0.3);
    --hover-bg: #2d2d2d;
    --footer-bg: #0a0a0a;
    --footer-text: #ffffff;
    --menu-hover: #2d2d2d;
    --link-color: #ffffff;
    --product-text: #cccccc;
    --section-bg: #121212;
    --button-text: #ffffff;
    --header-scrolled-bg: rgba(18, 18, 18, 0.9);
    --dropdown-bg: #1e1e1e;
    --dropdown-hover-bg: #2d2d2d;
    --category-label-bg: #c40c0c;
    --category-label-color: #ffffff;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: var(--bg-color);
    color: var(--text-color);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-bg);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    height: 80px; /* Sabit header yüksekliği */
    display: flex;
    align-items: center;
}

header:hover {
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

header.scrolled {
    padding: 15px 0;
    background: var(--header-scrolled-bg);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 80px; /* Header ile aynı yükseklik */
    overflow: visible;
    position: relative;
}

.logo img {
    height: 240px; /* Logo boyutunu büyüttük */
    width: auto;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1.1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute; /* Eklendi */
    top: -75px; /* Logo'yu biraz aşağı kaydır */
    left: 0; /* Eklendi */
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

nav {
    margin-left: 270px; /* Logo için alan */
}

nav ul {
    display: flex;
    gap: 55px;
    align-items: center;
    list-style: none;
}

nav ul li {
    position: relative;
    padding: 15px 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--link-color);
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c40c0c, #ff4b4b);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #c40c0c;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li.active a {
    color: #c40c0c;
    font-weight: 600;
}

nav ul li.active a::after {
    width: 100%;
}

/* Dropdown menü için ek özellikler */
nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    min-width: 200px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 10px;
}

nav ul li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover > a::after {
    transform: rotate(225deg); /* Ok işaretinin yukarı dönmesini sağlar */
}

/* Önceki kalın çizgi efektini kaldırıyoruz */
nav ul li.has-dropdown a::after {
    background: transparent; /* Kalın çizgiyi kaldır */
}

nav ul li.has-dropdown a:hover::after {
    width: 0; /* Hover'daki çizgi efektini kaldır */
}

/* Dropdown linki için normal hover efektini diğerleriyle aynı yap */
nav ul li.has-dropdown > a:hover {
    color: #ff0000;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 15px); /* 5px'ten -15px'e değiştirildi */
    left: 0; /* Sol hizalama */
    transform: none; /* Önceki transform'u kaldır */
    background: var(--dropdown-bg);
    min-width: 220px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    z-index: 1000; /* Üstte görünmesi için */
    pointer-events: none; /* Başlangıçta tıklamaya kapalı */
}

/* Dropdown ok işareti pozisyonunu da ayarla */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px; /* -8px'den -6px'e değiştirildi */
    left: 30px; /* Sol tarafta ok işareti */
    transform: translateX(0);
    border-left: 6px solid transparent; /* Ok boyutu küçültüldü */
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--card-bg);
}

.has-dropdown {
    position: relative;
}

.has-dropdown > a:hover ~ .dropdown-menu,
.has-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Menü görünür olduğunda tıklamaya açık */
}

/* Menünün dışına çıkıldığında kapanmaması için */
.has-dropdown:hover {
    cursor: pointer;
}

/* Dropdown ok işareti */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px; /* -8px'den -6px'e değiştirildi */
    left: 30px; /* Sol tarafta ok işareti */
    transform: translateX(0);
    border-left: 6px solid transparent; /* Ok boyutu küçültüldü */
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--card-bg);
}

/* Eski dropdown menu item stillerini kaldır */
.dropdown-menu li a::before {
    content: none; /* İlk noktayı kaldır */
}

/* Yeni dropdown menu item styles */
.dropdown-menu li {
    position: relative;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dropdown-menu li::before {
    content: '';
    position: relative;
    width: 6px;
    height: 6px;
    background: #c40c0c;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(196, 12, 12, 0.4);
}

.dropdown-menu li:hover::before {
    transform: scale(1.2);
    background: #ff4b4b;
    box-shadow: 0 0 0 4px rgba(196, 12, 12, 0.2);
}

.dropdown-menu li a {
    color: var(--text-color);
    font-size: 15px;
    display: block;
    width: 100%;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.dropdown-menu li:hover {
    background: var(--dropdown-hover-bg);
}

.dropdown-menu li:hover a {
    color: #c40c0c;
    transform: translateX(5px);
}

/* Ok işareti */
.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.has-dropdown > a::before {
    content: '▾';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a::before {
    transform: rotate(180deg);
}

/* Scroll durumunda header */
header.scrolled {
    padding: 15px 0;
    background: var(--header-scrolled-bg);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.dropdown-menu-container {
    position: static;
    padding: 0;
    z-index: 1001;
    width: 100%;
}

nav ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
}

.dropdown-menu li:hover {
    background: #f8f8f8;
}

.dropdown-menu li a {
    width: 100%;
    color: #333;
    font-size: 15px;
    display: block;
    padding: 8px 0;
    align-items: center;
    gap: 10px;
}

.dropdown-menu li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #c40c0c;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dropdown-menu li:hover a::before {
    transform: scale(1.5);
}

/* Slider stillerini güncelle */
.slider {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 50px;
    background: #000;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 50px 50px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.3);
    border-color: #c40c0c;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0;
}

.slider:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background: rgba(196, 12, 12, 0.8);
    width: 50px;
    height: 50px;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Slide içerik overlay */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 50px 50px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* Ürünler bölümü yeni tasarım */
.products {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--section-bg);
}

.products h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c40c0c, #ff4b4b);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
}

.product-category {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow-color);
    transition: all 0.4s ease;
    position: relative;
    color: var(--text-color);
}

.product-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 35px rgba(196, 12, 12, 0.15);
}

.product-category img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-category:hover img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    position: relative;
}

.product-info h2 {
    color: var(--text-color);
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: left;
    padding: 0;
}

.product-info h2::after {
    display: none;
}

.product-info p {
    color: var(--product-text);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95em;
}

.product-features {
    margin: 20px 0;
    padding-left: 0;
}

.product-features li {
    padding: 8px 0 8px 25px;
    color: var(--product-text);
    position: relative;
    font-size: 0.9em;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c40c0c;
    font-weight: bold;
}

.btn-details {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #c40c0c, #ff4b4b);
    color: var(--button-text);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(196, 12, 12, 0.2);
}

.btn-details:hover {
    background: linear-gradient(45deg, #ff4b4b, #c40c0c);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 12, 12, 0.3);
}

.image-container {
    position: relative;
    overflow: hidden;
}

.category-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--category-label-bg);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--category-label-color);
    font-size: 0.9em;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.products {
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--section-bg);
}

.products h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: var(--text-color);
    cursor: pointer; /* Tıklanabilir olduğunu belli etmek için imleç stilini değiştir */
    overflow: hidden; /* Önemli: Döndürülmüş kategori etiketi için */
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

/* Ürünler Sayfası Stilleri */
.products-showcase {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--text-color);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #c40c0c, #ff4b4b);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3'ten 4'e değiştirildi */
    gap: 25px; /* Gap'i biraz azalttık */
    padding: 20px 0;
}

.product-card {
    /* Kartların boyutunu yeni grid yapısına uygun hale getirdik */
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.product-image {
    height: 220px; /* Yüksekliği biraz azalttık */
}

/* Responsive tasarımı güncelle */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    padding: 12px 25px;
    background: var(--card-bg);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .view-details {
    transform: translateY(0);
}

.view-details:hover {
    background: #c40c0c;
    color: white;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: var(--text-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--product-text);
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-tags span {
    padding: 5px 12px;
    background: var(--hover-bg);
    color: var(--text-color);
    border-radius: 15px;
    font-size: 0.8em;
    transition: all 0.3s ease;
}

.product-card:hover .product-tags span {
    background: #c40c0c;
    color: white;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .product-image {
        height: 200px;
    }
}

/* Ürün kartı fotoğraf boyutları */
.product-image {
    position: relative;
    height: 220px; /* Kart içindeki resim yüksekliği */
    width: 100%; /* Genişlik kartın tamamını kaplar */
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi orantılı şekilde kaplar */
}

/* Farklı ekran boyutlarındaki ayarlar */
@media (max-width: 1200px) {
    .product-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .product-image {
        height: 180px;
    }
}

/* Footer Styles - Yeni Tasarım */
footer {
    flex-shrink: 0;
    background: var(--footer-bg);
    color: var(--footer-text);
    width: 100%;
    padding: 70px 0 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c40c0c, #ff4b4b);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 0 20px;
    position: relative;
}

.footer-section {
    position: relative;
}

.footer-section h3 {
    color: var(--footer-text);
    font-size: 1.3em;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #c40c0c;
}

.footer-section p {
    color: var(--footer-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 12px 0;
}

.footer-section ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: var(--text-color);
    transform: translateX(5px);
}

.footer-section ul li a::before {
    content: '›';
    margin-right: 8px;
    color: #c40c0c;
    font-size: 1.2em;
}

/* İletişim bilgileri için özel stiller */
.footer-section.contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--footer-text);
}

.footer-section.contact li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #c40c0c;
    border-radius: 50%;
}

/* Sosyal medya ikonları */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c40c0c;
    transform: translateY(-3px);
}

/* Copyright bölümü */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #808080;
    font-size: 0.9em;
}

.product-page {
    padding: 80px 0;
    background: var(--section-bg);
}

.product-page h1 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 36px;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
}

.product-category {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    color: var(--text-color);
}

.product-category:hover {
    transform: translateY(-5px);
}

.product-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-category h2 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.product-category p {
    color: var (--product-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-category ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.product-category ul li {
    padding: 8px 0;
    color: var(--product-text);
    padding-left: 20px;
    position: relative;
}

.product-category ul li:before {
    content: '•';
    color: #c40c0c;
    position: absolute;
    left: 0;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #c40c0c;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #a00a0a;
}

/* Ana içerik için wrapper */
.main-content {
    flex: 1 0 auto;
    padding-top: 80px; /* Normal header yüksekliğine göre ayarlandı */
    background: var(--section-bg);
}
    
/* Dropdown menu item styles */
.dropdown-menu li {
    position: relative;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dropdown-menu li::before {
    content: '';
    position: relative;
    width: 6px;
    height: 6px;
    background: #c40c0c;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(196, 12, 12, 0.4);
}

.dropdown-menu li:hover::before {
    transform: scale(1.2);
    background: #ff4b4b;
    box-shadow: 0 0 0 4px rgba(196, 12, 12, 0.2);
}

.dropdown-menu li a {
    color: var(--text-color);
    font-size: 15px;
    display: block;
    width: 100%;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.dropdown-menu li:hover {
    background: var(--dropdown-hover-bg);
}

.dropdown-menu li:hover a {
    color: #c40c0c;
    transform: translateX(5px);
}

/* Ayarlar butonu ve menüsü için yeni stiller */
.nav-end {
    display: flex;
    align-items: center;
    gap: 20px;
}

.settings-dropdown {
    position: relative;
    margin-left: 20px;
}

.settings-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.settings-btn:hover {
    color: #c40c0c;
    transform: rotate(90deg);
}

.settings-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: var(--dropdown-bg);
    min-width: 200px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.settings-dropdown:hover .settings-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-switch, .language-options {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.theme-switch:last-child, .language-options:last-child {
    border-bottom: none;
}

.settings-menu h4 {
    color: var(--text-color);
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
}

.theme-options, .language-list {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.theme-btn, .lang-btn {
    background: var(--card-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-btn:hover, .lang-btn:hover {
    background: var(--hover-bg);
}

.theme-btn.active, .lang-btn.active {
    background: #c40c0c;
    color: white;
    border-color: #c40c0c;
}

/* Admin Panel Link Styles */
.admin-link {
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
}

.admin-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background: var(--hover-bg);
    color: #c40c0c;
}

.admin-btn i {
    font-size: 16px;
}

/* Ürün Popup Stilleri */
.product-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.product-popup.active {
    display: flex;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: popupFadeIn 0.3s ease;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--primary-color);
}

.popup-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.popup-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.popup-description {
    color: var(--product-text);
    line-height: 1.6;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Yeni Popup Stilleri */
.custom-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.custom-popup.active {
    opacity: 1;
}

.popup-inner {
    background: var(--bg-color);
    width: 95%;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.custom-popup.active .popup-inner {
    transform: translateY(0);
}

.popup-header {
    position: relative;
    padding: 25px 30px;
    background: linear-gradient(135deg, #c40c0c, #ff4b4b);
    color: white;
}

.popup-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    padding-right: 40px;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.popup-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    padding: 30px;
    background: var(--bg-color);
    max-height: 90vh;
    overflow-y: auto;
}

.popup-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.popup-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.popup-image:hover img {
    transform: scale(1.05);
}

.popup-details {
    color: var(--text-color);
    padding: 20px;
}

.popup-details h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    color: var(--primary-color);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-description {
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 16px;
}

.popup-info {
    background: var(--hover-bg);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.popup-category {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.popup-category span {
    color: var(--text-color);
    font-weight: 500;
}

.popup-category strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .popup-content {
        grid-template-columns: 1fr;
    }
    
    .popup-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .popup-header h2 {
        font-size: 24px;
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .popup-image img {
        height: 250px;
    }
    
    .popup-details {
        padding: 10px;
    }
}

/* Yeni Liste Görünümü Stilleri */
.product-grid {
    display: flex;
    flex-direction: column;
    gap: 25px; /* 15px'den 25px'e yükseltildi */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 5px; /* Ekstra alt boşluk */
    padding: 15px;
}

/* Kategori etiketini başlığın üzerine taşı */
.product-info-row {
    order: -1; /* En üste taşır */
    margin-bottom: 8px;
}

.product-info-row .category {
    color: #c40c0c;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info-row .condition {
    color: var(--text-secondary);
    font-size: 13px;
}

/* Başlık satırını düzenle */
.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.product-category {
    color: #c40c0c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.product-description {
    color: var(--product-text);
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .product-card {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        width: 100%;
        height: 200px;
    }
}

/* Yeni Modern Popup Stilleri */
.custom-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.popup-inner {
    background: var(--bg-color);
    width: 90%;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.popup-left {
    width: 50%;
    position: relative;
}

.popup-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.popup-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.1), transparent);
}

.popup-right {
    width: 50%;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: var(--text-color);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #c40c0c;
    color: white;
    transform: rotate(90deg);
}

.popup-category {
    display: inline-block;
    padding: 6px 12px;
    background: #c40c0c;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.popup-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.popup-description {
    color: var(--product-text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.popup-specs {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: auto;
}

.popup-specs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-item i {
    color: #c40c0c;
    font-size: 18px;
}

.popup-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.popup-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-btn-primary {
    background: #c40c0c;
    color: white;
    border: none;
}

.popup-btn-primary:hover {
    background: #ff4b4b;
    transform: translateY(-2px);
}

.popup-btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.popup-btn-secondary:hover {
    background: var(--hover-bg);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .popup-inner {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-left, .popup-right {
        width: 100%;
    }

    .popup-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .popup-right {
        padding: 20px;
    }

    .popup-title {
        font-size: 24px;
    }

    .popup-specs-list {
        grid-template-columns: 1fr;
    }
}

/* Ürün Detay Sayfası Stilleri */
.product-detail-page {
    padding: 80px 20px;
    background: var(--bg-color);
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-detail-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-category {
    display: inline-block;
    background-color: #c40c0c;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.product-category:hover {
    background-color: #a00a0a;
}

.product-title {
    font-size: 32px;
    color: var(--text-color);
    margin: 0;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--product-text);
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-btn, .back-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.contact-btn {
    background: #c40c0c;
    color: white;
    border: none;
}

.back-btn {
    background: var(--hover-bg);
    color: var(--text-color);
}

.product-category {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.category-label {
    font-weight: bold;
    color: var(--text-secondary);
    margin-right: 5px;
}

.category-value {
    background-color: #c40c0c;
    color: white;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 14px;
}

/* Kategori etiketi için yeni stiller */
.product-card .category-label {
    position: absolute;
    top: 15px;
    left: 100px; /* 15px'den 100px'e değiştirildi */
    background: rgba(196, 12, 12, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1;
    transition: all 0.3s ease;
}

.product-card:hover .category-label {
    background: rgb(196, 12, 12);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.product-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c40c0c;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.product-card:hover .product-category-tag {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Kategori rozeti için yeni stiller */
.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c40c0c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.product-card:hover .category-badge {
    background: #ff4b4b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 12, 12, 0.3);
}

/* Sahibinden.com benzeri ürün listesi stilleri */
.products-showcase {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

.filters-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.filter-section {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.filter-section h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.filter-section ul {
    list-style: none;
    padding: 0;
}

.filter-section ul li a {
    display: block;
    padding: 8px 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
}

.filter-section ul li a.active {
    color: #c40c0c;
    font-weight: 500;
}

.price-inputs {
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-inputs input {
    width: 80px;
    padding: 6px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.price-inputs button {
    padding: 6px 12px;
    background: #c40c0c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.filter-section label {
    display: block;
    padding: 8px 0;
    color: var(--text-color);
    font-size: 14px;
}

.products-content {
    flex-grow: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sort-options select {
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--card-bg);
    color: var(--text-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    cursor: pointer; /* Tıklanabilir olduğunu belli etmek için imleç stilini değiştir */
    overflow: hidden; /* Önemli: Döndürülmüş kategori etiketi için */
}

.product-card:hover {
    transform: translateY(-2px);
}

.product-image {
    position: relative;
    height: 200px;
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.favorite-btn:hover {
    background: #c40c0c;
    color: white;
}

.product-details {
    padding: 12px;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.product-title-row h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

.price {
    font-weight: bold;
    color: #c40c0c;
}

.product-info-row {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.product-location-date {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-secondary);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.pagination a {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    text-decoration: none;
}

.pagination a.active {
    background: #c40c0c;
    color: white;
    border-color: #c40c0c;
}

.pagination a.next {
    background: var(--card-bg);
}

/* Modern pagination tasarımı */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.pagination a.active {
    background: #c40c0c;
    color: white;
    border-color: #c40c0c;
    font-weight: 600;
}

.pagination a.next,
.pagination a.prev {
    padding: 0 20px;
    gap: 8px;
}

.pagination a.next::after {
    content: '→';
    font-size: 18px;
}

.pagination a.prev::before {
    content: '←';
    font-size: 18px;
}

.pagination a.dots {
    border: none;
    background: none;
    pointer-events: none;
    padding: 0 5px;
}

/* Responsive pagination */
@media (max-width: 576px) {
    .pagination {
        gap: 5px;
    }

    .pagination a {
        min-width: 35px;
        height: 35px;
        padding: 0 10px;
        font-size: 13px;
    }

    .pagination a.next,
    .pagination a.prev {
        padding: 0 15px;
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .products-showcase {
        flex-direction: column;
    }

    .filters-sidebar {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

.section-title {
    text-align: center;
    color: var(--text-color);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #c40c0c, #ff4b4b);
    border-radius: 3px;
}

/* Ürünler sayfası için düzenlenmiş stiller */
.products-showcase {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: var(--text-color);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #c40c0c, #ff4b4b);
    border-radius: 3px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Sahibinden.com tarzı kart tasarımı buradan sonra devam ediyor */
.product-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    cursor: pointer; /* Tıklanabilir olduğunu belli etmek için imleç stilini değiştir */
}

/* Pagination stilleri */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

/* Yeni kategori etiketi tasarımı */
.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c40c0c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.product-card:hover .category-tag {
    background: #ff4b4b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(196, 12, 12, 0.3);
}

/* Yeni kategori etiketi tasarımı */
.product-category-new {
    position: absolute;
    top: 15px;
    right: -35px;
    background: #c40c0c;
    color: white;
    padding: 6px 35px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
    text-align: center;
    min-width: 140px;
}

/* Hover efekti */
.product-card:hover .product-category-new {
    background: #ff4b4b;
    box-shadow: 0 3px 8px rgba(196, 12, 12, 0.3);
}

/* Ürün kartı tasarımı - Sahibinden.com tarzı */
.product-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(196, 12, 12, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-details {
    padding: 12px;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.product-title-row h3 {
    font-size: 16px;
    color: var(--text-color);
    margin: 0;
}

.price {
    font-weight: bold;
    color: #c40c0c;
}

.product-info-row {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.product-location-date {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-secondary);
}

/* Hakkımızda Sayfası Stilleri */
.about-section {
    padding: 60px 0;
    background: var(--section-bg);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
}

.about-text p {
    margin-bottom: 25px;
    text-align: justify;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.pagination a {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    text-decoration: none;
}

.pagination a.active {
    background: #c40c0c;
    color: white;
    border-color: #c40c0c;
}

.pagination a.next {
    background: var(--card-bg);
}

/* Modern pagination tasarımı */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.pagination a.active {
    background: #c40c0c;
    color: white;
    border-color: #c40c0c;
    font-weight: 600;
}

.pagination a.next,
.pagination a.prev {
    padding: 0 20px;
    gap: 8px;
}

.pagination a.next::after {
    content: '→';
    font-size: 18px;
}

.pagination a.prev::before {
    content: '←';
    font-size: 18px;
}

.pagination a.dots {
    border: none;
    background: none;
    pointer-events: none;
    padding: 0 5px;
}

/* Responsive pagination */
@media (max-width: 576px) {
    .pagination {
        gap: 5px;
    }

    .pagination a {
        min-width: 35px;
        height: 35px;
        padding: 0 10px;
        font-size: 13px;
    }

    .pagination a.next,
    .pagination a.prev {
        padding: 0 15px;
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .products-showcase {
        flex-direction: column;
    }

    .filters-sidebar {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

.section-title {
    text-align: center;
    color: var(--text-color);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #c40c0c, #ff4b4b);
    border-radius: 3px;
}

/* Ürünler sayfası için düzenlenmiş stiller */
.products-showcase {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: var(--text-color);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #c40c0c, #ff4b4b);
    border-radius: 3px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Sahibinden.com tarzı kart tasarımı buradan sonra devam ediyor */
.product-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    cursor: pointer; /* Tıklanabilir olduğunu belli etmek için imleç stilini değiştir */
}

/* Pagination stilleri */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

/* Yeni kategori etiketi tasarımı */
.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c40c0c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.product-card:hover .category-tag {
    background: #ff4b4b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(196, 12, 12, 0.3);
}

/* Yeni kategori etiketi tasarımı */
.product-category-new {
    position: absolute;
    top: 15px;
    right: -35px;
    background: #c40c0c;
    color: white;
    padding: 6px 35px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
    text-align: center;
    min-width: 140px;
}

/* Hover efekti */
.product-card:hover .product-category-new {
    background: #ff4b4b;
    box-shadow: 0 3px 8px rgba(196, 12, 12, 0.3);
}

/* Ürün kartı tasarımı - Sahibinden.com tarzı */
.product-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(196, 12, 12, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-details {
    padding: 12px;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.product-title-row h3 {
    font-size: 16px;
    color: var(--text-color);
    margin: 0;
}

.price {
    font-weight: bold;
    color: #c40c0c;
}

.product-info-row {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.product-location-date {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-secondary);
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('image/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content p {
    font-size: 24px;
    opacity: 0.9;
}

.vision-mission {
    padding: 80px 0;
    background: var(--section-bg);
}

.vision-mission .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.vision-box, .mission-box {
    padding: 40px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-10px);
}

.vision-box h2, .mission-box h2 {
    color: #c40c0c;
    font-size: 24px;
    margin-bottom: 20px;
}

.vision-box p, .mission-box p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
}

.about-info {
    padding: 80px 0;
}

.about-info .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
    align-items: center;
}

.info-text h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.info-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.achievements {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.achievements li {
    text-align: center;
    color: var(--text-color);
}

.achievements .count {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #c40c0c;
    margin-bottom: 10px;
}

.info-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive tasarım */
@media (max-width: 992px) {
    .vision-mission .container,
    .about-info .container {
        grid-template-columns: 1fr;
    }

    .achievements {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 60px 0;
    background: var(--bg-color);
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Form Stilleri */
.contact-form {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-color);
    color: var(--text-color);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.error {
    color: #c40c0c;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.btn-submit {
    background: #c40c0c;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #a00a0a;
    transform: translateY(-2px);
}

/* İletişim Bilgileri Stilleri */
.contact-info {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 24px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    color: #c40c0c;
    font-size: 24px;
    width: 24px;
}

.info-item h3 {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Harita Stilleri */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px;
    }
}