.page-title {
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.gorseller-baslik {
    font-size: 1.50rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.7rem;
    margin-top: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: block;
    width: 100%;
}
.gorseller-baslik::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.content-area {
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-area img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.card {
    transition: transform 0.3s ease;
    max-width: 280px;
    margin: 0 auto;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
}

.image-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
    overflow: hidden;
    border-radius: 8px;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Lightbox Stilleri */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    cursor: pointer;
    overflow: hidden;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 1 !important;
    visibility: visible !important;
}

.lb-nav a.lb-prev {
    left: 0;
}

.lb-nav a.lb-next {
    right: 0;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 0.8 !important;
}

/* Sayfa açılış animasyonu */
.page-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: pageFadeInAnim 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes pageFadeInAnim {
    to {
        opacity: 1;
        transform: none;
    }
} 
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    .page-title {
        font-size: 1.5rem;
    }
}