/* Scope everything to avoid theme conflicts */
.trabaz-wrapper {
    font-family: 'Poppins', Sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
    box-sizing: border-box;
}

.trabaz-wrapper * {
    box-sizing: border-box;
}

.trabaz-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.trabaz-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.trabaz-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.trabaz-card.featured {
    border: 3px solid #f39c12;
}

.top-badge {
    background: #f39c12;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 5px;
    font-size: 14px;
    text-transform: uppercase;
}

.card-img-area {
    position: relative;
    height: 200px;
    background: #eee;
    width: 100%;
    overflow: hidden;
}

.card-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.status-label {
    position: absolute;
    top: 15px;
    background: rgba(243, 156, 18, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.label-left { left: 15px; }
.label-right { right: 15px; }

.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 5px;
}

.card-price {
    font-size: 18px;
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 20px;
}

.include-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 14px;
}

.include-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.include-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
}

.note-text {
    font-size: 12px;
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
}

.wa-btn {
    background: #62c03b;
    color: white !important;
    text-decoration: none !important;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.wa-btn:hover {
    background: #0d1242;
    transform: translateY(-2px);
}

.wa-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .trabaz-card {
        max-width: 100%;
        flex: 1 1 100%;
    }
}
