/* TiketBalap General Styling */
.tb-container {
    box-sizing: border-box;
}

/* 1. KATALOG GRID */
.tb-katalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.tb-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tb-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
}

.tb-card-content {
    padding: 15px;
}

.tb-card-title {
    font-size: 18px;
    margin: 0 0 10px 0;
    color: #333;
}

.tb-card-price {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.tb-card-price strong {
    color: #2271b1;
    font-size: 16px;
}

/* 2. BUTTONS & NOTICES */
.tb-btn {
    display: inline-block;
    padding: 10px 18px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.tb-btn-primary {
    background-color: #2271b1;
    color: #fff !important;
    border: none;
}

.tb-btn-primary:hover {
    background-color: #135e96;
}

.tb-alert {
    padding: 12px 15px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 14px;
}

.tb-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.tb-alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 3. CHECKOUT SUCCESS PAGE */
.tb-checkout-success {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    max-width: 700px;
    margin: 20px auto;
}

.tb-order-summary-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
    border-left: 4px solid #28a745;
}

.tb-highlight {
    color: #2271b1;
    font-size: 20px;
}