/* Advertisement Card Styles */
.ad-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.ad-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.ad-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.ad-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-card-status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.ad-card-status.pending {
    background: rgba(245, 158, 11, 0.9);
    color: #fff;
}

.ad-card-status.approved {
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
}

.ad-card-status.rejected {
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
}

.ad-card-status.inactive {
    background: rgba(100, 116, 139, 0.9);
    color: #fff;
}

.ad-card-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: rgba(245, 158, 11, 0.95);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ad-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ad-card-category {
    display: inline-block;
    padding: 4px 10px;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 10px;
}

.ad-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ad-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.ad-card-price .from {
    font-size: 13px;
    color: #94a3b8;
}

.ad-card-price .amount {
    font-size: 20px;
    font-weight: 700;
    color: #FF7400;
}

.ad-card-price .to {
    font-size: 14px;
    color: #64748b;
}

.ad-card-stats {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
    flex-wrap: wrap;
}

.ad-card-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
}

.ad-card-stat svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.ad-card-footer {
    padding: 16px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.ad-card-date {
    font-size: 12px;
    color: #94a3b8;
    display: block;
}

/* Eski tasarım ile uyumluluk için */
.advertisement-card-wrapper {
    height: 100%;
}

.ad-card .btn-primary {
    background: linear-gradient(135deg, #FF7400 0%, #ff9a44 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.ad-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 116, 0, 0.3);
}

