/* ===========================================
 * HESABIM - ÜRÜNLERİM SEKMESİ
 * =========================================== */
.urunlerim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px 0;
}
.urunlerim-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.urunlerim-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.urunlerim-card-image {
    width: 100% !important;
    height: 160px !important;
    max-height: 160px !important;
    min-height: 160px !important;
    object-fit: cover !important;
    display: block;
    background: #f5f5f5;
}
.urunlerim-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.urunlerim-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
    line-height: 1.4;
}
.urunlerim-card-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}
.urunlerim-card-footer {
    margin-top: auto;
    padding-top: 4px;
}
.urunlerim-card-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    background: #F36C32;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.2s;
    box-sizing: border-box;
}
.urunlerim-card-button:hover {
    background: #e55a20;
    color: #fff !important;
}
.urunlerim-header {
    margin-bottom: 20px;
}
.urunlerim-header h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
}
.urunlerim-count {
    color: #666;
    font-size: 14px;
}
.urunlerim-progress {
    margin-bottom: 12px;
}
.urunlerim-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #e8f4fd;
    color: #1e88e5;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}
.urunlerim-badge.completed {
    background: #e8f5e9;
    color: #2e7d32;
}
.urunlerim-card.completed {
    border: 2px solid #4caf50;
}
.urunlerim-card.completed .urunlerim-card-button {
    background: #4caf50;
}
.urunlerim-card.completed .urunlerim-card-button:hover {
    background: #388e3c;
}

/* ===========================================
 * HESABIM - SERTİFİKALARIM SEKMESİ
 * =========================================== */
.sertifikalarim-header {
    margin-bottom: 20px;
}
.sertifikalarim-header h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
}
.sertifikalarim-count {
    color: #666;
    font-size: 14px;
}
.sertifikalarim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding: 20px 0;
}
.sertifika-card {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 12px;
    padding: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}
.sertifika-card::before {
    content: '\1F3C6';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 40px;
    opacity: 0.3;
}
.sertifika-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    padding-right: 50px;
}
.sertifika-card-code {
    font-size: 12px;
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
    font-family: monospace;
}
.sertifika-card-date {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 16px;
}
.sertifika-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.sertifika-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}
.sertifika-btn-view {
    background: #d4af37;
    color: #1a365d !important;
}
.sertifika-btn-view:hover {
    background: #c9a227;
    transform: translateY(-2px);
}
.sertifika-btn-linkedin {
    background: #0077b5;
    color: #fff !important;
}
.sertifika-btn-linkedin:hover {
    background: #005f8d;
    transform: translateY(-2px);
}
.sertifikalarim-empty {
    text-align: center;
    padding: 40px;
    background: #f7fafc;
    border-radius: 12px;
}
.sertifikalarim-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.sertifikalarim-empty p {
    color: #666;
    margin-bottom: 16px;
}
.sertifikalarim-empty .button {
    background: #F36C32;
    color: #fff;
    border: none;
}
