/* Influencer Reklamı - Frontend Stilleri - Fotoğraftaki tasarım */
.summary-title {
font-family:'Inter';
	font-size:15px;
	line-height:20px;
font-weight:500;
	color:#181818;
}
/* Ana container */
.influencer-packages-container {
    max-width: 800px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Header ve başlık */

.packages-title {
    margin: 0;
    padding: 0px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
	margin-bottom:12px;
}

/* Platform tab'ları - Fotoğraftaki tasarım */
.platform-tabs {
    display: inline-flex;
    gap: 4px;
    background: #f3f4f6; /* light gray pill container */
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    padding: 2px;
	margin-top:10px;
}

.tab-item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 11px;
	line-height:16px;
    font-weight: 500;
    color: #6b7280; /* gray-500 */
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.15s ease;
    min-width: max-content;
    text-decoration: none;
    outline: none;
	font-family:'Inter';
}

.tab-item:hover {
    color: #111827; /* gray-900 */
    background: #e5e7eb;
}

.tab-item.active {
    color: #111827;
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}

/* Paket listesi */
.packages-content {
    padding: 8px 0;
}

/* Paket öğesi */
.package-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 24px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    position: relative;
    margin: 12px 0;
}

.package-item:last-child { margin-bottom: 12px; }

.package-item:hover {
    background-color: #fafafa;
}

.package-item.selected {
    border-color: #7c3aed; /* purple-600 */
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

/* Radio button */
.package-radio {
    margin-right: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #7c3aed; /* purple */
}

.package-radio label {
    display: none;
}

/* Paket içeriği */
.package-content {
    flex: 1;
    min-width: 0;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 16px;
}

.package-title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 24px;
	font-family:'Inter';
    flex: 1;
}

.package-price {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    flex-shrink: 0;
	line-height:24px;
	font-family:'Inter';
}

/* Paket açıklaması */
.package-description {
    color: #666;
    font-size: 14px;
    line-height: 20px;
	font-family:'Inter';
    margin-bottom: 12px;
}

/* Örnek link */
.package-example {
    margin-top: 8px;
}

.example-link {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
	line-height:20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.example-link:hover {
    color: #005a87;
    text-decoration: none;
}

.example-link .arrow {
    font-size: 12px;
    transform: translateY(-1px);
}

/* Responsive tasarım */
@media screen and (max-width: 768px) {
    .influencer-packages-container {
        margin: 16px 0;
        border-radius: 8px;
    }
    
    .packages-title {
        padding: 16px 20px 12px;
        font-size: 16px;
    }
    
    .platform-tabs {
        border-bottom: 1px solid #e5e5e5;
    }
    
    .tab-item {
        padding: 10px 14px;
        font-size: 13px;
        border-bottom: 1px solid transparent;
    }
    
    .tab-item.active {
        border-bottom-color: #000000;
    }
    
    .package-item {
        padding: 16px 20px;
    }
    
    .package-item.selected {
        padding-left: 16px;
    }
    
    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .package-price {
        font-size: 18px;
    }
    
    .package-radio {
        margin-right: 12px;
    }
    
    .package-radio input[type="radio"] {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 480px) {
    .packages-title {
        padding: 12px 16px 8px;
    }
    
    .package-item {
        padding: 12px 16px;
    }
    
    .package-item.selected {
        padding-left: 12px;
    }
    
    .tab-item {
        padding: 8px 12px;
        font-size: 12px;
        border-bottom: 1px solid transparent;
    }
    
    .tab-item.active {
        border-bottom-color: #000000;
    }
}

/* Platform filtreleme animasyonu */
.package-item {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Seçili paket vurgu animasyonu */
.package-item.selected::before { content: none; }

/* Yükleme durumu */
.packages-content.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Boş durum mesajı */
.no-packages {
    text-align: center;
    padding: 40px 24px;
    color: #666;
    font-style: italic;
}

/* Satın alma özeti */
.influencer-summary {
    margin: 16px 0 0;
}

.influencer-summary .summary-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 16px;
    background: #fff;
}

.influencer-summary .summary-header {
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.influencer-summary .summary-desc {
    color: #6b7280;
    font-size: 14px;
    margin-top: 6px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
	font-weight:'Inter';
}

.summary-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 2px 0x;
    color: #111827;
}

.summary-subtotal-label {
    font-weight: 500;
	font-size:14px;
	line-height:20px;
	font-family:'Inter';
}

.summary-subtotal-value {
    font-weight: 600;
	font-size:20px;
	line-height:24px;
	font-family:'Inter';
}

.influencer-purchase-btn {
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(90deg, #7c3aed 0%, #5b48f0 50%, #4f46e5 100%);
    box-shadow: 0 8px 18px rgba(79, 70, 229, 0.25);
    transition: opacity .15s;
	font-family:'Inter';
}

.influencer-purchase-btn:hover { opacity: .95; }

/* Platform ikonları kaldırıldı - temiz tasarım */

