    /* Modern Alert Tasarımı */
    .modern-alert {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 20px;
        border-radius: 12px;
        border: 1px solid;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .modern-alert-danger {
        border-color: rgba(220, 53, 69, 0.3);
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    }
    
    .modern-alert-danger .alert-icon {
        color: #dc3545;
        flex-shrink: 0;
    }

    .modern-alert-warning {
        border-color: rgba(255, 193, 7, 0.3);
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    }
    
    .modern-alert-warning .alert-icon {
        color: #ffc107;
        flex-shrink: 0;
    }
    
    .alert-content {
        flex: 1;
    }
    
    .alert-title {
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .alert-subtitle {
        color: #b8c5d1;
        font-size: 12px;
        font-weight: 500;
    }

    /* Ünlem İşareti Animasyonu */
    .warning-icon {
        animation: warningPulse 1.5s ease-in-out infinite;
        transform-origin: center;
    }

    @keyframes warningPulse {
        0% {
            transform: scale(1) rotate(0deg);
            opacity: 1;
        }
        25% {
            transform: scale(1.1) rotate(-5deg);
            opacity: 0.8;
        }
        50% {
            transform: scale(1.2) rotate(5deg);
            opacity: 1;
        }
        75% {
            transform: scale(1.1) rotate(-3deg);
            opacity: 0.9;
        }
        100% {
            transform: scale(1) rotate(0deg);
            opacity: 1;
        }
    }
    
    /* Modern Button Tasarımı */
    .modern-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 20px;
        border-radius: 10px;
        border: 1px solid;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }
    
    .modern-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .modern-btn:hover::before {
        left: 100%;
    }
    
    .modern-btn-primary {
        background: linear-gradient(135deg, #ffc107, #ff8c00);
        border-color: #ffc107;
        color: #1a1a1a;
    }
    
    .modern-btn-primary:hover {
        background: linear-gradient(135deg, #ff8c00, #ffc107);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
        color: #1a1a1a;
    }
    
    .modern-btn-secondary {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.2);
        color: #ffffff;
    }
    
    .modern-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        color: #ffffff;
    }
    
    .modern-btn svg {
        flex-shrink: 0;
    }
    
    /* Responsive Tasarım */
    @media (max-width: 768px) {
        .modern-alert {
            padding: 12px 16px;
            gap: 10px;
        }
        
        .modern-btn {
            padding: 10px 16px;
            font-size: 13px;
        }
        
        .alert-title {
            font-size: 13px;
        }
        
        .alert-subtitle {
            font-size: 11px;
        }
    }
    
    /* Modern İlan Detayları Kartı */
    .modern-listing-details {
        background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }
    
    .modern-listing-details::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #ffc107, #ff8c00, #ffc107);
        background-size: 200% 100%;
        animation: shimmer 3s ease-in-out infinite;
    }
    
    .details-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .details-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #ffc107, #ff8c00);
        border-radius: 10px;
        color: #1a1a1a;
        flex-shrink: 0;
    }
    
    .details-title {
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        background: linear-gradient(135deg, #ffc107, #ff8c00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .details-content {
        margin-top: 16px;
    }
    
    .details-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        justify-items: center;
    }
    
    .detail-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 13px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 200px;
    }
    
    .detail-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 193, 7, 0.3);
        transform: translateY(-2px);
    }
    
    .detail-item.featured {
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 140, 0, 0.05));
        border-color: rgba(255, 193, 7, 0.3);
    }
    
    .detail-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        color: #b8c5d1;
        flex-shrink: 0;
    }
    
    .detail-item.featured .detail-icon {
        background: linear-gradient(135deg, #ffc107, #ff8c00);
        color: #1a1a1a;
    }
    
    .detail-text {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-width: 0;
    }
    
    .detail-label {
        color: #8a9ba8;
        font-size: 9px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        margin-bottom: 2px;
    }
    
    .detail-value {
        color: #ffffff;
        font-size: 10px;
        font-weight: 600;
        word-break: break-word;
    }
    
    .detail-value.featured-text {
        color: #ffc107;
        font-weight: 700;
    }
    
    /* Responsive Tasarım */
    @media (max-width: 768px) {
        .modern-listing-details {
            padding: 16px;
        }
        
        .details-header {
            gap: 10px;
            margin-bottom: 16px;
        }
        
        .details-icon {
            width: 36px;
            height: 36px;
        }
        
        .details-title {
            font-size: 16px;
        }
        
        .details-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }
        
        .detail-item {
            padding: 8px 10px;
        }
        
        .detail-icon {
            width: 20px;
            height: 20px;
        }
        
        .detail-label {
            font-size: 8px;
        }
        
        .detail-value {
            font-size: 9px;
        }
    }
    
    @media (max-width: 480px) {
        .details-grid {
            grid-template-columns: 1fr;
            gap: 6px;
        }
        
        .detail-item {
            max-width: 100%;
        }
    }

    /* Modern İlan Bilgileri Kartı */
    .modern-listing-info-card {
    background: linear-gradient(135deg, #2d2d2d, #1e1e1e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 102%;
    min-height: 75%;
	transform: translate(0px, -4px);
    }
    .modern-listing-info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #ffc107, #ffc10785, #ff8c00, #ff8c00);
        background-size: 300% 100%;
        animation: shimmer 3s ease-in-out infinite;
    }

    .modern-listing-info-card:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .info-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 17px; /* %30 artış: 13px * 1.3 = 16.9px ≈ 17px */
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .info-title {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .info-icon {
        width: 30px; /* %15 artış: 26px * 1.15 = 29.9px ≈ 30px */
        height: 30px; /* %15 artış: 26px * 1.15 = 29.9px ≈ 30px */
        background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
    }

    .info-title-text {
        color: #ffffff;
        font-size: 1rem; /* %25 artış: 0.8rem * 1.25 = 1rem */
        font-weight: 600;
        margin: 0;
        background: linear-gradient(135deg, #ffffff, #e0e0e0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .trade-badge {
        display: flex;
        align-items: center;
        gap: 3px;
        color: white;
        padding: 5px 10px;
        border-radius: 13px;
        font-size: 0.6rem;
        font-weight: 500;
        box-shadow: 0 2px 6px rgba(78, 205, 196, 0.3);
        animation: pulse 2s infinite;
    }

    .info-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .info-section {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        padding: 13px; /* %30 artış: 10px * 1.3 = 13px */
        margin-bottom: 20px; /* Alt margin eklendi */
        transition: all 0.3s ease;
    }

    .info-section:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-1px);
    }

    .listing-title {
        color: #ffffff;
        font-size: 1.1rem; /* %22 artış: 0.9rem * 1.22 = 1.098rem ≈ 1.1rem */
        font-weight: 600;
        margin: 0 0 20px 0; /* Alt margin eklendi */
        line-height: 1.3;
        background: linear-gradient(135deg, #ffffff, #e0e0e0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-header {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 6px;
    }

    .section-icon {
        width: 19px;
        height: 19px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        box-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
    }

    .section-icon.trade-icon {
        background: linear-gradient(135deg, #4ecdc4, #44a08d);
        box-shadow: 0 1px 4px rgba(78, 205, 196, 0.3);
    }

    .section-title {
        color: #ffffff;
        font-size: 0.85rem;
        font-weight: 600;
        margin: 0;
    }

    .section-title.trade-title {
        color: #4ecdc4;
    }

    .section-content {
        color: #e0e0e0;
        line-height: 1.6;
        font-size: 0.9rem;
        word-wrap: break-word;
        white-space: pre-line;
        overflow-wrap: break-word;
    }
    
    .description-content {
        word-wrap: break-word;
        white-space: pre-line;
        overflow-wrap: break-word;
        line-height: 1.7;
        font-size: 1rem;
        color: #333;
    }

    .details-section .details-grid {
        margin-top: 0;
    }

    @keyframes shimmer {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    /* Action Buttons */
    .listing-actions {
        margin-top: 1rem;
    }
    
    .action-btn {
        width: 100%;
        padding: 0.75rem 0.5rem;
        border: none;
        border-radius: 8px;
        background: linear-gradient(135deg, #2a2a2b, #1e1e1f);
        color: #fff;
        font-size: 0.8rem;
        font-weight: 500;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .favorite-btn.active {
        background: rgba(220, 53, 69, 0.2);
        border-color: #dc3545;
        color: #dc3545;
    }

    .favorite-btn.active svg {
        fill: #dc3545;
    }
    
    .action-btn svg {
        transition: all 0.3s ease;
    }
    
    .share-btn:hover {
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-color: #007bff;
    }
    
    .share-btn:hover svg {
        transform: scale(1.1);
    }
    
    .report-btn:hover {
        background: linear-gradient(135deg, #dc3545, #c82333);
        border-color: #dc3545;
    }
    
    .report-btn:hover svg {
        transform: scale(1.1);
    }
    
    .favorite-btn:hover {
        background: linear-gradient(135deg, #ffc107, #ff8c00);
        border-color: #ffc107;
        color: #1a1a1a;
    }
    
    .favorite-btn:hover svg {
        transform: scale(1.1);
    }
    
    .favorite-btn.favorited {
        background: linear-gradient(135deg, #ffc107, #ff8c00);
        border-color: #ffc107;
        color: #1a1a1a;
    }
    
    .favorite-btn.favorited svg {
        fill: currentColor;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .modern-listing-info-card {
            padding: 16px; /* %30 artış: 12px * 1.3 = 15.6px ≈ 16px */
            width: 100%; /* Mobilde genişlik sınırlaması */
        }
        
        .info-header {
            flex-direction: column;
            gap: 8px;
            align-items: flex-start;
        }
        
        .listing-title {
            font-size: 1rem;
        }
        
        .info-section {
            padding: 10px;
        }
        
        .action-btn {
            padding: 0.6rem 0.4rem;
            font-size: 0.75rem;
        }
        
        .action-btn span {
            font-size: 0.7rem;
        }
    }
    
    /* Modern Görseller Kartı Stilleri */
    .modern-gallery-card {
        background: linear-gradient(135deg, #2d2d2d, #1e1e1e);
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }
    
    .gallery-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    }
    
    .gallery-title {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .gallery-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #ffc107, #ff8f00);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    }
    
    .gallery-title-text {
        color: #ffc107;
        font-weight: 600;
        font-size: 1.1rem;
        margin: 0;
    }
    
    .gallery-content {
        position: relative;
    }
    
    /* Ana görsel kartı kare şeklinde */
    .swiper-products .swiper-slide {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 60%; /* %40 küçültülmüş yükseklik */
    }
    
    .swiper-products .swiper-slide a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .swiper-products .swiper-slide img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .gallery-content .swiper-button-next,
    .gallery-content .swiper-button-prev {
        color: #ffc107;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .gallery-content .swiper-button-next:after,
    .gallery-content .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .gallery-content .swiper-button-next:hover,
    .gallery-content .swiper-button-prev:hover {
        background: rgba(255, 193, 7, 0.2);
        transform: scale(1.1);
    }

    /* Müşteri Yorumları Sistemi Stilleri */
    .modern-reviews-card {
        background: linear-gradient(135deg, #2d2d2d, #1e1e1e);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 20px;
        margin-top: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .reviews-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .reviews-title {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .reviews-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #ffc107, #ff8c00);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1a1a1a;
    }
    
    .reviews-title-text {
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        margin: 0;
    }
    
    .reviews-stats {
        text-align: right;
    }
    
    .rating-summary {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }
    
    .rating-number {
        font-size: 24px;
        font-weight: 700;
        color: #ffc107;
    }
    
    .rating-stars {
        display: flex;
        gap: 2px;
    }
    
    .rating-stars .star {
        color: #ffc107;
        font-size: 16px;
    }
    
    .rating-count {
        color: #adb5bd;
        font-size: 12px;
    }
    
    .stars-distribution {
        margin-bottom: 20px;
    }
    
    .star-bar {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
    }
    
    .star-label {
        color: #adb5bd;
        font-size: 12px;
        width: 20px;
    }
    
    .star-progress {
        flex: 1;
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
        overflow: hidden;
    }
    
    .star-fill {
        height: 100%;
        background: linear-gradient(90deg, #ffc107, #ff8c00);
        border-radius: 3px;
        transition: width 0.3s ease;
    }
    
    .star-count {
        color: #adb5bd;
        font-size: 12px;
        width: 30px;
        text-align: right;
    }
    
    .add-review-section {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .add-review-title {
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .review-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .rating-input {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .rating-label {
        color: #adb5bd;
        font-size: 14px;
        font-weight: 500;
    }
    
    .star-rating {
        display: flex;
        gap: 5px;
        direction: rtl;
    }
    
    .star-rating input[type="radio"] {
        display: none;
    }
    
    .star-rating label {
        color: #444;
        font-size: 24px;
        cursor: pointer;
        transition: color 0.2s ease;
    }
    
    .star-rating label:hover,
    .star-rating label:hover ~ label,
    .star-rating input[type="radio"]:checked ~ label {
        color: #ffc107;
    }
    
    .comment-input textarea {
        width: 100%;
        min-height: 100px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 12px;
        color: #ffffff;
        font-size: 14px;
        resize: vertical;
        transition: all 0.3s ease;
    }
    
    .comment-input textarea:focus {
        outline: none;
        border-color: #ffc107;
        background: rgba(255, 255, 255, 0.08);
    }
    
    .comment-input textarea::placeholder {
        color: #adb5bd;
    }
    
    .submit-review-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 20px;
        background: linear-gradient(135deg, #ffc107, #ff8c00);
        border: none;
        border-radius: 8px;
        color: #1a1a1a;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .submit-review-btn:hover {
        background: linear-gradient(135deg, #ff8c00, #ffc107);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    }
    
    .login-prompt {
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .login-prompt p {
        color: #adb5bd;
        margin: 0;
    }
    
    .login-link {
        color: #ffc107;
        text-decoration: none;
        font-weight: 600;
    }
    
    .login-link:hover {
        color: #ff8c00;
        text-decoration: underline;
    }
    
    .reviews-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .review-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 15px;
        transition: all 0.3s ease;
    }
    
    .review-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 193, 7, 0.3);
    }
    
    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .review-user {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .review-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .review-user-info {
        display: flex;
        flex-direction: column;
    }
    
    .review-username {
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
        margin: 0;
    }
    
    .review-date {
        color: #adb5bd;
        font-size: 12px;
        margin: 0;
    }
    
    .review-rating {
        display: flex;
        gap: 2px;
    }
    
    .review-rating .star {
        color: #ffc107;
        font-size: 14px;
    }
    
    .review-comment {
        color: #e9ecef;
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }
    
    .load-more-section {
        text-align: center;
        margin-top: 20px;
    }
    
    .load-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .load-more-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #ffc107;
        color: #ffc107;
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .modern-gallery-card {
            padding: 15px;
            margin-bottom: 15px;
        }
        
        .gallery-header {
            margin-bottom: 15px;
            padding-bottom: 10px;
        }
        
        .gallery-icon {
            width: 35px;
            height: 35px;
        }
        
        .gallery-title-text {
            font-size: 1rem;
        }
        
        .gallery-content .swiper-button-next,
        .gallery-content .swiper-button-prev {
            width: 35px;
            height: 35px;
        }
        
        .gallery-content .swiper-button-next:after,
        .gallery-content .swiper-button-prev:after {
            font-size: 14px;
        }
        
        /* Mobilde ana görsel kartı */
        .swiper-products .swiper-slide {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 60%; /* %40 küçültülmüş yükseklik */
        }
        
        .swiper-products .swiper-slide a {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: block;
        }
        
        .swiper-products .swiper-slide img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }
        
        .modern-reviews-card {
            padding: 15px;
        }
        
        .reviews-header {
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
        }
        
        .reviews-stats {
            text-align: left;
        }
        
        .rating-summary {
            align-items: flex-start;
        }
        
        .star-rating label {
            font-size: 20px;
        }
        
        .comment-input textarea {
            min-height: 80px;
        }
    }

    /* Modern İlan Detayları - Üst Kısım Tasarım */
    .listing-details-top {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .details-row {
display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    transform: translate(20px, -3px);
    }

    .detail-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 4px 8px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        font-size: 10px;
        font-weight: 500;
        color: #a8b5c1;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .detail-badge:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
    }

    .detail-badge svg {
        width: 10px;
        height: 10px;
        color: #7a8a9a;
        flex-shrink: 0;
    }

    .detail-badge.time-left {
        background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(40, 167, 69, 0.08));
        border-color: rgba(40, 167, 69, 0.3);
        color: #28a745;
    }

    .detail-badge.time-left svg {
        color: #28a745;
    }

    /* Responsive tasarım */
    @media (max-width: 768px) {
        .details-row {
            gap: 4px;
        }
        
        .detail-badge {
            padding: 3px 6px;
            font-size: 9px;
        }
        
        .detail-badge svg {
            width: 8px;
            height: 8px;
        }
    }

    @media (max-width: 480px) {
        .details-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 3px;
        }
        
        .detail-badge {
            width: 100%;
            justify-content: flex-start;
            padding: 4px 8px;
            font-size: 10px;
        }
        
        .detail-badge svg {
            width: 10px;
            height: 10px;
        }
    }
    
    /* Benzer İlanlar Bölümü Stilleri */
    .benzer_ilanlar {
        margin-top: 40px;
    }
    
    .modern-section-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid rgba(255, 193, 7, 0.3);
    }
    
    .modern-section-header .section-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #ffc107, #ff8c00);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    }
    
    .modern-section-header .section-icon svg {
        color: #fff;
        width: 20px;
        height: 20px;
    }
    
    .modern-section-header .section-title {
        color: #ffffff;
        font-weight: 700;
        font-size: 1.5rem;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .similar-listing-link {
        text-decoration: none;
        color: inherit;
        display: block;
        height: 100%;
    }
    
    .similar-listing-link:hover {
        text-decoration: none;
        color: inherit;
    }
    
    .similar-listing-card {
        background: linear-gradient(135deg, #2d2d2d, #1e1e1e);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        height: 100%;
        position: relative;
    }
    
    .similar-listing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 193, 7, 0.3);
    }
    
    .featured-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: linear-gradient(135deg, #ffc107, #ff8c00);
        color: #000;
        padding: 4px 8px;
        border-radius: 6px;
        font-size: 0.7rem;
        font-weight: 600;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
    }
    
    .similar-listing-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }
    
    .similar-listing-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .similar-listing-card:hover .similar-listing-image img {
        transform: scale(1.05);
    }
    
    .similar-listing-content {
        padding: 20px;
    }
    
    .similar-listing-title {
        color: #ffffff;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 15px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .similar-listing-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .similar-listing-user {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .seller-label {
        font-size: 0.7rem;
        color: #a8b5c1;
        font-weight: 500;
    }
    
    .username {
        font-size: 0.85rem;
        color: #ffffff;
        font-weight: 600;
    }
    
    .similar-listing-price {
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .similar-listing-badges {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .discount-badge,
    .trade-badge {
        padding: 4px 8px;
        border-radius: 6px;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .discount-badge {
        background: rgba(220, 53, 69, 0.2);
        color: #dc3545;
        border: 1px solid rgba(220, 53, 69, 0.3);
    }
    
    .trade-badge {
    background: rgb(12 14 14);
    color: #f5f5f5;
    border: 1px solid #607D8B;
    }
    
    /* Mobile Responsive for Similar Listings */
    @media (max-width: 768px) {
        .modern-section-header {
            margin-bottom: 20px;
        }
        
        .modern-section-header .section-icon {
            width: 35px;
            height: 35px;
        }
        
        .modern-section-header .section-icon svg {
            width: 18px;
            height: 18px;
        }
        
        .modern-section-header .section-title {
            font-size: 1.3rem;
        }
        
        .similar-listing-image {
            height: 180px;
        }
        
        .similar-listing-content {
            padding: 15px;
        }
        
        .similar-listing-title {
            font-size: 0.9rem;
            margin-bottom: 12px;
        }
        
        .similar-listing-meta {
            margin-bottom: 12px;
        }
        
        .similar-listing-price {
            font-size: 1rem;
        }
    }