@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* Common CSS file for Daily Activities */

:root {
    /* Primary Colors */
    --vr-maroon: #630b24;
    --vr-maroon-hover: #4e081c;
    --vr-gold: #c59b27;
    --vr-gold-light: #e5c158;

    /* Text & Background Colors */
    --vr-bg-cream: #fbf9f4;
    --vr-text-dark: #222222;
    --vr-text-muted: #666666;

    /* Retained & Renamed Utilities */
    --vr-border: #eaeaea;
    --vr-selected-bg: #fffaf0;
    --vr-tab-hover: #f1f1f1;
    --vr-unselected-border: #ccc;
    --vr-blur-overlay: rgba(255, 255, 255, 0.8);
    --vr-white: #ffffff;

    /* Fonts */
    --bs-font-sans-serif: 'Lato', sans-serif !important;
    --bs-body-font-family: 'Lato', sans-serif !important;
    --vr-sans: 'Lato', sans-serif !important;
    --vr-serif: 'Lato', sans-serif !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--bs-body-font-family);
    background-color: var(--vr-bg-cream);
    color: var(--vr-text-dark);
    line-height: 1.6;
}

/* Helper for Views */
.view-content {
    display: none;
}

.view-content.active {
    display: block;
}

/* ===========================================
   RETAINED OLD DESIGN (From User)
============================================== */

/* Container to hold both sections */
.activities-header-wrapper {
    position: relative;
    font-family: var(--vr-serif);
}

/* Hero Section */
.activities-hero {
    position: relative;
    height: 500px;
    background-image: url('../images/daily-activities/hero-activities.png');
    background-color: #555;
    /* fallback */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 8%;
    /* Left side padding for text */
    color: white;
}

/* Dark overlay for text readability */
.activities-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    /* हल्का ब्लैक शेड */
    z-index: 1;
}

.activities-hero-content {
    position: relative;
    z-index: 2;
}

.activities-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activities-hero-content p {
    font-size: 1.25rem;
    margin-top: 8px;
    font-family: var(--vr-sans);
}

/* ===========================================
   DATE CAROUSEL OVERLAPPING CARD
============================================== */
.date-carousel-wrapper {
    position: relative;
    margin-top: -45px;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.date-carousel-card {
    background-color: var(--vr-white);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    width: 100%;
    max-width: 1440px;
}

.carousel-left,
.carousel-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--vr-text-dark);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.icon-btn:hover {
    color: var(--vr-maroon);
}

.carousel-dates {
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin: 0 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}
.carousel-dates::-webkit-scrollbar { 
    display: none; /* Chrome/Safari */
}

.date-tab {
    background-color: transparent;
    padding: 12px 0px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    color: var(--vr-text-dark);
    flex: 0 0 calc(100% / 7);
}

.date-tab.active {
    background-color: var(--vr-maroon);
    /* Maroon Background */
    color: var(--vr-white);
}

.date-tab .day {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--vr-sans);
    letter-spacing: 0.5px;
}

.date-tab .date {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 2px;
}

.view-week-btn {
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--vr-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.3s;
    font-family: var(--vr-sans);
    letter-spacing: 0.5px;
}

.view-week-btn:hover {
    border-color: var(--vr-maroon);
}

/* ===========================================
   MAIN LAYOUT (Sidebar + Content)
============================================== */
.main-layout {
    display: flex;
    gap: 30px;
    padding: 40px 20px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.main-content-area {
    flex-grow: 1;
}

/* ===========================================
   SIDEBAR CONTAINER (Left Section)
============================================== */
.sidebar-container {
    max-width: 300px;
    /* आप अपनी लेआउट के हिसाब से विड्थ कम/ज़्यादा कर सकते हैं */
    width: 100%;
    font-family: var(--vr-sans);
    flex-shrink: 0;
}

/* Category Menu Card */
.sidebar-menu-card {
    background: var(--vr-white);
    border-radius: 12px;
    border: 1px solid var(--vr-border);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #444;
    /* Dark grey text */
    text-decoration: none;
    border-bottom: 1px solid var(--vr-border);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.menu-item:last-child {
    border-bottom: none;
}

/* Icons Style */
.menu-item i {
    width: 24px;
    font-size: 1.1rem;
    color: var(--vr-gold);
    /* Gold Icons */
    margin-right: 12px;
    text-align: center;
    transition: color 0.3s;
}

/* Hover Effect */
.menu-item:hover:not(.active) {
    background: #fdfdfd;
}

/* Active State (Maroon background, White text & icon) */
.menu-item.active {
    background: var(--vr-maroon);
    /* Maroon */
    color: var(--vr-white);
}

.menu-item.active i {
    color: var(--vr-white);
}

/* Share Schedule Card */
.share-card {
    background: var(--vr-white);
    border-radius: 12px;
    border: 1px solid var(--vr-border);
    padding: 24px;
    margin-top: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.share-card h3 {
    color: var(--vr-maroon);
    /* Maroon */
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-card p {
    color: var(--vr-text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 24px;
    margin-top: 0;
}

/* Share Button */
.btn-share {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: var(--vr-maroon);
    color: var(--vr-white);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-share:hover {
    background: var(--vr-maroon-hover);
    /* Darker Maroon on hover */
}

/* Responsive */
@media (max-width: 768px) {
    .activities-hero {
        height: 300px;
    }

    .date-carousel-card {
        flex-direction: column;
        gap: 15px;
    }

    .main-layout {
        flex-direction: column;
    }

    .sidebar-container {
        max-width: 100%;
    }
} /* Closing brace for @media (max-width: 768px) */

/* ===========================================
   3-COLUMN LAYOUT STYLES
============================================== */
.main-content-area {
    flex-grow: 1;
    min-width: 0; /* Prevents overflow in flexbox */
}

.right-sidebar {
    max-width: 300px;
    width: 100%;
    flex-shrink: 0;
    font-family: var(--vr-sans);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ===========================================
   VIEW TOGGLES
============================================== */
.view-toggles-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 24px;
}

.view-toggle-btn {
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vr-text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--vr-sans);
}

.view-toggle-btn.active {
    background: var(--vr-maroon);
    color: var(--vr-white);
    border-color: var(--vr-maroon);
}

/* ===========================================
   MIDDLE CONTENT - SECTIONS & CARDS
============================================== */
.activity-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vr-text-dark);
    font-family: var(--vr-serif);
}

.view-all-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--vr-maroon);
    text-decoration: none;
    font-family: var(--vr-sans);
}

.view-all-link:hover {
    text-decoration: underline;
}

.carousel-container {
    position: relative;
    width: 100%;
}

.horizontal-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-behavior: smooth; /* Smooth scrolling for arrows */
    /* Hide scrollbar */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.horizontal-carousel::-webkit-scrollbar {
    display: none;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    color: var(--vr-text-dark);
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--vr-maroon);
    color: var(--vr-white);
    border-color: var(--vr-maroon);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.activity-card {
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    font-family: var(--vr-sans);
}

.large-card {
    width: 350px;
}

.small-card {
    width: 250px;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
}

.large-card .card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.small-card .card-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.badge.live-now {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--vr-maroon);
    color: var(--vr-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(99, 11, 36, 0.3);
    z-index: 10;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--vr-text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.wishlist-btn:hover {
    background: var(--vr-white);
    color: var(--vr-maroon);
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--vr-serif);
}

.card-meta, .card-meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--vr-text-muted);
    margin-bottom: 12px;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--vr-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    border-top: 1px solid var(--vr-border);
    padding-top: 15px;
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vr-gold);
}

.price-desc {
    font-size: 0.75rem;
    color: var(--vr-text-muted);
    line-height: 1.2;
}

.card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-primary {
    background: var(--vr-maroon);
    color: var(--vr-white);
    border: 1px solid var(--vr-maroon);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--vr-sans);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-primary:hover {
    background: var(--vr-maroon-hover);
}

.btn-outline {
    position: relative;
    background: transparent;
    color: var(--vr-maroon);
    border: 1px solid var(--vr-maroon);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--vr-sans);
    transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-outline:hover {
    background: var(--vr-maroon);
    color: var(--vr-white);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.75rem;
}

.item-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffaa00;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--vr-white);
    animation: pop 0.3s ease-in-out;
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.icon-btn-outline {
    background: transparent;
    border: 1px solid var(--vr-border);
    width: 34px;
    height: 34px;
    border-radius: 6px;
    color: var(--vr-text-muted);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s, border-color 0.3s;
}

.icon-btn-outline:hover {
    color: var(--vr-maroon);
    border-color: var(--vr-maroon);
}

/* Small card specifics */
.small-card .card-meta-top {
    justify-content: space-between;
    margin-bottom: 6px;
    font-weight: 600;
}
.small-card .time { color: var(--vr-text-muted); }
.small-card .location { color: var(--vr-text-dark); }
.small-card h3 { font-size: 1rem; margin-bottom: 4px; }
.small-card .duration { font-size: 0.8rem; color: var(--vr-text-muted); margin-bottom: 15px; }

.main-layout.table-view-active .right-sidebar,
.main-layout.table-view-active .sidebar-container {
    display: none !important;
}

/* ===========================================
   RIGHT SIDEBAR WIDGETS
============================================== */
.sidebar-widget {
    background: var(--vr-white);
    border-radius: 12px;
    border: 1px solid var(--vr-border);
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.widget-header {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--vr-border);
    padding-bottom: 15px;
}

.widget-header.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vr-maroon);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.widget-header h3 i {
    font-size: 1.1rem;
}

/* Timeline */
.timeline-container {
    margin-bottom: 20px;
    padding-left: 8px;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    padding-bottom: 25px;
    border-left: 2px solid var(--vr-border);
}

.timeline-item:last-child {
    border-left: 2px solid transparent;
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--vr-gold-light);
}

.timeline-item.active-live::before {
    background: var(--vr-maroon);
    box-shadow: 0 0 0 3px rgba(99, 11, 36, 0.2);
}

.timeline-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--vr-text-muted);
    margin-bottom: 4px;
    margin-top: -3px; /* Align with dot */
}

.timeline-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--vr-text-dark);
    margin: 0 0 2px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-content span {
    font-size: 0.85rem;
    color: var(--vr-text-muted);
}

.badge.live-now-small {
    background: var(--vr-maroon);
    color: var(--vr-white);
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 10px;
    vertical-align: middle;
    white-space: nowrap;
}

/* My Plan Tickets */
.my-plan-tickets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.ticket-box {
    border: 1px solid var(--vr-border);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ticket-box .time {
    font-size: 0.8rem;
    color: var(--vr-text-muted);
    font-weight: 600;
}

.ticket-box .title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 4px 0;
}

.ticket-box .qty {
    font-size: 0.8rem;
    color: var(--vr-text-muted);
}

/* Full Width Outline Button */
.btn-outline-full {
    width: 100%;
    background: transparent;
    border: 1px solid var(--vr-maroon);
    color: var(--vr-maroon);
    padding: 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--vr-sans);
}

.btn-outline-full:hover {
    background: var(--vr-maroon);
    color: var(--vr-white);
}

/* Responsive updates for 3 columns */
@media (max-width: 1024px) {
    .main-layout {
        flex-direction: column;
    }
    
    .sidebar-container, .right-sidebar {
        max-width: 100%;
    }
}

/* ===========================================
   VIEW TOGGLE CONTAINERS
============================================== */
.view-container {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   MAIN TIMELINE VIEW (LIST LAYOUT)
============================================== */
.main-timeline-container {
    padding: 20px 0;
}

.main-timeline-item {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.main-timeline-time-col {
    width: 85px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 15px;
    padding-top: 20px;
    position: relative;
}

.live-now-list-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--vr-maroon);
    color: var(--vr-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
    z-index: 10;
}

.main-timeline-time {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--vr-text-dark);
    white-space: nowrap;
}

.live-now-list-badge {
    background: var(--vr-maroon);
    color: var(--vr-white);
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 5px;
    white-space: nowrap;
}

.main-timeline-divider {
    width: 2px;
    background: var(--vr-gold-light);
    position: absolute;
    right: -1px;
    top: 25px;
    bottom: -45px;
}

.main-timeline-item:last-child .main-timeline-divider {
    display: none;
}

.main-timeline-dot {
    position: absolute;
    right: -6px;
    top: 24px;
    width: 10px;
    height: 10px;
    background: var(--vr-maroon);
    border-radius: 50%;
}

.main-timeline-item.active-live .main-timeline-dot {
    background: var(--vr-maroon);
    box-shadow: 0 0 0 4px rgba(122, 28, 47, 0.2);
}

.main-timeline-card {
    flex: 1;
    background: var(--vr-white);
    border-radius: 12px;
    display: flex;
    align-items: stretch;
    position: relative;
    border: 1px solid var(--vr-border);
    margin-left: 15px;
    overflow: hidden;
}

.main-timeline-item.active-live .main-timeline-card {
    background: rgba(122, 28, 47, 0.03);
    border-color: rgba(122, 28, 47, 0.1);
}

.list-image {
    width: 130px;
    object-fit: cover;
    flex-shrink: 0;
    /* Flush with left side */
}

.list-content-wrapper {
    flex: 1;
    display: flex;
    gap: 15px;
    padding: 15px;
    align-items: center;
}

.list-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-info {
    flex: 1.1;
    padding-right: 15px;
    border-right: 1px solid var(--vr-border);
}

.list-category {
    font-size: 0.75rem;
    color: var(--vr-gold);
    font-weight: 600;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.list-title {
    font-size: 1.05rem;
    color: var(--vr-text-dark);
    font-weight: 700;
    margin-bottom: 3px;
}

.list-location {
    font-size: 0.85rem;
    color: var(--vr-text-muted);
}

.list-desc {
    flex: 1.1;
    padding-right: 15px;
    border-right: 1px solid var(--vr-border);
}

.list-duration {
    font-size: 0.8rem;
    color: var(--vr-text-dark);
    font-weight: 700;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.list-description {
    font-size: 0.8rem;
    color: var(--vr-text-muted);
    line-height: 1.3;
}

.list-price-col {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 5px;
}

.list-price {
    font-size: 1.2rem;
    color: var(--vr-gold);
    font-weight: 700;
}

.list-price-desc {
    font-size: 0.75rem;
    color: var(--vr-text-muted);
    margin-bottom: 15px;
}

.list-wishlist {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--vr-text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.list-wishlist:hover {
    color: var(--vr-maroon);
}

.main-timeline-item.active-live .list-wishlist {
    color: var(--vr-maroon);
}

/* ===========================================
   SIDEBAR TOGGLE LOGIC
============================================== */
.sidebar-view {
    animation: fadeIn 0.3s ease-in-out;
}

/* ===========================================
   SIDEBAR SUMMARY WIDGET
============================================== */
.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--vr-border);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item i {
    font-size: 1.2rem;
    color: var(--vr-maroon);
    width: 25px;
    text-align: center;
}

.summary-text {
    display: flex;
    flex-direction: column;
}

.summary-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vr-text-dark);
}

.summary-label {
    font-size: 0.8rem;
    color: var(--vr-text-muted);
    line-height: 1.2;
}

/* ===========================================
   SIDEBAR HIGHLIGHT WIDGET
============================================== */
.highlight-title {
    font-size: 1rem;
    color: var(--vr-maroon);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}

.highlight-card {
    background: var(--vr-white);
    border-radius: 8px;
    overflow: hidden;
}

.highlight-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.highlight-card h4 {
    font-size: 1.1rem;
    color: var(--vr-text-dark);
    margin-bottom: 5px;
}

.highlight-time {
    font-size: 0.85rem;
    color: var(--vr-text-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.highlight-loc {
    font-size: 0.85rem;
    color: var(--vr-text-muted);
    margin-bottom: 15px;
}

/* ===========================================
   TABLE VIEW
============================================== */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    background: var(--vr-white);
    border-radius: 8px;
    border: 1px solid var(--vr-border);
}

.vr-data-table {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
}

.vr-data-table th, .vr-data-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--vr-border);
    vertical-align: middle;
}

.vr-data-table th {
    background-color: var(--vr-bg-light);
    color: var(--vr-text-dark);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
}

.vr-data-table th i.fa-sort {
    margin-left: 5px;
    color: var(--vr-text-muted);
    font-size: 0.7rem;
    cursor: pointer;
}

/* Specific column alignments */
.vr-data-table td.col-time {
    font-weight: 700;
    white-space: nowrap;
}

.vr-data-table td.col-activity {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.col-activity-img {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}

.vr-data-table td.col-desc {
    text-align: left;
    font-size: 0.8rem;
    color: var(--vr-text-muted);
    line-height: 1.4;
    min-width: 200px;
}

.col-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vr-text-dark);
}

.col-category i {
    color: var(--vr-gold);
    margin-right: 5px;
}

.vr-data-table td.col-price {
    font-weight: 700;
    color: var(--vr-maroon);
}

.price-sub {
    display: block;
    font-size: 0.7rem;
    color: var(--vr-text-muted);
    font-weight: 400;
}

.entry-via-label {
    font-size: 0.85rem;
    color: var(--vr-text-dark);
}

.entry-via-label i {
    color: var(--vr-maroon);
    margin-right: 5px;
}

.col-action {
    white-space: nowrap;
}

.action-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.table-wishlist {
    color: var(--vr-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
}

.table-row-live {
    background: rgba(122, 28, 47, 0.02);
}

/* Pagination */
.pagination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: var(--vr-text-muted);
    font-size: 0.85rem;
}

.pagination-controls {
    display: flex;
    gap: 5px;
}

.page-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--vr-border);
    border-radius: 4px;
    color: var(--vr-text-dark);
    cursor: pointer;
    font-size: 0.85rem;
}

.page-btn.active {
    background-color: var(--vr-maroon);
    color: var(--vr-white);
    border-color: var(--vr-maroon);
}

/* ===========================================
   RESPONSIVE DESIGN (@media Queries)
============================================== */

/* TABLET (Below 1024px) */
@media (max-width: 1024px) {
    /* Stack Left Sidebar on top, keep Main and Right side-by-side */
    .main-layout {
        flex-wrap: wrap;
        padding: 20px;
    }
    
    .sidebar-container {
        max-width: 100%;
        width: 100%;
    }

    /* Left Sidebar - Horizontal Pills for Tablet too */
    .sidebar-menu-card {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 8px;
        padding: 5px;
        gap: 10px;
    }
    
    .sidebar-menu-card .menu-item {
        border-bottom: none;
        border-radius: 20px;
        padding: 10px 15px;
        background: #f4f4f4;
        font-size: 0.9rem;
    }
    
    .sidebar-menu-card .menu-item.active {
        background: var(--vr-maroon);
    }
    
    /* Hide share card to save space if needed, or let it float */
    .share-card {
        display: none;
    }

    .main-content-area {
        flex: 1;
        min-width: 0; /* Prevent flex overflow */
    }

    .right-sidebar {
        width: 100%;
        margin-top: 20px;
    }
    
    /* Table View full width adjustment for tablet */
    .main-layout.table-view-active .right-sidebar,
    .main-layout.table-view-active .sidebar-container {
        display: none !important;
    }
}

/* MOBILE (Below 768px) */
@media (max-width: 768px) {
    /* Hero Section */
    .activities-hero {
        height: 250px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        justify-content: center;
    }
    
    .activities-hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 5px;
    }
    
    .activities-hero-content p {
        font-size: 0.9rem;
    }

    /* Date Carousel Wrapper */
    .date-carousel-wrapper {
        margin-top: -40px;
        padding: 0 15px;
    }
    
    .date-carousel-card {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .carousel-dates {
        width: 100%;
        order: 0;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 5px;
        margin: 0;
    }
    
    .date-tab {
        flex: 0 0 auto;
        min-width: 75px;
        padding: 10px 5px;
    }
    
    .carousel-left {
        display: none; /* Hide arrows on mobile */
    }

    .carousel-right {
        width: 100%;
        justify-content: center;
    }

    .carousel-right .fa-chevron-right {
        display: none; /* Hide arrow on mobile */
    }
    
    .view-week-btn {
        width: 100%;
        justify-content: center;
        padding: 10px;
        font-size: 0.9rem;
    }

    /* Share Card */
    /* Handled in tablet query */

    /* View Toggles (Scrollable like tabs) */
    .view-toggles-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .view-toggle-btn {
        flex: 0 0 auto;
        padding: 8px 15px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    /* Timeline View */
    .main-timeline-item {
        flex-direction: column;
    }
    
    .main-timeline-time-col {
        width: 100%;
        flex-direction: row;
        align-items: center;
        padding: 0 0 10px 0;
        gap: 15px;
    }
    
    .main-timeline-divider {
        display: none;
    }
    
    .main-timeline-dot {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 0;
    }
    
    .main-timeline-card {
        flex-direction: column;
        padding: 15px;
    }
    
    .list-image {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .list-content-wrapper {
        padding-left: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .list-col {
        width: 100%;
        border-right: none;
        padding-right: 0;
    }

    .list-price-col {
        align-items: flex-start !important;
        margin-top: 5px;
    }

    .list-price-col > div, .list-price-col > a {
        width: auto !important;
        text-align: left !important;
    }
    
    .list-price-col .btn-outline {
        margin-top: 10px;
    }

    .main-content-area {
        width: 100%;
    }

    .right-sidebar {
        width: 100%;
        margin-top: 20px;
    }
}

.pagination-rows select {
    padding: 3px 8px;
    border: 1px solid var(--vr-border);
    border-radius: 4px;
    margin-left: 10px;
    outline: none;
}

/* ===========================================
   DETAILS PAGE STYLES
============================================== */

.details-page-body {
    background-color: var(--vr-bg);
}

.details-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 40px;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--vr-text-muted);
}

.breadcrumb a {
    color: var(--vr-text-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--vr-maroon);
}

.breadcrumb i {
    font-size: 0.7rem;
    margin: 0 8px;
}

.breadcrumb span {
    color: var(--vr-text-dark);
    font-weight: 600;
}

.back-link {
    color: var(--vr-maroon);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.details-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px auto;
    padding: 0 40px;
}

/* Main Content (Left) */
.details-header-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.gallery-section {
    margin-bottom: 0;
}

.main-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.main-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--vr-maroon);
    color: var(--vr-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.watch-video-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--vr-text-dark);
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.watch-video-btn:hover {
    background: var(--vr-white);
    transform: scale(1.05);
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.thumbnails-grid img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.more-photos-container {
    position: relative;
    cursor: pointer;
}

.more-photos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: var(--vr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    border-radius: 8px;
}

/* Info Section */
.activity-info-section {
    margin-bottom: 30px;
}

.popular-badge {
    color: var(--vr-gold);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.details-title {
    font-size: 2.5rem;
    color: var(--vr-text-dark);
    margin-bottom: 15px;
}

.details-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--vr-text-muted);
    font-weight: 600;
    margin-bottom: 20px;
}

.details-meta-row .divider {
    color: var(--vr-border);
}

.details-description {
    font-size: 1.05rem;
    color: var(--vr-text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.details-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag-pill {
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--vr-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.host-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.host-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.host-info h4 {
    margin: 0 0 2px 0;
    font-size: 1rem;
}

.host-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--vr-text-muted);
}

/* Tabs Section */
.details-tabs-container {
    background: var(--vr-white);
    border-radius: 12px;
    border: 1px solid var(--vr-border);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid var(--vr-border);
    background: var(--vr-white);
}

.tab-btn {
    background: none;
    border: none;
    padding: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--vr-text-muted);
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.tab-btn.active {
    color: var(--vr-maroon);
    border-bottom: 3px solid var(--vr-maroon);
}

.tab-pane {
    display: none;
    padding: 30px;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s;
}

.tab-pane h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.tab-pane p {
    color: var(--vr-text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-col h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--vr-text-dark);
    font-size: 1.05rem;
}

.feature-col h4 i {
    color: var(--vr-maroon);
}

.feature-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-col ul li {
    font-size: 0.9rem;
    color: var(--vr-text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-col ul li i {
    font-size: 0.8rem;
    margin-top: 3px;
    color: var(--vr-text-dark);
}

/* Quick Facts Footer */
.quick-facts-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    background: #fbf9f6; /* Very light beige */
    border-top: 1px solid var(--vr-border);
}

.fact-item {
    display: flex;
    gap: 15px;
}

.fact-item i {
    font-size: 1.2rem;
    color: var(--vr-gold);
    margin-top: 2px;
}

.fact-item strong {
    font-size: 0.85rem;
    color: var(--vr-text-dark);
    display: block;
    margin-bottom: 4px;
}

.fact-item span {
    font-size: 0.8rem;
    color: var(--vr-text-muted);
}

.fact-item a {
    font-size: 0.8rem;
    color: var(--vr-maroon);
    text-decoration: none;
    font-weight: 600;
}

/* Sidebar Widgets */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget-card {
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    border-radius: 12px;
    padding: 25px;
}

/* Booking Widget */
.booking-widget {
    text-align: center;
}

.price-header .small-title {
    font-size: 0.85rem;
    color: var(--vr-text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    color: var(--vr-maroon);
    margin: 0;
    font-family: var(--vr-sans);
    font-weight: 700;
}

.price-amount .currency {
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--vr-text-dark);
}

.subtitle {
    font-size: 0.85rem;
    color: var(--vr-text-muted);
    margin-bottom: 20px;
}

.quantity-section {
    border-top: 1px solid var(--vr-border);
    border-bottom: 1px solid var(--vr-border);
    padding: 15px 0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quantity-section p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--vr-text-dark);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-selector button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--vr-border);
    background: var(--vr-white);
    border-radius: 4px;
    color: var(--vr-maroon);
    cursor: pointer;
    font-size: 1rem;
}

.quantity-selector input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--vr-border);
    height: 36px;
    border-radius: 4px;
    font-weight: 700;
    color: var(--vr-text-dark);
}

.total-section {
    margin-bottom: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.total-label {
    font-weight: 700;
    color: var(--vr-text-dark);
}

.total-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--vr-maroon);
}

.total-price small {
    font-size: 0.8rem;
    color: var(--vr-text-dark);
}

.reward-text {
    font-size: 0.8rem;
    color: var(--vr-text-muted);
    text-align: left;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-primary-full {
    width: 100%;
    background: var(--vr-maroon);
    color: var(--vr-white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-primary-full:hover {
    background: #460c18;
}

.btn-outline-full {
    width: 100%;
    background: var(--vr-white);
    color: var(--vr-maroon);
    border: 1px solid var(--vr-maroon);
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-outline-full:hover {
    background: var(--vr-maroon);
    color: var(--vr-white);
    border-color: var(--vr-maroon);
}

.availability-text {
    color: #2e7d32; /* Green */
    font-size: 0.85rem;
    font-weight: 600;
}

/* Info Widget */
.info-widget h4 {
    margin-bottom: 15px;
}

.info-list {
    padding-left: 20px;
    margin: 0;
    color: var(--vr-text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
}

.info-list li {
    margin-bottom: 5px;
}

/* Location Widget */
.location-widget h4 {
    margin-bottom: 15px;
}

.location-content {
    display: flex;
    gap: 15px;
}

.map-thumb {
    position: relative;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.map-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--vr-maroon);
    font-size: 1.5rem;
}

.location-details h5 {
    margin: 0 0 5px 0;
}

.location-details p {
    margin: 0 0 5px 0;
    font-size: 0.85rem;
    color: var(--vr-text-muted);
}

/* Reviews Widget */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vr-maroon);
}

.stars {
    color: var(--vr-gold);
    font-size: 0.9rem;
}

.review-count {
    font-size: 0.8rem;
    color: var(--vr-text-muted);
}

.review-quote {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--vr-text-dark);
    margin-bottom: 15px;
    line-height: 1.5;
}

.review-author-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-size: 0.85rem;
    font-weight: 700;
}

.review-nav-btns button {
    background: none;
    border: none;
    color: var(--vr-text-dark);
    cursor: pointer;
    padding: 5px;
}

/* Tab Pane Inner Content Styles */
.icon-list-vertical {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.icon-list-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fdf5f6; /* Very light maroon tint */
    color: var(--vr-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.icon-circle-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: var(--vr-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid var(--vr-maroon);
}

.icon-list-text {
    flex-grow: 1;
}

.icon-list-text h5 {
    font-size: 1rem;
    margin: 0 0 5px 0;
    color: var(--vr-text-dark);
}

.icon-list-text p {
    font-size: 0.9rem;
    color: var(--vr-text-muted);
    margin: 0;
}

.tab-bottom-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 30px;
}

.stylized-quote {
    margin: 30px 0;
    padding: 30px;
    background: #fcfcfc;
    border: 1px solid var(--vr-border);
    border-radius: 12px;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--vr-maroon);
    text-align: center;
    font-family: var(--vr-serif);
    line-height: 1.6;
}

.details-list-compact .icon-list-item {
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--vr-border);
}

.details-list-compact .icon-list-item:last-child {
    border-bottom: none;
}

.flex-row-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-muted {
    color: var(--vr-text-muted);
}

/* Meet Your Host Specifics */
.host-profile-large {
    text-align: center;
    margin-bottom: 20px;
}

.host-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.host-subtitle {
    font-family: var(--vr-serif);
    font-style: italic;
    color: var(--vr-text-muted);
    margin: 0;
}

.host-name {
    font-size: 2rem;
    color: var(--vr-text-dark);
    margin: 5px 0;
}

.host-role {
    font-size: 0.9rem;
    color: var(--vr-text-muted);
    margin: 0;
}

.host-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    color: var(--vr-text-muted);
    margin-bottom: 30px;
}

/* Reviews Tab Specifics */
.reviews-header-large {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--vr-border);
}

.rating-large-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.score-large {
    font-size: 4rem;
    font-family: var(--vr-serif);
    color: var(--vr-maroon);
    margin: 0;
    line-height: 1;
}

.stars-large {
    font-size: 1.5rem;
    color: var(--vr-gold);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-item-large {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--vr-border);
}

.review-item-large:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-meta h5 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--vr-text-dark);
}

.review-date {
    font-size: 0.85rem;
    color: var(--vr-text-muted);
}

.review-item-large .stars {
    margin-bottom: 15px;
    font-size: 1rem;
}

.review-body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--vr-text-dark);
    margin: 0;
}

.mt-20 {
    margin-top: 20px;
}

/* Bottom Info Section */
.bottom-info-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 60px auto 40px auto;
    max-width: 1400px;
    padding: 0 40px;
}

.info-card {
    background: var(--vr-white);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--vr-border);
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--vr-maroon);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-card h4 i {
    font-size: 1.3rem;
}

.info-card p {
    color: var(--vr-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--vr-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-card ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--vr-maroon);
}

.card-watermark {
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 140px;
    color: #f4f0ec;
    z-index: 0;
    transform: rotate(-15deg);
}

.info-card > * {
    position: relative;
    z-index: 1;
}

.info-card-maroon {
    background: var(--vr-maroon);
    color: var(--vr-white);
    border: none;
}

.info-card-maroon h4 {
    color: var(--vr-gold);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.info-card-maroon p {
    color: rgba(255, 255, 255, 0.9);
}

.btn-gold {
    background: var(--vr-gold);
    color: var(--vr-white);
    border: none;
    padding: 12px 20px;
    font-weight: 700;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-gold:hover {
    background: #a9831d;
}

.btn-outline-white {
    background: transparent;
    color: var(--vr-white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 20px;
    font-weight: 700;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--vr-white);
}

/* RESPONSIVE DETAILS PAGE */
@media (max-width: 1024px) {
    .details-layout {
        grid-template-columns: 1fr;
    }
    
    .bottom-info-section {
        grid-template-columns: 1fr;
    }
    
    .details-main {
        min-width: 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-facts-footer {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .fact-item {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .details-layout, .details-nav, .bottom-info-section {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .breadcrumb {
        display: none;
    }

    .details-header-row {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 250px;
    }
    
    .details-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .fact-item {
        width: calc(50% - 20px);
    }
    
    .quick-facts-footer {
        display: none;
    }
}