/* Navbar Renk Güncellemesi - Beyaz/Bulutsu */
.header__bottom {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Navbar menü linkleri - Turuncu */
.header .main-menu li a {
    color: #333 !important;
    transition: color 0.3s ease;
}

.header .main-menu li a:hover,
.header .main-menu li a:focus,
.header .main-menu li.active a {
    color: #ff6b35 !important;
    text-shadow: none !important;
}

/* Navbar butonları - Turuncu */
.header .btn--base,
.header .btn-md.btn--base {
    background: #ff6b35 !important;
    border-color: #ff6b35 !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.header .btn--base:hover,
.header .btn-md.btn--base:hover {
    background: #e55a2b !important;
    border-color: #e55a2b !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Logo Boyut ve Boşluk Düzeltmeleri */
.header .site-logo.site-title {
    margin-right: 1.5rem !important;
    display: flex;
    align-items: center;
}

.header .site-logo img {
    max-width: 200px !important;
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

/* Menü ile logo arasındaki boşluğu azalt */
.header .main-menu {
    margin-left: 1.5rem !important;
}

/* Mobil için logo ayarları */
@media (max-width: 1199px) {
    .header .site-logo img {
        max-width: 160px !important;
        max-height: 50px !important;
    }
    .header .site-logo.site-title {
        margin-right: 1rem !important;
    }
    .header .main-menu {
        margin-left: 1rem !important;
    }
}

@media (max-width: 767px) {
    .header .site-logo img {
        max-width: 140px !important;
        max-height: 45px !important;
    }
    .header .site-logo.site-title {
        margin-right: 1rem !important;
    }
}

/* Modern Ürün Kartları */
.modern-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.modern-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-card__image-wrapper,
.modern-product-card .product-card__image-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border-radius: 8px 8px 0 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    border-bottom: 1px solid #e9ecef !important;
}

.product-card__image,
.modern-product-card .product-card__image,
.product-card__image-wrapper img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: transparent !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    border-radius: 4px !important;
}

.modern-product-card:hover .product-card__image {
    transform: scale(1.05);
}

/* Ürün detay sayfası görsel iyileştirmeleri - Modern ve Dengeli Tasarım */
.company-overview__thumb {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    aspect-ratio: 1 / 1 !important;
    min-height: 400px !important;
    max-height: 500px !important;
    border: 1px solid #e9ecef !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.company-overview__thumb:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-4px) !important;
}

.company-overview__thumb img,
.company-overview__thumb .product-detail-image {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 8px !important;
    display: block !important;
    margin: 0 auto !important;
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    image-rendering: high-quality !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08)) !important;
}

.company-overview__thumb:hover img,
.company-overview__thumb:hover .product-detail-image {
    transform: scale(1.05) !important;
}

/* Desktop - Daha büyük görsel alanı */
@media (min-width: 992px) {
    .company-overview__thumb {
        aspect-ratio: 1 / 1 !important;
        min-height: 450px !important;
        max-height: 550px !important;
        padding: 35px !important;
    }
    
    .company-overview__thumb img,
    .company-overview__thumb .product-detail-image {
        max-width: 100% !important;
        max-height: 100% !important;
    }
}

/* Tablet için optimize */
@media (max-width: 991px) {
    .company-overview__thumb {
        aspect-ratio: 1 / 1 !important;
        min-height: 400px !important;
        max-height: 450px !important;
        padding: 25px !important;
        border-radius: 12px !important;
    }
    
    .company-overview__thumb img,
    .company-overview__thumb .product-detail-image {
        max-width: 100% !important;
        max-height: 100% !important;
    }
}

/* Mobil için optimize - Tam genişlik, üstte */
@media (max-width: 768px) {
    .company-overview__thumb {
        aspect-ratio: 1 / 1 !important;
        min-height: 350px !important;
        max-height: 400px !important;
        padding: 20px !important;
        border-radius: 12px !important;
        margin-bottom: 24px !important;
    }
    
    .company-overview__thumb img,
    .company-overview__thumb .product-detail-image {
        max-width: 100% !important;
        max-height: 100% !important;
    }
}

/* Küçük mobil cihazlar */
@media (max-width: 480px) {
    .company-overview__thumb {
        aspect-ratio: 1 / 1 !important;
        min-height: 300px !important;
        max-height: 350px !important;
        padding: 16px !important;
        border-radius: 10px !important;
        margin-bottom: 20px !important;
    }
    
    .company-overview__thumb img,
    .company-overview__thumb .product-detail-image {
        max-width: 100% !important;
        max-height: 100% !important;
    }
}

/* Mobil için optimize edilmiş görsel boyutları */
@media (max-width: 991px) {
    .product-card__image-wrapper {
        height: 240px !important;
        min-height: 240px !important;
        max-height: 240px !important;
        padding: 16px !important;
    }
}

@media (max-width: 768px) {
    .product-card__image-wrapper {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
        padding: 14px !important;
    }
}

@media (max-width: 480px) {
    .product-card__image-wrapper {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        padding: 12px !important;
    }
}

.product-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-card__badge--owner {
    background: #ff6b35;
    color: #fff;
}

.product-card__badge i {
    font-size: 16px;
}

.product-card__rating-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
}

.product-card__rating-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
}

.product-card__rating-badge .rating-number {
    font-weight: 600;
    color: #333;
}

.product-card__body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__header {
    margin-bottom: 0.75rem;
}

.product-card__title {
    margin: 0 0 0.4rem 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-card__title a {
    color: #1a2036;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card__title a:hover {
    color: #ff6b35;
}

.product-card__category {
    margin: 0;
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-card__category i {
    font-size: 0.75rem;
    color: #ff6b35;
}

.product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.product-card__reviews,
.product-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-card__reviews i {
    color: #ffc107;
    font-size: 0.9rem;
}

.product-card__location i {
    color: #6c757d;
    font-size: 0.9rem;
}

.product-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.product-tag {
    background: #f8f9fa;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.product-tag:hover {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.product-tag--more {
    background: #e9ecef;
    color: #6c757d;
    font-weight: 600;
}

.product-card__footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.8rem;
    color: #adb5bd;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-card__date i {
    font-size: 0.75rem;
}

/* Mobil Optimizasyonları */
@media (max-width: 991px) {
    .product-card__body {
        padding: 0.875rem;
    }
    
    .product-card__title {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .modern-product-card {
        border-radius: 10px;
    }
    
    .product-card__body {
        padding: 0.75rem;
    }
    
    .product-card__title {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }
    
    .product-card__category {
        font-size: 0.75rem;
    }
    
    .product-card__meta {
        font-size: 0.75rem;
        gap: 0.6rem;
        margin-bottom: 0.4rem;
    }
    
    .product-card__tags {
        gap: 0.35rem;
        margin-bottom: 0.4rem;
    }
    
    .product-tag {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }
    
    .product-card__footer {
        font-size: 0.7rem;
        padding-top: 0.4rem;
    }
    
    .product-card__badge {
        width: 28px;
        height: 28px;
        top: 6px;
        right: 6px;
    }
    
    .product-card__badge i {
        font-size: 12px;
    }
    
    .product-card__rating-badge {
        padding: 4px 8px;
        font-size: 0.75rem;
        bottom: 6px;
        left: 6px;
    }
}

@media (max-width: 575px) {
    .product-card__body {
        padding: 0.65rem;
    }
    
    .product-card__meta {
        flex-direction: column;
        gap: 0.4rem;
    }
}

/* Hamburger Menü Düzeltmeleri - Beyaz Navbar İçin */
.navbar-toggler {
    border: 2px solid #333 !important;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.25) !important;
    outline: none;
}

.menu-toggle {
    color: #333 !important;
    border-top-color: #333 !important;
    border-bottom-color: #333 !important;
}

.menu-toggle:before,
.menu-toggle:after {
    background-color: #333 !important;
}

/* Mobilde hamburger menü görünürlüğü */
@media (max-width: 1199px) {
    .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .menu-toggle {
        color: #333 !important;
        border-top-color: #333 !important;
        border-bottom-color: #333 !important;
    }
    
    .menu-toggle:before,
    .menu-toggle:after {
        background-color: #333 !important;
    }
    
    /* Mobil menü yazı renkleri - Beyaz navbar için */
    .navbar-collapse {
        background: #fff !important;
        border-top: 1px solid #e9ecef;
        margin-top: 1rem;
        padding: 1rem 0;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .header .main-menu li a {
        color: #333 !important;
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }
    
    .header .main-menu li a:hover,
    .header .main-menu li a:focus {
        color: #ff6b35 !important;
        background: #f8f9fa;
        padding-left: 1.25rem !important;
    }
    
    .header .main-menu li.active a {
        color: #ff6b35 !important;
        background: #fff5f2;
        font-weight: 600;
    }
    
    /* Sub-menu (açılır menü) stilleri */
    .header .main-menu li .sub-menu {
        background: #f8f9fa !important;
        border: 1px solid #e9ecef;
        border-radius: 6px;
        margin: 0.5rem 1rem;
        padding: 0.5rem 0 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .header .main-menu li .sub-menu li {
        border-bottom: 1px solid #e9ecef !important;
    }
    
    .header .main-menu li .sub-menu li:last-child {
        border-bottom: none !important;
    }
    
    .header .main-menu li .sub-menu li a {
        color: #495057 !important;
        padding: 0.625rem 1.25rem !important;
        font-size: 0.9rem;
    }
    
    .header .main-menu li .sub-menu li a:hover {
        color: #ff6b35 !important;
        background: #fff !important;
        padding-left: 1.5rem !important;
    }
    
    /* Menü ikonları (plus işaretleri) */
    .header .main-menu li.menu_has_children > a::before {
        color: #6c757d !important;
    }
    
    .header .main-menu li.menu_has_children:hover > a::before,
    .header .main-menu li.menu_has_children.open > a::before {
        color: #ff6b35 !important;
    }
    
    /* Nav-right butonları mobilde */
    .header .nav-right {
        padding: 1rem;
        border-top: 1px solid #e9ecef;
        margin-top: 0.5rem;
    }
    
    .header .nav-right .btn--base {
        width: 100%;
        margin: 0.5rem 0 !important;
        justify-content: center;
    }
    
    /* Mobil Ürün Ekle Butonu */
    .mobile-add-product-btn {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.75rem !important;
        white-space: nowrap;
        border-radius: 6px;
        font-weight: 500;
    }
    
    .mobile-add-product-btn i {
        font-size: 0.875rem;
    }
}

/* Çok küçük ekranlar için buton ayarı */
@media (max-width: 575px) {
    .mobile-add-product-btn {
        font-size: 0.7rem !important;
        padding: 0.35rem 0.6rem !important;
    }
    
    .mobile-add-product-btn i {
        font-size: 0.8rem;
        margin-right: 0.25rem !important;
    }
    
    /* Buton metnini kısalt */
    .mobile-add-product-btn {
        min-width: auto;
    }
}

/* Modern Banner Başlık Stilleri */
.hero__title--modern {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.02em;
}

.hero__title--modern .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e8f4f8 25%, #f0f8ff 50%, #e6f3ff 75%, #f5f9ff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradientShift 8s ease infinite;
    /* Minimal, profesyonel okunabilirlik efekti */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero__description--modern {
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.6 !important;
    max-width: 90%;
}

/* Banner arka plan overlay - daha iyi okunabilirlik için */
.hero {
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero > .container {
    position: relative;
    z-index: 2;
}

/* Mobil optimizasyonlar */
@media (max-width: 991px) {
    .hero__title--modern {
        font-size: 2.5rem !important;
    }
    
    .hero__description--modern {
        font-size: 1.1rem !important;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero__title--modern {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    .hero__description--modern {
        font-size: 1rem !important;
    }
    
    .hero__title--modern .gradient-text {
        filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
    }
}

@media (max-width: 575px) {
    .hero__title--modern {
        font-size: 1.75rem !important;
    }
    
    .hero__description--modern {
        font-size: 0.95rem !important;
    }
    
    .hero__title--modern .gradient-text {
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    }
}

/* Giriş Sayfası Logo Görünürlük Düzeltmesi */
.account-section .right .top {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 2rem !important;
}

.account-logo {
    display: inline-block !important;
    width: auto !important;
    text-align: center !important;
    padding: 1rem 2rem !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.account-logo img {
    filter: brightness(0) invert(1) !important;
    max-height: 70px !important;
    max-width: 220px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Logo yüklenemezse site adını göster */
.account-logo[data-fallback="true"] img {
    display: none !important;
}

.account-logo[data-fallback="true"] .logo-fallback {
    display: block !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-align: center !important;
}

/* Giriş Sayfası Buton Düzeni */
.account-form .d-flex.gap-2 {
    gap: 0.75rem !important;
}

.account-form .btn-outline--base {
    border: 2px solid var(--base-color);
}

/* Footer Logo Arkaplan Stili - Login sayfasındaki gibi */
.footer .footer-widget .footer-logo,
.footer .site-logo.footer-logo,
.footer .footer-logo,
.footer .col-lg-4 .footer-widget .site-logo,
.footer .col-lg-4 .footer-widget a.site-logo {
    display: inline-block !important;
    padding: 1.2rem 2.5rem !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    margin-bottom: 1.5rem !important;
    text-decoration: none !important;
    position: relative !important;
    z-index: 1 !important;
}

.footer .footer-widget .footer-logo img,
.footer .site-logo.footer-logo img,
.footer .footer-logo img,
.footer .col-lg-4 .footer-widget .site-logo img,
.footer .col-lg-4 .footer-widget a.site-logo img {
    filter: brightness(0) invert(1) !important;
    max-height: 70px !important;
    max-width: 240px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}
    color: var(--base-color);
    background: transparent;
    transition: all 0.3s ease;
}

.account-form .btn-outline--base:hover {
    background: var(--base-color);
    color: #fff;
    transform: translateY(-1px);
}

/* Modern İnceleme Kartları */
/* Yorum Kartları - Kompakt ve Modern Tasarım */
.customer-review,
.customer-review.customer-review {
    background: #fff !important;
    border-radius: 10px !important;
    padding: 0.75rem !important;
    margin-bottom: 0.75rem !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex !important;
    gap: 0.75rem !important;
    justify-content: flex-start !important;
}

.customer-review:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.customer-review__thumb,
.customer-review .customer-review__thumb {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    overflow: hidden;
    flex-shrink: 0 !important;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.customer-review:hover .customer-review__thumb {
    border-color: var(--base-color, #ff6b35);
    transform: scale(1.03);
}

.customer-review__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-review__content,
.customer-review .customer-review__content {
    width: calc(100% - 60px) !important;
    padding: 0 !important;
    background-color: transparent !important;
    background: transparent !important;
    flex: 1;
    margin: 0 !important;
}

.customer-review__header {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 1px solid #f0f0f0;
}

.customer-review__header .left h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.customer-review__header .left span {
    font-size: 0.75rem;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.customer-review__header .left span i {
    font-size: 0.8rem;
}

.customer-review__body,
.customer-review .customer-review__body {
    margin-bottom: 0.5rem !important;
    padding: 0 !important;
}

.customer-review__body p {
    color: #34495e;
    line-height: 1.6;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Pros/Cons Modern Tasarım */
.review-pros-cons-modern {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-pros-cons-modern h6 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.review-pros-cons-modern ul {
    margin: 0;
    padding-left: 0;
}

.review-pros-cons-modern ul li {
    font-size: 0.8rem;
    padding: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1.4;
}

.review-pros-cons-modern ul li i {
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Görseller Modern Tasarım - Kompakt ve Yan Yana */
.review-images-modern {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-images-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 100%;
}

.review-image-link {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
}

.review-image-modern {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

.review-image-link:hover .review-image-modern {
    transform: scale(1.05);
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Pros/Cons Kompakt Tasarım (Eski - Geriye dönük uyumluluk için) */
.review-pros-cons {
    background: #f8f9fa !important;
    border-radius: 6px !important;
    padding: 0.5rem !important;
    margin-top: 0.5rem !important;
}

.review-pros-cons h6 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.review-pros-cons ul {
    margin: 0;
    padding-left: 0;
}

.review-pros-cons ul li {
    font-size: 0.8rem;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1.4;
}

.review-pros-cons ul li i {
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Görseller Kompakt Tasarım */
.review-images {
    margin-top: 0.5rem !important;
    padding-top: 0.5rem !important;
    border-top: 1px solid #f0f0f0;
}

.review-images h6 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.review-image-thumb {
    width: 100% !important;
    height: 70px !important;
    object-fit: cover;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.review-image-thumb:hover {
    transform: scale(1.03);
    border-color: var(--base-color, #ff6b35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Footer Butonları Kompakt Tasarım */
.customer-review__footer {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem !important;
    border-top: 1px solid #f0f0f0;
    margin-top: 0.5rem !important;
}

.customer-review__action-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.75rem;
}

.customer-review__action-list li button {
    background: none;
    border: none;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.customer-review__action-list li:first-child button {
    color: var(--base-color, #ff6b35);
    background: rgba(255, 107, 53, 0.1);
}

.customer-review__action-list li:first-child button:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

.customer-review__action-list li:last-child button {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.customer-review__action-list li:last-child button:hover {
    background: rgba(231, 76, 60, 0.2);
    transform: translateY(-1px);
}

.customer-review__action-list li button i {
    font-size: 0.9rem;
}

/* Mobil Optimizasyon */
@media (max-width: 767px) {
    .modern-review-card {
        padding: 0.75rem !important;
        border-radius: 8px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .review-header-section {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .review-rating-section {
        align-self: flex-start;
    }
    
    .review-user-info {
        width: 100%;
    }
    
    .review-avatar {
        width: 40px;
        height: 40px;
    }
    
    .review-user-name {
        font-size: 0.85rem;
    }
    
    .review-date {
        font-size: 0.7rem;
    }
    
    .review-text-short,
    .review-text-full {
        font-size: 0.8rem;
    }
    
    .review-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .action-btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .review-images-grid {
        gap: 0.4rem;
    }
    
    .review-image-link {
        width: 60px;
        height: 60px;
    }
    
    .review-image-modern {
        width: 60px;
        height: 60px;
    }
    
    .review-pros-cons-modern {
        padding: 0.5rem;
    }
    
    .review-pros-cons-modern .row {
        flex-direction: column;
    }
    
    .customer-review {
        padding: 0.6rem !important;
        border-radius: 8px !important;
        margin-bottom: 0.6rem !important;
        gap: 0.6rem !important;
    }
    
    .customer-review__thumb {
        width: 38px !important;
        height: 38px !important;
    }
    
    .customer-review__content {
        width: calc(100% - 50px) !important;
    }
    
    .customer-review__header {
        flex-direction: column !important;
        gap: 0.4rem !important;
        margin-bottom: 0.4rem !important;
        padding-bottom: 0.4rem !important;
    }
    
    .customer-review__header .left h6 {
        font-size: 0.85rem !important;
        margin-bottom: 0.15rem !important;
    }
    
    .customer-review__header .left span {
        font-size: 0.7rem !important;
    }
    
    .customer-review__header .right {
        align-self: flex-start !important;
    }
    
    .customer-review__body {
        margin-bottom: 0.4rem !important;
    }
    
    .customer-review__body p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0 !important;
    }
    
    .customer-review__footer {
        flex-direction: column !important;
        gap: 0.4rem !important;
        align-items: stretch !important;
        padding-top: 0.4rem !important;
        margin-top: 0.4rem !important;
    }
    
    .customer-review__action-list {
        flex-direction: column !important;
        gap: 0.3rem !important;
        width: 100% !important;
    }
    
    .customer-review__action-list li {
        width: 100% !important;
    }
    
    .customer-review__action-list li button {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.4rem !important;
        font-size: 0.75rem !important;
    }
    
    .review-image-thumb {
        height: 60px !important;
    }
    
    .review-pros-cons {
        padding: 0.4rem !important;
        margin-top: 0.4rem !important;
    }
    
    .review-pros-cons h6 {
        font-size: 0.7rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .review-pros-cons ul li {
        font-size: 0.7rem !important;
        padding: 0.15rem 0 !important;
    }
    
    .review-images {
        margin-top: 0.4rem !important;
        padding-top: 0.4rem !important;
    }
    
    .review-images h6 {
        font-size: 0.75rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .review-pros-cons .row {
        flex-direction: column !important;
    }
}

/* ============================================
   PROFESYONEL YORUM KARTI TASARIMI
   ============================================ */

.modern-review-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.modern-review-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.review-header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #f0f0f0;
}

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

.review-user-details {
    flex: 1;
    min-width: 0;
}

.review-user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.review-date {
    font-size: 0.75rem;
    color: #7f8c8d;
}

.review-rating-section {
    flex-shrink: 0;
}

.review-rating-section .ratings {
    font-size: 0.9rem;
}

.review-content-section {
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
}

.review-text-wrapper {
    margin-bottom: 0.5rem;
}

.review-text-short,
.review-text-full {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 0.25rem;
}

.btn-read-more {
    font-size: 0.8rem !important;
    color: #007bff !important;
    cursor: pointer;
    text-decoration: underline;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.btn-read-more:hover {
    color: #0056b3 !important;
}

/* Review Interactions - Modern Tasarım - Alt Kısımda */
.review-interactions-section {
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
    margin-top: 0.75rem;
    order: 999; /* En alta taşı */
}

.review-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-btn:hover {
    background: #f8f9fa;
    border-color: #d0d0d0;
    transform: translateY(-1px);
}

.action-btn i {
    font-size: 0.9rem;
}

.action-btn.like-btn.active {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.action-btn.like-btn.active:hover {
    background: #218838;
    border-color: #218838;
}

.action-count {
    font-weight: 500;
    font-size: 0.8rem;
}

.review-owner-actions {
    display: flex;
    gap: 1rem;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
}

.action-link {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.25rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-link:hover {
    color: #495057;
    text-decoration: underline;
}

.action-link i {
    font-size: 0.85rem;
}

/* Review Interactions - Like/Dislike ve Cevap */
.customer-review__interactions {
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
    margin-top: 0.5rem;
}

.customer-review__interactions .d-flex {
    gap: 0.5rem !important;
}

.customer-review__interactions .btn {
    font-size: 0.75rem !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    white-space: nowrap;
    border-width: 1px !important;
}

.customer-review__interactions .btn i {
    font-size: 0.85rem !important;
    margin: 0 !important;
}

.customer-review__interactions .btn span {
    font-size: 0.75rem !important;
    font-weight: 500;
}

.customer-review__interactions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.customer-review__interactions .btn-success,
.customer-review__interactions .btn-outline-success {
    color: #28a745 !important;
    border-color: #28a745 !important;
}

.customer-review__interactions .btn-success {
    background-color: #28a745 !important;
    color: white !important;
}

.customer-review__interactions .btn-outline-success:hover {
    background-color: #28a745 !important;
    color: white !important;
}

.customer-review__interactions .btn-danger,
.customer-review__interactions .btn-outline-danger {
    color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.customer-review__interactions .btn-danger {
    background-color: #dc3545 !important;
    color: white !important;
}

.customer-review__interactions .btn-outline-danger:hover {
    background-color: #dc3545 !important;
    color: white !important;
}

.customer-review__interactions .btn-outline-primary {
    color: #007bff !important;
    border-color: #007bff !important;
}

.customer-review__interactions .btn-outline-primary:hover {
    background-color: #007bff !important;
    color: white !important;
}

.review-replies-container {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.replies-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 0.5rem;
}

.reply-item {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.reply-item:last-child {
    margin-bottom: 0;
}

.reply-form .input-group {
    margin-top: 0.5rem;
}

.reply-form .form-control-sm {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
}

.reply-form .btn-sm {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
}

@media (max-width: 767px) {
    .customer-review__interactions {
        padding-top: 0.4rem;
        margin-top: 0.4rem;
    }
    
    .customer-review__interactions .d-flex {
        flex-wrap: wrap;
        gap: 0.4rem !important;
    }
    
    .customer-review__interactions .btn {
        font-size: 0.7rem !important;
        padding: 0.2rem 0.4rem !important;
        flex: 1;
        min-width: auto;
        justify-content: center;
    }
    
    .customer-review__interactions .btn i {
        font-size: 0.8rem !important;
    }
    
    .customer-review__interactions .btn span {
        font-size: 0.7rem !important;
    }
    
    .replies-list {
        max-height: 200px;
    }
    
    .reply-item {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
}

/* Custom Lightbox Navigation Butonları */
.custom-lightbox-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10000;
}

.custom-lb-prev,
.custom-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2c3e50;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 10001;
    cursor: pointer;
}

.custom-lb-prev {
    left: 20px;
}

.custom-lb-next {
    right: 20px;
}

.custom-lb-prev:hover,
.custom-lb-next:hover {
    background: rgba(255, 107, 53, 0.95);
    color: #fff;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.custom-lb-prev i,
.custom-lb-next i {
    font-size: 24px;
    line-height: 1;
}

/* Mobil için navigation butonları */
@media (max-width: 767px) {
    .custom-lb-prev,
    .custom-lb-next {
        width: 45px;
        height: 45px;
    }
    
    .custom-lb-prev {
        left: 10px;
    }
    
    .custom-lb-next {
        right: 10px;
    }
    
    .custom-lb-prev i,
    .custom-lb-next i {
        font-size: 20px;
    }
}

/* ============================================
   PROFESYONEL YORUM KARTI TASARIMI - YENİ
   ============================================ */

.modern-review-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s;
}

.modern-review-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

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

.review-user-info {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-stars {
    flex-shrink: 0;
}

.review-stars .ratings {
    font-size: 14px;
}

/* Body */
.review-body {
    margin-bottom: 12px;
}

.review-text {
    margin-bottom: 12px;
}

.review-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.btn-read-more {
    font-size: 13px;
    color: #007bff;
    background: none;
    border: none;
    padding: 0;
    margin-top: 4px;
    cursor: pointer;
    text-decoration: underline;
}

.btn-read-more:hover {
    color: #0056b3;
}

/* Pros/Cons */
.review-pros-cons {
    margin: 12px 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.pros-list,
.cons-list {
    flex: 1;
    min-width: 200px;
}

.label-pros,
.label-cons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.label-pros {
    color: #28a745;
}

.label-cons {
    color: #dc3545;
}

.pros-list ul,
.cons-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li,
.cons-list li {
    font-size: 13px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

.pros-list li {
    color: #28a745;
}

.cons-list li {
    color: #dc3545;
}

.pros-list li i,
.cons-list li i {
    font-size: 14px;
    flex-shrink: 0;
}

/* Resimler - Yan Yana Küçük Thumbnail'lar */
.review-images {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.review-img {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    flex-shrink: 0;
    transition: all 0.2s;
}

.review-img:hover {
    border-color: #007bff;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

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

/* Footer */
.review-footer {
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.review-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-like,
.btn-dislike,
.btn-reply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 6px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-like:hover,
.btn-dislike:hover,
.btn-reply:hover {
    background: #f8f9fa;
    border-color: #ddd;
}

.btn-like.active {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.btn-like.active:hover {
    background: #218838;
    border-color: #218838;
}

.btn-dislike.active {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.btn-dislike.active:hover {
    background: #c82333;
    border-color: #c82333;
}

.btn-like i,
.btn-dislike i,
.btn-reply i {
    font-size: 14px;
}

.reply-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #007bff;
    color: #fff;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 4px;
    line-height: 1;
}

/* Cevap Alanı */
.review-replies {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.replies-list {
    margin-bottom: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.reply-item {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid #e9ecef;
}

.reply-item:last-child {
    margin-bottom: 0;
}

.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.reply-user-name {
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.reply-date {
    font-size: 11px;
    color: #999;
}

.reply-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.reply-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e9ecef;
}

.btn-reply-like,
.btn-reply-dislike {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 4px;
    font-size: 11px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-reply-like:hover,
.btn-reply-dislike:hover {
    background: #f8f9fa;
    border-color: #ddd;
}

.btn-reply-like.active {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.btn-reply-like.active:hover {
    background: #218838;
    border-color: #218838;
}

.btn-reply-dislike.active {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.btn-reply-dislike.active:hover {
    background: #c82333;
    border-color: #c82333;
}

.btn-reply-like i,
.btn-reply-dislike i {
    font-size: 12px;
}

.reply-input-group {
    display: flex;
    gap: 8px;
}

.reply-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 13px;
}

.reply-input:focus {
    outline: none;
    border-color: #007bff;
}

.btn-send {
    padding: 8px 16px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-send:hover {
    background: #0056b3;
}

/* Sahip İşlemleri */
.review-owner-actions {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 16px;
}

.btn-edit,
.btn-delete {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.btn-edit:hover,
.btn-delete:hover {
    color: #333;
    text-decoration: underline;
}

.btn-edit i,
.btn-delete i {
    font-size: 14px;
}

/* Mobil */
@media (max-width: 767px) {
    .modern-review-card {
        padding: 12px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .review-stars {
        align-self: flex-start;
    }
    
    .review-avatar {
        width: 36px;
        height: 36px;
    }
    
    .review-name {
        font-size: 13px;
    }
    
    .review-date {
        font-size: 11px;
    }
    
    .review-text p {
        font-size: 13px;
    }
    
    .review-pros-cons {
        flex-direction: column;
        gap: 12px;
    }
    
    .pros-list,
    .cons-list {
        min-width: 100%;
    }
    
    .review-img {
        width: 56px;
        height: 56px;
    }
    
    .review-actions {
        gap: 8px;
    }
    
    .btn-like,
    .btn-reply {
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* Ürün Görselleri Optimizasyonu - Kaldırıldı (yukarıda zaten tanımlı) */

