:root {
    --primary-color: #0a4876;  /* Mavi - Konfull tema rengi */
    --primary-dark: #083b61;   /* Koyu mavi */
    --primary-light: #1a5b8c;  /* Açık mavi */
    --accent-color: #f6f6f6;   /* Açık gri */
    --secondary-color: #e9e9e9; /* Açık gri - ikincil */
    --text-color: #333333;     /* Koyu gri metin */
    --light-color: #ffffff;    /* Beyaz arka plan */
    --dark-color: #222222;     /* Çok koyu gri */
    --success-color: #4caf50;  /* Yeşil */
    --info-color: #2196f3;     /* Mavi */
    --warning-color: #ff9800;  /* Turuncu */
    --danger-color: #f44336;   /* Kırmızı */
}

/* Container genişliğini ayarla */
.container {
    max-width: 1200px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Font ayarları */
body {
    font-family: 'Comfortaa', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

/* Navbar stilini değiştir */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    background-color: var(--light-color);
}

.navbar-brand img {
    max-height: 40px;
}

.nav-link {
    font-weight: 500;
    padding: 0.6rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 60%;
}

/* Hero section stilini değiştir - Konfull stilinde büyük görsel */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/forest-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    background: white;
    color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Kategoriler Bölümü - Konfull Stilinde */
.categories-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Ürün Kartları - Konfull Stilinde */
.category-card {
    background: var(--light-color);
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.category-image-wrap {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.category-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.category-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.category-link {
    color: var(--text-color);
    font-size: 0.9rem;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

/* Tasarım Felsefesi Bölümü - Konfull Stilinde */
.philosophy-section {
    padding: 100px 0;
    background-color: var(--accent-color);
}

.philosophy-item {
    margin-bottom: 50px;
}

.philosophy-item h3 {
    position: relative;
    padding-left: 70px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.philosophy-item h3::before {
    content: attr(data-number);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    opacity: 0.2;
}

.philosophy-item p {
    padding-left: 70px;
    color: var(--text-color);
}

/* Haberler Bölümü - Konfull Stilinde */
.news-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.news-card {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.news-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.news-link:hover {
    padding-left: 5px;
}

/* Referanslar Bölümü - Konfull Stilinde */
.references-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.reference-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 30px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.reference-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.reference-logo img {
    max-height: 100%;
    max-width: 100%;
}

/* İletişim Bölümü - Konfull Stilinde */
.contact-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
}

.contact-section h3 {
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-section p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 10px 20px;
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Footer - Konfull Stilinde */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    
    /* Hero bölümü için düzenlemeler */
    .hero-section {
        height: 60vh;
        padding: 30px 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-section .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Kategoriler bölümü için düzenlemeler */
    .categories-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 2px;
    }
    
    .section-subtitle {
        margin-bottom: 2rem;
        font-size: 0.9rem;
    }
    
    /* Kategori kartları için düzenlemeler */
    .category-image-wrap {
        height: 180px;
    }
    
    .category-name {
        font-size: 1rem;
    }
    
    /* Felsefe bölümü için düzenlemeler */
    .philosophy-item h3 {
        padding-left: 50px;
        font-size: 1.4rem;
    }
    
    .philosophy-item p {
        padding-left: 50px;
        font-size: 0.9rem;
    }
    
    .philosophy-item h3::before {
        font-size: 2rem;
    }
    
    /* Haberler bölümü için düzenlemeler */
    .news-section {
        padding: 50px 0;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .news-excerpt {
        font-size: 0.85rem;
    }
    
    /* Referanslar bölümü için düzenlemeler */
    .references-section {
        padding: 50px 0;
    }
    
    .reference-logo {
        height: 60px;
        margin-bottom: 20px;
    }
    
    /* İletişim bölümü için düzenlemeler */
    .contact-section {
        padding: 50px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 8px 15px;
    }
    
    /* Ana sayfa düzen iyileştirmeleri */
    .row {
        margin-right: -10px;
        margin-left: -10px;
    }
    
    .row > [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
    
    /* Akıcı görsel düzenlemeleri */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Genel alan ayarlamaları */
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .my-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    
    /* Buton boyutları düzenlemesi */
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Mobil için container genişliği */
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Gezinme düzenlemeleri */
    .navbar-brand img {
        max-height: 40px;
    }
    
    .navbar-toggler {
        padding: 5px 10px;
    }
    
    .navbar-collapse {
        padding-top: 10px;
    }
    
    .nav-link {
        padding: 8px 0;
    }
    
    /* Kart ve liste görünümleri */
    .card {
        margin-bottom: 1.5rem;
    }
    
    .list-group-item {
        padding: 0.75rem 1rem;
    }
    
    /* Hero section içerik hizalama */
    .hero-content {
        text-align: center;
        padding: 30px 15px;
    }
    
    .hero-content h1 {
        margin-bottom: 15px;
    }
    
    .hero-content p {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9rem; }
    
    /* Hero bölümü için düzenlemeler */
    .hero-section {
        height: 50vh;
        padding: 20px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-section p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-section .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Kategoriler ve bölüm başlıkları için düzenlemeler */
    .section-title {
        font-size: 1.6rem;
        text-align: left;
        padding-left: 10px;
    }
    
    .section-title::after {
        left: 10px;
        transform: none;
        width: 50px;
    }
    
    .section-subtitle {
        text-align: left;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Özel bileşenler için düzenlemeler */
    .category-image-wrap {
        height: 160px;
    }
    
    .category-card {
        margin-bottom: 20px;
    }
    
    .category-overlay {
        padding: 10px 15px;
    }
    
    .category-name {
        font-size: 0.9rem;
    }
    
    /* Felsefe bölümü için düzenlemeler */
    .philosophy-item {
        margin-bottom: 30px;
    }
    
    .philosophy-item h3 {
        padding-left: 40px;
        font-size: 1.2rem;
    }
    
    .philosophy-item p {
        padding-left: 40px;
        font-size: 0.85rem;
    }
    
    .philosophy-item h3::before {
        font-size: 1.8rem;
    }
    
    /* Haberler bölümü için düzenlemeler */
    .news-image {
        height: 150px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-title {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .news-date {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .news-excerpt {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    /* Referanslar bölümü için düzenlemeler */
    .reference-logo {
        height: 50px;
        margin-bottom: 15px;
        padding: 5px;
    }
    
    /* Öne çıkarılan ürünler için düzenlemeler */
    .featured-product img {
        height: 180px;
    }
    
    .featured-product-title {
        font-size: 0.9rem;
    }
    
    .featured-product-description {
        font-size: 0.8rem;
        -webkit-line-clamp: 1;
    }
    
    .featured-product-content {
        padding: 12px;
    }
    
    /* Kategori slaytı için düzenlemeler */
    .category-slide {
        width: 85%;
        margin-right: 15px;
    }
    
    .category-slide img {
        height: 200px;
    }
    
    .category-nav-button {
        width: 35px;
        height: 35px;
    }
    
    /* Yukarı çık butonu düzenlemesi */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
    
    /* Ana sayfa düzen iyileştirmeleri */
    .row {
        margin-right: -8px;
        margin-left: -8px;
    }
    
    .row > [class*="col-"] {
        padding-right: 8px;
        padding-left: 8px;
    }
    
    /* Alan ayarlamaları */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .my-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Buton boyutları düzenlemesi */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-sm {
        padding: 0.3rem 0.7rem;
        font-size: 0.75rem;
    }
    
    /* Özel bileşen iyileştirmeleri */
    .catalog-box {
        padding: 20px 15px;
    }
    
    .catalog-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .catalog-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    /* Yatay kartlar için düzenlemeler */
    .row.align-items-center [class*="col-"] {
        text-align: center;
    }
    
    .row.align-items-center [class*="col-"] + [class*="col-"] {
        margin-top: 1.5rem;
    }
    
    /* Grid ayarlamaları */
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Responsive tablo ayarlamaları */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    /* Form elemanları */
    .form-control {
        font-size: 0.9rem;
        padding: 0.4rem 0.75rem;
    }
    
    textarea.form-control {
        min-height: 100px;
    }
    
    /* Mobil için ikon boyutları */
    .icon {
        font-size: 1.5rem;
    }
    
    /* Ek boşluk ayarlamaları */
    .section-title {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 375px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1.1rem; }
    h5 { font-size: 0.9rem; }
    h6 { font-size: 0.85rem; }
    
    /* Hero bölümü için düzenlemeler */
    .hero-section {
        height: 45vh;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section p {
        font-size: 0.8rem;
    }
    
    /* Diğer öğeler için küçültülmüş boyutlar */
    .category-image-wrap {
        height: 140px;
    }
    
    .news-image {
        height: 130px;
    }
    
    .category-slide img {
        height: 180px;
    }
    
    .featured-product img {
        height: 160px;
    }
    
    .featured-product-title {
        font-size: 0.85rem;
    }
    
    .featured-product-description {
        font-size: 0.75rem;
    }
    
    /* Navbar logo boyutu düzenlemesi */
    .navbar-brand img {
        max-height: 35px;
    }
    
    /* Mobile menü iyileştirmeleri */
    .navbar-toggler {
        padding: 0.2rem 0.5rem;
        font-size: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem !important;
    }
    
    /* Alan ayarlamaları */
    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .my-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .py-4 {
        padding-top: 1.2rem !important;
        padding-bottom: 1.2rem !important;
    }
    
    .my-4 {
        margin-top: 1.2rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .py-3 {
        padding-top: 0.8rem !important;
        padding-bottom: 0.8rem !important;
    }
    
    .my-3 {
        margin-top: 0.8rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    /* Katalog kutuları için düzenlemeler */
    .catalog-box {
        padding: 15px 10px;
    }
    
    .catalog-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .catalog-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    /* Mobil için container genişliği */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Form elemanları */
    .form-control {
        font-size: 0.85rem;
        padding: 0.375rem 0.65rem;
    }
    
    /* Küçük ekranlarda buton grubu */
    .btn-group {
        display: flex;
        flex-direction: column;
    }
    
    .btn-group .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn-group .btn:last-child {
        margin-bottom: 0;
    }
    
    /* Splash ekranı mobil düzenlemesi */
    .splash-content {
        padding: 15px;
    }
    
    /* Küçük ekranlarda ek alan ayarlamaları */
    .card-body {
        padding: 1rem;
    }
    
    /* Küçük ekranlarda başlık ayarlamaları */
    .section-title {
        margin-bottom: 1.2rem;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Yeni Konfull Özel Bileşenler */
.featured-product {
    position: relative;
    overflow: hidden; /* Important to contain the scaled/blurred ::before */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    /* Ensure background properties are set for the inline style */
    background-size: cover;
    background-position: center center;
}

/* ADD THIS ::before rule for the blurred background */
.featured-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit; /* Inherit from the parent .featured-product's inline style */
    background-size: cover;
    background-position: center center;
    filter: blur(15px); /* Apply the blur - adjust 15px as needed */
    transform: scale(1.1); /* Scale slightly to avoid hard edges from blur */
    z-index: 0; /* Place it behind the image */
    opacity: 0.8; /* Optional: Adjust opacity for desired intensity */
}

.featured-product:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.featured-product img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background-color: transparent; /* Crucial: Make image background transparent */
    transition: transform 0.5s ease;
    position: relative; /* Needed for z-index */
    z-index: 1; /* Place image ABOVE the blurred ::before */
}

/* Bubble animation keyframes (kept in case used elsewhere, ::before rule removed) */
@keyframes bubbleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(3deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.featured-product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    z-index: 2; /* Place content ABOVE the image and blur */
}

.featured-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.featured-product-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.featured-product-link {
    color: white;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-right: 20px;
}

.featured-product-link::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.featured-product-link:hover::after {
    right: -5px;
}

.catalog-box {
    background: var(--light-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.catalog-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background-color: var(--primary-color);
    color: white;
}

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

.catalog-box:hover .catalog-icon {
    color: white;
}

.catalog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.catalog-box:hover .catalog-title {
    color: white;
}

.catalog-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-right: 20px;
    transition: all 0.3s ease;
}

.catalog-box:hover .catalog-link {
    color: white;
}

.catalog-link::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.catalog-link:hover::after {
    right: -5px;
}

/* Ürün Kategorileri - Konfull Stilinde */
.product-category {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.product-category-title {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(0,0,0,0.1);
    border-top: none;
}

.product-category-item {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-category-item:last-child {
    border-bottom: none;
}

.product-category-item a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.product-category-item:hover {
    background-color: rgba(0,0,0,0.02);
}

.product-category-item:hover a {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Kategori Carousel - Resimle eşleştirilmiş yeni tasarım */
.category-slider-section {
    padding: 80px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.category-slider-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2rem;
    position: relative;
}

.category-slider-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.category-slider-description {
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-slider {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.category-slider-container {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    padding: 20px 0;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.category-slider-container::-webkit-scrollbar {
    display: none;
}

.category-slider-container.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.category-slide {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 20px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.category-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.category-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.9);
    padding: 15px;
    text-align: center;
}

.category-slide-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.category-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-nav-button:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

.category-indicator {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: var(--primary-color);
    width: 20px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .category-slide {
        width: 250px;
    }
    
    .category-slide img {
        height: 250px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Featured Products Slider Styles */
.featured-products-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
}

.featured-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y;
}

.featured-slider-track.grabbing {
    cursor: grabbing;
    cursor: -webkit-grabbing;
    transition: none;
}

.featured-slider-item {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    box-sizing: border-box;
}

.featured-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    overflow: visible !important;
    touch-action: manipulation !important;
}

.featured-prev-btn,
.featured-next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 5;
    position: relative;
    pointer-events: auto;
    touch-action: none; /* Butonlarda dokunma eylemini tamamen engelle */
    user-select: none; /* Metin seçimini engeller */
    -webkit-tap-highlight-color: transparent; /* Dokunma vurgulamasını kaldır */
    outline: none !important; /* Dış hatları temizle */
    scroll-behavior: auto !important; /* Kaydırma davranışını sıfırla */
    scroll-snap-type: none !important; /* Snap kaydırmayı engelle */
}

.featured-prev-btn {
    margin-right: 15px;
}

.featured-next-btn {
    margin-left: 15px;
}

.featured-prev-btn:hover,
.featured-next-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.featured-prev-btn:disabled,
.featured-next-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Custom styling for featured products */
.featured-product {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.featured-product:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.featured-product img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    /* background: linear-gradient(135deg, var(--primary-color), #2979b9); */ /* Removed */
    background-color: transparent; /* Added */
    transition: transform 0.5s ease;
    position: relative; /* Added */
    z-index: 1; /* Added */
}

/* Add bubbles animation to featured products */
.featured-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 5%, transparent 5.1%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 7%, transparent 7.1%),
                radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 6%, transparent 6.1%),
                radial-gradient(circle at 65% 20%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 4%, transparent 4.1%),
                radial-gradient(circle at 75% 40%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 3%, transparent 3.1%),
                radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 5%, transparent 5.1%);
    z-index: 1;
    pointer-events: none;
    animation: bubbleFloat 15s linear infinite;
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(3deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.featured-product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    z-index: 2;
}

.featured-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.featured-product-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.featured-product-link {
    color: white;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-right: 20px;
}

.featured-product-link::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.featured-product-link:hover::after {
    right: -5px;
}

/* Centered featured products when fewer than 4 */
.featured-products-centered .featured-slider-track {
    justify-content: center;
}

.featured-products-centered .featured-slider-item {
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 991px) {
    .featured-slider-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .featured-product img {
        height: 230px;
    }
}

@media (max-width: 575px) {
    .featured-slider-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .featured-product img {
        height: 200px;
    }
}

/* Workspace Blur Effect */
#Workspace {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.8);
}

/* Featured Products Grid Slider */
.featured-products-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
}

.featured-grid-slider {
    position: relative;
    overflow: hidden;
}

.featured-grid-slide {
    display: none;
    transition: all 0.5s ease;
}

.featured-grid-slide[data-slide="0"] {
    display: block;
}

.featured-product {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    /* Add background size/position here to ensure the inline image covers */
    background-size: cover;
    background-position: center center;
}

/* Added blurred background pseudo-element */
.featured-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit; /* Inherit from the parent .featured-product's inline style */
    background-size: cover;
    background-position: center center;
    filter: blur(15px); /* Apply the blur */
    transform: scale(1.1); /* Scale slightly to avoid hard edges */
    z-index: 0; /* Place it behind the image */
    opacity: 0.8; /* Optional: Adjust opacity */
}

.featured-product img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background-color: transparent; /* Ensure image background is transparent */
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1; /* Place image ABOVE the blurred ::before */
}

.featured-product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    transition: all 0.4s ease;
    z-index: 2; /* Place content ABOVE the image and blur */
}

.featured-product-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.featured-product-description {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
}

.featured-prev-btn,
.featured-next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 5;
    position: relative;
}

.featured-prev-btn {
    margin-right: 15px;
}

.featured-next-btn {
    margin-left: 15px;
}

.featured-prev-btn:hover,
.featured-next-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.featured-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    position: relative;
    z-index: 4;
}

.featured-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* Animation for products when switching slides */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.featured-grid-slide.active .col-md-6 {
    animation: fadeInScale 0.5s ease forwards;
}

.featured-grid-slide.active .col-md-6:nth-child(1) {
    animation-delay: 0.1s;
}

.featured-grid-slide.active .col-md-6:nth-child(2) {
    animation-delay: 0.2s;
}

.featured-grid-slide.active .col-md-6:nth-child(3) {
    animation-delay: 0.3s;
}

.featured-grid-slide.active .col-md-6:nth-child(4) {
    animation-delay: 0.4s;
}

@media (max-width: 767px) {
    .featured-product-content {
        padding: 15px;
    }
    
    .featured-product-title {
        font-size: 1rem;
    }
    
    .featured-product-description {
        font-size: 0.8rem;
        -webkit-line-clamp: 1;
    }
    
    .featured-product img {
        height: 220px;
    }
    
    .featured-prev-btn,
    .featured-next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 40%;
    }
    
    .featured-prev-btn {
        left: 5px;
    }
    
    .featured-next-btn {
        right: 5px;
    }
    
    .featured-dot {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

.empty-product {
    background: linear-gradient(135deg, rgba(10, 72, 118, 0.1), rgba(41, 121, 185, 0.2));
    border: 2px dashed rgba(10, 72, 118, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.empty-product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.empty-product-placeholder i {
    font-size: 3rem;
    color: rgba(10, 72, 118, 0.3);
}

.featured-grid-slide .row {
    width: 100%;
}

/* Responsive stiller */
@media (max-width: 767px) {
    .container {
        padding-right: 10px;
        padding-left: 10px;
    }
    
    body {
        font-size: 0.9rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    
    /* Responsive başlık hizalamaları */
    .section-title {
        text-align: left !important;
        font-size: 1.5rem !important;
        padding-left: 10px;
    }
    
    .section-title::after {
        left: 10px !important;
        transform: none !important;
        width: 60px;
    }
    
    .section-header {
        text-align: left !important;
    }
    
    /* Kategoriler için özel stil */
    #categories .section-header {
        text-align: left !important;
    }
    
    /* Öne çıkan ürünler için özel stil */
    .featured-products-section .section-title {
        text-align: left !important;
    }
    
    .featured-products-section .container > h2,
    .featured-products .container > h2 {
        text-align: left !important;
    }
    
    .col-lg-6.mx-auto.text-center {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 12px;
    }
    
    .section-subtitle {
        text-align: left !important;
        font-size: 0.9rem;
    }
    
    .subheading {
        text-align: left !important;
        display: block;
        font-size: 0.8rem;
    }
    
    .hero-section {
        height: 50vh;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .philosophy-item h3 {
        font-size: 1.5rem;
    }
    
    .philosophy-item p {
        font-size: 0.9rem;
    }
    
    .philosophy-item h3::before {
        font-size: 3rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin: 0 0 10px 0;
        width: 100%;
    }
    
    .category-image-wrap {
        height: 200px;
    }
}

/* Responsive footer iyileştirmeleri */
@media (max-width: 767px) {
    .footer {
        padding: 50px 0 20px;
        text-align: left;
    }
    
    .footer h5 {
        font-size: 1.2rem;
        margin-top: 15px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .footer h5:after {
        width: 30px;
        height: 2px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        display: block;
        padding: 5px 0;
    }
    
    .footer-links a i {
        width: 15px;
    }
    
    .social-icons {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    
    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    
    .footer address p {
        font-size: 0.9rem;
        margin-bottom: 8px;
        display: flex;
        align-items: flex-start;
    }
    
    .footer address p i {
        margin-top: 4px;
        min-width: 20px;
    }
    
    .footer .border-top {
        padding-top: 15px !important;
        margin-top: 15px !important;
    }
    
    .footer .col-md-6 p {
        text-align: center;
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .footer .text-md-end {
        text-align: center !important;
    }
    
    /* Çok küçük mobil ekranlar için */
    @media (max-width: 375px) {
        .footer {
            padding: 40px 0 15px;
        }
        
        .footer-links a {
            font-size: 0.85rem;
        }
        
        .social-icons a {
            width: 32px;
            height: 32px;
            font-size: 0.9rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        
        .footer address p {
            font-size: 0.85rem;
        }
        
        .footer .col-md-6 p {
            font-size: 0.8rem;
        }
    }
}