    /* MODERN KART YAPISI */
    .modern-card {
        background: #fff;
        border-radius: 16px; /* Yuvarlak köşeler */
        border: 1px solid var(--gray-200);
        box-shadow: 0 4px 24px rgba(0,0,0,0.04); /* Yumuşak, modern gölge */
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        height: 100%;
        position: relative;
    }
    
    .modern-card:hover {
        box-shadow: 0 8px 30px rgba(0,0,0,0.08); /* Hover efekti */
    }

     /* GÖRSEL ALANI */
    .hero-image-wrapper {
        position: relative;
        padding: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(circle at center, #ffffff 0%, #f8f9fa 100%);
        min-height: 400px;
    }

    .hero-image-wrapper img {
        max-height: 350px;
        object-fit: contain;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    }
    
    .hero-image-wrapper:hover img {
        transform: scale(1.08) translateY(-5px);
    }

    /* DETAY ALANI */
    .product-meta-header {
        border-bottom: 1px solid var(--gray-100);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .brand-tag {
        display: inline-block;
        background-color: var(--gray-100);
        color: var(--gray-700);
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
        transition: all 0.2s;
    }
    .brand-tag:hover {
        background-color: var(--primary-color);
        color: #fff;
    }

    .main-product-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem); /* Responsive Font */
        font-weight: 800;
        line-height: 1.2;
        color: var(--gray-900);
        margin: 0;
    }

    /* FİYAT BLOĞU */
    .price-block {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 15px;
        background: var(--gray-50);
        padding: 15px;
        border-radius: 12px;
        border: 1px dashed var(--gray-300);
    }

    .big-price {
        font-size: 2.8rem;
        font-weight: 900;
        color: var(--primary-color);
        line-height: 1;
        letter-spacing: -1px;
    }
    
    .currency-symbol {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--gray-500);
    }

    /* SAYAÇ VE UYARILAR */
    .timer-alert {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.95rem;
        margin-top: 15px;
    }
    .timer-alert.urgent { background: #fee2e2; color: #991b1b; } /* Kırmızımsı */
    .timer-alert.normal { background: #fef3c7; color: #92400e; } /* Sarımsı */

    /* FIRSAT LİSTESİ */
    .offer-list-item {
        display: flex;
        align-items: center;
        padding: 15px;
        border: 1px solid var(--gray-200);
        border-radius: 10px;
        margin-bottom: 12px;
        transition: all 0.2s;
        background: #fff;
    }
    
    .offer-list-item:hover {
        border-color: var(--primary-color);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transform: translateX(5px);
    }

        /* MOBİL İÇİN ÖZEL AYARLAR */
    @media (max-width: 768px) {
        .hero-image-wrapper { min-height: 250px; }
        .big-price { font-size: 2.2rem; }
        .offer-list-item { flex-wrap: wrap; }
        .offer-action-btn { width: 100%; text-align: center; margin-top: 10px; }
    }

        .store-logo-box {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--gray-100);
        border-radius: 8px;
        padding: 2px;
        margin-right: 15px;
    }
    
    .store-logo-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }


    .offer-info-col { flex: 1; }
    
    .offer-action-btn {
        padding: 8px 16px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.9rem;
        background: var(--primary-color);
        color: #fff !important;
        white-space: nowrap;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .offer-action-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    .tag-holder {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.tag-big {
display: inline-flex;
align-items: center;
padding: 8px 14px;
font-size: 14px;
color: #333;
background: #f5f5f5;
border: 1px solid #ddd;
border-radius: 20px;
text-decoration: none;
transition: all .2s ease;
}
.tag-big:hover {
background: #e9e9e9;
border-color: #bbb;
text-decoration: none;
}
.tag-big span strong {
color: var(--primary-color);
}


