/* ANIMATED SIDEBAR */ .rgvp-cart-view { width: 350px !important; transition: transform 0.35s ease-in-out; }
 .rgvp-cart-btn-view button i, .rgvp-user-btn-view { font-size: 22px; }
 /* Skeleton Loader */ .skeleton { background: #eee; border-radius: 5px; animation: pulse 1.5s infinite ease-in-out; }
 .skeleton-card { padding: 20px; margin-bottom: 15px; }
 .skeleton-title { width: 60%; height: 18px; margin-bottom: 10px; }
 .skeleton-price { width: 40%; height: 16px; margin-bottom: 10px; }
 .skeleton-text { width: 80%; height: 14px; margin-bottom: 15px; }
 .skeleton-img { width: 100%; height: 120px; }
 @keyframes pulse { 0% { background-color: #eee; }
 50% { background-color: #ddd; }
 100% { background-color: #eee; }
 }
 /* Fade animation */ .fade-in { animation: fadeIn .3s ease; }
 .fade-out { animation: fadeOut .2s ease; }
 @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); }
 to { opacity: 1; transform: translateY(0); }
 }
 @keyframes fadeOut { from { opacity: 1; }
 to { opacity: 0; }
 }
 /* Progress floating */ .progress-floating { position: fixed; top: 68px; left: 50%; transform: translateX(-50%); width: 92%; max-width: 750px; background: #fff; border-radius: 30px; padding: 7px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); z-index: 1200; }
 .progress-floating .progress { height: 10px; border-radius: 20px; overflow: hidden; }
 .progress-floating .progress-bar { transition: width .5s ease; }
 /* Date & time grids */ .RGVP-date-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
 .RGVP-time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
 .date-item, .time-item { padding: 10px; border-radius: 8px; background: #fbfbfb; text-align: center; border: 1px solid #e9ecef; cursor: pointer; transition: all .18s ease; font-weight: 600; font-size: 14px; }
 .date-item:hover, .time-item:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(13, 110, 253, 0.04); }
 .date-item.active, .time-item.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 12px 28px rgba(13, 110, 253, 0.12); }
 /* Responsive tweaks */ @media (max-width: 991px) { .RGVP-date-row { grid-template-columns: repeat(4, 1fr); }
 .RGVP-time-grid { grid-template-columns: repeat(3, 1fr); }
 }
 @media (max-width: 767px) { .RGVP-date-row { grid-template-columns: repeat(3, 1fr); }
 .RGVP-time-grid { grid-template-columns: repeat(2, 1fr); }
 .progress-floating { top: 84px; }
 }
