:root {
            --primary-gradient: linear-gradient(135deg, #2d5016 0%, #6b8e23 100%);
            --accent-gradient: linear-gradient(135deg, #8fbc3f 0%, #6b8e23 100%);
            --dark-overlay: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
        }
        
        body {
            overflow-x: hidden;
        }
        
        /* ========== HERO BANNER ========== */
        .profile-hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            background: #1a1a1a;
            overflow: hidden;
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            animation: slowZoom 20s ease-in-out infinite alternate;
        }
        
        @keyframes slowZoom {
            0% { transform: scale(1.1); }
            100% { transform: scale(1.15); }
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-overlay);
        }
        
        .hero-content {
            position: relative;
            height: 100%;
            display: flex;
            align-items: flex-end;
            padding-bottom: 80px;
            z-index: 2;
        }
        
        .hero-text {
            color: var(--white);
        }
        
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            margin-bottom: 25px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }
        
        /* ========== FLOATING PROFILE CARD ========== */
        .floating-profile {
            position: relative;
            margin-top: -100px;
            z-index: 10;
        }
        
        .profile-card {
            background: var(--white);
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            display: flex;
            gap: 40px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .profile-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--accent-gradient);
        }
        
        .profile-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--accent-color);
            box-shadow: 0 15px 40px rgba(139,195,74,0.3);
            flex-shrink: 0;
            position: relative;
        }
        
        .profile-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Kendi görseli olmayan üyede dernek logosu gösteriliyor;
           logo yuvarlağın içinde kırpılmasın diye beyaz zemine sığdırılır. */
        .profile-avatar.is-brand {
            background: #fff;
        }

        .profile-avatar.is-brand img {
            object-fit: contain;
            padding: 12px;
        }
        
        .profile-avatar::after {
            content: '';
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 30px;
            height: 30px;
            background: #4caf50;
            border-radius: 50%;
            border: 3px solid var(--white);
        }
        
        .profile-info {
            flex: 1;
        }
        
        .profile-name {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 10px;
        }
        
        .profile-title {
            font-size: 1.2rem;
            color: var(--accent-color);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .profile-bio-short {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .profile-social {
            display: flex;
            gap: 15px;
        }
        
        .social-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light-color);
            color: var(--text-color);
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 18px;
        }
        
        .social-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .social-btn.facebook:hover {
            background: #1877f2;
            color: white;
        }
        
        .social-btn.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
            color: white;
        }
        
        .social-btn.twitter:hover {
            background: #1da1f2;
            color: white;
        }
        
        /* ========== ABOUT SECTION ========== */
        .about-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--text-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-gradient);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-top: 25px;
        }
        
        .about-content {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: stretch;
            gap: 40px;
        }
        
        .about-visual {
            flex: 0 0 320px;
            align-self: stretch;
            min-height: 280px;
            border-radius: 20px;
            overflow: hidden;
            background: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Kendi fotoğrafı yoksa dernek logosu gösterilir: kırpılmadan, beyaz zeminde */
        .about-visual.is-brand {
            background: #fff;
            border: 1px solid rgba(45, 80, 22, 0.10);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            padding: 32px;
        }

        .about-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .about-visual.is-brand img {
            width: 100%;
            height: auto;
            max-height: 100%;
            object-fit: contain;
        }
        
        .about-visual .about-icon-placeholder {
            text-align: center;
            padding: 40px;
            color: var(--accent-color);
        }
        
        .about-visual .about-icon-placeholder i {
            font-size: 80px;
            opacity: 0.3;
            margin-bottom: 15px;
        }
        
        .about-text {
            flex: 1;
            font-size: 1.1rem;
            line-height: 2;
            color: var(--text-color);
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border-left: 5px solid var(--accent-color);
        }
        
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
            }
            .about-visual {
                flex: none;
                align-self: auto;
                height: 240px;
                min-height: 0;
            }
            .about-visual.is-brand {
                height: auto;
                min-height: 200px;
                padding: 24px;
            }
        }
        
        /* ========== MEDIA SHOWCASE (Combined Gallery + Video) ========== */
        .media-showcase {
            padding: 80px 0;
            background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
        }
        .media-duo {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: start;
        }
        .media-panel {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0,0,0,0.07);
            border: 1px solid rgba(0,0,0,0.04);
            transition: box-shadow 0.4s;
        }
        .media-panel:hover {
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }
        .media-panel-header {
            padding: 22px 28px;
            display: flex;
            align-items: center;
            gap: 14px;
            border-bottom: 2px solid #f5f5f5;
            background: linear-gradient(135deg, rgba(45,80,22,0.03), rgba(143,188,63,0.05));
        }
        .media-panel-header .mp-icon {
            width: 44px; height: 44px;
            border-radius: 14px;
            background: var(--accent-gradient);
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-size: 18px;
            box-shadow: 0 4px 12px rgba(143,188,63,0.3);
        }
        .media-panel-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            color: var(--text-color);
            margin: 0;
        }
        .media-panel-header .mp-count {
            margin-left: auto;
            padding: 4px 14px;
            border-radius: 50px;
            background: rgba(143,188,63,0.1);
            color: var(--primary-color);
            font-size: 0.78rem;
            font-weight: 700;
        }
        .media-panel-body {
            padding: 20px;
        }

        /* Photo grid inside panel */
        .photo-mosaic {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 120px;
            gap: 8px;
        }
        .photo-mosaic .pm-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
        }
        .photo-mosaic .pm-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s;
        }
        .photo-mosaic .pm-item:hover img {
            transform: scale(1.1);
        }
        .photo-mosaic .pm-item::after {
            content: '';
            position: absolute; inset: 0;
            background: rgba(0,0,0,0);
            transition: background 0.3s;
        }
        .photo-mosaic .pm-item:hover::after {
            background: rgba(0,0,0,0.15);
        }
        .photo-mosaic .pm-item .pm-zoom {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%,-50%) scale(0);
            font-size: 24px; color: #fff;
            z-index: 2;
            transition: transform 0.3s;
            filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
        }
        .photo-mosaic .pm-item:hover .pm-zoom {
            transform: translate(-50%,-50%) scale(1);
        }
        /* Featured first photo */
        .photo-mosaic .pm-item:first-child {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
        }
        /* Show more overlay */
        .pm-more {
            position: absolute; inset: 0;
            background: rgba(45,80,22,0.7);
            backdrop-filter: blur(4px);
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            color: #fff; z-index: 3;
        }
        .pm-more span { font-size: 2rem; font-weight: 800; }
        .pm-more small { font-size: 0.82rem; opacity: 0.9; margin-top: 4px; }

        /* Video list inside panel */
        .video-stack {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .vs-item {
            border-radius: 14px;
            overflow: hidden;
            border: 2px solid #f0f0f0;
            transition: all 0.3s;
        }
        .vs-item:hover {
            border-color: var(--accent-color);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        .vs-item video {
            width: 100%;
            display: block;
            background: #000;
        }
        .vs-item-info {
            padding: 14px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #fafafa;
        }
        .vs-item-info .vs-title {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text-color);
        }
        .vs-item-info .vs-date {
            font-size: 0.78rem;
            color: var(--text-light);
            white-space: nowrap;
        }

        /* Empty states inside panels */
        .media-empty {
            text-align: center;
            padding: 50px 20px;
        }
        .media-empty i {
            font-size: 50px;
            color: var(--text-light);
            opacity: 0.2;
            margin-bottom: 14px;
        }
        .media-empty h4 {
            font-size: 1.05rem;
            color: var(--text-color);
            margin-bottom: 6px;
        }
        .media-empty p {
            font-size: 0.88rem;
            color: var(--text-light);
        }

        /* Swiper overrides for panel context */
        .media-panel .swiper { padding: 0 !important; }
        .media-panel .swiper-slide { height: auto; border-radius: 0; box-shadow: none; }
        .media-panel .swiper-slide:hover { transform: none; box-shadow: none; }
        .media-panel .swiper-pagination-bullet {
            width: 8px; height: 8px;
            background: var(--accent-color);
        }

        @media (max-width: 900px) {
            .media-duo { grid-template-columns: 1fr; }
        }
        @media (max-width: 600px) {
            .photo-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; }
            .photo-mosaic .pm-item:first-child { grid-column: 1 / -1; grid-row: auto; }
        }
        
        /* ========== BACK NAV ========== */
        .back-nav {
            position: absolute;
            top: 100px;
            left: 30px;
            z-index: 15;
        }
        .back-nav a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            background: rgba(255,255,255,.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,.25);
            border-radius: 50px;
            color: #fff;
            font-weight: 600;
            font-size: .9rem;
            text-decoration: none;
            transition: all .3s;
        }
        .back-nav a:hover {
            background: rgba(255,255,255,.25);
            transform: translateX(-4px);
        }
        
        /* ========== PRODUCTION INFO SECTION ========== */
        .production-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        }
        .production-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .prod-info-card {
            background: var(--white);
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .prod-info-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .prod-info-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: var(--accent-gradient);
        }
        .prod-info-card .prod-icon {
            width: 50px; height: 50px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(143,188,63,0.12), rgba(107,142,35,0.12));
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 16px;
        }
        .prod-info-card .prod-icon i {
            font-size: 22px;
            color: var(--accent-color);
        }
        .prod-info-card .prod-label {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .prod-info-card .prod-value {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-color);
            line-height: 1.5;
        }
        .prod-info-card .prod-value small {
            font-weight: 400;
            color: var(--text-light);
            font-size: 0.85rem;
        }
        .prod-tags {
            display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
        }
        .prod-tag {
            display: inline-flex; align-items: center; gap: 5px;
            padding: 5px 14px;
            background: linear-gradient(135deg, rgba(143,188,63,0.1), rgba(107,142,35,0.1));
            border: 1px solid rgba(143,188,63,0.2);
            border-radius: 20px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        .prod-method-badge {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 6px 16px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
        }
        .prod-method-badge.organic { background: linear-gradient(135deg, #4caf50, #388e3c); }
        .prod-method-badge.good_agriculture { background: linear-gradient(135deg, #2196f3, #1976d2); }
        .prod-method-badge.conventional { background: linear-gradient(135deg, #ff9800, #f57c00); }
        .prod-method-badge.other { background: linear-gradient(135deg, #9e9e9e, #757575); }
        
        @media (max-width: 768px) {
            .production-grid { grid-template-columns: 1fr; }
        }

        /* ========== CONTACT SECTION ========== */
        .contact-section {
            padding: 100px 0;
            background: var(--primary-gradient);
            color: white;
        }
        
        .contact-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .contact-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .contact-text {
            font-size: 1.2rem;
            opacity: 0.95;
            margin-bottom: 40px;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .contact-item i {
            font-size: 2rem;
            color: var(--accent-color);
        }
        
        .contact-item span {
            font-size: 1.1rem;
        }
        
        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 40px;
            background: white;
            color: var(--primary-color);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .contact-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .contact-btn-wa i { font-size: 1.35rem; color: #25d366; }
        
        /* ========== INFO CARDS EMAIL OVERFLOW FIX ========== */
        .info-card-item p {
            overflow-wrap: break-word;
            word-break: break-word;
            hyphens: auto;
        }

        /* ========== VERTICAL VIDEO SUPPORT ========== */
        .vs-item video {
            width: 100%;
            max-height: 500px;
            object-fit: contain;
            display: block;
            background: #000;
            aspect-ratio: auto;
            height: auto;
        }
        .vs-item video.is-portrait {
            max-height: 420px;
        }
        .vs-item video.is-landscape {
            max-height: 280px;
        }

        /* ========== CONTACT MODAL ========== */
        /* ═══════════ ÜRÜN KARTI ve DETAY PENCERESİ ═══════════ */
        .urun-karti {
            background: #fff;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,.08);
            transition: transform .4s, box-shadow .4s;
            height: 100%;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        .urun-karti:hover,
        .urun-karti:focus-visible {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,.15);
            outline: none;
        }
        .urun-karti:focus-visible { box-shadow: 0 0 0 3px #8fbc3f, 0 20px 60px rgba(0,0,0,.15); }

        .urun-karti-gorsel { position: relative; height: 240px; overflow: hidden; }
        .urun-karti-gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
        .urun-karti:hover .urun-karti-gorsel img { transform: scale(1.08); }

        .urun-rozet {
            position: absolute; top: 16px; right: 16px;
            display: inline-flex; align-items: center; gap: 6px;
            color: #fff; padding: 7px 18px; border-radius: 50px;
            font-size: .78rem; font-weight: 700; z-index: 2;
        }

        /* Kartın tıklanabilir olduğunu belli eden ipucu */
        .urun-detay-ipucu {
            position: absolute; left: 0; right: 0; bottom: 0;
            display: flex; align-items: center; justify-content: center; gap: 8px;
            padding: 14px 10px;
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.72) 100%);
            color: #fff; font-size: .88rem; font-weight: 600;
            opacity: 0; transform: translateY(8px);
            transition: opacity .3s, transform .3s;
        }
        .urun-karti:hover .urun-detay-ipucu,
        .urun-karti:focus-visible .urun-detay-ipucu { opacity: 1; transform: translateY(0); }
        @media (hover: none) {
            /* Dokunmatik cihazda hover yok — ipucu hep görünsün */
            .urun-detay-ipucu { opacity: 1; transform: none; }
        }

        .urun-modal-overlay {
            position: fixed; inset: 0;
            width: 100vw; max-width: 100vw;
            background: rgba(0,0,0,.6);
            backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
            z-index: 10000;
            display: flex; align-items: center; justify-content: center;
            padding: 20px;
            opacity: 0; visibility: hidden;
            transition: all .35s cubic-bezier(.4,0,.2,1);
        }
        .urun-modal-overlay.active { opacity: 1; visibility: visible; }

        .urun-modal {
            position: relative;
            background: #fff;
            border-radius: 28px;
            width: 100%;
            max-width: min(900px, calc(100vw - 40px));
            max-height: 90vh;
            overflow: hidden;
            display: grid;
            grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
            box-shadow: 0 25px 80px rgba(0,0,0,.28);
            transform: translateY(30px) scale(.96);
            transition: transform .35s cubic-bezier(.4,0,.2,1);
        }
        .urun-modal-overlay.active .urun-modal { transform: translateY(0) scale(1); }

        .urun-modal-kapat {
            position: absolute; top: 16px; right: 16px; z-index: 5;
            width: 38px; height: 38px; border-radius: 50%;
            background: #fff; border: none; color: #444;
            font-size: 16px; cursor: pointer;
            box-shadow: 0 3px 12px rgba(0,0,0,.22);
            display: flex; align-items: center; justify-content: center;
            transition: background .3s, color .3s, transform .3s;
        }
        .urun-modal-kapat:hover { background: #2d5016; color: #fff; transform: rotate(90deg); }

        .urun-modal-gorsel { position: relative; background: #f2f4ee; min-height: 320px; align-self: stretch; }
        /* Rozet solda dursun — sağ üst köşe kapatma butonuna ait */
        .urun-modal .urun-rozet { left: 16px; right: auto; }
        .urun-modal-gorsel img { width: 100%; height: 100%; object-fit: cover; display: block; }

        .urun-modal-icerik {
            padding: 36px 34px;
            display: flex; flex-direction: column;
            max-height: 90vh; overflow-y: auto;
        }

        .urun-modal-cins {
            align-self: flex-start;
            display: inline-flex; align-items: center;
            background: #f0f5e6; color: #4a7a26;
            padding: 5px 14px; border-radius: 50px;
            font-size: .78rem; font-weight: 700; letter-spacing: .3px;
            margin-bottom: 12px;
        }
        .urun-modal-icerik h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.9rem; font-weight: 800; color: #2d5016;
            line-height: 1.25; margin: 0 0 14px;
        }
        .urun-modal-fiyat { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
        .urun-modal-fiyat span { font-size: 2rem; font-weight: 800; color: #6b8e23; }
        .urun-modal-fiyat span.fiyat-yok { font-size: 1.05rem; font-weight: 600; color: #999; }
        .urun-modal-fiyat small { font-size: .85rem; color: #aaa; font-weight: 500; }

        .urun-modal-aciklama {
            font-size: .98rem; line-height: 1.85; color: #666;
            white-space: pre-line; margin: 0 0 18px;
        }

        /* ---- Sertifika / analiz etiketleri ---- */
        .urun-modal-etiketler { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
        .urun-etiket {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 6px 13px; border-radius: 50px;
            background: #eef6e3; color: #3f6b1c;
            font-size: .78rem; font-weight: 700; letter-spacing: .2px;
            border: 1px solid #dbe9c9;
        }
        .urun-etiket i { font-size: .82rem; opacity: .85; }

        /* ---- Üretim künyesi ---- */
        .urun-kunye {
            background: #f8faf4;
            border: 1px solid #eaf0e0;
            border-radius: 18px;
            padding: 20px 20px 8px;
            margin-bottom: 18px;
        }
        .urun-kunye-baslik {
            display: flex; align-items: center; gap: 8px;
            font-size: .82rem; font-weight: 800; letter-spacing: .8px;
            text-transform: uppercase; color: #6b8e23;
            margin: 0 0 14px;
        }
        .urun-kunye-baslik i { font-size: .9rem; }

        .urun-kunye-liste {
            margin: 0;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 4px 18px;
        }
        .urun-kunye-satir {
            display: flex; align-items: flex-start; gap: 10px;
            padding: 9px 0;
            border-top: 1px solid #eaf0e0;
            min-width: 0;
        }
        .urun-kunye-satir:first-child,
        .urun-kunye-satir:nth-child(2) { border-top: none; }

        .urun-kunye-ikon {
            flex: 0 0 30px; height: 30px; border-radius: 9px;
            background: #fff; border: 1px solid #e6eddc;
            display: flex; align-items: center; justify-content: center;
            color: #8fbc3f; font-size: .82rem;
        }
        .urun-kunye-satir dt {
            font-size: .72rem; font-weight: 700; letter-spacing: .4px;
            text-transform: uppercase; color: #9aa891;
            margin-bottom: 2px;
        }
        .urun-kunye-satir dd {
            margin: 0;
            font-size: .93rem; font-weight: 600; color: #2d5016;
            line-height: 1.45; overflow-wrap: break-word;
        }

        /* ---- Toprak yapısı notu ---- */
        .urun-kunye-not {
            display: flex; gap: 12px; align-items: flex-start;
            padding: 14px 16px; margin-bottom: 18px;
            border-radius: 14px;
            background: #fdf9f0; border: 1px solid #f2e8d5;
        }
        .urun-kunye-not > i { color: #c8973f; font-size: 18px; margin-top: 2px; }
        .urun-kunye-not small {
            display: block; font-size: .72rem; font-weight: 700;
            letter-spacing: .5px; text-transform: uppercase; color: #b08b47;
            margin-bottom: 3px;
        }
        .urun-kunye-not p {
            margin: 0; font-size: .9rem; line-height: 1.7; color: #6b5c40;
        }

        .urun-btn-wa {
            background: linear-gradient(135deg, #25d366, #128c7e) !important;
            box-shadow: 0 6px 20px rgba(18, 140, 126, .3) !important;
            text-decoration: none;
        }
        .urun-btn-wa:hover { box-shadow: 0 10px 28px rgba(18, 140, 126, .42) !important; }
        .urun-btn-wa i { font-size: 1.15rem; }

        .urun-modal-uretici {
            display: flex; align-items: center; gap: 12px;
            padding: 14px 16px; border-radius: 14px;
            background: #f8faf4; border: 1px solid #eef2e6;
            margin-bottom: 20px;
        }
        .urun-modal-uretici i { font-size: 30px; color: #8fbc3f; }
        .urun-modal-uretici small { display: block; font-size: .74rem; color: #999; letter-spacing: .4px; }
        .urun-modal-uretici strong { font-size: 1rem; color: #2d5016; }

        .urun-modal-butonlar { display: flex; gap: 10px; flex-wrap: wrap; }
        .urun-btn-birincil, .urun-btn-ikincil {
            border: none; border-radius: 50px; cursor: pointer;
            font-family: inherit; font-weight: 700; font-size: .92rem;
            padding: 13px 24px; transition: transform .3s, box-shadow .3s, background .3s;
            display: inline-flex; align-items: center; justify-content: center; gap: 8px;
        }
        .urun-btn-birincil {
            flex: 1 1 auto;
            background: linear-gradient(135deg,#8fbc3f,#6b8e23); color: #fff;
            box-shadow: 0 6px 20px rgba(107,142,35,.28);
        }
        .urun-btn-birincil:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(107,142,35,.4); }
        .urun-btn-ikincil { background: #f1f3ee; color: #666; }
        .urun-btn-ikincil:hover { background: #e5e9df; }

        @media (max-width: 780px) {
            .urun-modal { grid-template-columns: 1fr; max-height: 92vh; overflow: auto; }
            .urun-modal-gorsel { min-height: 0; height: 230px; }
            .urun-modal-icerik { padding: 26px 22px 28px; max-height: none; overflow: visible; }
            .urun-kunye-liste { grid-template-columns: 1fr; gap: 0; }
            .urun-kunye-satir:nth-child(2) { border-top: 1px solid #eaf0e0; }
            .urun-kunye { padding: 18px 16px 6px; }
            .urun-modal-icerik h3 { font-size: 1.5rem; }
            .urun-modal-fiyat span { font-size: 1.6rem; }
            .urun-modal-butonlar { flex-direction: column; }
            .urun-btn-birincil, .urun-btn-ikincil { width: 100%; }
        }

        .contact-modal-overlay {
            position: fixed;
            inset: 0;
            width: 100vw; max-width: 100vw;
            padding: 20px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 20px;
        }
        .contact-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .contact-modal {
            background: #fff;
            border-radius: 28px;
            max-width: min(440px, calc(100vw - 40px));
            width: 100%;
            padding: 0;
            box-shadow: 0 25px 80px rgba(0,0,0,0.25);
            transform: translateY(30px) scale(0.95);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }
        .contact-modal-overlay.active .contact-modal {
            transform: translateY(0) scale(1);
        }
        .contact-modal-header {
            background: linear-gradient(135deg, #2d5016 0%, #6b8e23 100%);
            padding: 28px 32px 24px;
            text-align: center;
            position: relative;
        }
        .contact-modal-header .cm-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            border: none;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .contact-modal-header .cm-close:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }
        .contact-modal-header .cm-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            border: 3px solid rgba(255,255,255,0.4);
            object-fit: cover;
            margin-bottom: 14px;
        }
        .contact-modal-header h3 {
            color: #fff;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 0 4px 0;
        }
        .contact-modal-header p {
            color: rgba(255,255,255,0.8);
            font-size: 0.88rem;
            margin: 0;
        }
        .contact-modal-body {
            padding: 28px 32px 32px;
        }
        .cm-info-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            border-radius: 14px;
            background: #f8f9fa;
            margin-bottom: 12px;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }
        .cm-info-row:hover {
            background: #edf7e0;
            transform: translateX(4px);
        }
        .cm-info-row:last-child {
            margin-bottom: 0;
        }
        .cm-info-row .cm-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .cm-icon-phone {
            background: linear-gradient(135deg, #4caf50, #388e3c);
            color: #fff;
        }
        .cm-icon-wa {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: #fff;
        }
        .cm-icon-location {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
            color: #fff;
        }
        .cm-info-row .cm-text {
            flex: 1;
            min-width: 0;
        }
        .cm-info-row .cm-text small {
            display: block;
            font-size: 0.75rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            margin-bottom: 3px;
        }
        .cm-info-row .cm-text span {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            overflow-wrap: break-word;
            word-break: break-word;
        }
        .cm-info-row .cm-arrow {
            color: #ccc;
            font-size: 14px;
            transition: transform 0.3s;
        }
        .cm-info-row:hover .cm-arrow {
            color: #6b8e23;
            transform: translateX(3px);
        }

        @media (max-width: 480px) {
            .contact-modal {
                max-width: 100%;
                border-radius: 20px;
            }
            .contact-modal-header { padding: 24px 20px 20px; }
            .contact-modal-body { padding: 20px; }
            .cm-info-row { padding: 14px; gap: 12px; }
            .cm-info-row .cm-icon { width: 42px; height: 42px; font-size: 18px; }
        }

        /* ========== FLOATING ELEMENTS ========== */
        .floating-social {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 100;
        }
        
        .floating-social a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            color: var(--text-color);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .floating-social a:hover {
            transform: scale(1.2);
        }
        
        .back-to-top {
            position: fixed;
            right: 30px;
            bottom: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--accent-gradient);
            color: white;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(139,195,74,0.4);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .back-to-top.show {
            display: flex;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
        }
        
        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .profile-card {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }
            
            .profile-name {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .floating-social {
                display: none;
            }
            

        }