/* Search için senkron animasyon */
@keyframes simpleProgress {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Desk for only customer Corasel */
.owl-carousel .owl-item .review_strip img.user_img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.veloraImgcolorwb img {
  filter: grayscale(100%);
}

.veloraImgcolorwb:hover img {
  filter: none;
}

/* sticky icons */
.sticky-icon-container {
    position: fixed;
    top: 50%;
    right: 0px !important; /* Kesin değer */
    transform: translateY(-50%); /* her zaman dikey ortalar */
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

.sticky-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 40px;
    height: 40px;
    padding: 5px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 7px 0 0 7px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.6s ease, opacity 0.6s ease;
    overflow: visible;
    margin-bottom: 2px;
    color: white;
    text-decoration: none;
    position: relative;
    opacity: 1;
    transform: translateX(0);
    touch-action: manipulation;
}

.sticky-icon.hidden {
    opacity: 0;
    transform: translateX(100%);
}

/* İkon kutusu */
.sticky-icon .icon {
    display: flex;
    align-items: center;   /* dikey ortalama */
    justify-content: center; /* yatay ortalama */
    width: 24px;
    height: 24px;
    margin-left: 5px;
    margin-right: 3px;
}

/* Tüm progress bar transition'larını kapat */
.form-progress-fill {
    transition: none !important; /* Mili saniyelik hareketlenmeyi önler */
}

.progress-bar {
    transition: none !important; /* Mili saniyelik hareketlenmeyi önler */
}


.newsletter-response {
    text-align: center;
    margin-top: 5px;
	margin-bottom: 5px;
    padding: 10px;
    border-radius: 4px;
    min-height: 20px;
}

.newsletter-response.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-response.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Modal stabilizasyonu */
.zoom-anim-dialog {
    transition: none !important; /* Modal animasyonunu kapat */
    transform: none !important;
}

/* Font ikonları */
.sticky-icon .icon [class^="icon_set_1_icon-"],
.sticky-icon .icon [class^="pe-7s-"] {
    font-size: 20px;
    line-height: 1;
}

/* SVG veya IMG ikonları */
.sticky-icon .icon img,
.sticky-icon .icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Text kısmı */
.sticky-icon .text {
    position: absolute;
    right: 100%;
    opacity: 0;
    background-color: inherit;
    color: inherit;
    border-radius: 7px 0 0 7px;
    white-space: nowrap;
    overflow: hidden;
    transition: opacity 0.3s ease, width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
    width: 0;
}

.sticky-icon.expanded .text {
    opacity: 1;
    width: 115px;
}

/* Renkler */
#helpdeskIcon { background-color: rgba(0, 123, 255, 0.9); }
#helpdeskIcon.expanded { background-color: rgba(0, 86, 179, 0.8); color: rgba(255, 255, 255, 1); }
#helpdeskIcon:hover .text { color: white; }

#phone_icon { background-color: rgba(240, 173, 78, 0.9); }
#phone_icon.expanded { background-color: rgba(236, 151, 31, 0.8); color: rgba(255, 255, 255, 1); }
#phone_icon:hover .text { color: white; }

#whatsapp_icon { background-color: rgba(92, 184, 92, 0.9); }
#whatsapp_icon.expanded { background-color: rgba(76, 174, 76, 0.8); color: rgba(255, 255, 255, 1); }
#whatsapp_icon:hover .text { color: white; }

#likeIcon { background-color: rgba(255, 0, 0, 0.9); }
#likeIcon.expanded { background-color: rgba(179, 0, 0, 0.8); color: rgba(255, 255, 255, 1); }
#likeIcon:hover .text { color: white; }

/* CSS Document */

/* Star and Smile Icon */
.icon-smile.voted {
	color: #f39c12;
}

.icon-smile-half.voted {
	color: #f39c12;
}

.icon-smile {
	color: #d3d3d3;
}

.icon-star.voted {
	color: #f39c12;
}

.icon-star-half.voted {
	color: #f39c12;
}

.icon-star {
	color: #d3d3d3;
}


/* Search keys */
.highlight {
    background-color: yellow;
    padding: 2px;
	border-radius: 5px;
	color: #000;
    font-weight: bold;
    animation: highlightAnimation 1s ease-out; /* Animasyon */
}

@keyframes highlightAnimation {
    0% { background-color: transparent; }
    100% { background-color: yellow; }
}

/* For Subscribe */
/* Yükleniyor simgesi */
#loading {
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
    display: none; /* Başlangıçta gizli */
    padding: 0px;
}

.spinner {
    margin-bottom: 15px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

/* Yükleniyor simgesinin döndürme animasyonu */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.progress-bar {
    height: 100%;
    background-color: #3498db;
    border-radius: 5px;
    width: 0%;
    text-align: center;
    color: white;
    line-height: 20px;
}

/* Form ve hata mesajları */
.invalid-input {
    border: 2px solid #f5c6cb;
}

.form-group {
    position: relative;
}

.email-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #888;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* General Seperator */
.separator-icon {
    text-align: center;
    margin: 30px 0;
    position: relative;
}
.separator-icon:before,
.separator-icon:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e1e8ed;
}
.separator-icon:before {
    left: 0;
}
.separator-icon:after {
    right: 0;
}
.separator-icon i {
    color: #e1e8ed;
    font-size: 16px;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0 15px;
}

.similar-records-footer {
    display: flex;
    justify-content: center; /* yatay ortalama */
    align-items: center;     /* dikey ortalama */
    margin: 10px 0 20px 0;
    min-height: 50px;       /* dikey ortalama için yüksekliği belirle */
}
	
/* Custom Seperator */
.separatorCustom-icon {
    text-align: center;
    margin: 10px 0px 0px 0px;
    position: relative;
}
.separatorCustom-icon:before,
.separatorCustom-icon:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e1e8ed;
}
.separatorCustom-icon:before {
    left: 0;
}
.separatorCustom-icon:after {
    right: 0;
}
.separatorCustom-icon i {
    color: #e1e8ed;
    font-size: 16px;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0 15px;
}




/* for Site Tree */
        .site-tree {
            padding: 40px 0;
            max-width: 1140px;
            margin: 0 auto;
        }
        .site-tree h1 {
            font-size: 2rem;
            font-weight: 300;
            color: #333;
            margin-bottom: 2rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-bottom: 2px solid #f1f1f1;
            padding-bottom: 1rem;
        }
        .tree-section {
            margin-bottom: 2rem;
            background: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .tree-section:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .tree-section h2 {
            font-size: 1.25rem;
            font-weight: 500;
            color: #0054a6;
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid rgba(0,84,166,0.2);
            letter-spacing: 0.5px;
        }
        .tree-list {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
        .tree-list li {
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }
        .tree-list li:last-child {
            margin-bottom: 0;
        }
        .tree-list li:hover {
            transform: translateX(5px);
        }
        .tree-list a {
            color: #666;
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            border-left: 2px solid transparent;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            font-weight: 400;
            background: rgba(0,0,0,0.02);
            border-radius: 4px;
        }
        .tree-list a:hover {
            color: #0054a6;
            border-left-color: #0054a6;
            background: rgba(0,84,166,0.05);
        }
        .priority-indicator {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            margin-right: 12px;
            position: relative;
        }
        .priority-indicator::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: inherit;
            opacity: 0.4;
            animation: pulse 2s infinite;
        }
        .priority-1 { background-color: #28a745; }
        .priority-09 { background-color: #17a2b8; }
        .priority-08 { background-color: #17a2b8; }
        .priority-07 { background-color: #ffc107; }
        .priority-06 { background-color: #dc3545; }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.4;
            }
            70% {
                transform: scale(2);
                opacity: 0;
            }
            100% {
                transform: scale(1);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .site-tree {
                padding: 20px;
            }
            .site-tree h1 {
                font-size: 1.75rem;
            }
            .tree-section h2 {
                font-size: 1.1rem;
            }
            .tree-list a {
                font-size: 0.9rem;
                padding: 0.6rem 0.8rem;
            }
        }

/* Image Mask for Content */
.lh_category_image_container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.lh_product_image_container img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

/* Footer Credits Link Styles
   Normal state: white
   Hover state: orange (#faa11b)
   Active/Focus state: white again
*/
/* Footer Credits Styles */
p.FooterCreditsLink {
  color: #ffffff !important;
  font-size: 12px;
  text-align: center;
}

p.FooterCreditsLink a {
  color: #ffffff;        /* Link normalde beyaz */
  text-decoration: none;
}

p.FooterCreditsLink a:hover {
  color: #faa11b;        /* Hover: turuncu */
}

p.FooterCreditsLink a:active,
p.FooterCreditsLink a:focus {
  color: #ffffff;        /* Active/Focus: beyaz */
}

/* ==========================================================
   FORM PROGRESS INDICATOR - Helpdesk Formu İçin
   Sadece helpdesk formunda çalışır, diğer sayfaları etkilemez
========================================================= */

/* Progress Container - Formun altında görünür */
.form-progress-container {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    display: none; /* Başlangıçta gizli */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Progress Bar Wrapper */
.form-progress-wrapper {
    margin-bottom: 10px;
}

/* Progress Bar */
.form-progress-bar {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

/* Progress Text */
.form-progress-text {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    text-align: center;
    margin: 0;
}

/* Progress Steps - İlerleme adımları */
.form-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #6c757d;
}

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

.form-progress-step.active {
    color: #007bff;
    font-weight: 600;
}

.form-progress-step.completed {
    color: #28a745;
}

/* Loading Spinner */
.form-progress-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

/* Responsive - Mobil uyumlu */
@media (max-width: 768px) {
    .form-progress-container {
        margin-top: 15px;
        padding: 12px;
    }
    
    .form-progress-steps {
        flex-direction: column;
        gap: 5px;
        font-size: 11px;
    }
    
    .form-progress-text {
        font-size: 13px;
    }
}

/* Form submit butonu devre dışı durumda */
.btn_1:disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    cursor: not-allowed;
    opacity: 0.7;
}

/* ==========================================================
   STICKY PROGRESS BAR - Alternatif çözüm
   Progress bar'ı her zaman görünür tutar
   Kullanmak için .form-progress-container'a .sticky class'ı ekleyin
========================================================= */
.form-progress-container.sticky {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    min-width: 350px;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 2px solid #007bff;
}

/* ==========================================================
   HELPDESK FORM CHARACTER SET - Minimalist & Professional
   Modern form karakter seti ve tipografi
========================================================= */

/* Form Container */
.step {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

/* Form Controls */
.form-control {
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: 0;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

/* Form Labels */
.form-label {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn_1 {
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn_1:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Headings */
.main_title h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 0px;
    letter-spacing: -0.5px;
}

.main_title p {
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    color: #6c757d;
    line-height: 1.4; /* daha dar satır aralığı */
	margin-top: 5px; /* çok küçük negatif margin ile boşluğu kapat */
}

/* Alert Messages */
.alert {
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    border-radius: 6px;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.alert strong {
    font-weight: 600;
}


/* Responsive Typography */
@media (max-width: 768px) {
    .form-control {
        font-size: 16px; /* iOS zoom prevention */
    }
    
    .btn_1 {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .main_title h3 {
        font-size: 24px;
    }
    
    .main_title p {
        font-size: 15px;
    }
}

/* ==========================================================
   GOOGLE RECAPTCHA STYLE - Professional Modern Design
   Google reCAPTCHA v2 "Ben robot değilim" tarzı görünüm
========================================================= */

/* Recaptcha Container */
.g-recaptcha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    height: 74px;
    border: 1px solid #d3d3d3;
    background-color: #fafafa;
    border-radius: 3px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    color: #37474f;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.g-recaptcha:hover {
    border-color: #28a745;
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.15);
}

.g-recaptcha.error {
    border-color: #d9534f;
    box-shadow: 0 0 6px rgba(217, 83, 79, 0.3);
}

/* Recaptcha Content */
.recaptcha-content {
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 100%;
    flex: 1;
}

/* Checkbox - Google Style */
.recaptcha-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    margin-right: 8px;
    background-color: #fff;
    position: relative;
    transition: all 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recaptcha-checkbox:hover {
    border-color: #9b9b9b;
    background-color: #fff;
}

.recaptcha-checkbox.checking {
    border-color: #1a73e8;
    background-color: #fff;
}

.recaptcha-checkbox.checked {
    border-color: #008489;  /* İstenen yeşil renk */
    background-color: #008489;  /* İstenen yeşil renk */
}

/* ✅ YEŞİL TİK - Dönen daire kaybolur */
.recaptcha-checkbox.checked::before {
    display: none;  /* Dönen daire kaybolur */
}

.recaptcha-checkbox.checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    animation: checkmarkSlide 0.3s ease;
}

@keyframes checkmarkSlide {
    0% {
        transform: rotate(45deg) scale(0);
        opacity: 0;
    }
    50% {
        transform: rotate(45deg) scale(1.1);
    }
    100% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
    }
}

/* ==========================================================
   BACKUP - MEVCUT SPINNER ANİMASYONU (GERİ DÖNÜŞ İÇİN)
   ==========================================================
.recaptcha-checkbox.checking::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid #1a73e8;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: recaptchaSpin 1s linear infinite;
}

@keyframes recaptchaSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
*/

/* ==========================================================
   BACKUP - PULSE ANİMASYONU (CHECKPOINT - GERİ DÖNÜŞ İÇİN)
   ==========================================================
   Pulse Loading - Modern ve Şık */
.recaptcha-checkbox.checking-pulse {
    border-color: #1a73e8;
    background-color: #f8f9ff;
    animation: checkboxPulse 1.5s ease-in-out infinite;
}

.recaptcha-checkbox.checking-pulse::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #1a73e8;
    border-radius: 50%;
    animation: innerPulse 1.5s ease-in-out infinite;
}

@keyframes checkboxPulse {
    0% {
        border-color: #1a73e8;
        background-color: #f8f9ff;
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.4);
        transform: scale(1);
    }
    50% {
        border-color: #4285f4;
        background-color: #e8f0fe;
        box-shadow: 0 0 0 8px rgba(26, 115, 232, 0.1);
        transform: scale(1.05);
    }
    100% {
        border-color: #1a73e8;
        background-color: #f8f9ff;
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
        transform: scale(1);
    }
}

@keyframes innerPulse {
    0% {
        background-color: #1a73e8;
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        background-color: #4285f4;
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        background-color: #1a73e8;
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
}
*/

/* ==========================================================
   CHECKMARK ANİMASYONU - YARATICI SEÇENEK
   ==========================================================
   Checkmark Drawing - Yavaşça Çizim Efekti */
.recaptcha-checkbox.checking-checkmark {
    border-color: #1a73e8;
    background-color: #fff;
    position: relative;
    overflow: visible;
}

/* 🔄 BÜYÜK DÖNEN DAİRE - Google reCAPTCHA stili */
.recaptcha-checkbox.checking-checkmark::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;      /* Checkbox'tan büyük */
    height: 24px;     /* Checkbox'tan büyük */
    border: 2px solid #1a73e8;
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    animation: googleSpinner 1s linear infinite;
    z-index: 2;
}

/* 🎯 MERKEZ NOKTA - Dönen dairenin içinde */
.recaptcha-checkbox.checking-checkmark::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #1a73e8;
    border-radius: 50%;
    z-index: 3;
}

/* 🔄 DÖNME ANİMASYONU - Google'ın spinner'ı */
@keyframes googleSpinner {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Recaptcha Text */
.recaptcha-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    color: #37474f;
    line-height: 1.4;
    user-select: none;
    flex-grow: 1;
    font-weight: 400;
}

/* Recaptcha Logo Area - Right Side */
.recaptcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 100%;
    border-left: none;
    background-color: transparent;
    padding: 10px 5px 0px 0px;
    box-sizing: border-box;
}

.recaptcha-logo img {
    width: 55px;
    height: 55px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.recaptcha-logo:hover img {
    opacity: 1;
}

.recaptcha-logo-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 8px;
    color: #999;
    margin-top: 2px;
    line-height: 1.1;
    text-align: center;
}

.recaptcha-logo-text a {
    color: #777;
    text-decoration: none;
}

.recaptcha-logo-text a:hover {
    text-decoration: underline;
}

/* Loading State */
.recaptcha-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: #666;
}

.recaptcha-loading .recaptcha-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-top: 2px solid #4285f4;
    border-radius: 50%;
    animation: recaptchaSpin 1s linear infinite;
    margin-right: 8px;
}

/* Success State */
.recaptcha-success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(76, 175, 80, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: white;
    font-weight: 500;
}

/* Error State */
.recaptcha-error {
    position: absolute;
    bottom: -22px;
    left: 0;
    right: 0;
    background-color: #d9534f;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 3px;
    z-index: 4;
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .g-recaptcha {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 74px;
        flex-direction: row;
        padding: 8px;
    }
    
    .recaptcha-content {
        padding: 8px;
        height: auto;
        flex: 1;
        min-width: 0;
    }
    
    .recaptcha-logo {
        border-left: none;
        padding: 4px 2px;
        width: 50px;
        height: auto;
        flex-shrink: 0;
    }
    
    .recaptcha-text {
        font-size: 13px;
        line-height: 1.2;
    }
    
    .recaptcha-checkbox {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        flex-shrink: 0;
    }
    
    .recaptcha-checkbox.checked::after {
        left: 5px;
        top: 2px;
        width: 5px;
        height: 10px;
        border-width: 0 2px 2px 0;
    }
    
    .recaptcha-logo img {
        width: 35px;
        height: 35px;
    }
    
    .recaptcha-logo-text {
        font-size: 7px;
        display: none;
    }
}

/* Extra Small Screens - 480px ve altı */
@media (max-width: 480px) {
    .g-recaptcha {
        max-width: 350px;
        padding: 6px;
    }
    
    .recaptcha-content {
        padding: 16px;
    }
    
    .recaptcha-text {
        font-size: 17px;
    }
    
    .recaptcha-checkbox {
        width: 18px;
        height: 18px;
        margin-right: 12px;
    }
    
    .recaptcha-checkbox.checked::after {
        left: 4px;
        top: 1px;
        width: 4px;
        height: 8px;
    }
    
    .recaptcha-logo {
        width: 45px;
        padding: 10px 15px 0px 0px;
    }
    
    .recaptcha-logo img {
        width: 55px;
        height: 55px;
    }
}

/* Sticky için backdrop */
.form-progress-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}

/* Modern Corporate Download Section Header */
.box_style_1.expose .inner {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 0 10px 0;
    margin: 0 0 20px 0;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: none;
    position: relative;
    border-bottom: 2px solid #e9ecef;
}

.box_style_1.expose .inner::before {
    content: '📁';
    font-size: 16px;
    color: #008489;
    flex-shrink: 0;
}

.box_style_1.expose .inner::after {
    display: none;
}

/* Download Section Styles */
.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.download-item:hover {
    background: #fff;
    border-color: #008489;
    box-shadow: 0 2px 8px rgba(0, 132, 137, 0.1);
    transform: translateY(-1px);
}

.download-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0; /* Text overflow için gerekli */
}

.file-icon {
    font-size: 24px;
    margin-right: 12px;
    min-width: 30px;
    text-align: center;
}

.file-icon-pdf { color: #dc3545; }
.file-icon-excell { color: #28a745; }
.file-icon-word { color: #007bff; }
.file-icon-other { color: #6c757d; }

.file-details {
    flex: 1;
    min-width: 0; /* Text overflow için gerekli */
}

.file-details h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #2a2a2a;
    line-height: 1.2;
    text-align: left;
}

.file-type {
    font-size: 11px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    display: block;
}

.btn-download {
    background: #008489;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0; /* Butonun sıkışmasını engeller */
    margin-left: 10px; /* Butonu sağa yasla */
}

.btn-download:hover {
    background: #00666a;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 132, 137, 0.3);
}

.btn-download i {
    font-size: 12px;
}

.no-files {
    text-align: center;
    padding: 30px 15px;
    color: #6c757d;
}

.no-files i {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.5;
}

.no-files p {
    margin: 0;
    font-size: 14px;
    font-style: italic;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .download-item {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .download-info {
        justify-content: flex-start;
        text-align: left;
    }

    .file-details {
        text-align: left;
    }

    .file-details h4 {
        text-align: left;
    }

    .file-type {
        text-align: left;
    }
    
    .btn-download {
        justify-content: center;
        align-self: stretch;
    }
}

/* Similar Records Widget */
.similar-records {
    margin-top: 20px;
}

.box_style_1.expose.similar-records .inner::before {
	content: '🔗';
    color: #007bff;
}

.similar-record-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.similar-record-item:hover {
    background-color: #f8f9fa;
    padding-left: 10px;
}

.similar-record-item:last-child {
    border-bottom: none;
}

.similar-record-thumb {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 12px;
    border: 1px solid #e0e0e0;
}

.similar-record-info {
    flex: 1;
}

.similar-record-info h4 {
    margin: 0 0 3px 0;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.similar-record-info span {
    font-size: 11px;
    color: #666;
}

.similar-record-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.similar-record-link:hover h4 {
    color: #007bff;
}


/* Special Parameter */
.terminalContent {
    text-align: left; /* justify; */
    text-justify: inter-word;
    /* hyphens: auto; */
}

.similar-date-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.similar-date-wrapper .date {
    color: #007bff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.similar-date-wrapper i {
    color: #007bff;
    font-size: 12px;
    opacity: 0.8;
}

/* Hover efekti */
.similar-record-item:hover .similar-date-wrapper .date {
    color: #0056b3;
}

.similar-record-item:hover .similar-date-wrapper i {
    color: #0056b3;
    opacity: 1;
}

/* CONTACT Information */
/* ******************* */
.contact-section {
    font-family: Arial, sans-serif;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 0px;
    box-sizing: border-box;
}

.contact-image {
    flex: 0 0 500px;
    max-width: 500px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.map-container {
    margin-top: 0px;
    width: 100%;
}

/* Contact Header */
.contact-header {
    margin-bottom: 20px;
}

.contact-header h4 {
    font-size: 16px;
    color: #666;
    margin: 0 0 5px 0;
    font-weight: 400;
}

.contact-header strong {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

/* Address Section */
.contact-address {
    margin: 20px 0px 20px 0px;
}

.contact-address h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.contact-address h4 i {
    color: #008489;
    font-size: 18px;
}

.contact-address p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Working Hours - Hizalı */
.contact-hours {
    margin-bottom: 0px;
}

.contact-hours h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.contact-hours h4 i {
    color: #008489;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-hours p {
    margin: 0 0 0 28px;
    color: #666;
    font-size: 15px;
}

/* Phones Section */
.contact-phones-section {
    margin-bottom: 20px;
}

.contact-phone-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.contact-phone-row i {
    color: #008489;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.contact-phone-row a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-phone-row a:hover {
    color: #008489;
}

.contact-phone-row .icon-whatsapp {
    color: #25d366;
}

/* Email Section - Hizalı */
.contact-email {
    margin-bottom: 0px;
}

.contact-email h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.contact-email h4 i {
    color: #008489;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-email a {
    margin-left: 28px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
}

.contact-email a:hover {
    color: #008489;
}

/* Map Container */
.map-container h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.map-container h4 i {
    color: #008489;
    font-size: 18px;
}

.map-container p {
    color: #666;
    font-style: italic;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 0;
    }

    .contact-info, .contact-image {
        width: 100%;
        flex: none;
        max-width: none;
        margin: 0;
        padding: 15px;
        box-sizing: border-box;
    }

    .contact-image img {
        border-radius: 0;
    }
    
    .contact-header strong {
        font-size: 20px;
    }
    
    .contact-address h4,
    .contact-hours h4,
    .contact-email h4,
    .map-container h4 {
        font-size: 15px;
    }
    
    .contact-address h4 i,
    .contact-hours h4 i,
    .contact-email h4 i,
    .map-container h4 i {
        font-size: 16px;
    }
    
    .contact-phone-row {
        justify-content: left;
        text-align: left;
    }
    
    .contact-email a {
        margin-left: 0;
        text-align: left;
        display: block;
    }
    
    .contact-hours p {
        margin-left: 0;
        text-align: left;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-image {
        flex: 0 0 350px;
        max-width: 350px;
    }
    
    .contact-info {
        flex: 1;
        min-width: 250px;
    }
}
/* ******************* */
/* ******************* */

/* =====================================================
   SEARCH RESULTS - DÜZELTİLMİŞ VERSİYON
   ===================================================== */

/* Image Çerçevesi */
.search-result-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.search-result-image-container img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-result-image-container:hover img {
    transform: scale(1.05);
}

/* Overlay */
.search-result-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.search-result-image-container:hover .search-result-overlay {
    opacity: 1;
}

.search-result-info {
    color: white;
    text-align: left;
}

.search-result-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    margin: 0;
}

.search-result-info span {
    font-size: 12px;
    opacity: 0.9;
}

/* İçerik Alanı */
.search-result-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.search-result-header {
    margin-bottom: 15px;
}

.search-result-category {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: inline-block;
}

.search-result-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.search-result-title a {
    color: #2a2a2a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-title a:hover {
    color: #008489;
}

.search-result-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.search-result-meta {
    margin-bottom: 20px;
}

.search-result-meta .list-inline {
    margin: 0;
    padding: 0;
}

.search-result-meta .list-inline-item {
    font-size: 12px;
    color: #999;
    margin-right: 15px;
    margin-bottom: 5px;
}

.search-result-meta .list-inline-item i {
    margin-right: 5px;
    color: #008489;
}

.search-result-actions {
    /* Desktop: Sol */
    text-align: left;
}

/* Item Yapısı */
.list_general .item {
    border-bottom: 1px solid #f0f0f0;
    padding: 30px 0;
    transition: all 0.3s ease;
}

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

.list_general .item:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .search-result-image-container img {
        height: 150px;
    }
    
    .search-result-content {
        margin-top: 20px;
        text-align: center;
    }
    
    .search-result-actions {
        text-align: center;
    }
    
    .search-result-meta .list-inline {
        text-align: center;
    }
    
    .search-result-meta .list-inline-item {
        display: block;
        margin: 5px 0;
    }
}

/* Search keys */
.highlight {
    background-color: yellow;
    padding: 2px;
	border-radius: 5px;
	color: #000;
    font-weight: bold;
    animation: highlightAnimation 1s ease-out; /* Animasyon */
}


/* ============================= */
/* VELORA CARD */
/* ============================= */
.velora_card {
	background: #fff;
	border-radius: 5px;
	position: relative;
	padding: 30px 20px 20px 30px;
	margin-bottom: 30px;
	margin-top: 15px;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
}

/* HEADER */
.velora_card .velora_card_header{
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding-bottom:12px;
	margin-bottom:15px;
	border-bottom:1px solid #eaeaea;
}

.velora_card h4{
	font-size:18px;
	padding:0;
	margin:0;
	position:relative;
	padding-left:32px; /* ikon + boşluk */
}

.velora_card h4::before{
	content:'🔗';
	position:absolute;
	left:0;
	top:50%;
	transform:translateY(-50%);
	color:#007bff;
	font-size:16px;
}

/* LIST ALL LINK */
.velora_card .velora_list_all{
	font-size:13px;
	font-weight:500;
	text-decoration:none;
	color:#007bff;
	transition:all .2s ease;
}

.velora_card .velora_list_all:hover{
	text-decoration:underline;
	color:#0056b3;
}

/* ============================= */
/* RELATED POSTS LIST - CLICKABLE ITEM */
/* ============================= */
.velora_related_list{
	display:flex;
	flex-direction:column;
	gap:12px;
}

.velora_related_item{
	padding:0;
	border-bottom:1px solid #eee;
}

.velora_related_item:last-child{
	border-bottom:none;
}

/* TAM ITEM LINK */
.velora_related_item a{
	display:flex;
	gap:12px;
	padding:14px 0;
	width:100%;
	text-decoration:none;
	color:inherit;
	transition: background 0.2s ease;
}

.velora_related_item a:hover{
	background:#f9f9f9;
}

.velora_related_item a:hover h5{
	color:#e14d67;
}

/* IMAGE */
.velora_related_img{
	width:90px;
	height:60px;
	overflow:hidden;
	border-radius:4px;
	flex-shrink:0;
	position:relative;
}

.velora_related_img img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}

/* Parlama katmanı */
.velora_related_img::after{
	content:"";
	position:absolute;
	top:0;
	left:-75%;
	width:50%;
	height:100%;
	background:linear-gradient(
		120deg,
		rgba(255,255,255,0) 0%,
		rgba(255,255,255,0.35) 50%,
		rgba(255,255,255,0) 100%
	);
	transform:skewX(-25deg);
	transition:0.6s;
}

/* Hover */
.velora_related_img:hover::after{
	left:125%;
}

/* CONTENT */
.velora_related_content{
	flex:1;
}

.velora_related_content h5{
	font-size:14px;
	margin:0;
	line-height:1.35;
	font-weight:600;
}

.velora_related_content p{
	font-size:13px;
	margin:4px 0 0 0;
	color:#666;
}

.velora_date{
	font-size:11px;
	color:#999;
	display:block;
	margin-top:2px;
}

/* FOOTER */
.velora_card_footer{
	font-size:13px;
	color:#666;
	padding-top:12px;
	border-top:1px solid #eaeaea;
	text-align:left;
}

/* FORM TITLE */
.veloraForm_title h3{
	font-size:22px;
	font-weight:600;
	margin-bottom:5px;
	text-align:left; /* sola hizalama */
}

.veloraForm_title p{
	font-size:14px;
	color:#666;
	margin-bottom:0px;
	text-align:left; /* sola hizalama */
}

/* RECORD INFO - Tarih + Web sitesi */
.record_info{
	font-size:13px;
	color:#999;
	margin-bottom:15px;
	padding-bottom:5px;
	border-bottom:1px solid #eee; /* ayraç */
	display:flex;
	align-items:center;
	gap:5px;
	justify-content:flex-start; /* sola hizalama */
}

.record_separator{
	margin:0 5px;
	color:#ccc;
}

/* Web sitesi linki */
.record_website{
	color:#007bff;
	text-decoration:none;
	transition:all 0.2s ease;
}

.record_website:hover{
	text-decoration:underline;
	color:#0056b3;
}

/* RECORD CONTENT - Metin */
.record_content p{
	font-size:14px;
	line-height:1.6;
	color:#444;
	margin-bottom:20px;
	border-top:0px solid #eee; /* ayraç */
	padding-top:0px;
	text-align:left; /* sola hizalama */
}

.velora_tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* tagler arası boşluk */
}

.velora_tag {
    display: inline-block;
    background-color: #f1f1f1;
    color: #333;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.velora_tag:hover {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

/* Separator sadece resim/video bloklarında */
.separatorCustom {
    margin: 20px 0;
    border-top: 1px solid #eee;
}

.record_content h1, .record_content h2, .record_content h3,
.record_content h4, .record_content h5, .record_content h6 {
    margin-bottom: 15px;
    color: #333;
}

.record_content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #555;
}

.record_content .magnific-gallery {
    margin-top: 5px;
    margin-bottom: 20px;
}

.record_content .img_wrapper_gallery {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}


.download_box {
  padding: 25px;
}

.download_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.download_title span {
  color: #007bff;
}

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

.download_item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.download_item:last-child {
  border-bottom: none;
}

.download_item:hover {
  background: #f8f9fa;
}

.doc_title {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

/* ikon */

.doc_icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;

  flex-shrink: 0; /* ÖNEMLİ */
}

.doc_icon.pdf {
  background: #e63946;
}

.doc_icon.word {
  background: #2b579a;
}

.doc_icon.excel {
  background: #1d6f42;
}

.doc_icon.other {
  background: #6c757d;
}

.veloraAllrecords{
    position:relative;
    border-bottom:1px solid #e5e5e5;
    margin:5px 0 30px 0; /* üst 5px, alt 10px */
    height:0px;
}

.veloraAllrecords a{
    position:absolute;
    right:0;
    top:-10px;
    background:#fff;
    padding-left:10px;
    font-size:13px;
    font-weight:500;
    text-decoration:none;
    color:#333;
    transition: color 0.2s ease;
}

.veloraAllrecords a:hover{
    color:#e14d67; /* hover rengi */
    text-decoration:underline;
}

.veloraRecordInfo{
    text-align:center;
    font-size:13px;
    color:#666;
    margin-top:8px;
    margin-bottom:0;
}

.veloraRecordInfo strong{
    color:#333;
    font-weight:600;
}

.veloraPagination .pagination{
    gap:0;
}

.veloraPagination .page-link{
    border:1px solid #e5e7eb;
    background:#fff;
    color:#555;
    padding:6px 14px;
    font-size:13px;
    border-radius:0;
    margin-left:-1px; /* kutular birleşir */
    transition:all .2s ease;
}

.veloraPagination .page-item:first-child .page-link{
    margin-left:0;
}

.veloraPagination .page-link:hover{
    background:#f8f9fb;
    color:#e14d67;
}

.veloraPagination .page-item.active .page-link{
    background:#e14d67;
    border-color:#e14d67;
    color:#fff;
    font-weight:600;
}

.veloraPagination .page-item.disabled .page-link{
    color:#bbb;
    background:#fafafa;
}

.veloraPagination .page-link:focus{
    box-shadow:none;
}

.veloraNoRecord{
    border:1px solid #e5e7eb;
    background:#fafafa;
    padding:25px;
    text-align:center;
    margin:10px 0;
}

.veloraNoRecord .title{
    font-size:15px;
    font-weight:600;
    color:#333;
    margin-bottom:5px;
}

.veloraNoRecord .desc{
    font-size:13px;
    color:#777;
}

/* ==========================================================
   YILDIZLI PUANLAMA SİSTEMİ - Minimalist ve Modern
========================================================= */

.star-rating-wrapper {
    display: flex;
    align-items: center;        /* dikey ortalama */
    justify-content: flex-start;/* desktopta sola hizalı */
    gap: 10px;                  /* metin ve yıldızlar arası boşluk */
    margin-bottom: 8px;
    margin-left: 17px;          /* desktopta soldan boşluk */
}

.star-rating-wrapper.error {
    border: 2px solid red;
    border-radius: 6px;
    padding: 6px;
}

.star-rating {
    display: flex;
    gap: 8px;
    cursor: pointer;
}

.star {
    font-size: 28px;
    color: #ccc;                /* Başlangıçta gri görünür */
    transition: all 0.2s ease;
    user-select: none;
    cursor: pointer;
}

.star.active {
    color: #ffd700;             /* Seçili yıldızlar altın sarısı */
}

.star.hover,
.star:hover {
    color: #ffd700;
    opacity: 0.8;
    transform: scale(1.1);
}

.rating-text {
    color: #adb2b7;             /* metin rengi her iki tarafta da aynı */
    font-size: 15px;            /* büyütülmüş punto */
    font-weight: 500;
}

/* Responsive mobil */
@media (max-width: 768px) {
    .star-rating-wrapper {
        justify-content: center; /* mobilde ortalı */
        flex-direction: column;  /* metin üstte, yıldızlar altta */
        gap: 4px;                /* aradaki boşluk daraltıldı */
        margin-left: 0;          /* mobilde soldan boşluk kaldırıldı */
    }

    .star {
        font-size: 36px;         /* %30 büyütülmüş (28px → 36px) */
    }

    .rating-text {
        text-align: center;
        font-size: 18px;         /* mobilde de büyük punto */
    }
}

@media (max-width: 480px) {
    .star {
        font-size: 36px;         /* küçük ekranlarda da büyütülmüş */
    }

    .rating-text {
        font-size: 18px;         /* küçük ekranda da büyük punto */
    }
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li {
  margin-right: 8px;
  position: relative;
}

.breadcrumb li + li:before {
  content: "›"; /* veya "/" ya da istediğin ikon */
  margin-right: 8px;
  color: #999;
}

/* Mobil Menü Sosyal Medya */
.mobile-menu-social { display: none !important; }
@media only screen and (max-width: 991px) {
    .mobile-menu-social { display: block !important; }
}