/*
Theme Name: Benua Digital Theme
Theme URI: https://example.com
Author: Benua Digital Developer
Description: Tema resmi untuk toko produk digital Benua Digital.
Version: 1.0.0
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.5;
}

.ds-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header.ds-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ds-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ds-brand {
    font-size: 22px;
    font-weight: 800;
    color: #0284c7;
    text-decoration: none;
}

.ds-nav-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ds-balance-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.ds-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.ds-btn-primary {
    background: #0284c7;
    color: #ffffff;
}

.ds-btn-primary:hover {
    background: #0369a1;
}

.ds-btn-success {
    background: #10b981;
    color: #ffffff;
}

.ds-btn-success:hover {
    background: #059669;
}

.ds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.ds-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.ds-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #cbd5e1;
}

.ds-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ds-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ds-card-price {
    font-size: 18px;
    font-weight: 800;
    color: #0284c7;
    margin-top: auto;
    margin-bottom: 12px;
}

.ds-badge-exp {
    background: #fef3c7;
    color: #b45309;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
}

.ds-history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.ds-history-table th, .ds-history-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.ds-history-table th {
    background: #f1f5f9;
    font-weight: 700;
}