/* Container */
.fifa-product-list .product-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Left Column: Info */
.fifa-product-list .product-info-col {
    flex: 1;
}

/* Match Teams Row */
.fifa-product-list .match-teams {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.fifa-product-list .team-name {
    font-weight: 600;
}

.fifa-product-list .team-flag {
    width: 24px;
    border-radius: 2px;
    vertical-align: middle;
}

.fifa-product-list .vs-label {
    font-weight: bold;
    color: #555;
}

/* Match Meta */
.fifa-product-list .match-date,
.fifa-product-list .match-title,
.fifa-product-list .match-venue {
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fifa-product-list .match-title {
    font-weight: bold;
    font-size: 16px;
    color: #000;
}

.fifa-product-list .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #777;
}

/* Right Column: Actions */
.fifa-product-list .product-action-col {
    margin-left: 20px;
}

.fifa-product-list .btn-see-tickets {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    /* Default styling usually handled by Elementor controls, 
       but adding basics just in case */
    padding: 10px 20px;
    background-color: #045694; /* Fallback */
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.fifa-product-list .btn-see-tickets:hover {
    background-color: #034678;
}

/* Responsive */
@media (max-width: 767px) {
    .fifa-product-list .product-list-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .fifa-product-list .product-action-col {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .fifa-product-list .btn-see-tickets {
        width: 100%;
        display: block;
    }
}
