﻿
/* Global: tüm img’ler responsive olsun */
img {
    max-width: 100%;
    height: auto;
    display: block;
}


/*---------------------------------------
  IMPROVED SITE HEADER              
-----------------------------------------*/
.site-header {
    background: linear-gradient(135deg, #4B2E1F 0%, #6B4A2F 100%);
    padding: 12px 0;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

    .site-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="20"><circle cx="10" cy="10" r="1.5" fill="%23D7A648" opacity="0.1"/><circle cx="30" cy="5" r="1" fill="%23D7A648" opacity="0.08"/><circle cx="50" cy="15" r="1.2" fill="%23D7A648" opacity="0.06"/><circle cx="70" cy="8" r="0.8" fill="%23D7A648" opacity="0.1"/><circle cx="90" cy="12" r="1.1" fill="%23D7A648" opacity="0.07"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>') repeat;
        pointer-events: none;
    }

    .site-header .container {
        position: relative;
        z-index: 2;
    }

    .site-header p {
        color: #f8fafc;
        font-size: 14px;
        margin: 0;
        font-weight: 500;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

        .site-header p:hover {
            color: var(--primary-color);
            transform: translateY(-1px);
        }

        .site-header p i {
            color: var(--primary-color);
            font-size: 16px;
            margin-right: 8px;
            transition: all 0.3s ease;
        }

        .site-header p:hover i {
            transform: scale(1.1);
            color: #fff;
        }

        .site-header p a {
            color: inherit;
            text-decoration: none;
            font-weight: 600;
            position: relative;
        }

            .site-header p a::after {
                content: "";
                position: absolute;
                bottom: -2px;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--primary-color);
                transition: width 0.3s ease;
            }

            .site-header p a:hover::after {
                width: 100%;
            }

    .site-header .d-flex {
        gap: 30px;
    }

/*---------------------------------------
  IMPROVED NAVIGATION              
-----------------------------------------*/
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 16px 0;
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

    .navbar-brand::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(215, 166, 72, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .navbar-brand:hover::before {
        left: 100%;
    }

    .navbar-brand:hover {
        transform: translateY(-2px);
        background: rgba(215, 166, 72, 0.05);
    }

.logo {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(215, 166, 72, 0.2);
}

.navbar-brand:hover .logo {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 8px 24px rgba(215, 166, 72, 0.3);
    border-color: var(--primary-color);
}

.navbar-brand span {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand small {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: -2px;
}

/*---------------------------------------
  NAVIGATION MENU              
-----------------------------------------*/
.navbar-nav {
    gap: 8px;
    margin-left: auto;
}

    .navbar-nav .nav-link {
        color: var(--secondary-color);
        font-weight: 600;
        font-size: 15px;
        padding: 12px 20px !important;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        letter-spacing: 0.3px;
        border-radius: 0;
    }

        .navbar-nav .nav-link::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color, #D7A648), #f4c430);
            transition: all 0.4s ease;
            transform: translateX(-50%);
            border-radius: 0 !important;
        }

        .navbar-nav .nav-link:hover::before,
        .navbar-nav .nav-link.active::before {
            width: 80%;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color, #D7A648);
            transform: translateY(-1px);
        }

/*---------------------------------------
  DROPDOWN MENU              
-----------------------------------------*/
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 16px 8px;
    margin-top: 12px;
    min-width: 220px;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 4px;
}

    .dropdown-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(215, 166, 72, 0.1), rgba(215, 166, 72, 0.2));
        transition: left 0.3s ease;
    }

    .dropdown-item:hover::before {
        left: 0;
    }

    .dropdown-item:hover {
        color: var(--primary-color);
        background: transparent;
        transform: translateX(8px);
    }

    .dropdown-item:last-child {
        margin-bottom: 0;
    }

/*---------------------------------------
  MOBILE NAVIGATION              
-----------------------------------------*/
.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: 8px;
    background: rgba(215, 166, 72, 0.1);
    transition: all 0.3s ease;
}

    .navbar-toggler:hover {
        background: rgba(215, 166, 72, 0.2);
        transform: scale(1.05);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(215, 166, 72, 0.3);
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234B2E1F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*---------------------------------------
  RESPONSIVE IMPROVEMENTS              
-----------------------------------------*/
@media (max-width: 991px) {
    .site-header {
        padding: 10px 0;
    }

        .site-header .d-flex {
            flex-direction: column;
            gap: 8px;
            align-items: flex-start;
        }

    .navbar {
        padding: 12px 0;
    }

    .navbar-brand span {
        font-size: 20px;
    }

    .logo {
        width: 55px;
        height: 55px;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        margin-top: 16px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        gap: 4px;
    }

        .navbar-nav .nav-link {
            padding: 14px 20px !important;
            margin: 2px 0;
        }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        background: rgba(215, 166, 72, 0.05);
        margin: 8px 0;
        border: none;
    }

    .dropdown-item {
        padding-left: 40px;
    }
}

@media (max-width: 576px) {
    .site-header p {
        font-size: 12px;
    }

    .site-header .d-flex {
        gap: 6px;
    }

    .navbar-brand span {
        font-size: 18px;
    }

    .navbar-brand small {
        font-size: 10px;
    }

    .logo {
        width: 50px;
        height: 50px;
    }
}

/*---------------------------------------
  SCROLL ANIMATIONS              
-----------------------------------------*/
@media (prefers-reduced-motion: no-preference) {
    .navbar-nav .nav-item {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

        .navbar-nav .nav-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .navbar-nav .nav-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .navbar-nav .nav-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .navbar-nav .nav-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .navbar-nav .nav-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        .navbar-nav .nav-item:nth-child(6) {
            animation-delay: 0.6s;
        }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/*---------------------------------------
  ACCESSIBILITY IMPROVEMENTS              
-----------------------------------------*/
@media (prefers-reduced-motion: reduce) {
    .navbar-brand,
    .nav-link,
    .dropdown-item,
    .navbar-toggler {
        transition: none;
        animation: none;
    }

        .navbar-brand:hover,
        .nav-link:hover,
        .dropdown-item:hover {
            transform: none;
        }
}

/* Focus indicators */
.navbar-nav .nav-link:focus,
.dropdown-item:focus,
.navbar-brand:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 8px;
}

/*---------------------------------------
  PRINT STYLES              
-----------------------------------------*/
@media print {
    .site-header,
    .navbar {
        background: #fff !important;
        box-shadow: none !important;
    }

    .navbar-brand::before,
    .nav-link::before,
    .dropdown-item::before {
        display: none;
    }
}

/*---------------------------------------
  IMPROVED SITE FOOTER              
-----------------------------------------*/
.site-footer {
    background: linear-gradient(135deg, #2c1810 0%, #4B2E1F 50%, #6B4A2F 100%);
    color: #f8fafc;
    position: relative;
    overflow: hidden;
    padding: 60px 0 0;
    margin-top: 80px;
}

    .site-footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="footerGrain" patternUnits="userSpaceOnUse" width="100" height="20"><circle cx="10" cy="10" r="1.5" fill="%23D7A648" opacity="0.08"/><circle cx="30" cy="5" r="1" fill="%23D7A648" opacity="0.06"/><circle cx="50" cy="15" r="1.2" fill="%23D7A648" opacity="0.04"/><circle cx="70" cy="8" r="0.8" fill="%23D7A648" opacity="0.08"/><circle cx="90" cy="12" r="1.1" fill="%23D7A648" opacity="0.05"/></pattern></defs><rect width="100" height="20" fill="url(%23footerGrain)"/></svg>') repeat;
        pointer-events: none;
        opacity: 0.6;
    }

    .site-footer::after {
        content: "";
        position: absolute;
        top: -50px;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        clip-path: polygon(0 50px, 100% 0, 100% 100px, 0 100%);
    }

    .site-footer .container {
        position: relative;
        z-index: 2;
    }

    .site-footer .row {
        position: relative;
    }

    /*---------------------------------------
  FOOTER LOGO SECTION              
-----------------------------------------*/
    .site-footer .logo {
        width: 120px;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 3px solid rgba(215, 166, 72, 0.3);
        padding: 8px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

        .site-footer .logo:hover {
            transform: translateY(-8px) rotate(2deg) scale(1.05);
            box-shadow: 0 16px 48px rgba(215, 166, 72, 0.4);
            border-color: var(--primary-color);
            background: rgba(255, 255, 255, 0.1);
        }

/*---------------------------------------
  FOOTER TITLES              
-----------------------------------------*/
.site-footer-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    .site-footer-title::before {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), #f4c430);
        border-radius: 2px;
        transition: width 0.4s ease;
    }

    .site-footer-title:hover::before {
        width: 80px;
    }

    .site-footer-title::after {
        content: "";
        position: absolute;
        bottom: -12px;
        left: 45px;
        width: 15px;
        height: 2px;
        background: rgba(215, 166, 72, 0.6);
        border-radius: 1px;
        transition: all 0.4s ease;
    }

    .site-footer-title:hover::after {
        width: 25px;
        left: 85px;
    }

/*---------------------------------------
  FOOTER MENU              
-----------------------------------------*/
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-item {
    margin-bottom: 12px;
    transform: translateX(0);
    transition: all 0.3s ease;
}

    .footer-menu-item:hover {
        transform: translateX(8px);
    }

.footer-menu-link {
    color: rgba(248, 250, 252, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    display: inline-block;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

    .footer-menu-link::before {
        content: "→";
        position: absolute;
        left: -20px;
        color: var(--primary-color);
        opacity: 0;
        transition: all 0.3s ease;
        transform: translateX(-10px);
    }

    .footer-menu-link:hover {
        color: #fff;
        padding-left: 16px;
    }

        .footer-menu-link:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

    .footer-menu-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), #f4c430);
        transition: width 0.4s ease;
        border-radius: 1px;
    }

    .footer-menu-link:hover::after {
        width: 100%;
    }

/*---------------------------------------
  FOOTER CONTACT              
-----------------------------------------*/
.footer-contact {
    margin: 0;
    padding: 0;
}

    .footer-contact li {
        margin-bottom: 16px;
        transform: translateX(0);
        transition: all 0.3s ease;
    }

        .footer-contact li:hover {
            transform: translateX(6px);
        }

.site-footer-link {
    color: rgba(248, 250, 252, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .site-footer-link::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(215, 166, 72, 0.1), rgba(215, 166, 72, 0.2));
        transition: left 0.4s ease;
        z-index: -1;
    }

    .site-footer-link:hover::before {
        left: 0;
    }

    .site-footer-link:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(215, 166, 72, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .site-footer-link i {
        font-size: 18px;
        color: var(--primary-color);
        min-width: 20px;
        transition: all 0.3s ease;
    }

    .site-footer-link:hover i {
        transform: scale(1.2);
        color: #f4c430;
    }

    .site-footer-link span {
        flex: 1;
        line-height: 1.4;
    }

/*---------------------------------------
  FOOTER BOTTOM              
-----------------------------------------*/
.site-footer-bottom {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(44, 24, 16, 0.7));
    backdrop-filter: blur(10px);
    padding: 32px 0;
    margin-top: 48px;
    border-top: 2px solid rgba(215, 166, 72, 0.3);
    position: relative;
    min-height: 100px;
}

    .site-footer-bottom::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), #f4c430);
        border-radius: 2px;
        box-shadow: 0 2px 8px rgba(215, 166, 72, 0.4);
    }

.copyright-text {
    color: #fff;
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .copyright-text a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
        position: relative;
        margin-left: 4px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

        .copyright-text a::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), #f4c430);
            transition: width 0.3s ease;
            border-radius: 1px;
        }

        .copyright-text a:hover {
            color: #f4c430;
            transform: translateY(-1px);
        }

            .copyright-text a:hover::after {
                width: 100%;
            }

/*---------------------------------------
  SOCIAL ICONS              
-----------------------------------------*/
.social-icon {
    margin: 0;
    padding: 0;
}

.social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.social-icon-link {
    background: var(--site-footer-bg-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--copyright-font-size);
    display: block;
    margin-right: 5px;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 38px;
}

    .social-icon-link:hover {
        background: var(--primary-color);
        color: var(--white-color);
    }


/*---------------------------------------
  RESPONSIVE DESIGN              
-----------------------------------------*/
.footer-menu.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem 2rem; /* satır ve sütun arası boşluk */
}

/* küçük ekranlarda tekrar tek sütun yap */
@media (max-width: 576px) {
    .footer-menu.two-columns {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 991px) {
    .site-footer {
        padding: 48px 0 0;
        margin-top: 60px;
    }

        .site-footer .logo {
            width: 100px;
        }

    .site-footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-menu-link,
    .site-footer-link {
        font-size: 14px;
    }

    .site-footer-bottom {
        padding: 28px 0;
        margin-top: 40px;
    }

        .site-footer-bottom .row {
            text-align: center;
        }

        .site-footer-bottom .col-lg-6:first-child {
            margin-bottom: 24px;
        }

        .site-footer-bottom .copyright-text {
            justify-content: center;
        }

    .social-icon {
        justify-content: center;
        margin-top: 8px;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 40px 0 0;
        margin-top: 48px;
    }

        .site-footer .logo {
            width: 80px;
        }

    .site-footer-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-menu-link,
    .site-footer-link {
        font-size: 13px;
        padding: 10px 12px;
    }

    .site-footer-link {
        gap: 10px;
    }

        .site-footer-link i {
            font-size: 16px;
        }

    .social-icon-link {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .social-icon {
        gap: 8px;
    }

    .copyright-text {
        font-size: 13px;
    }

    .site-footer-bottom {
        padding: 20px 0;
    }
}

/*---------------------------------------
  ANIMATIONS              
-----------------------------------------*/
@media (prefers-reduced-motion: no-preference) {
    .site-footer .col-lg-3,
    .site-footer .col-lg-4,
    .site-footer .col-md-6 {
        animation: fadeInUp 0.8s ease forwards;
        opacity: 0;
    }

    .site-footer .col-lg-3 {
        animation-delay: 0.1s;
    }

    .site-footer .col-lg-4:first-of-type {
        animation-delay: 0.3s;
    }

    .site-footer .col-lg-4:last-of-type {
        animation-delay: 0.5s;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .social-icon-item {
        animation: bounceIn 0.6s ease forwards;
        opacity: 0;
    }

        .social-icon-item:nth-child(1) {
            animation-delay: 0.7s;
        }

        .social-icon-item:nth-child(2) {
            animation-delay: 0.8s;
        }

        .social-icon-item:nth-child(3) {
            animation-delay: 0.9s;
        }

        .social-icon-item:nth-child(4) {
            animation-delay: 1.0s;
        }

        .social-icon-item:nth-child(5) {
            animation-delay: 1.1s;
        }

    @keyframes bounceIn {
        0% {
            opacity: 0;
            transform: scale(0.3);
        }

        50% {
            transform: scale(1.05);
        }

        70% {
            transform: scale(0.9);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }
}

/*---------------------------------------
  ACCESSIBILITY IMPROVEMENTS              
-----------------------------------------*/
@media (prefers-reduced-motion: reduce) {
    .site-footer *,
    .site-footer *::before,
    .site-footer *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus indicators */
.footer-menu-link:focus,
.site-footer-link:focus,
.social-icon-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 8px;
}

/*---------------------------------------
  PRINT STYLES              
-----------------------------------------*/
@media print {
    .site-footer {
        background: #fff !important;
        color: #000 !important;
    }

        .site-footer *::before,
        .site-footer *::after {
            display: none !important;
        }

        .social-icon,
        .site-footer::after {
            display: none;
        }

    .footer-menu-link,
    .site-footer-link,
    .copyright-text a {
        color: #000 !important;
    }
}


/* ---------- Misyon & Vizyon (modern) ---------- */
#misyon-vizyon .mv-kicker {
    display: inline-block;
    padding: 6px 12px;
    font-weight: 700;
    letter-spacing: .4px;
    background: linear-gradient(90deg, rgba(215,166,72,.14), rgba(215,166,72,.08));
    color: var(--secondary-color);
    border: 1px solid rgba(215,166,72,.25);
    border-radius: 999px;
}

#misyon-vizyon .mv-title {
    font-weight: 800;
    margin: .6rem 0 .4rem;
    color: var(--secondary-color);
}

#misyon-vizyon .mv-lead {
    max-width: 760px;
    margin: 0 auto;
    color: #6f655c;
}

.mv-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px 22px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 14px 36px rgba(0,0,0,.06);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .mv-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 48px rgba(0,0,0,.10);
    }

/* üst köşeden akan vurgu şeridi */
.mv-accent {
    position: absolute;
    inset: 0 auto auto 0;
    width: 46%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #f4c430);
    border-top-left-radius: 18px;
}

.mv-accent--right {
    left: auto;
    right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 18px;
}

.mv-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(215,166,72,.18), rgba(215,166,72,.10));
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 12px;
}

.mv-card-title {
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.mv-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

    .mv-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #5b5147;
    }

    .mv-list i {
        color: var(--primary-color);
        margin-top: 2px;
    }

/* responsive */
@media (max-width: 991px) {
    .mv-card {
        padding: 24px 20px;
    }
}

.about-carousel {
    width: 100%;
    max-width: 700px; /* genişlik sınırı, daha büyük istersen artır */
    aspect-ratio: 4 / 5;
    background: #D8CAB4;
    overflow: hidden;
    border-radius: 20px; /* köşe yuvarlama */
}

.about-carousel img {
    width: 100%;
    object-fit: contain; /* kesmeden gösterir */
}

/* Noktalar ve oklar minik dokunuşlar */
#aboutCarousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

#aboutCarousel .carousel-control-prev,
#aboutCarousel .carousel-control-next {
    filter: drop-shadow(0 6px 12px rgba(0,0,0,.25));
}





.tilt-wrap {
    perspective: 900px;
    display: inline-block;
}

.tilt-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.15);
    transition: transform .15s ease-out, box-shadow .2s;
    will-change: transform;
}

    .tilt-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .tilt-card:hover {
        box-shadow: 0 24px 60px rgba(0,0,0,.2);
    }

.tilt-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: end center;
    padding: 12px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.35) 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: .2px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: #4A3B31;
    margin-top: 15px;
}

.mission-vision-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .mission-vision-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    }

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.mission-icon {
    background: linear-gradient(135deg, #4A3B31, #6B4E3D);
}

.vision-icon {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
}

.card-text {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
}


.card-carousel {
    padding: 40px 0;
    background: transparent;
}



/* ===============================
   CARD CAROUSEL (ccc) – FULL CSS
   =============================== */

/* SAHNE (container) */
.ccc {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    height: clamp(320px, 52vw, 720px);
    overflow: visible;
    touch-action: pan-y;
}

/* PANEL (kart) – ortak stil */
.ccc-panel {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(280px, 80vw, 520px);
    aspect-ratio: 16/14;
    transform: translate(-50%, -50%);
    transition: transform .45s ease, opacity .45s ease, box-shadow .2s ease;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0,0,0,.18);
    z-index: 1;
    pointer-events: none;
}

    /* Görsel */
    .ccc-panel img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        background: #f3efe9;
        user-select: none;
        -webkit-user-drag: none;
        image-orientation: from-image;
    }

        /* Yardımcı sınıflar */
        .ccc-panel img.img-contain {
            object-fit: contain;
            background: #fff;
        }

        .ccc-panel img.focus-top {
            object-position: 50% 20%;
        }

        .ccc-panel img.focus-bottom {
            object-position: 50% 80%;
        }

        .ccc-panel img.focus-left {
            object-position: 25% 50%;
        }

        .ccc-panel img.focus-right {
            object-position: 75% 50%;
        }

/* SAHNE KONUM DURUMLARI */
.ccc-center {
    width: clamp(320px, 88vw, 680px);
    border-radius: 28px;
    box-shadow: 0 34px 100px rgba(0,0,0,.22);
    z-index: 2;
    pointer-events: auto;
}

.ccc-left {
    transform: translate(calc(-50% - 32vw), -50%) scale(.92);
    opacity: .98;
}

.ccc-right {
    transform: translate(calc(-50% + 32vw), -50%) scale(.92);
    opacity: .98;
}

.ccc-off-left {
    transform: translate(calc(-50% - 80vw), -50%) scale(.88);
    opacity: 0;
}

.ccc-off-right {
    transform: translate(calc(-50% + 80vw), -50%) scale(.88);
    opacity: 0;
}

/* OKLAR */
.ccc-arrow {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #1d1d1d10;
    background: #fff;
    color: #353535;
    font-size: 34px;
    line-height: 52px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,.16);
    cursor: pointer;
    z-index: 1000;
    pointer-events: auto;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.ccc-prev {
    left: 8px;
}

.ccc-next {
    right: 8px;
}

/* NOKTALAR */
.ccc-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 6;
}

    .ccc-dots button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 0;
        background: #e6e6e6;
        cursor: pointer;
    }

        .ccc-dots button[aria-current="true"] {
            background: #9b9b9b;
        }

/* ====== BREAKPOINTS ====== */
@media (max-width: 992px) {
    .ccc-left {
        transform: translate(calc(-50% - 40vw), -50%) scale(.90);
    }

    .ccc-right {
        transform: translate(calc(-50% + 40vw), -50%) scale(.90);
    }

    .ccc-center {
        width: clamp(300px, 92vw, 600px);
    }
}

@media (max-width: 640px) {
    .ccc-left {
        transform: translate(calc(-50% - 50vw), -50%) scale(.88);
    }

    .ccc-right {
        transform: translate(calc(-50% + 50vw), -50%) scale(.88);
    }

    .ccc-center {
        width: 94vw;
        border-radius: 22px;
    }

    .ccc-arrow {
        width: 42px;
        height: 42px;
        font-size: 24px;
        line-height: 38px;
    }

    .ccc-dots {
        bottom: 8px;
        gap: 6px;
    }

        .ccc-dots button {
            width: 8px;
            height: 8px;
        }

    @media (max-width: 768px) {
        .ccc {
            height: auto !important;
            overflow: hidden !important;
            padding: 0 12px; /* kenarlara nefes */
        }

        /* Sadece center panel kalsın, otomatik yükseklik */
        .ccc-center {
            position: relative !important;
            left: auto !important;
            top: auto !important;
            width: 100% !important;
            transform: none !important;
            opacity: 1 !important;
            pointer-events: auto !important;
            /* Sabit oranı kaldır → resim boyuna göre yükseklik */
            aspect-ratio: auto !important;
            height: auto !important;
            border-radius: 22px;
            margin-bottom: 12px;
            box-shadow: 0 12px 28px rgba(0,0,0,.14);
            background: #fff; /* contain boşluğu beyaz görünsün */
            overflow: hidden;
        }

        /* SOL/SAĞ panelleri gizle */
        .ccc-left, .ccc-right, .ccc-off-left, .ccc-off-right {
            display: none !important;
        }

        /* GÖRSEL: kırpmadan sığdır */
        .ccc-center img {
            width: 100% !important;
            height: auto !important; /* oranı koru, kırpma yapma */
            object-fit: contain !important;
            object-position: center !important;
            display: block;
        }

        /* Okları kapatmak istersen açık kalsın dersen bu satırı sil */
        .ccc-arrow {
            display: none !important;
        }

        /* Dots görüntüsü resmin ALTINA insin (üstüne binmesin) */
        .ccc-dots {
            position: static !important;
            transform: none !important;
            margin: 6px auto 0 !important;
            padding-bottom: 4px;
        }
    }


}


/* Bölüm arka planı ve spacing */
.ys-card-section {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
}

/* Görsel kartı (cam/vitrin hissi) */
.ys-media-card {
    border-radius: 18px;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 14px;
}

    .ys-media-card img {
        border-radius: 12px;
        width: 100%;
        height: auto;
        display: block;
    }

/* Başlık ve vurgu */
.ys-title {
    font-weight: 800;
    letter-spacing: .2px;
    margin-bottom: 10px;
}

.ys-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .85rem;
    background: #fff3e0;
    color: #8a5a2b;
    border: 1px solid #ffd7a3;
}

/* Avantaj listesi */
.ys-benefits {
    margin: 18px 0 8px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px 16px;
}

    .ys-benefits li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        color: #5c4635;
    }

    .ys-benefits .ico {
        width: 22px;
        height: 22px;
        border-radius: 6px;
        background: #f3e7d7;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: inset 0 0 0 1px #e7d4bd;
    }

/* CTA butonları */
.ys-actions .btn {
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(138,90,43,.15);
}

.btn-ysa-primary {
    background: linear-gradient(180deg, #8a5a2b, #6f4621);
    color: #fff;
    border: 0;
}

    .btn-ysa-primary:hover {
        filter: brightness(1.05);
    }

.btn-ysa-ghost {
    background: #fff;
    color: #6f4621;
    border: 1px solid #e6d6c2;
}

/* Küçük ekran iyileştirmeleri */
@media (max-width: 991.98px) {
    .ys-card-section {
        padding: 56px 0;
    }

    .ys-benefits {
        grid-template-columns: 1fr;
    }

    .ys-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .ys-media-card {
        margin-bottom: 22px;
    }
}



/* Section Styling */
.products-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1.5" fill="%23ffffff" opacity="0.3"/></svg>') repeat;
    background-size: 30px 30px;
    pointer-events: none;
}

/* Section Header */
.section-header {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4A3B31, #6B4E3D);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4A3B31;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4A3B31, #D4AF37);
    margin: 0 auto;
    border-radius: 2px;
}

/* Card Styling */
.product-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
}

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #4A3B31, #D4AF37);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .product-card:hover::before {
        transform: scaleX(1);
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
    }

/* Product Media */
.product-media {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 59, 49, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover .product-overlay {
    opacity: 0;
}

.overlay-content {
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A3B31;
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.product-card:hover .overlay-content {
    transform: scale(1);
}

/* Card Body */
.product-card .card-body {
    position: relative;
    padding: 30px 25px;
    min-height: 90px;
}

.product-name {
    font-weight: 800;
    font-size: 1.2rem;
    color: #4A3B31;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.product-freshness {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 600;
}

    .product-freshness i {
        font-size: 0.9rem;
    }

/* Price Badge */
.price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transition: all 0.3s ease;
    z-index: 3;
}

.product-card:hover .price-badge {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Animation delays for staggered effect */
.col:nth-child(1) .product-card {
    animation-delay: 0.1s;
}

.col:nth-child(2) .product-card {
    animation-delay: 0.2s;
}

.col:nth-child(3) .product-card {
    animation-delay: 0.3s;
}

.col:nth-child(4) .product-card {
    animation-delay: 0.4s;
}

.col:nth-child(5) .product-card {
    animation-delay: 0.5s;
}

.col:nth-child(6) .product-card {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .product-img {
        height: 220px;
    }

    .product-card .card-body {
        padding: 25px 20px;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .price-badge {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}
/*ILETİSİM */
/* Palet (Yesaş kahverengi tonu) */
.contact {
    --c-primary: #5e3b1f;
    --c-primary-600: #774d2f;
    --c-text: #1f2937;
    --c-muted: #6b7280;
    --c-border: #e5e7eb;
    --c-bg: #fbfbfb;
}

.contact-title {
    font-weight: 800;
    letter-spacing: .2px;
    color: var(--c-primary);
    margin-bottom: 4px;
}

.contact-subtitle {
    color: var(--c-muted);
    margin-top: -6px;
}

/* Hero görsel – ikinci ekrandaki gibi büyük, köşeleri yuvarlatılmış */
.contact-hero {
    background: linear-gradient(180deg,#ffffff,var(--c-bg));
    border: 1px solid var(--c-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(0,0,0,.06);
    margin: 0;
}

.contact-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Kartlar */
.contact-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 14px;
    padding: 18px 18px 14px 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

    .contact-card h2 {
        font-size: 1.2rem;
        color: var(--c-primary-600);
        font-weight: 800;
        margin: 4px 0 12px 0;
    }

/* Bilgi listesi */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .contact-list li {
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 10px;
        padding: 10px 0;
        border-bottom: 1px dashed var(--c-border);
    }

        .contact-list li:last-child {
            border-bottom: none;
        }

.clabel {
    color: var(--c-muted);
    font-weight: 600;
}

.cvalue {
    color: var(--c-text);
}

    .cvalue a {
        color: var(--c-primary-600);
        text-decoration: underline;
        text-underline-offset: 3px;
    }

/* Harita */
.map-embed iframe {
    border-radius: 12px;
}

.map-link {
    margin-top: 10px;
}

    .map-link a {
        color: var(--c-primary-600);
        text-decoration: underline;
        text-underline-offset: 3px;
    }

/* Küçük not */
.note {
    margin-top: 10px;
    font-size: .92rem;
    color: var(--c-muted);
}

/* ---- KVKK Page (scoped styles) ---- */
.kvkk {
    --kvkk-primary: #5e3b1f; /* Yesaş kahverengi */
    --kvkk-primary-600: #7a5635;
    --kvkk-text: #2b2b2b;
    --kvkk-muted: #6b7280;
    --kvkk-border: #e5e7eb;
    --kvkk-bg: #faf9f7; /* çok açık krem */
    --kvkk-card: #fff;
}

.kvkk-wrap {
    max-width: 980px;
    margin: 24px auto 60px auto;
    padding: 0 16px;
    color: var(--kvkk-text);
    line-height: 1.75;
}

.kvkk-hero {
    background: linear-gradient(180deg, var(--kvkk-bg), #ffffff);
    border: 1px solid var(--kvkk-border);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
}

.kvkk-title {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 800;
    letter-spacing: .3px;
    color: var(--kvkk-primary);
    margin: 6px 0 8px 0;
    text-align: center;
}

.kvkk-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--kvkk-muted);
    margin-bottom: 6px;
}

.kvkk-divider {
    width: 120px;
    height: 3px;
    margin: 12px auto 0 auto;
    background: var(--kvkk-primary-600);
    border-radius: 999px;
}

/* Section headings */
.kvkk h2 {
    font-size: clamp(18px, 2.2vw, 24px);
    margin: 28px 0 10px;
    color: var(--kvkk-primary-600);
    font-weight: 800;
    letter-spacing: .2px;
}

.kvkk h3 {
    font-size: 18px;
    margin: 20px 0 8px;
    color: var(--kvkk-primary-600);
    font-weight: 700;
}

/* Text blocks */
.kvkk p {
    margin: 10px 0 10px;
}

.kvkk-muted {
    color: var(--kvkk-muted);
}

/* Lists */
.kvkk ul {
    padding-left: 22px;
    margin: 8px 0 14px;
}

    .kvkk ul li {
        margin: 6px 0;
    }

/* Cards for emphasis */
.kvkk-card {
    background: var(--kvkk-card);
    border: 1px solid var(--kvkk-border);
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,.03);
    margin: 14px 0;
}

/* Info bar */
.kvkk-infobar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 14px;
    color: var(--kvkk-muted);
    margin-top: 8px;
}

@media (min-width: 640px) {
    .kvkk-infobar {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Link */
.kvkk a {
    color: var(--kvkk-primary-600);
    text-underline-offset: 3px;
}

/* Print-friendly */
@media print {
    .kvkk-hero, .kvkk-card {
        box-shadow: none;
    }

    .kvkk-divider {
        background: #000;
    }
}


/* —— Yönetim Grid —— */
.mgmt {
    background: linear-gradient(135deg, #fafbfc 0%, #f3f4f6 100%);
}

    .mgmt .mgmt-title {
        font-weight: 900;
        font-size: 2.5rem;
        letter-spacing: 0.5px;
        background: linear-gradient(135deg, #5e3b1f 0%, #8b5a2b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 8px;
    }

    .mgmt .mgmt-subtitle {
        color: #6b7280;
        font-size: 1.1rem;
        font-weight: 400;
        margin-top: 0;
    }

/* —— Modern Kart Tasarımı —— */
.manager-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

    .manager-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
    }

    .manager-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #5e3b1f 0%, #d4af37 50%, #8b5a2b 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .manager-card:hover::before {
        opacity: 1;
    }

/* —— Görsel Bölümü —— */
.manager-media {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    overflow: hidden;
    padding: 20px;
}

.manager-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(1.05) saturate(1.1);
}

.manager-card:hover .manager-img {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
}

.manager-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 135deg, rgba(94, 59, 31, 0) 0%, rgba(94, 59, 31, 0.1) 100% );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manager-card:hover .manager-overlay {
    opacity: 1;
}

/* —— İçerik Bölümü —— */
.manager-card .card-body {
    padding: 24px 20px;
    background: linear-gradient(to bottom, #fff 0%, #fefefe 100%);
    position: relative;
}

.manager-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: #1f2937;
    margin: 0 0 8px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.manager-card:hover .manager-name {
    color: #5e3b1f;
}

.manager-title {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.2px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.manager-card:hover .manager-title {
    color: #8b5a2b;
}

/* —— Responsive İyileştirmeler —— */
@media (max-width: 768px) {
    .mgmt .mgmt-title {
        font-size: 2rem;
    }

    .manager-card {
        border-radius: 20px;
    }

        .manager-card:hover {
            transform: translateY(-8px) scale(1.01);
        }

    .manager-name {
        font-size: 1.15rem;
    }

    .manager-title {
        font-size: 0.95rem;
    }
}

/* —— Animasyonlar —— */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.manager-card {
    animation: fadeInUp 0.6s ease forwards;
}

    .manager-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .manager-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .manager-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .manager-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .manager-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .manager-card:nth-child(6) {
        animation-delay: 0.6s;
    }

/* —— Eski Tarayıcı Desteği —— */
@supports not (aspect-ratio: 1) {
    .manager-img {
        height: 280px;
    }
}

/* —— Erişilebilirlik —— */
@media (prefers-reduced-motion: reduce) {
    .manager-card,
    .manager-img,
    .manager-overlay,
    .manager-name,
    .manager-title {
        transition: none;
        animation: none;
    }

        .manager-card:hover {
            transform: none;
        }
}

/* —— Print Desteği —— */
@media print {
    .manager-card {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }

        .manager-card:hover {
            transform: none;
        }
}



.press-card {
    display: grid;
    grid-template-columns: 1.05fr 1.25fr;
    gap: 28px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 48px rgba(0,0,0,.08);
}

    .press-card .press-body {
        align-self: center;
    }

/* görsel kutusu */
.press-media {
    margin: 0;
}

.press-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(0,0,0,.10);
}

.press-caption {
    text-align: center;
    font-size: 12px;
    color: #776b60;
    margin-top: 10px;
}

/* içerik */
.press-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.press-kicker {
    align-self: flex-start;
    padding: 6px 12px;
    font-weight: 700;
    letter-spacing: .3px;
    background: linear-gradient(90deg, rgba(215,166,72,.16), rgba(215,166,72,.08));
    color: var(--secondary-color);
    border: 1px solid rgba(215,166,72,.30);
    border-radius: 999px;
}

.press-title {
    margin: 6px 0 2px;
    font-weight: 900;
    color: var(--secondary-color);
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.2;
    position: relative;
}

    .press-title::after {
        content: "";
        display: block;
        width: 72px;
        height: 3px;
        margin: 10px 0 0;
        background: linear-gradient(90deg, var(--primary-color), #f4c430);
        border-radius: 2px;
    }

.press-lead {
    color: #5f564d;
    font-weight: 600;
}

/* madde işaretleri */
.press-bullets {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

    .press-bullets li {
        position: relative;
        padding-left: 28px;
        color: #564b42;
        font-weight: 600;
    }

        .press-bullets li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 3px;
            width: 18px;
            height: 18px;
            border-radius: 6px;
            background: var(--primary-color);
            box-shadow: 0 2px 8px rgba(0,0,0,.12);
        }

        .press-bullets li::after {
            content: "✓";
            position: absolute;
            left: 3px;
            top: 0px;
            width: 18px;
            height: 18px;
            display: grid;
            place-items: center;
            color: #fff;
            font-weight: 800;
            font-size: 12px;
        }

/* meta satırı */
.press-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff9ea;
    border: 1px dashed rgba(215,166,72,.6);
    color: #6e6157;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
}

    .meta-chip i {
        color: var(--primary-color);
    }

/* responsive */
@media (max-width: 992px) {
    .press-card {
        grid-template-columns: 1fr;
        padding: 22px;
        gap: 20px;
    }

    .press-title {
        font-size: clamp(24px, 5.6vw, 34px);
    }
}



/*FİYAT LİSTESİ*/


/* Ana kart */
.price-card {
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Header */
.price-header {
    background: #EBE6DF;
    padding: 24px 32px;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-title {
    color: var(--dark-color, #2c3e50);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.25px;
}

.header-subtitle {
    color: #EBE6DF;
    font-size: 0.95rem;
    margin: 4px 0 0 0;
    font-weight: 400;
}

/* Arama kutusu */
.search-box {
    position: relative;
    min-width: 260px;
}

    .search-box i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--p-color, #6c757d);
        font-size: 0.9rem;
    }

.search-input {
    width: 100%;
    padding: 10px 12px 10px 35px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 0.95rem;
    background: #ffffff;
    color: var(--dark-color, #2c3e50);
    transition: border-color 0.2s ease;
}

    .search-input:focus {
        outline: none;
        border-color: var(--custom-btn-bg-color, #007bff);
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
    }

    .search-input::placeholder {
        color: #adb5bd;
    }

/* Tablo container */
.price-body {
    padding: 0;
}

.table-wrapper {
    overflow-x: auto;
}

/* Tablo */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

    .price-table thead th {
        background: #EBE6DF;
        color: var(--dark-color, #2c3e50);
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 18px 32px;
        border-bottom: 2px solid #dee2e6;
        text-align: left;
    }

.col-price {
    text-align: right;
    width: 200px;
}

/* Tablo satırları */
.table-row {
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.15s ease;
}

    .table-row:hover {
        background-color: #f8f9fa;
    }

    .table-row:last-child {
        border-bottom: none;
    }

    .table-row td {
        padding: 18px 32px;
        vertical-align: middle;
    }

/* Ürün hücresi */
.product-cell {
    color: var(--dark-color, #2c3e50);
    font-weight: 500;
    font-size: 1rem;
}

/* Fiyat hücresi */
.price-cell {
    text-align: right;
    font-weight: 600;
    font-size: 1.1rem;
}

.price-amount {
    color: var(--custom-btn-bg-color, #dc3545);
    font-weight: 700;
}

.currency {
    color: var(--p-color, #6c757d);
    font-size: 0.9em;
    margin-left: 2px;
}

/* Footer */
.table-footer {
    background: #EBE6DF;
    padding: 18px 32px;
    border-top: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-note {
    color: var(--p-color, #6c757d);
    font-size: 0.85rem;
}

    .footer-note i {
        color: var(--custom-btn-bg-color, #007bff);
        margin-right: 6px;
    }

/* Yazdır butonu */
.print-btn {
    background: var(--custom-btn-bg-color, #007bff);
    color: #ffffff;
    border: 1px solid var(--custom-btn-bg-color, #007bff);
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .print-btn:hover {
        background: var(--custom-btn-bg-hover-color, #0056b3);
        border-color: var(--custom-btn-bg-hover-color, #0056b3);
        color: #ffffff;
    }

    .print-btn i {
        font-size: 0.85rem;
    }

/* Responsive tasarım */
@media (max-width: 768px) {
    .price-header {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        min-width: 100%;
    }

    .header-title {
        font-size: 1.5rem;
    }

    .price-table thead th,
    .table-row td,
    .table-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .table-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Küçük ekranlar için */
@media (max-width: 576px) {
    .col-price {
        width: 120px;
    }

    .price-amount {
        font-size: 1rem;
    }
}

/* Yazdırma stilleri */
@media print {
    header.site-header,
    nav.navbar,
    footer.site-footer,
    #siteMap {
        display: none !important;
    }

    .price-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .print-btn {
        display: none;
    }

    .search-box {
        display: none;
    }

    .price-header {
        background: #f8f9fa !important;
    }

    .table-footer {
        background: #f8f9fa !important;
    }

    .table-row:hover {
        background: none !important;
    }

    .price-amount {
        color: #000 !important;
    }
}