.trafixer-below {
    margin: 40px 0 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.trafixer-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.trafixer-card {
    width: 240px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .2s;
}

.trafixer-card:hover {
    transform: translateY(-5px);
}

.trafixer-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.trafixer-card span {
    display: block;
    padding: 12px;
    font-size: 15px;
    line-height: 1.4;
}

.trafixer-inline {
    background: #f9f9f9;
    padding: 15px;
    margin: 25px 0;
    border-left: 4px solid #1a73e8;
}

.trafixer-inline ul {
    margin: 10px 0 0 20px;
}

.trafixer-inline li {
    margin: 8px 0;
}

/* Popup */
#trafixer-popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

#trafixer-popup.trafixer-active {
    display: flex; /* Shown when JavaScript adds .trafixer-active */
}

.trafixer-popup-overlay {
    position: absolute;
    inset: 0;
}

.trafixer-popup-box {
    background: #fff;
    max-width: 90%;
    width: 450px;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.trafixer-popup-box h2 {
    margin: 0 0 15px;
    font-size: 24px;
}

.trafixer-popup-box p {
    color: #555;
    margin-bottom: 25px;
}

.trafixer-popup-btn {
    display: inline-block;
    background: #1a73e8;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.trafixer-popup-btn:hover {
    background: #1557b0;
}