@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- TASARIM SİSTEMİ VE DEĞİŞKENLER --- */
:root {
    /* Renk Paleti (HSL) */
    --primary: hsl(5, 75%, 48%);
    --primary-hover: hsl(5, 75%, 40%);
    --primary-light: hsl(5, 75%, 96%);
    --accent: hsl(35, 100%, 50%);
    
    --text-main: hsl(220, 15%, 15%);
    --text-muted: hsl(220, 10%, 45%);
    --text-light: hsl(220, 10%, 65%);
    
    --bg-main: hsl(0, 0%, 100%);
    --bg-sec: hsl(30, 20%, 98%); /* Sıcak krem-bej zemin */
    --bg-cream-tint: hsl(15, 60%, 97%); /* Görseldeki alt bej/pembe ton */
    --bg-card: hsl(0, 0%, 100%);
    
    --border-color: hsl(220, 10%, 92%);
    --border-focus: hsl(5, 75%, 75%);
    
    /* Tipografi */
    --font-head: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Gölgeler (Premium & Soft Shadows) */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    
    /* Kenar Yuvarlaklıkları */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Geçiş Efektleri */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease;
    
    /* Maksimum Genişlik */
    --max-width: 1200px;
}

/* --- RESET & TEMEL KURALLAR --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.015em; /* Premium tightened body text */
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.03em; /* Sleek tracking for elegant headings */
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

ul {
    list-style: none;
}

/* --- YARDIMCI SINIFLAR --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }

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

.section-padding {
    padding: 80px 0;
}

.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

/* --- BUTONLAR --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-head);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-main);
    box-shadow: 0 4px 12px rgba(200, 59, 43, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(200, 59, 43, 0.3);
}

.btn-outline {
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* --- HEADER & TOPBAR --- */
.topbar {
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-item strong {
    color: var(--text-main);
}

.topbar-socials {
    display: flex;
    gap: 16px;
}

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

.navbar {
    background-color: var(--bg-main);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--primary);
}

.logo span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-head);
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 6px 0;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* --- KAHRAMAN BÖLÜMÜ (HERO SECTION) --- */
.hero {
    position: relative;
    background: linear-gradient(135deg, hsl(0, 0%, 100%) 0%, hsl(210, 20%, 98%) 100%);
    padding: 100px 0 160px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-subtitle {
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-main);
    margin: 12px 0 20px 0;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.hero-bg-art {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
    animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- ARAMA KUTUSU (SEARCH BAR) --- */
.search-widget {
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    max-width: 780px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-color);
}

.search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    padding-left: 16px;
}

.search-tab-btn {
    padding: 8px 20px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: var(--transition);
    color: var(--text-muted);
}

.search-tab-btn.active {
    background-color: var(--primary-light);
    color: var(--primary);
}

.search-form {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 12px;
    align-items: center;
    background-color: var(--bg-sec);
    padding: 12px;
    border-radius: var(--radius-md);
}

.search-field {
    display: flex;
    flex-direction: column;
    padding: 0 12px;
    border-right: 1px solid var(--border-color);
}

.search-field:last-of-type {
    border-right: none;
}

.search-field label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.search-field input,
.search-field select {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    background: transparent;
    cursor: pointer;
}

.search-field input::placeholder {
    color: var(--text-light);
}

.search-btn {
    background-color: var(--primary);
    color: var(--bg-main);
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

/* --- KATEGORİ SEÇİM ALANI (APARTMENT TYPES) --- */
.categories-section {
    padding-top: 100px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin-top: 8px;
}

.view-all-link {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid transparent;
}

.view-all-link:hover {
    border-color: var(--primary);
    gap: 10px;
}

.categories-grid {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 110px;
    cursor: pointer;
}

.category-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
    border: 1px solid rgba(200, 59, 43, 0.1);
}

.category-card:hover .category-icon-wrapper {
    background-color: var(--primary);
    color: var(--bg-main);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(200, 59, 43, 0.3);
}

.category-name {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.category-card:hover .category-name {
    color: var(--primary);
}

/* --- NASIL YARDIM EDERİZ --- */
.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.help-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.help-card:nth-child(2) {
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 59, 43, 0.1);
}

.help-icon-wrapper {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: var(--primary);
    display: inline-flex;
}

.help-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.help-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* --- PROJELER GRID & KARTLAR --- */
.featured-section {
    background-color: var(--bg-cream-tint);
}

.featured-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

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

.listing-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.listing-img-wrapper {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.listing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.listing-card:hover .listing-img {
    transform: scale(1.06);
}

.listing-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.listing-badge {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-head);
    text-transform: uppercase;
}

.badge-price {
    background-color: var(--primary);
    color: var(--bg-main);
}

.badge-status {
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--bg-main);
    backdrop-filter: blur(4px);
}

.listing-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.listing-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.listing-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.listing-location i {
    color: var(--primary);
}

.listing-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 10px;
    padding-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: none !important;
    border-bottom: none !important;
}



.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feature-item strong {
    color: var(--text-main);
}

/* --- SAYFALAMA (PAGINATION) --- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.page-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.page-link:hover,
.page-link.active {
    background-color: var(--primary);
    color: var(--bg-main);
    border-color: var(--primary);
}

/* --- FOOTER --- */
.footer {
    background-color: hsl(220, 15%, 12%);
    color: hsl(0, 0%, 90%);
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--bg-main);
    margin-bottom: 20px;
}

.footer-brand .logo span {
    color: hsl(0, 0%, 60%);
}

.footer-desc {
    color: hsl(0, 0%, 70%);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-main);
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    background-color: var(--primary);
    color: var(--bg-main);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--bg-main);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: hsl(0, 0%, 75%);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-newsletter-text {
    color: hsl(0, 0%, 75%);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--bg-main);
}

.newsletter-form input::placeholder {
    color: hsl(0, 0%, 60%);
}

.newsletter-btn {
    background-color: var(--primary);
    color: var(--bg-main);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 0.85rem;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: hsl(0, 0%, 60%);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

/* --- PROJELER SAYFASI (PROJECTS.HTML) EK CSS --- */
.projects-header {
    background: linear-gradient(135deg, hsl(5, 75%, 96%) 0%, hsl(20, 20%, 98%) 100%);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-sidebar-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 50px 0 80px 0;
}

.filter-sidebar {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    position: sticky;
    top: 110px;
    height: fit-content;
    box-shadow: var(--shadow-sm);
}

.filter-group {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.price-range-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.range-inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.range-input-box {
    flex: 1;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px;
    font-size: 0.85rem;
    text-align: center;
}

.projects-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.results-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sort-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: 0.85rem;
    background-color: var(--bg-main);
    cursor: pointer;
}

/* --- DETAY SAYFASI (PROJECT-DETAIL.HTML) EK CSS --- */
.detail-gallery-section {
    padding: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item.main-image {
    grid-row: span 2;
}

.gallery-overlay-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--bg-main);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 80px;
}

.detail-main-info {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.detail-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.detail-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.detail-price {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 16px;
}

.detail-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background-color: var(--bg-sec);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.dashboard-item {
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.dashboard-item:last-child {
    border-right: none;
}

.dashboard-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.dashboard-value {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.detail-section {
    margin-bottom: 40px;
}

.detail-section-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.spec-label {
    color: var(--text-muted);
}

.spec-value {
    font-weight: 600;
    color: var(--text-main);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: var(--bg-sec);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.feature-tag i {
    color: #2e7d32; /* Yeşil çek işareti */
}

/* Kat Planları Bölümü */
.floor-plans-widget {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.floor-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.floor-tab-btn {
    padding: 10px 24px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.floor-tab-btn.active {
    background-color: var(--primary);
    color: var(--bg-main);
}

.floor-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
}

.floor-img-container {
    background-color: var(--bg-sec);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.floor-img {
    max-height: 300px;
    object-fit: contain;
}

.floor-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* İletişim Formu (Sticky Form) */
.agent-contact-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    position: sticky;
    top: 110px;
    height: fit-content;
    box-shadow: var(--shadow-md);
}

.agent-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.agent-photo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.agent-info h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
}

.agent-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
    background-color: var(--bg-sec);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: var(--bg-main);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 1024px) {
    .topbar {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        max-width: 600px;
        margin: 0 auto 30px auto;
    }

    .hero-image-wrapper {
        justify-content: center;
    }

    .search-widget {
        margin-top: 30px;
        box-shadow: var(--shadow-md);
    }

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

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

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

    .filter-sidebar-layout {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        position: relative;
        top: 0;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .agent-contact-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-main);
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        gap: 16px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .search-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .search-field {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 12px;
    }

    .search-field:last-of-type {
        border-bottom: none;
    }

    .search-btn {
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }

    .listings-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 250px;
    }

    .gallery-item {
        display: none;
    }

    .gallery-item.main-image {
        display: block;
        grid-row: auto;
    }

    .detail-dashboard {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .dashboard-item {
        border-right: none;
    }

    .dashboard-item:nth-child(odd) {
        border-right: 1px solid var(--border-color);
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

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

    .floor-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* --- NAV AUTHENTICATION BUTTONS --- */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-login:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .nav-auth {
        margin-top: 12px;
        width: 100%;
        justify-content: center;
        border-top: 1px solid var(--border-color);
        padding-top: 16px;
    }
}

/* --- HIZLI PEY MODALI (BID MODAL) --- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 480px;
    padding: 32px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.modal-backdrop.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    background: none;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.4;
}

.bid-details-panel {
    background-color: var(--bg-sec);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bid-detail-item {
    display: flex;
    flex-direction: column;
}

.bid-detail-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.bid-detail-val {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.bid-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.bid-tab-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-sec);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.bid-tab-btn.active {
    background-color: var(--primary);
    color: var(--bg-main);
    border-color: var(--primary);
}

.bid-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.bid-input-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.bid-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.bid-input-symbol {
    position: absolute;
    left: 16px;
    font-weight: 700;
    color: var(--text-muted);
}

.bid-input-field {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px 12px 36px;
    font-size: 1.2rem;
    font-weight: 700;
    background-color: var(--bg-sec);
    transition: var(--transition-fast);
}

.bid-input-field:focus {
    border-color: var(--primary);
    background-color: var(--bg-main);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* --- AUTH PAGES (LOGIN / REGISTER) --- */
.auth-layout {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, hsl(30, 20%, 98%) 0%, hsl(15, 60%, 97%) 100%);
}

.auth-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: inline-block;
}

.auth-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    display: block;
}

.auth-title {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
}

.auth-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 6px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.verification-warning {
    background-color: hsl(35, 100%, 97%);
    border: 1px solid hsl(35, 100%, 90%);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: hsl(35, 100%, 25%);
    line-height: 1.5;
    text-align: left;
}

.verification-warning i {
    margin-right: 8px;
    color: var(--accent);
}

/* --- YARDIMCI MÜZAYEDE TASARIMLARI --- */
.badge-countdown {
    background-color: hsl(35, 100%, 50%);
    color: white !important;
}

.listing-badge.badge-lot-no {
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--bg-main);
}

.listing-features .feature-item i {
    color: var(--primary);
}

.card-action {
    padding-top: 16px;
    margin-top: 16px;
}

.btn-block {
    width: 100%;
}

/* --- RESPONSIVE GRID HELPERS --- */
.listings-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .listings-grid-2col {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .detail-dashboard {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .dashboard-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 12px;
    }
    .dashboard-item:last-child {
        border-bottom: none !important;
        padding-bottom: 0;
    }
}

/* ==========================================================================
   AŞAMA 6: LOT DETAY SAYFASI ÖZEL STİLLERİ (PREMIUM & RESPONSIVE)
   ========================================================================== */

.breadcrumb-section {
    background-color: var(--bg-sec);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav {
    font-size: 0.85rem;
    color: var(--text-light);
}

.breadcrumb-nav a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.lot-detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* SOL SÜTUN */
.gallery-container {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: var(--bg-sec);
    margin-bottom: 16px;
}

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

.main-image-wrapper:hover .main-lot-img {
    transform: scale(1.05);
}

.zoom-icon-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.2s ease;
}

.zoom-icon-badge:hover {
    background-color: var(--primary);
}

.thumb-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.thumb-item {
    height: 90px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: var(--bg-sec);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.gold-certificate-card {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, hsl(35, 30%, 97%) 0%, hsl(30, 20%, 93%) 100%);
    border: 1px solid hsl(35, 40%, 80%);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    align-items: center;
}

.cert-icon {
    font-size: 2.2rem;
    color: hsl(35, 75%, 45%);
}

.cert-body h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: hsl(35, 75%, 25%);
    margin-bottom: 4px;
}

.cert-body p {
    font-size: 0.85rem;
    color: hsl(35, 20%, 35%);
    line-height: 1.4;
}

/* SEKMELİ KÜNYE */
.detail-tabs-wrapper {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.detail-tabs-header {
    display: flex;
    background-color: var(--bg-sec);
    border-bottom: 1px solid var(--border-color);
}

.detail-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 16px 20px;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    text-align: center;
}

.detail-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background-color: #fff;
}

.detail-tab-btn:hover:not(.active) {
    color: var(--text-main);
    background-color: rgba(0,0,0,0.02);
}

.detail-tabs-content {
    padding: 24px;
}

.detail-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

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

.provenance-table {
    width: 100%;
    border-collapse: collapse;
}

.provenance-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    vertical-align: top;
    line-height: 1.5;
}

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

.provenance-table td strong {
    color: var(--text-main);
    font-weight: 600;
    white-space: nowrap;
}

.condition-report-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.condition-rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-cream-tint);
    align-self: flex-start;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--primary-light);
}

.rating-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.rating-value {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.warning-alert-box {
    display: flex;
    gap: 12px;
    background-color: hsl(45, 80%, 96%);
    border: 1px solid hsl(45, 60%, 85%);
    border-radius: var(--radius-sm);
    padding: 14px;
    color: hsl(45, 85%, 25%);
    font-size: 0.8rem;
    line-height: 1.4;
    align-items: flex-start;
}

.warning-alert-box i {
    font-size: 1rem;
    margin-top: 2px;
}

.curator-comment-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.curator-avatar-small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.curator-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curator-comment-text h5 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-main);
}

.curator-title {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* SAĞ SÜTUN - STICKY PANEL */
.sticky-bid-panel {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lot-header-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.lot-number-tag {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.lot-main-title {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 10px;
}

.associated-auction {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.associated-auction a {
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
}

.associated-auction a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.lot-countdown-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-cream-tint);
    border: 1px dashed var(--primary-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.lot-countdown-box .countdown-timer {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
}

.bid-status-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.bid-dash-item {
    background-color: #fff;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dash-label {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dash-val {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}

.bid-action-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.bid-tabs-mini {
    display: flex;
    background-color: var(--bg-sec);
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.bid-tab-btn-mini {
    flex: 1;
    background: none;
    border: none;
    padding: 8px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.bid-tab-btn-mini.active {
    background-color: #fff;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.quick-increment-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.btn-increment {
    background-color: var(--bg-sec);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-increment:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.min-bid-warning {
    font-size: 0.72rem;
    color: var(--primary);
    margin-top: 6px;
    display: block;
    font-weight: 600;
}

.info-alert-text {
    display: flex;
    gap: 8px;
    background-color: var(--bg-sec);
    padding: 10px;
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 16px;
}

.info-alert-text i {
    font-size: 0.9rem;
    margin-top: 1px;
}

.expert-consultant-card {
    display: flex;
    gap: 16px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.expert-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.expert-label {
    font-size: 0.6rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.expert-details h4 {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 2px;
    margin-bottom: 4px;
}

.expert-contact {
    font-size: 0.75rem;
    color: var(--text-light);
}

.btn-xs {
    padding: 6px 10px;
    font-size: 0.75rem;
}

/* PEY GEÇMİŞİ TABLOSU */
.section-title-sm {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-container {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.bid-history-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.bid-history-table th {
    background-color: var(--bg-sec);
    padding: 14px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
}

.bid-history-table td {
    padding: 14px 20px;
    font-size: 0.85rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
}

.bid-history-table tr:last-child td {
    border-bottom: none;
}

.badge-leader {
    background-color: hsl(120, 60%, 93%);
    color: hsl(120, 80%, 25%);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid hsl(120, 40%, 80%);
}

.lot-title-link {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lot-title-link:hover {
    color: var(--primary);
}

/* RESPONSIVE LOT DETAY */
@media (max-width: 992px) {
    .lot-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .main-image-wrapper {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .bid-status-dashboard {
        grid-template-columns: 1fr;
        gap: 1px;
    }
    .bid-dash-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
    }
    .dash-label {
        font-size: 0.7rem;
    }
    .dash-val {
        font-size: 1rem;
    }
    .detail-tab-btn {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
    .curator-comment-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
}


