.cora-wallet {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(46, 125, 50, 0.3);
}
.cora-wallet-header h3 {
    margin: 0 0 20px;
    font-size: 18px;
}
.cora-wallet-balance {
    text-align: center;
    padding: 20px 0;
}
.balance-amount {
    display: block;
    font-size: 48px;
    font-weight: bold;
}
.balance-label {
    font-size: 14px;
    opacity: 0.8;
}
.cora-wallet-actions {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}
.cora-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    flex: 1;
    transition: transform 0.2s;
}
.cora-btn:hover {
    transform: translateY(-2px);
}
.cora-btn-primary {
    background: white;
    color: #2e7d32;
}
.cora-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}
.cora-wallet-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    margin-top: 20px;
}
.cora-wallet-stats .stat {
    text-align: center;
}
.cora-wallet-stats .value {
    display: block;
    font-size: 24px;
    font-weight: bold;
}
.cora-wallet-stats .label {
    font-size: 12px;
    opacity: 0.8;
}
.cora-experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.cora-experience-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.cora-experience-card:hover {
    transform: translateY(-5px);
}
.experience-image {
    height: 180px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    position: relative;
}
.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}
.experience-content {
    padding: 20px;
}
.experience-content h4 {
    margin: 0 0 10px;
    font-size: 18px;
}
.experience-content .partner {
    color: #666;
    font-size: 14px;
    margin: 0 0 5px;
}
.experience-content .location {
    color: #888;
    font-size: 13px;
    margin: 0 0 15px;
}
.experience-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.experience-footer .price {
    font-size: 20px;
    font-weight: bold;
    color: #2e7d32;
}
.cora-btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    background: #2e7d32;
    color: white;
    border-radius: 6px;
}
.cora-login-prompt {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}
.cora-convert-widget {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
}
.cora-convert-widget h3 {
    margin: 0 0 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}
.conversion-preview {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}
