.tp-trips-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; margin: 0; padding: 0; }
.tp-trip-card { background:var(--background,#fff); padding:16px; border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,.06); list-style:none; }
.tp-trip-card img{ width:100%; height:160px; object-fit:cover; border-radius:8px; margin-bottom:8px; }
.tp-price{ font-size:1.1rem; font-weight:700; color:#0f766e; margin-top:8px; }
.tp-actions { display:flex; gap:8px; margin-top:10px; align-items:center; }
.tp-actions .tp-pay-btn, .tp-actions .tp-wsp-btn { padding:8px 12px; border-radius:8px; border: none; cursor:pointer; background:#0f766e; color:#fff; text-decoration:none; display:inline-block; }
.tp-actions .tp-details { padding:8px 12px; border-radius:8px; border:1px solid #ddd; background:transparent; color:inherit; text-decoration:none; display:inline-block; }
#tp-booking-form { max-width:720px; background:#fff; padding:16px; border-radius:8px; box-shadow:0 8px 24px rgba(0,0,0,0.06); }
#tp-booking-form input, #tp-booking-form textarea, #tp-booking-form select { width:100%; padding:8px; margin-top:6px; border:1px solid #e5e7eb; border-radius:6px; box-sizing:border-box; }
#tp-booking-form .tp-form-row { display:flex; gap:8px; }
@media(max-width:600px){ #tp-booking-form .tp-form-row{ flex-direction:column; } }
