/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0');*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background-color: #0b0f0a;
        }

        /* KÜRESEL CONTAINER SINIFI */
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;    
            padding: 0 20px;   
        }

        /* YENİLENEN GELİŞMİŞ ARKA PLAN (TAM GENİŞLİK) */
        .site-header {
            width: 100%;
            min-height: 120px;
            position: relative;
            background-image: linear-gradient(
                to right, 
                #283520 0%,    
                rgb(20, 27, 17) 50%,   
                #161e12 100%    
            );
            overflow: visible; /* Mobil menünün taşabilmesi için visible yapıldı */
        }

        /* Header içindeki container */
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 120px; 
            position: relative;
            z-index: 10; /* Menünün her şeyin üstünde görünmesi için yükseltildi */
        }

        /* Bulutlu Efekt Arka Plan Katmanları */
        .site-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(55, 73, 44, 0.4) 0%, transparent 60%);
            pointer-events: none;
            z-index: 1;
        }

        .site-header::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(to right, 
                transparent, 
                rgba(11, 16, 10, 0.5) 30%, 
                rgba(7, 10, 6, 0.8) 60%, 
                rgba(14, 20, 13, 0.4) 85%, 
                rgba(5, 7, 4, 0.9) 100%
            );
            pointer-events: none;
            z-index: 1;
        }

        .category-section {
            width: 100%;
            min-height: 120px;
            position: relative;
            background-image: linear-gradient(
                to right,
                #283520 0%,
                rgb(20, 27, 17) 50%,
                #161e12 100%
            );
            overflow: hidden;
            padding: 25px 0;
        }

        .category-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(55, 73, 44, 0.35) 0%, transparent 55%);
            pointer-events: none;
            z-index: 1;
        }

        .category-section::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(to right,
                transparent,
                rgba(11, 16, 10, 0.35) 30%,
                rgba(7, 10, 6, 0.55) 60%,
                rgba(14, 20, 13, 0.25) 85%,
                rgba(5, 7, 4, 0.6) 100%
            );
            pointer-events: none;
            z-index: 1;
        }

        .category-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(6, minmax(130px, 1fr));
            column-gap: 20px;
            row-gap: 18px;
            justify-items: center;
            align-items: stretch;
        }

        .category-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 18px 16px 14px;
            min-height: 150px;
            color: #dfb66d;
            text-align: center;
            box-sizing: border-box;
            background: transparent;
            border-radius: 0;
            box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
            border: none;
        }

        .category-icon {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
            font-size: 40px;
            margin: 0;
            color: #dfb66d;
            line-height: 1;
        }

        .category-card p {
            font-size: 15px;
            font-weight: 400;
            letter-spacing: 0.8px;
            line-height: 1.35;
            margin: 0;
        }

        .product-section {
            padding: 55px 0;
        }

        .product-section.section--dark {
            background-image: linear-gradient(
                to right,
                #283520 0%,
                rgb(20, 27, 17) 50%,
                #161e12 100%
            );
        }

        .product-section.section--dark h2 {
            color: #dfb66d;
        }

        .product-section.section--dark .title-hr {
            background: rgba(223, 182, 109, 0.35);
        }

        .product-section.section--dark .leaf-divider {
            background: #0b0f0a;
            color: #dfb66d;
            border: 1px solid rgba(223, 182, 109, 0.12);
        }

        .product-section.section--dark .product-card {
            background: rgba(255, 255, 255, 0.03);
            color: #dfb66d;
            box-shadow: 0 10px 20px -12px rgba(223, 182, 109, 0.9);
        }

        .product-section.section--dark .product-card p {
            color: #dfb66d;
        }

        .product-section.section--dark .product-card .product-arrow {
            color: #dfb66d;
        }

        .product-section.section--dark .product-card .product-image {
            background: rgba(223, 182, 109, 0.12);
        }

        .product-section.section--light {
            background: #f7f5ef;
        }

        .product-section.section--light h2 {
            color: #8c6239;
        }

        .product-section.section--light .title-hr {
            background: rgba(45, 62, 38, 0.18);
        }

        .product-section.section--light .leaf-divider {
            background: #ffffff;
            color: #dfb66d;
            border: 1px solid rgba(45, 62, 38, 0.12);
        }

        .product-section.section--light .product-card {
            background: rgba(255, 255, 255, 0.98);
            color: #2d3e26;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .product-section.section--light .product-card p {
            color: #2d3e26;
        }

        .product-section.section--light .product-card .product-arrow {
            color: #8c6239;
        }

        .product-section.section--light .product-card .product-image {
            background: rgba(223, 182, 109, 0.18);
        }

        .product-section .section-heading {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            margin-bottom: 40px;
        }

        .product-section h2 {
            font-size: 38px;
            font-weight: 700;
            color: #dfb66d;
            letter-spacing: 0.5px;
        }

        .product-section .title-hr {
            position: relative;
            width: 180px;
            height: 1px;
            background: rgba(223, 182, 109, 0.35);
        }

        .product-section .leaf-divider {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-size: 20px;
            color: #dfb66d;
            background: #0b0f0a;
            padding: 2px;
            border-radius: 50%;
        }

        .product-cards {
            display: grid;
            grid-template-columns: repeat(7, minmax(120px, 1fr));
            gap: 18px;
        }

        .product-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            gap: 14px;
            padding: 22px 14px 18px;
            min-height: 190px;
            color: #dfb66d;
            text-align: center;
            box-sizing: border-box;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            box-shadow: 0 10px 20px -12px rgba(223, 182, 109, 0.9);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            text-decoration: none;
        }

        .product-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 28px -14px rgba(223, 182, 109, 0.9);
        }

        .product-card .product-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(223, 182, 109, 0.12);
            overflow: hidden;
        }

        .product-card .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .product-card p {
            font-size: 14px;
            font-weight: 600;
            margin: 0;
        }

        .product-card .product-arrow {
            margin-top: auto;
            font-size: 20px;
            color: #dfb66d;
        }

        .product-card.all-card .product-image {
            background: rgba(223, 182, 109, 0.18);
        }

        .product-image .material-symbols-outlined{
            font-size: 48px;
            color: #dfb66d;
        }

        .products-page-section {
            padding: 60px 0 80px;
            background: linear-gradient(135deg, #f7f5ef 0%, #fefcf7 100%);
        }

        .product-detail-page {
            padding: 70px 0 80px;
            background: linear-gradient(135deg, #f7f5ef 0%, #fefcf7 100%);
        }

        .product-detail-grid {
            display: grid;
            grid-template-columns: 0.75fr 1.25fr;
            gap: 36px;
            align-items: center;
            margin-bottom: 32px;
        }

        .product-detail-visual img {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 20px 45px rgba(20, 27, 17, 0.14);
            object-fit: cover;
            min-height: 420px;
        }

        .product-detail-content h1 {
            font-size: 38px;
            color: #2d3e26;
            margin: 12px 0 14px;
        }

        .product-detail-lead {
            font-size: 17px;
            line-height: 1.8;
            color: #5f5f5f;
            margin-bottom: 20px;
        }

        .product-detail-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 22px;
        }

        .secondary-link {
            display: inline-flex;
            align-items: center;
            color: #8c6239;
            font-weight: 700;
            text-decoration: none;
        }

        .product-detail-copy p {
            font-size: 15px;
            line-height: 1.85;
            color: #5b5b5b;
            margin-bottom: 14px;
        }

        .product-detail-info-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
        }

        .info-card {
            background: #fff;
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 16px 32px rgba(20, 27, 17, 0.06);
            border: 1px solid rgba(223, 182, 109, 0.2);
        }

        .info-card h2 {
            font-size: 20px;
            color: #2d3e26;
            margin-bottom: 14px;
        }

        .info-card ul {
            padding-left: 18px;
            color: #5f5f5f;
            line-height: 1.8;
        }

        .info-card--highlight {
            background: linear-gradient(135deg, #283520 0%, #161e12 100%);
            color: #fff;
        }

        .info-card--highlight h2,
        .info-card--highlight p {
            color: #fff;
        }

        .site-footer {
            background: #141b11;
            color: rgba(255,255,255,0.8);
            padding: 24px 0;
            text-align: center;
        }

        .products-page-hero {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, #283520 0%, #161e12 100%);
            color: #fff;
        }

        .page-hero-content {
            max-width: 720px;
        }

        .eyebrow {
            display: inline-block;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(223, 182, 109, 0.16);
            color: #dfb66d;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .page-hero-content h1 {
            font-size: 42px;
            margin-bottom: 14px;
        }

        .page-hero-content p {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.84);
        }

        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 32px;
        }

        .filter-chip {
            border: 1px solid #e4d4aa;
            background: #fff;
            color: #6b4e24;
            padding: 10px 16px;
            border-radius: 999px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .filter-chip:hover,
        .filter-chip.is-active {
            background: linear-gradient(135deg, #dfb66d 0%, #c9a92a 100%);
            color: #fff;
            border-color: #dfb66d;
            box-shadow: 0 8px 20px rgba(223, 182, 109, 0.25);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .product-list-card {
            background: linear-gradient(145deg, #ffffff 0%, #fffdf7 100%);
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 20px 45px rgba(20, 27, 17, 0.08);
            border: 1px solid rgba(223, 182, 109, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .product-list-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(223, 182, 109, 0.08) 0%, transparent 65%);
            pointer-events: none;
        }

        .product-list-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 55px rgba(20, 27, 17, 0.14);
        }

        .product-list-card.is-hidden {
            display: none;
        }

        .product-list-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .product-list-link img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-bottom: 1px solid rgba(223, 182, 109, 0.2);
        }

        .product-list-content {
            padding: 22px 22px 24px;
            position: relative;
            z-index: 1;
        }

        .product-list-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #2d3e26;
            font-weight: 700;
        }

        .product-list-content p {
            font-size: 14px;
            min-height: 50px;
            line-height: 1.75;
            color: #6d6d6d;
            margin-bottom: 16px;
        }

        .product-list-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: 10px;
            padding-top: 12px;
            border-top: 1px solid #f1ead9;
        }

        .product-list-meta span {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #8c6239;
        }

        .product-list-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #dfb66d 0%, #c9a92a 100%);
            color: #fff;
            padding: 8px 12px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            box-shadow: 0 8px 18px rgba(223, 182, 109, 0.22);
        }

        .product-list-cta:hover {
            transform: translateX(2px);
        }
        
        .custom-swal-button {
    background: linear-gradient(135deg, #dfb66d 0%, #c9a92a 100%) !important;
    color: white !important;
    border: none !important;
    padding: 10px 30px !important;
    font-size: 16px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(201, 169, 42, 0.2) !important;
    transition: all 0.3s ease !important;
}

.custom-swal-button:hover {
    opacity: 0.9 !important;
    transform: translateY(-1px) !important;
}

.custom-swal-button:focus {
    box-shadow: 0 0 0 3px rgba(223, 182, 109, 0.5) !important;
}

.whatsapp-box {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 9999;
}

.whatsapp-text {
    
    background-color: #ffffff;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.whatsapp-icon img {
    width: 35px;
    height: 35px;
}

.whatsapp-box:hover .whatsapp-icon {
    transform: scale(1.1);
}

        @media (max-width: 1100px) {
            .product-cards {
                grid-template-columns: repeat(4, minmax(120px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .product-section {
                padding: 45px 0;
            }

            .product-cards {
                grid-template-columns: repeat(3, minmax(120px, 1fr));
            }
        }

        @media (max-width: 560px) {
            .product-cards {
                grid-template-columns: repeat(2, minmax(120px, 1fr));
            }
        }

        @media (max-width: 420px) {
            .product-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 900px) {
            .products-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .product-detail-grid {
                grid-template-columns: 1fr;
            }

            .product-detail-info-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .products-page-hero {
                padding: 70px 0 30px;
            }

            .page-hero-content h1 {
                font-size: 32px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .filter-bar {
                gap: 10px;
            }

            .filter-chip {
                width: calc(50% - 6px);
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 1100px) {
            .category-grid {
                grid-template-columns: repeat(4, minmax(140px, 1fr));
                column-gap: 18px;
                row-gap: 18px;
            }
        }

        @media (max-width: 900px) {
            .category-grid {
                grid-template-columns: repeat(3, minmax(140px, 1fr));
            }
        }

        @media (max-width: 700px) {
            .category-grid {
                grid-template-columns: repeat(2, minmax(160px, 1fr));
            }
        }

        @media (max-width: 560px) {
            .category-section {
                padding: 20px 0;
            }

            .category-grid {
                grid-template-columns: repeat(2, minmax(160px, 1fr));
                justify-items: center;
            }

            .category-card {
                max-width: 260px;
                width: 100%;
                padding: 18px 20px;
            }
        }

        @media (max-width: 420px) {
            .category-grid {
                               grid-template-columns: repeat(2, minmax(160px, 1fr));
                justify-items: center;
            }
        }

        /* About Section */
        .about-section {
            padding: 60px 0;
            background: #f5f3ed;
        }

        .about-section .section-heading {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            margin-bottom: 50px;
        }

        .about-section h2 {
            font-size: 38px;
            font-weight: 700;
            color: #2d3e26;
            letter-spacing: 0.5px;
        }

        .about-section .title-hr {
            position: relative;
            width: 180px;
            height: 1px;
            background: rgba(45, 62, 38, 0.18);
        }

        .about-section .leaf-divider {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-size: 20px;
            color: #dfb66d;
            background: #f5f3ed;
            padding: 2px;
            border-radius: 50%;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text {
            font-size: 16px;
            line-height: 1.8;
            color: #2d3e26;
            font-weight: 400;
        }

        .about-text p {
            margin: 0;
        }

        .benefits-list {
            list-style: none;
            margin: 25px 0 0;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .benefits-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #2d3e26;
            font-weight: 500;
        }

        .benefits-list .material-symbols-outlined {
            font-size: 22px;
            color: #2d3e26;
            flex-shrink: 0;
        }

        .cta-delivery {
            margin-top: 50px;
            padding: 0;
            background-image: linear-gradient(
                to right,
                #283520 0%,
                rgb(20, 27, 17) 50%,
                #161e12 100%
            );
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .cta-delivery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(55, 73, 44, 0.3) 0%, transparent 55%);
            pointer-events: none;
        }

        .cta-delivery::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(to right,
                transparent,
                rgba(11, 16, 10, 0.3) 30%,
                rgba(7, 10, 6, 0.45) 60%,
                rgba(14, 20, 13, 0.25) 85%,
                rgba(5, 7, 4, 0.5) 100%
            );
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 70px;
            padding: 30px 70px;
            text-align: left;
        }

        .cta-delivery .cta-icon {
            font-size: 48px;
            color: #dfb66d;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-delivery h3 {
            font-size: 20px;
            font-weight: 700;
            color: #dfb66d;
            letter-spacing: 1px;
            margin: 0;
            line-height: 1.3;
            flex: 1;
            display: flex;
            align-items: center;
        }

        .cta-button-delivery {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            background: linear-gradient(135deg, rgba(204, 155, 61, 0.85) 0%, rgba(168, 120, 34, 0.85) 100%);
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 4px 15px rgba(0, 0, 0, 0.3);
            flex-shrink: 0;
            margin-top: 0;
        }

        .cta-button-delivery:hover {
            background: linear-gradient(135deg, rgba(224, 175, 78, 0.95) 0%, rgba(189, 139, 48, 0.95) 100%);
            transform: translateY(-2px);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 768px) {
            .benefits-list {
                grid-template-columns: 1fr 1fr;
            }

            .cta-content {
                flex-direction: column;
                text-align: center;
                gap: 18px;
                padding: 30px 25px;
            }

            .cta-delivery h3 {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .benefits-list {
                grid-template-columns: 1fr;
            }

            .cta-delivery {
                border-radius: 20px;
            }

            .cta-content {
                padding: 30px 20px;
            }

            .cta-delivery h3 {
                font-size: 16px;
            }

            .cta-button-delivery {
                padding: 12px 28px;
                font-size: 12px;
            }
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .stat-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px 20px;
            text-align: center;
            border-right: 1px solid rgba(45, 62, 38, 0.15);
            border-bottom: 1px solid rgba(45, 62, 38, 0.15);
        }

        .stat-card:nth-child(2n) {
            border-right: none;
        }

        .stat-card:nth-last-child(-n+2) {
            border-bottom: none;
        }

        .stat-icon {
            font-size: 40px;
            color: #dfb66d;
            margin-bottom: 12px;
        }

        .stat-number {
            font-size: 28px;
            font-weight: 700;
            color: #2d3e26;
            margin: 8px 0;
        }

        .stat-label {
            font-size: 13px;
            font-weight: 600;
            color: #2d3e26;
            margin: 0;
            letter-spacing: 0.5px;
        }

        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .stat-card {
                border-right: none;
            }

            .stat-card:nth-child(2n) {
                border-right: none;
            }

            .stat-card:nth-child(n+3) {
                border-bottom: 1px solid rgba(45, 62, 38, 0.15);
            }

            .stat-card:nth-last-child(-n+2) {
                border-bottom: none;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 45px 0;
            }

            .about-section h2 {
                font-size: 28px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-card {
                border-right: none;
                border-bottom: 1px solid rgba(45, 62, 38, 0.15);
                padding: 25px 15px;
            }

            .stat-card:last-child {
                border-bottom: none;
            }
        }

        /* Logo Alanı */
        .logo-area img {
            height: auto;
            max-height: 90px;
            display: block;
        }

        /* Navigasyon Menüsü Masaüstü */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
            list-style: none;
        }

        .nav-item a {
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 0.5px;
            color: #ffffff;
            text-transform: uppercase;
            padding-bottom: 8px;
            position: relative;
            transition: color 0.3s ease;
            opacity: 0.9;
        }

        .nav-item.active a {
            color: #d1a851; 
            opacity: 1;
        }

        .nav-item.active a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background-color: #d1a851;
        }

        .nav-item a:hover {
            color: #d1a851;
            opacity: 1;
        }

        /* Teklif Al Butonu */
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(204, 155, 61, 0.8) 0%, rgba(168, 120, 34, 0.8) 100%);
            color: #ffffff;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        .cta-button:hover {
            background: linear-gradient(135deg, rgba(224, 175, 78, 0.9) 0%, rgba(189, 139, 48, 0.9) 100%);
            transform: translateY(-1px);
        }

        .cta-icon {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            stroke-width: 2.5;
            fill: none;
        }

        /* HAMBURGER BUTONU (Masaüstünde Gizli) */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 101;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background-color: #ffffff;
            border-radius: 10px;
            transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
            transform-origin: left center;
        }

        /* Hamburger Animasyonları (Menü Açıldığında) */
        .hamburger.is-active span:nth-child(1) {
            transform: rotate(45deg);
            background-color: #d1a851;
        }

        .hamburger.is-active span:nth-child(2) {
            width: 0%;
            opacity: 0;
        }

        .hamburger.is-active span:nth-child(3) {
            transform: rotate(-45deg);
            background-color: #d1a851;
        }

        /* Hero Genel Alanı */
.hero-section {
    width: 100%;
    min-height: 65vh; 
    background-image: url('images/hero_bg.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* İçerik Sınırlayıcı Container */
.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sol Taraftaki Yazı Alanı */
.hero-content {
    max-width: 750px; /* Yazıların sağdaki baharat görsellerinin üzerine binmemesi için sınır */
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

/* Üst Küçük Başlık (Birinci Sınıf Kalite) */
.hero-subtitle {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #8c6239; /* Görseldeki altın/kahve tonu */
    letter-spacing: 4px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    animation: slideFadeIn 0.8s ease-out 0.25s forwards;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #8c6239;
    opacity: 0.5;
}

.hero-subtitle span {
    padding: 0 25px;
}

/* Ana Başlık (Toptan Baharat) */
.hero-title {
    font-size: 75px;
    font-weight: 700;
    color: #8c6239;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideFadeIn 0.9s ease-out 0.35s forwards;
}

/* Slogan (Doğallık, Kalite ve Güven) */
.hero-slogan {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e2b; /* Koyu yeşil/siyah tonu */
    letter-spacing: 2px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideFadeIn 0.9s ease-out 0.5s forwards;
}

/* Açıklama Metni */
.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 35px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: slideFadeIn 0.9s ease-out 0.65s forwards;
}

/* Buton Alanı */
.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideFadeIn 0.9s ease-out 0.8s forwards;
}

/* Genel Buton Tasarımı */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px; /* Hafif oval köşeler */
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

/* Yeşil Buton (Ürünlerimiz) */
.btn-primary {
    background-color: #2d3e26; /* Görseldeki koyu yaprak yeşili */
    color: #ffffff;
    border: 2px solid #2d3e26;
}

.btn-primary i {
    margin-right: 10px;
    color: #c49a45; /* Yaprak ikonunun gold rengi */
}

.btn-primary:hover {
    background-color: #1e2a1a;
    border-color: #1e2a1a;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
}

/* Şeffaf Buton (Teklif Alın) */
.btn-secondary {
    background-color: transparent;
    color: #2d3e26;
    border: 2px solid #2d3e26;
}

.btn-secondary:hover {
    background-color: #2d3e26;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

/* Giriş Animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        /* FOOTER */
        .footer {
            background-image: linear-gradient(
                to right,
                #283520 0%,
                rgb(20, 27, 17) 50%,
                #161e12 100%
            );
            padding: 50px 0 30px;
            position: relative;
            color: #ffffff;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(55, 73, 44, 0.25) 0%, transparent 55%);
            pointer-events: none;
        }

        .footer::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(to right,
                transparent,
                rgba(11, 16, 10, 0.25) 30%,
                rgba(7, 10, 6, 0.35) 60%,
                rgba(14, 20, 13, 0.15) 85%,
                rgba(5, 7, 4, 0.4) 100%
            );
            pointer-events: none;
        }

        .footer .container {
            position: relative;
            z-index: 2;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
            gap: 30px;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            padding-right: 20px;
            padding-left: 60px;
            border-right: 1px solid rgba(223, 182, 109, 0.2);
        }

        .footer-col:first-child {
            padding-right: 35px;
            padding-left: 0px;
            border-right: 1px solid rgba(223, 182, 109, 0.3);
            align-items: center;
            text-align: center;
        }

        .footer-col:last-child {
            border-right: none;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: #dfb66d;
            margin: 0 0 18px 0;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .sitelink a{
            color: #4a4a4a;
            text-decoration: none;
            transition: color 0.3s ease; 
        }
        
        .footer-col a:hover {
            color: #dfb66d;
        }

        .footer-logo-col {
            gap: 15px;
        }

        .footer-logo {
            height:130px;
            width: 200px;
            display: block;
        }

        .footer-desc {
            font-size: 13px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.75);
            margin: 0;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(223, 182, 109, 0.15);
            border-radius: 50%;
            color: #dfb66d;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(223, 182, 109, 0.25);
            transform: translateY(-2px);
        }

        .social-link .material-symbols-outlined {
            font-size: 20px;
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .contact-item {
            display: flex;
            gap: 12px;
            margin-bottom: 15px;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-item .material-symbols-outlined {
            font-size: 24px;
            color: #dfb66d;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-item p {
            font-size: 13px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        .contact-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #dfb66d;
        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .footer-col {
                padding-right: 15px;
                border-right: 1px solid rgba(223, 182, 109, 0.2);
            }

            .footer-col:nth-child(2n) {
                border-right: none;
            }

            .footer-col:first-child {
                border-right: 1px solid rgba(223, 182, 109, 0.3);
            }
        }

        @media (max-width: 640px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                justify-items: center;
            }

            .footer {
                padding: 40px 0 25px;
            }

            .footer-col {
                padding-left: 0;
                padding-right: 0;
                margin: 0;
                border-right: none;
                padding-bottom: 20px;
                border-bottom: 1px solid rgba(223, 182, 109, 0.15);
                align-items: center;
                text-align: center;
                width: 100%;
            }

            .footer-col:first-child {
                border-right: none;
            }

            .footer-col:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

            .footer-col h4 {
                margin: 0 0 12px 0;
            }

            .footer-col.footer-logo-col {
                padding-left: 0;
                padding-right: 0;
            }

            .footer-col.footer-logo-col .social-links {
                justify-content: center;
            }
        }

        /* MOBİL VE TABLET UYUMLULUK SİSTEMİ (max-width: 992px) */
        @media (max-width: 992px) {
            .site-header {
                min-height: 90px;
            }
            
            .site-header .container {
                min-height: 90px;
            }

            .logo-area img {
                max-height: 60px; /* Mobilde logo biraz küçülür */
            }

            /* Hamburger butonunu görünür yapıyoruz */
            .hamburger {
                display: flex;
            }

            /* Masaüstü menüsünü dikey mobil menüye dönüştürüyoruz */
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(15, 22, 13, 0.98); /* Header dokusuna uygun çok koyu yeşil */
                border-top: 1px solid rgba(209, 168, 81, 0.2); /* Gold rengi ince çizgi */
                box-shadow: 0 15px 30px rgba(0,0,0,0.5);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
                z-index: 99;
            }

            /* Menü açıldığında tetiklenecek sınıf */
            nav.is-active {
                max-height: 400px; /* Menü içeriğinin yüksekliğine göre genişler */
            }

            .nav-menu {
                flex-direction: column;
                gap: 0;
                padding: 20px 0;
                width: 100%;
            }

            .nav-item {
                width: 100%;
                text-align: center;
            }

            .nav-item a {
                display: block;
                padding: 15px 0;
                font-size: 16px;
                width: 100%;
            }

            .nav-item.active a::after {
                bottom: 10px;
                width: 40px;
                left: 50%;
                transform: translateX(-50%);
            }

            /* Mobilde butonu menü dışına alıp sağa yerleştirmek veya gizlemek yerine, 
               hizayı korumak için sağda hamburgerin yanına ya da altına esnetiyoruz.
               Bu tasarımda hamburgerin solunda kompakt kalması sağlandı. */
            .button-container {
                margin-left: auto;
                margin-right: 20px;
            }

            .cta-button {
                padding: 10px 20px;
                font-size: 12px;
            }

            .hero-section {
                background-position: center center; /* Mobilde arka planı ortala */
                background-size: cover;
            }
            
            .hero-content {
                max-width: 100%;
                text-align: center; /* Mobilde yazıları ortala */
                background: transparent;
                padding: 0;
                border-radius: 0;
            }
            
            .hero-subtitle {
        justify-content: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-slogan {
        font-size: 18px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column; /* Mobilde butonlar alt alta gelsin */
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
        }

        /* Küçük Telefonlar İçin Ekstra Düzenleme */
        @media (max-width: 480px) {
            .button-container {
                display: none; /* Çok küçük ekranlarda buton gizlenir, sadece menü ve logo kalır */
            }
        }

        /* ====== İLETİŞİM SAYFASI STİLLERİ ====== */
        .contact-page-section {
            padding: 60px 0;
            background: #f9f9f9;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: stretch;
            margin-top: 40px;
        }

        .contact-info-column {
            display: flex;
            flex-direction: column;
            gap: 18px;
            position: relative;
            padding: 40px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(223, 182, 109, 0.2),
                        0 8px 24px rgba(0, 0, 0, 0.08);
            height: 100%;
            box-sizing: border-box;
        }

        .contact-form-column {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(223, 182, 109, 0.2), 
                        0 8px 24px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .contact-form-column::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 60% 40%, 
                rgba(223, 182, 109, 0.08) 0%,
                rgba(223, 182, 109, 0.04) 30%,
                transparent 70%
            );
            pointer-events: none;
            z-index: 0;
        }

        .contact-form-column > * {
            position: relative;
            z-index: 1;
        }

        .contact-info-card {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 18px 20px;
            border-radius: 12px;
            background: linear-gradient(135deg, #fffdf8 0%, #fdf2da 100%);
            border: 1px solid #f0e2be;
        }

        .contact-info-card .icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #dfb66d 0%, #c9a92a 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            font-size: 24px;
            box-shadow: 0 4px 15px rgba(223, 182, 109, 0.25);
        }

        .contact-info-card .icon span {
            font-size: 28px;
        }

        .contact-info-content h3 {
            color: #222;
            font-size: 18px;
            margin: 0 0 8px 0;
            font-weight: 600;
        }

        .contact-info-content p {
            color: #666;
            font-size: 14px;
            margin: 0;
            line-height: 1.6;
        }

        .contact-info-content a {
            color: #dfb66d;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-info-content a:hover {
            color: #c9a92a;
        }

        .contact-social-links {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }

        .contact-social-links a {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #dfb66d 0%, #c9a92a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-social-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(223, 182, 109, 0.3);
        }

        .contact-social-links svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .form-group {
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: #222;
            margin-bottom: 8px;
            display: block;
        }

        .form-group input,
        .form-group textarea {
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: #fafafa;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #dfb66d;
            background: white;
            box-shadow: 0 0 0 3px rgba(223, 182, 109, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #999;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .form-group-row .form-group {
            margin-bottom: 0;
        }

        .submit-button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #dfb66d 0%, #c9a92a 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-top: 10px;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(223, 182, 109, 0.3);
        }

        .submit-button:active {
            transform: translateY(0);
        }

        .form-title {
            font-size: 24px;
            font-weight: 700;
            color: #222;
            margin-bottom: 10px;
        }

        .form-subtitle {
            font-size: 14px;
            color: #666;
            margin-bottom: 30px;
        }

        .info-section-title {
            font-size: 22px;
            font-weight: 700;
            color: #222;
            margin-bottom: 8px;
        }

        /* Contact Page Responsive */
        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-form-column {
                padding: 30px;
            }

            .form-group-row {
                grid-template-columns: 1fr;
            }

            .contact-info-card .icon {
                width: 45px;
                height: 45px;
            }

            .contact-info-card .icon span {
                font-size: 22px;
            }

            .contact-info-column {
                padding: 30px;
            }
        }