.traveler-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

.item-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.item-card:hover .card-image {
    transform: scale(1.05);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 12px 5px;
    color: #222;
}

.card-price {
    font-size: 16px;
    font-weight: 500;
    color: #004f9e;
    margin: 0 12px 10px;
}

.card-buttons {
    display: flex;
    justify-content: space-between;
    margin: 0 12px 15px;
    gap: 10px;
}

.card-buttons .btn {
    flex: 1;
    padding: 8px 0;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-details {
    background-color: #004f9e;
    color: #fff;
}

.btn-buy {
    background-color: #ffdd12;
    color: #000;
}

.card-buttons .btn:hover {
    opacity: 0.9;
    transform: scale(1.04);
}

.traveler-arrival-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.arrival-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arrival-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.arrival-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.arrival-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.arrival-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.arrival-rating .star {
    font-size: 18px;
    color: #ffc107;
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 10px;
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1ebc59;
}
