.calendar-page-body .mobile-header {
    display: none !important;
}

.calendar-page {
    padding-top: 100px; /* Offset for desktop header */
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .calendar-page {
        padding-top: 0px; /* Completely remove gap below mobile header */
        padding-bottom: 60px;
    }
}

.calendar-header-mobile {
    background: var(--white);
    padding: 10px 20px;
    border-bottom: 1px solid var(--bg-light);
}

.sticky-top-mobile {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

@media (min-width: 769px) {
    .sticky-top-mobile {
        position: relative;
        top: auto;
        box-shadow: none;
    }
}

.header-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-top: 5px;
}

.header-title h1 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.header-title p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.back-btn i, .filter-btn i {
    width: 20px;
    color: var(--text);
}

.filter-btn {
    margin-left: auto;
    background: var(--bg-light);
    padding: 8px;
    border-radius: 50%;
}

.month-selection-container {
    background: var(--white);
    padding: 5px 0;
    border-bottom: 1px solid var(--bg-light);
}

.month-tabs {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 10px 20px;
    justify-content: flex-start;
}

.month-tabs::-webkit-scrollbar { display: none; }

.month-tab {
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.month-tab:hover {
    color: var(--text);
}

.month-tab.active {
    color: #e11d48;
    border-bottom-color: #e11d48;
}

@media (min-width: 769px) {
    .month-selection-container {
        position: relative;
        top: auto;
        background: transparent;
        border-bottom: none;
        margin-top: 40px;
    }
    
    .month-tabs {
        justify-content: center;
        gap: 50px;
    }
    
    .month-tab {
        font-size: 1rem;
    }
}

.calendar-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}

.calendar-grid-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 800;
    font-size: 0.75rem;
    color: #e11d48;
    margin-bottom: 15px;
    opacity: 0.8;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    transition: opacity 0.3s ease;
}

.day {
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
}

.day.selected {
    background: #fef2f2;
    color: #e11d48;
}

.day .dot {
    width: 4px;
    height: 4px;
    background: #e11d48;
    border-radius: 50%;
    margin-top: 4px;
}

.day.empty { cursor: default; }

.monthly-trips-section {
    margin-top: 20px;
}

.month-content {
    display: none;
    transition: opacity 0.3s ease;
}

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

.no-trip {
    background: var(--white);
    padding: 60px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px dashed var(--bg-light);
    margin-top: 20px;
}

.no-trip i {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-trip p {
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Spec Cards (Mockup Inspired) */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.spec-card {
    background: #0f172a; /* Dark blue theme from mockup */
    border-radius: 20px;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-10px);
}

.spec-img-wrapper {
    position: relative;
    height: 240px;
}

.spec-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spec-season-tag {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.spec-season-tag.summer { background: #4ade80; }
.spec-season-tag.autumn { background: #f97316; }
.spec-season-tag.winter { background: #3b82f6; }

.spec-duration {
    background: white;
    color: #0f172a;
    text-align: center;
    padding: 8px;
    font-weight: 900;
    font-size: 1rem;
}

.spec-info-content {
    padding: 20px;
    flex-grow: 1;
}

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

.spec-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    line-height: 1.4;
}

.spec-info-item i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #38bdf8;
}

.spec-info-item .label {
    font-weight: 800;
    color: #fbbf24;
    display: block;
    margin-bottom: 2px;
}

.spec-price-footer {
    background: white;
    padding: 15px;
    color: #0f172a;
    text-align: center;
}

.spec-price-footer .label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
}

.spec-price-footer strong {
    font-size: 1.8rem;
    font-weight: 900;
}

.spec-price-footer span {
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 5px;
}

.spec-note {
    background: #fff8e1;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #ffc107;
    font-size: 0.85rem;
    color: #5d4037;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .spec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .spec-grid { grid-template-columns: 1fr; }
}

.section-title {
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.trip-card-horizontal {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    gap: 15px;
    padding: 10px;
    box-shadow: var(--shadow-sm);
}

.trip-img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

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

.trip-img .tag {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #10b981;
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 900;
}

.trip-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trip-meta {
    font-size: 0.7rem;
    color: #e11d48;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trip-meta i { width: 12px; }

.trip-details h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.trip-details p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trip-details p i { width: 12px; }

.trip-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

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

@media (max-width: 480px) {
    .trip-actions {
        width: 100%;
    }
    .trip-actions a {
        flex: 1;
        justify-content: center;
        text-align: center;
        padding: 10px 5px;
    }
}

.btn-outline-small {
    padding: 8px 16px;
    border: 1px solid var(--text);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    transition: all 0.3s ease;
}

.btn-outline-small:hover {
    background: var(--text);
    color: var(--white);
}

.price-box span { font-size: 0.65rem; color: var(--text-muted); display: block; }
.price-box strong { font-size: 1.1rem; color: var(--text); }

.btn-book-now {
    background: #881337; /* Dark red as per screenshot */
    color: white;
    padding: 8px 24px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
}

@media (min-width: 769px) {
    .calendar-header-mobile { display: none; }
    .calendar-container { max-width: 600px; margin: 40px auto; }
    .selected-trip-section { max-width: 600px; margin: 0 auto; }
}
