/* Main styles for the website */

/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Global styles */
:root {
    --primary-color: var(--renk, #fe4342);
    --primary-color-rgb: 254, 67, 66;
    --text-color: #000000;
    --light-gray: #f5f5f5;
    --medium-gray: #dddddd;
    --dark-gray: #666666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --gray-500: #aaaaaa;
    --gray-600: #777777;
    --secondary-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top banner styles */
.top-banner {
    background-color: var(--primary-color);
    color: var(--white);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.top-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header styles */
.site-header {
    padding: 0.625rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    background: var(--white);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* Header İletişim Bilgileri */
.header-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: auto;
    margin-right: 20px;
    max-width: 50%;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.header-contact-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.header-contact-item span {
    max-width: 300px;
    white-space: normal;
    overflow: visible;
    font-size: 13px;
    line-height: 1.4;
}

/* Responsive İletişim Bilgileri */
@media screen and (max-width: 992px) {
    .header-contact-info {
        display: none;
    }
}

.logo {
    width: 180px;
    height: 90px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.scrolled .logo {
    height: 80px;
}

.menu-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.main-menu {
    display: flex;
}

.main-menu li {
    margin-right: 25px;
}

.main-menu a {
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.main-menu a:hover {
    color: var(--primary-color);
}

.main-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.right-menu {
    display: flex;
    align-items: center;
}

.categories-menu {
    display: flex;
}

.categories-menu li {
    margin-left: 25px;
}

.categories-menu a {
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.categories-menu a:hover {
    color: var(--primary-color);
}

.categories-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.whatsapp-contact {
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    margin-left: 25px;
    position: relative;
}

.whatsapp-contact i {
    margin-right: 8px;
    color: #25D366;
    font-size: 18px;
}

.whatsapp-contact:hover {
    color: #25D366;
}

.whatsapp-contact::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #25D366;
    transition: width 0.3s ease;
}

.whatsapp-contact:hover::after {
    width: 100%;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 100;
    margin-left: 15px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    width: 100%;
    padding: 20px 0;
    background-color: var(--white);
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
}

.mobile-menu-list li {
    margin: 10px 0;
}

.mobile-menu-list a {
    color: #000000;
    font-weight: 500;
    padding: 8px 0;
    display: block;
    border-bottom: 1px solid var(--medium-gray);
}

.mobile-menu-list a:hover {
    color: var(--primary-color);
}

.mobile-whatsapp {
    color: #000000;
    display: flex;
    align-items: center;
    border-bottom: none !important;
}

.mobile-whatsapp i {
    margin-right: 8px;
    color: #25D366;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .menu-container {
        display: none;
    }

    .logo-container {
        justify-content: space-between;
        margin-bottom: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media screen and (max-width: 576px) {
    .logo {
        width: 150px;
        height: 75px;
    }

    .top-banner {
        font-size: 14px;
    }
}

/* Kategori Slider Stilleri */
.category-slider {
    margin: 30px 0;
    position: relative;
}

.category-slider-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: center;
}

.slider-wrapper {
    position: relative;
}

.slider-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
    justify-content: center;
}

.category-box {
    flex: 0 0 auto;
    width: 250px;
    height: 75px;
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--medium-gray);
    border-radius: 20px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.category-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

/* Tüm Ürünler kutusu özel stiller */
.category-box-all {
    justify-content: center;
    text-align: center;
}

.category-name-all {
    margin-right: 0;
    font-size: 20px;
}

.category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.category-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-name {
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    transition: color 0.3s ease;
}

.category-box:hover .category-name {
    color: var(--white);
}

.no-categories {
    width: 100%;
    padding: 20px;
    text-align: center;
    color: var(--dark-gray);
}

/* Responsive Kategori Stilleri */
@media screen and (max-width: 768px) {
    .category-box {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 576px) {
    .category-box {
        width: 100%;
    }
}

/* Vitrin Ürünleri Slider Stilleri */
.products-slider {
    margin: 50px 0;
    position: relative;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.products-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.products-filter {
    position: relative;
}

.product-sort {
    padding: 8px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: var(--white);
    cursor: pointer;
    outline: none;
}

.product-sort:focus {
    border-color: var(--primary-color);
}

.products-wrapper {
    position: relative;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-box {
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.product-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    /* Kare görünüm için 1:1 oranı */
    position: relative;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 15px;
    text-align: center;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 48px;
    /* Yaklaşık 2 satır yüksekliği */
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-detail-btn {
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-detail-btn:hover {
    background-color: var(--text-color);
    color: var(--white);
}

.no-products {
    grid-column: 1 / -1;
    padding: 30px;
    text-align: center;
    background-color: var(--light-gray);
    border-radius: 8px;
    color: var(--dark-gray);
}

/* Tüm Ürünler Görüntüleme Butonu */
.view-all-container {
    text-align: center;
    margin-top: 30px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tüm Ürünler Bölümü Ek Stilleri */
.all-products-section {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--medium-gray);
}

/* Responsive Ürün Slider Stilleri */
@media screen and (max-width: 992px) {
    .products-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .product-sort {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .product-image {
        height: 180px;
    }
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    margin-top: 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-divider {
    height: 3px;
    width: 70px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.about-description {
    flex: 1;
    min-width: 300px;
}

.about-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.about-features {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-box {
    display: flex;
    gap: 20px;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 30px;
    color: var(--primary-color);
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.about-action {
    text-align: center;
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: 2px solid var(--primary-color);
}

.about-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Responsive tasarım için */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-description,
    .about-features {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-box {
        padding: 20px;
    }
}

/* Hizmetlerimiz Bölümü */
.services-section {
    padding: 60px 0;
    margin-top: 30px;
    background-color: #fff;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-box {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: #fff;
    position: relative;
}

.service-box:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-box:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
    position: relative;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.service-box:hover .service-title {
    color: var(--primary-color);
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

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

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

.no-services {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    background-color: var(--light-gray);
    border-radius: 10px;
    color: var(--dark-gray);
}

/* Responsive hizmetler bölümü */
@media screen and (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 220px;
    }
}

/* Özellikler Bölümü */
.features-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
    margin: 50px 0;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.feature-item-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(var(--primary-color-rgb, 254, 67, 66), 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-item-icon {
    background-color: var(--primary-color);
}

.feature-item-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-item-icon i {
    color: #fff;
}

.feature-item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-item-desc {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.5;
}

/* Responsive Özellikler Bölümü */
@media screen and (max-width: 992px) {
    .features-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .features-wrapper {
        grid-template-columns: 1fr;
    }

    .features-section {
        padding: 40px 0;
    }
}

/* Footer Stilleri */
.site-footer {
    background-color: #2a2a2a;
    color: #f5f5f5;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-info {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-info i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
    margin-top: 3px;
}

.footer-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #f5f5f5;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-menu a::before {
    content: "\f105";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.footer-menu a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.newsletter-form button {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #d83230;
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    font-size: 14px;
    color: #bbb;
}

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

.footer-policy-links a {
    color: #bbb;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-policy-links a:hover {
    color: var(--primary-color);
}

/* Whatsapp Sabit Buton */
.whatsapp-fixed {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Yukarı Çık Butonu */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--text-color);
}

/* Responsive Footer */
@media screen and (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-policy-links {
        margin: 0 auto;
    }
}

@media screen and (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-info {
        justify-content: center;
    }

    .footer-menu {
        text-align: center;
    }

    .newsletter-form {
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Ürünler Sayfası Stilleri */
.products-page {
    padding: 40px 0;
}

.page-header {
    margin-bottom: 30px;
    text-align: center;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 14px;
    color: var(--text-color);
}

.breadcrumbs a {
    color: var(--renk);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

.breadcrumbs .separator {
    color: var(--gray-500);
}

.breadcrumbs .current {
    color: var(--gray-600);
}

.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

/* Sidebar Stilleri */
.sidebar {
    position: sticky;
    top: 20px;
    /* Viewport'un üstünden 20px aşağıda sabitlenecek */
    height: max-content;
    /* İçeriği kadar yükseklik alsın */
    align-self: flex-start;
    /* Grid içinde üstten hizalansın */
}

.sidebar-widget {
    margin-bottom: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--renk);
}

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

.categories-list li {
    margin-bottom: 10px;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.categories-list a:hover {
    color: var(--renk);
    padding-left: 5px;
}

.categories-list li.active a {
    color: var(--renk);
    font-weight: 600;
}

.categories-list .count {
    color: var(--gray-500);
    font-size: 13px;
}

/* Ürünler İçerik Alanı */
.products-content {
    width: 100%;
}

.products-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-results {
    font-size: 14px;
    color: var(--text-color);
}

.filter-results strong {
    color: var(--renk);
    font-weight: 600;
}

.filter-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-sort label {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
}

.sort-select {
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-color);
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    border-color: var(--renk);
    outline: none;
}

/* Ürün Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.product-category {
    margin-bottom: 8px;
    font-size: 13px;
}

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

.product-category a:hover {
    color: var(--renk);
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    color: var(--text-color);
    text-decoration: none;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: var(--renk);
    color: #fff;
    border-color: var(--renk);
}

.page-link.prev i {
    margin-right: 5px;
}

.page-link.next i {
    margin-left: 5px;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-color);
    text-decoration: none;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-number:hover {
    background-color: var(--renk);
    color: #fff;
    border-color: var(--renk);
}

.page-number.active {
    background-color: var(--renk);
    color: #fff;
    border-color: var(--renk);
    font-weight: 600;
}

.page-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-color);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .products-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-order-1 {
        order: 1;
    }

    .mobile-order-2 {
        order: 2;
    }

    .sidebar {
        position: static;
        /* Mobilde sticky özelliğini kaldır */
        top: auto;
        width: 100%;
        margin-top: 30px;
    }

    .products-content {
        width: 100%;
    }

    .products-filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-sort {
        width: 100%;
        margin-top: 10px;
    }

    .sort-select {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 24px;
    }
}

.mobile-contact-item {
    display: flex !important;
    align-items: center;
    color: #000000;
    padding: 8px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.mobile-contact-item i {
    margin-right: 8px;
    color: var(--primary-color);
}

.mobile-whatsapp {
    color: #000000;
    display: flex;
    align-items: center;
    border-bottom: none !important;
}

.header-contact-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contact-link:hover {
    color: var(--primary-color);
}

/* Hakkımızda Sayfası Stilleri */
.about-page {
    padding: 40px 0 60px;
}

.about-main {
    margin-top: 30px;
}

.about-intro {
    margin-bottom: 50px;
}

.section-content.full-width {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.section-content.full-width .section-divider {
    margin: 0 auto 20px;
}

.section-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 0.8s ease;
}

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

.section-content {
    padding: 0 15px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--renk);
    margin-bottom: 20px;
    position: relative;
}

.section-divider span {
    display: block;
    width: 30px;
    height: 100%;
    background-color: var(--renk);
    position: absolute;
    right: 0;
    opacity: 0.5;
}

.section-description {
    color: var(--text-color);
    line-height: 1.7;
}

.section-description p {
    margin-bottom: 15px;
}

.section-description p:last-child {
    margin-bottom: 0;
}

/* Paralaks Banner */
.parallax-banner {
    position: relative;
    height: auto;
    padding-top: 42.5%;
    /* 1920/816 = 42.5% - aspect ratio koruması için */
    background-image: url('/assets/images/about-banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
}

.banner-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.parallax-banner .breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.parallax-banner .breadcrumbs a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.parallax-banner .breadcrumbs a:hover {
    opacity: 1;
    text-decoration: underline;
}

.parallax-banner .breadcrumbs .separator {
    color: #fff;
    opacity: 0.7;
}

.parallax-banner .breadcrumbs .current {
    color: var(--renk);
    font-weight: 600;
}

/* Sayaç Kutuları */
.counter-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.counter-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.counter-icon {
    font-size: 36px;
    color: var(--renk);
    margin-bottom: 15px;
}

.counter-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.counter-text {
    font-size: 16px;
    color: #666;
}

/* Vizyon & Misyon Kutuları */
.about-vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.vm-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
    border-top: 3px solid var(--renk);
}

.vm-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vm-icon {
    font-size: 40px;
    color: var(--renk);
    margin-bottom: 20px;
}

.vm-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.vm-divider {
    width: 50px;
    height: 3px;
    background-color: var(--renk);
    margin: 0 auto 20px;
    position: relative;
}

.vm-divider span {
    display: block;
    width: 25px;
    height: 100%;
    background-color: var(--renk);
    position: absolute;
    right: 0;
    opacity: 0.5;
}

.vm-content {
    color: var(--text-color);
    line-height: 1.7;
}

.vm-content p {
    margin-bottom: 10px;
}

.vm-content p:last-child {
    margin-bottom: 0;
}

/* Neden Biz Bölümü */
.why-us-section {
    position: relative;
    padding: 50px 30px;
    border-radius: 10px;
    margin-bottom: 50px;
    overflow: hidden;
}

.why-us-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/why-us-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.why-us-content-wrapper {
    position: relative;
    z-index: 1;
}

.why-us-section .section-title {
    text-align: center;
}

.why-us-section .section-divider {
    margin: 0 auto 20px;
}

.why-us-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Referanslar Bölümü */
.references-section {
    margin-bottom: 50px;
}

.references-section .section-title {
    text-align: center;
}

.references-section .section-divider {
    margin: 0 auto 30px;
}

.references-slider {
    position: relative;
    padding: 0 40px;
}

.references-swiper {
    overflow: hidden;
    padding: 10px 0 40px;
}

.reference-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 120px;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reference-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

.swiper-button-prev.references-prev,
.swiper-button-next.references-next {
    color: var(--renk);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-button-prev.references-prev:hover,
.swiper-button-next.references-next:hover {
    opacity: 1;
}

.swiper-pagination-bullet {
    background: var(--renk);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* CTA Bölümü */
.cta-section {
    background-color: var(--renk);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin-bottom: 30px;
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 16px;
    opacity: 0.9;
    max-width: 500px;
}

.cta-section .btn {
    background-color: #fff;
    color: var(--renk);
    border: 2px solid #fff;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background-color: transparent;
    color: #fff;
}

/* Animasyonlar */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .parallax-banner {
        background-attachment: scroll;
    }

    .banner-title {
        font-size: 36px;
    }

    .counter-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .section-content {
        padding: 0;
    }

    .cta-section {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        margin-bottom: 20px;
    }

    .cta-text {
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .parallax-banner {
        height: 250px;
        background-attachment: scroll;
    }

    .banner-title {
        font-size: 30px;
    }

    .about-vision-mission {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .vm-title {
        font-size: 20px;
    }

    .why-us-section {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 576px) {
    .about-page {
        padding: 30px 0 40px;
    }

    .counter-boxes {
        grid-template-columns: 1fr;
    }

    .parallax-banner {
        padding-top: 55%;
        /* Mobilde biraz daha yüksek göster */
    }

    .banner-title {
        font-size: 26px;
    }

    .why-us-section {
        padding: 20px;
    }

    .cta-section {
        padding: 30px 20px;
    }
}

/* İletişim Sayfası Stilleri */
.contact-page {
    padding: 60px 0;
}

.contact-info-section {
    margin-bottom: 50px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.contact-info-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-info-box:hover .info-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.info-content p,
.info-content a {
    color: var(--dark-gray);
    margin-bottom: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    word-break: break-word;
    /* Uzun metinlerin taşmasını engeller */
}

.info-content a:hover {
    color: var(--primary-color);
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span {
    font-weight: 600;
    color: var(--text-color);
}

.contact-main-section {
    margin-top: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.map-container {
    height: 100%;
    min-height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    max-width: 100%;
}

.no-map-alert {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 10px;
    color: var(--dark-gray);
    padding: 30px;
}

.no-map-alert i {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
    opacity: 0.7;
}

.contact-form-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
}

.contact-form-container .section-title {
    text-align: left;
    margin-bottom: 10px;
}

.contact-form-container .section-divider {
    margin: 0 0 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 10px;
    min-width: 18px;
    height: 18px;
}

.form-check-label {
    font-size: 14px;
    margin-top: 0;
    word-wrap: break-word;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.alert i {
    margin-right: 10px;
    font-size: 18px;
}

.alert-danger {
    background-color: #fff5f5;
    color: #e53e3e;
    border-left: 4px solid #e53e3e;
}

.alert-success {
    background-color: #f0fff4;
    color: #38a169;
    border-left: 4px solid #38a169;
}

.success-message {
    text-align: center;
    padding: 30px 0;
}

.success-icon {
    font-size: 64px;
    color: #38a169;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.success-message p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

/* Animasyon Sınıfları */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.animate-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-container {
        padding: 20px;
    }

    .hours-list li {
        flex-direction: column;
        padding: 10px 0;
    }

    .hours-list li span {
        margin-top: 5px;
    }

    .contact-page {
        padding: 40px 0;
    }

    .contact-info-box {
        width: 100%;
        padding: 20px 15px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        flex-shrink: 0;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 30px 0;
    }

    .contact-info-section {
        margin-bottom: 30px;
    }

    .contact-info-section .section-title {
        font-size: 26px;
    }

    .contact-info-grid {
        gap: 15px;
    }

    .contact-info-box {
        padding: 15px;
        gap: 15px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .info-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .info-content p,
    .info-content a {
        font-size: 14px;
        line-height: 1.4;
    }

    .form-check-label {
        font-size: 13px;
    }

    .contact-main-section {
        margin-top: 20px;
    }

    .contact-form-container {
        padding: 15px;
    }

    .map-container {
        min-height: 300px;
        width: 100%;
        overflow: hidden;
    }

    .map-wrapper iframe {
        width: 100% !important;
    }

    .contact-form-container .section-title {
        font-size: 22px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-control {
        padding: 10px;
        font-size: 14px;
    }

    label {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .btn-primary {
        width: 100%;
    }

    .alert {
        padding: 12px;
        font-size: 14px;
    }

    .success-message {
        padding: 20px 0;
    }

    .success-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .success-message h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .success-message p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Telefon bilgileri için özel stil */
.telefon-item {
    margin-bottom: 15px;
}

.telefon-item:last-child {
    margin-bottom: 0;
}

.telefon-isim {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 3px;
}

.contact-info-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-info-section .section-divider {
    margin: 0 auto 30px;
    position: relative;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
}

.contact-info-section .section-divider span {
    position: absolute;
    width: 30px;
    height: 9px;
    background-color: var(--primary-color);
    top: -3px;
    border-radius: 5px;
}

/* Ürün Detay Sayfası Stilleri */
.product-detail-page {
    padding: 60px 0;
}

.breadcrumbs {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--dark-gray);
}

.breadcrumbs a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs .separator {
    margin: 0 10px;
    color: #ccc;
}

.breadcrumbs .current {
    color: var(--primary-color);
    font-weight: 500;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.product-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.product-detail-category {
    margin-bottom: 15px;
}

.product-detail-category a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.product-detail-category a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.product-detail-short-desc {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.product-detail-price {
    margin-bottom: 25px;
    margin-top: auto;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-detail-sku {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--dark-gray);
}

.product-detail-sku span {
    font-weight: 600;
    color: var(--text-color);
}

.product-contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    flex: 1;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-call {
    background-color: var(--primary-color);
    color: #fff;
    flex: 1;
}

.btn-call:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
}

.btn-whatsapp i,
.btn-call i {
    margin-right: 10px;
    font-size: 18px;
}

/* Tabs Stilleri */
.product-tabs {
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-link {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.tab-link.active {
    color: var(--primary-color);
}

.tab-link.active:after {
    width: 100%;
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.product-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* Ürün Özellikleri Tablosu */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #eee;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table th,
.specs-table td {
    padding: 12px 15px;
    text-align: left;
}

.specs-table th {
    width: 30%;
    font-weight: 600;
    color: var(--text-color);
    background-color: rgba(0, 0, 0, 0.02);
}

.specs-table td {
    color: var(--dark-gray);
}

/* Benzer Ürünler */
.related-products {
    margin-top: 50px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}


.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* Responsive */
@media (max-width: 991px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        margin-bottom: 30px;
    }

    .product-contact-buttons {
        flex-direction: column;
    }

    .btn-whatsapp,
    .btn-call {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .product-detail-page {
        padding: 30px 0;
    }

    .tab-header {
        flex-direction: column;
    }

    .tab-link {
        width: 100%;
        text-align: left;
    }

    .tab-content {
        padding: 20px;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

.recaptcha-container {
    margin: 20px 0;
}

@media (max-width: 350px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}

/* Hizmet Detay Sayfası Stilleri */
.service-detail-page {
    padding: 50px 0;
}

.service-detail-page .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-page .page-header {
    margin-bottom: 20px;
}

.service-detail-page .page-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.service-detail-main {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    grid-column: 2;
}

.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    grid-column: 3;
}

.service-detail-page .contact-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    grid-column: 1;
    grid-row: 1;
    height: max-content;
}

.service-detail-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-text {
    padding: 30px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.service-detail-text h2,
.service-detail-text h3,
.service-detail-text h4 {
    color: var(--text-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

.service-detail-text p {
    margin-bottom: 15px;
}

.service-detail-text ul,
.service-detail-text ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.service-detail-text li {
    margin-bottom: 10px;
}

.service-detail-page .service-icon {
    font-size: 48px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.service-detail-page .contact-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.service-detail-page .contact-box p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.service-detail-page .sidebar-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-detail-page .sidebar-contact-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.service-detail-page .whatsapp-btn {
    background-color: #25D366;
    color: #fff;
}

.service-detail-page .whatsapp-btn:hover {
    background-color: #128C7E;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.service-detail-page .call-btn {
    background-color: var(--primary-color);
    color: #fff;
}

.service-detail-page .call-btn:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.service-detail-page .contact-btn {
    background-color: #f5f5f5;
    color: var(--text-color);
}

.service-detail-page .contact-btn:hover {
    background-color: #e8e8e8;
}

.service-detail-page .other-services {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    width: 100%;
    height: max-content;
}

.service-detail-page .other-services h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.service-detail-page .other-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.service-detail-page .other-services-list li {
    margin-bottom: 12px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 12px;
    width: 100%;
}

.service-detail-page .other-services-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.service-detail-page .other-services-list a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    padding-left: 22px;
    width: 100%;
    white-space: normal;
    word-break: break-word;
}

.service-detail-page .other-services-list a:before {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: all 0.3s ease;
}

.service-detail-page .other-services-list a:hover {
    color: var(--primary-color);
    padding-left: 28px;
}

.service-detail-page .other-services-list a:hover:before {
    left: 6px;
}

/* Hizmet Detay Sayfası Responsive */
@media (max-width: 991px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .service-detail-main {
        grid-column: auto;
        order: 1;
    }

    .service-detail-sidebar {
        flex-direction: column;
        width: 100%;
        grid-column: auto;
        order: 3;
    }

    .service-detail-page .contact-box {
        position: static;
        width: 100%;
        min-width: auto;
        grid-column: auto;
        grid-row: auto;
        order: 2;
    }

    .service-detail-page .other-services {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .service-detail-page {
        padding: 30px 0;
    }

    .service-detail-image {
        height: 250px;
    }

    .service-detail-page .page-title {
        font-size: 24px;
    }

    .service-detail-text {
        padding: 20px 15px;
    }

    .service-detail-page .contact-box,
    .service-detail-page .other-services {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .service-detail-page {
        padding: 20px 0;
    }

    .service-detail-image {
        height: 200px;
    }

    .service-detail-page .page-title {
        font-size: 22px;
    }

    .service-detail-page .breadcrumbs {
        font-size: 13px;
    }

    .service-detail-text {
        padding: 15px 12px;
    }

    .service-detail-page .other-services-list a {
        font-size: 14px;
    }

    .service-detail-page .sidebar-contact-btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* Hizmetlerimiz Sayfası Stilleri */
.services-page {
    padding: 60px 0;
}

.services-page .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-page .page-header {
    margin-bottom: 40px;
}

.services-page .page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--renk);
    margin-bottom: 15px;
}

.services-page .breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #777;
}

.services-page .breadcrumbs a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.services-page .breadcrumbs a:hover {
    color: var(--renk);
}

.services-page .breadcrumbs .separator {
    margin: 0 10px;
    color: #ccc;
}

.services-page .breadcrumbs .current {
    color: var(--renk);
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.services-page .service-image {
    height: 250px;
    overflow: hidden;
}

.services-page .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.services-page .service-content {
    padding: 25px;
}

.services-page .service-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: var(--renk);
}

.service-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 72px;
}

.service-button {
    display: inline-flex;
    align-items: center;
    color: var(--renk);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.service-button i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.service-button:hover i {
    transform: translateX(5px);
}

.service-button::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--renk);
    transition: width 0.3s;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.service-button:hover::after {
    width: 100%;
}

.services-page .pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.services-page .page-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.services-page .page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 5px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.services-page .page-number:hover {
    background-color: #e5e5e5;
    color: #333;
}

.services-page .page-number.active {
    background-color: var(--renk);
    color: #fff;
}

.services-page .page-link {
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 5px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.services-page .page-link:hover {
    background-color: #e5e5e5;
    color: #333;
}

.services-page .page-link.prev i {
    margin-right: 8px;
}

.services-page .page-link.next i {
    margin-left: 8px;
}

.services-page .page-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #777;
}

.services-page .no-services {
    text-align: center;
    padding: 80px 0;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.services-page .no-services i {
    font-size: 50px;
    color: #ccc;
    margin-bottom: 20px;
}

.services-page .no-services h3 {
    font-size: 24px;
    color: #555;
    margin-bottom: 10px;
}

.services-page .no-services p {
    font-size: 16px;
    color: #777;
}

/* Hizmetlerimiz Sayfası Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-page {
        padding: 40px 0;
    }

    .services-page .page-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-page .service-content {
        padding: 20px;
    }

    .services-page .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .services-page .page-title {
        font-size: 24px;
    }

    .services-page .pagination {
        margin-top: 30px;
    }

    .services-page .page-numbers {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Policy Pages Styles (KVKK, Gizlilik Politikası, Çerez Politikası) */
.policy-page {
    padding: 60px 0;
}

.policy-page .page-header {
    text-align: center;
    margin-bottom: 30px;
}

.policy-page .page-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.policy-page .breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.policy-page .breadcrumbs a {
    color: var(--primary-color);
}

.policy-page .breadcrumbs .separator {
    margin: 0 10px;
    color: var(--dark-gray);
}

.policy-page .breadcrumbs .current {
    color: var(--dark-gray);
}

.policy-page .policy-content {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-top: 30px;
}

.policy-page .policy-section {
    margin-bottom: 40px;
}

.policy-page .policy-section:last-child {
    margin-bottom: 0;
}

.policy-page .policy-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-page .policy-section h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 500;
}

.policy-page .policy-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.policy-page .policy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-page .policy-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.policy-page .policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-page .policy-section a:hover {
    text-decoration: underline;
}

.policy-page .company-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.policy-page .company-info p {
    margin-bottom: 10px;
}

.policy-page .company-info p:last-child {
    margin-bottom: 0;
}

.policy-page .last-updated {
    font-style: italic;
    color: #777;
    text-align: right;
}

/* Responsive styles for policy pages */
@media (max-width: 768px) {
    .policy-page {
        padding: 40px 0;
    }

    .policy-page .policy-content {
        padding: 25px;
    }

    .policy-page .policy-section h2 {
        font-size: 20px;
    }

    .policy-page .policy-section h3 {
        font-size: 18px;
    }

    .policy-page .page-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .policy-page .policy-content {
        padding: 20px;
    }

    .policy-page .policy-section h2 {
        font-size: 18px;
    }

    .policy-page .policy-section h3 {
        font-size: 16px;
    }

    .policy-page .page-title {
        font-size: 24px;
    }
}

/* Çerez Onay Bantı */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #fff;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.accept-all {
    background-color: var(--primary-color);
    color: #fff;
}

.accept-all:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.accept-necessary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.accept-necessary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
    background-color: transparent;
    color: #aaa;
    text-decoration: underline;
}

.cookie-settings:hover {
    color: #fff;
}

/* Çerez Ayarları Modalı */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    overflow-y: auto;
}

.cookie-modal-content {
    background-color: #fff;
    border-radius: 8px;
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cookie-modal-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
}

.cookie-modal-close {
    font-size: 24px;
    color: #777;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.cookie-modal-body {
    margin-bottom: 25px;
}

.cookie-modal-text {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-category {
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 15px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-category-title {
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-category-title i {
    color: var(--primary-color);
}

.cookie-category-title.necessary {
    display: flex;
    align-items: center;
}

.necessary-badge {
    background-color: var(--gray-500);
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-switch.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.cookie-slider {
    background-color: var(--primary-color);
}

input:checked+.cookie-slider:before {
    transform: translateX(26px);
}

.cookie-category-description {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    display: none;
}

.cookie-category.expanded .cookie-category-description {
    display: block;
}

.cookie-toggle {
    display: block;
    text-align: right;
    color: var(--primary-color);
    font-size: 12px;
    margin-top: 8px;
    cursor: pointer;
}

.cookie-toggle:hover {
    text-decoration: underline;
}

.cookie-modal-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.cookie-modal-btn {
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    flex: 1;
}

.save-preferences {
    background-color: var(--primary-color);
    color: #fff;
}

.save-preferences:hover {
    background-color: var(--secondary-color);
}

.reject-all {
    background-color: var(--light-gray);
    color: var(--text-color);
}

.reject-all:hover {
    background-color: var(--medium-gray);
}

.accept-selected {
    background-color: var(--primary-color);
    color: #fff;
}

.accept-selected:hover {
    background-color: var(--secondary-color);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        margin-top: 15px;
        justify-content: center;
    }

    .cookie-modal-content {
        margin: 20px;
        padding: 20px;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .cookie-consent {
        padding: 15px;
    }

    .cookie-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .cookie-text {
        font-size: 13px;
    }

    .cookie-modal-title {
        font-size: 18px;
    }
}

/* 404 Hata Sayfası Stilleri */
.error-page {
    padding: 80px 0;
    text-align: center;
}

.error-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.error-page .error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-page .error-title {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0;
}

.error-page .error-subtitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.error-page .error-text {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.error-page .error-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.error-page .btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.error-page .btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #fff;
}

.error-page .btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.error-page .btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.error-page .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 576px) {
    .error-page .error-title {
        font-size: 80px;
    }

    .error-page .error-subtitle {
        font-size: 24px;
    }

    .error-page .error-text {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .error-page .error-actions {
        flex-direction: column;
    }

    .error-page .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .error-page {
        padding: 60px 0;
    }
}

/* Arama Kutusu Stilleri */
.header-search {
    position: relative;
    margin: 0 15px;
    min-width: 450px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.search-form {
    width: 100%;
}

.search-input-container {
    display: flex;
    position: relative;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.search-input {
    flex: 1;
    height: 100%;
    border: none;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.search-button {
    background-color: var(--primary-color);
    border: none;
    color: white;
    width: 50px;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background-color: var(--secondary-color);
}

.search-button i {
    font-size: 14px;
}

/* Masaüstüde search */
.desktop-search {
    display: block;
}

/* Mobilde search */
.mobile-search {
    display: none;
    margin: 10px 0;
    width: 100%;
}

.mobile-search .search-input-container {
    border-radius: 6px;
}

/* Responsive Arama Kutusu */
@media screen and (max-width: 992px) {
    .desktop-search {
        display: none;
    }

    .mobile-search {
        display: block;
    }

    .logo-container {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 576px) {
    .mobile-search {
        margin: 8px 0;
    }

    .search-input {
        font-size: 13px;
    }

    .search-input-container {
        height: 38px;
    }
}