/*
 * Tour Single Page Styles - Modern & Friendly Design
 * Designed for International Tourists
 * 
 * Design Philosophy:
 * - Soft, welcoming design with brand colors
 * - Generous border-radius
 * - Smooth transitions
 * - Clean typography
 * - Plenty of whitespace
 * 
 * Brand Colors:
 * --primary-color: #c10017 (Brand Red)
 * --fs-color-secondary: #01609d (Blue)
 * --fs-color-success: #598d24 (Green)
 * --fs-color-alert: #b20000 (Dark Red)
 * --fs-color-base: #3f3f3f (Dark Gray)
 */

:root {
    /* Brand Colors */
    --primary-color: #c10017;
    --fs-color-primary: #c10017;
    --fs-color-secondary: #01609d;
    --fs-color-success: #598d24;
    --fs-color-alert: #b20000;
    --fs-color-base: #3f3f3f;
    --fs-experimental-link-color: #0250af;
    --fs-experimental-link-color-hover: #023868;
    
    /* Tour Module Variables */
    --tm-primary: #c10017;
    --tm-primary-light: #e6163a;
    --tm-primary-dark: #9a0012;
    --tm-primary-rgb: 193, 0, 23;
    --tm-secondary: #01609d;
    --tm-secondary-light: #0277bd;
    --tm-secondary-dark: #014a7a;
    --tm-secondary-rgb: 1, 96, 157;
    --tm-accent: #598d24;
    --tm-text-primary: #3f3f3f;
    --tm-text-secondary: #6B7280;
    --tm-text-muted: #9CA3AF;
    --tm-background: #F9FAFB;
    --tm-surface: #FFFFFF;
    --tm-border: #E5E7EB;
    --tm-border-light: #F3F4F6;
    --tm-success: #598d24;
    --tm-warning: #F59E0B;
    --tm-error: #b20000;
    --tm-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --tm-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --tm-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --tm-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --tm-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --tm-radius-sm: 8px;
    --tm-radius: 12px;
    --tm-radius-lg: 16px;
    --tm-radius-xl: 24px;
    --tm-radius-full: 9999px;
    --tm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --tm-transition-fast: all 0.15s ease;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.content-entry-single ul,
.content-entry-single ol {
    margin-left: 20px;
}

.tour-wrapper .hidden-content { display: none; }
.tour-wrapper .mt-auto { margin-top: auto; }
.tour-wrapper .mt-3 { margin-top: 12px; }
.tour-wrapper .mt-2 { margin-top: 8px; }
.tour-wrapper .mb { margin-bottom: 24px; }
.tour-wrapper .mt { margin-top: 20px; }
.tour-wrapper .w-100 { width: 100%; }
.tour-wrapper .text-small { font-size: 13px; }
.tour-wrapper .text-center { text-align: center; }
.tour-wrapper .z-index-1 { z-index: 1; }
.tour-wrapper .z-index-2 { z-index: 2; }
.tour-wrapper .overflow-hidden { overflow: hidden; }

.tour-wrapper .required {
    color: var(--tm-error);
    margin-left: 2px;
}

/* ============================================
   ICONS
   ============================================ */
.tour-wrapper [class*="icon-tm"]:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 12px;
    margin-bottom: -6px;
    opacity: 0.85;
}

.tour-wrapper section.dark [class*="icon-tm"]:before {
    filter: invert(1);
}

.tour-wrapper .icon-tm-schedule:before { background-image: url(../images/icons/icon-schedule.svg); }
.tour-wrapper .icon-tm-meeting-point:before { background-image: url(../images/icons/icon-meeting-point.svg); }
.tour-wrapper .icon-tm-group-size:before { background-image: url(../images/icons/icon-group-size.svg); }
.tour-wrapper .icon-tm-rating:before { background-image: url(../images/icons/icon-rating.svg); }
.tour-wrapper .icon-tm-calendar:before { background-image: url(../images/icons/icon-calendar.svg); }
.tour-wrapper .icon-tm-age-limit:before { background-image: url(../images/icons/icon-age-limit.svg); }
.tour-wrapper .icon-tm-difficulty:before { background-image: url(../images/icons/icon-difficulty.svg); }
.tour-wrapper .icon-tm-safety-note:before { background-image: url(../images/icons/icon-tm-safety-note.svg); }
.tour-wrapper .icon-tm-expense:before { background-image: url(../images/icons/icon-tm-expense.svg); }
.tour-wrapper .icon-tm-price:before { background-image: url(../images/icons/icon-tm-price.svg); }
.tour-wrapper .icon-tm-local-map:before { background-image: url(../images/icons/icon-tm-local-map.svg); }
.tour-wrapper .icon-tm-included_services:before { background-image: url(../images/icons/icon-tm-included.svg); }
.tour-wrapper .icon-tm-what_to_bring:before { background-image: url(../images/icons/icon-tm-items.svg); }
.tour-wrapper .icon-tm-food_dining:before { background-image: url(../images/icons/icon-tm-Foodbasket.svg); }
.tour-wrapper .icon-tm-suitable_for:before { background-image: url(../images/icons/icon-tm-camping.svg); }
.tour-wrapper .icon-tm-transportation:before { background-image: url(../images/icons/icon-tm-transportation.svg); }

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.tour-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--tm-text-primary);
    line-height: 1.6;
}

.tour-wrapper .section-title {
    font-size: 1.5rem;
    color: var(--tm-primary);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 12px;
}

.tour-wrapper .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--tm-primary), var(--tm-primary-light));
    border-radius: var(--tm-radius-full);
}

.tour-wrapper .show-more {
    color: var(--tm-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-weight: 500;
    transition: var(--tm-transition-fast);
}

.tour-wrapper .show-more:hover {
    color: var(--tm-secondary-dark);
    gap: 10px;
}

/* ============================================
   ACCORDION
   ============================================ */
.tour-wrapper .accordion {
    border-radius: var(--tm-radius-lg);
    overflow: hidden;
    background: var(--tm-surface);
    box-shadow: var(--tm-shadow-sm);
}

.tour-wrapper .accordion-title {
    font-size: 100%;
    padding: 0.8em 2em;
    font-weight: 600;
}

.tour-wrapper .accordion-item {
    border: none;
    background: transparent;
}

.tour-wrapper .accordion-item:not(:last-child) {
    border-bottom: 1px solid var(--tm-border-light);
}

.tour-wrapper .accordion-header {
    position: relative;
    margin-bottom: 0;
    padding: 20px 24px;
    transition: var(--tm-transition-fast);
}

.tour-wrapper .accordion-header:hover {
    background: var(--tm-background);
}

.tour-wrapper button.accordion-button {
    margin: 0;
    padding: 0;
    line-height: 1.5em;
    min-height: 1.5em;
    background: transparent;
    border: none;
    cursor: pointer;
}

.tour-wrapper .section-tour button.accordion-button {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: left;
    padding-right: 40px;
    color: var(--tm-text-primary);
}

.tour-wrapper .accordion-header .accordion-button:after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url(../images/icons/icon-plus.svg);
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -14px;
    background-color: var(--tm-background);
    border-radius: var(--tm-radius-full);
    transition: var(--tm-transition);
}

.tour-wrapper .accordion-item.collapsed .accordion-header .accordion-button:after {
    background-image: url(../images/icons/icon-munis.svg);
    background-color: var(--tm-primary);
}

.tour-wrapper .accordion-body {
    padding: 0 24px 24px;
    color: var(--tm-text-secondary);
}

.tour-wrapper .accordion-body ul {
    margin-left: 20px;
}

.tour-wrapper .el-collapse-item__header {
    font-weight: 600;
    font-size: 15px;
}

/* ============================================
   POST ATTRIBUTES
   ============================================ */
.post-attribute {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 0;
}

.hero-text .post-attribute:before,
.hero-text .post-attribute:after {
    content: "";
    display: table;
}

.hero-text .post-attribute:after {
    clear: both;
}

.hero-text .post-attribute {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 25px;
}

.hero-text .post-attribute li {
    float: left;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}

.post-attribute li > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-attribute li > div > span:first-child {
    color: #616161;
}

.hero-text .post-attribute li > div > span:first-child {
    color: #E0E0E0;
    white-space: nowrap;
}

.post-attribute li > div > span:last-child {
    font-weight: 500;
    text-align: right;
}

/* ============================================
   PRICE DISPLAY
   ============================================ */
.tour-wrapper .icon-tm-price {
    display: block;
    font-size: 13px;
    color: var(--tm-text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.tour-wrapper .price-label {
    display: block;
    font-size: 12px;
    color: var(--tm-text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.tour-wrapper .price-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-wrapper .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: linear-gradient(135deg, var(--tm-background) 0%, #fff 100%);
    border-radius: var(--tm-radius);
    transition: var(--tm-transition);
    border: 1px solid var(--tm-border-light);
}

.tour-wrapper .price-item:hover {
    transform: translateX(4px);
    border-color: var(--tm-primary);
    box-shadow: var(--tm-shadow-sm);
}

.tour-wrapper .price-item .price-label {
    font-size: 14px;
    color: var(--tm-text-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.tour-wrapper .price-item .price-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--tm-primary);
    border-radius: var(--tm-radius-full);
}

.tour-wrapper .price-original,
.tour-wrapper .original-price {
    font-size: 13px;
    color: var(--tm-text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.tour-wrapper .price-current,
.tour-wrapper .current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--tm-text-primary);
}

.tour-wrapper .price-current.discounted,
.tour-wrapper .current-price.discounted {
    color: var(--tm-primary);
}

.tour-wrapper .currency-symbol {
    font-size: 14px;
    font-weight: 600;
}

.tour-wrapper .price-amount {
    letter-spacing: -0.5px;
}

.tour-wrapper .price-unit {
    font-size: 13px;
    color: var(--tm-text-secondary);
    font-weight: 500;
}

.tour-wrapper .booking-form .price-wrapper {
    text-align: right;
}

.tour-wrapper .price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tour-wrapper .price-discount {
    font-size: 20px;
    font-weight: 700;
    color: var(--tm-primary);
}

.tour-wrapper .discount-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--tm-primary), var(--tm-primary-light));
    color: white;
    padding: 4px 10px;
    border-radius: var(--tm-radius-full);
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(var(--tm-primary-rgb), 0.3);
}

.tour-wrapper .discount-tag {
    font-weight: 700;
    animation: wiggle 2s ease-in-out infinite;
}

.tour-wrapper .discount-note {
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--tm-secondary), var(--tm-secondary-light));
    padding: 4px 12px;
    border-radius: var(--tm-radius-full);
    display: inline-block;
    white-space: nowrap;
}

.tour-wrapper .discount-value {
    color: var(--tm-success) !important;
    font-weight: 700;
}

.tour-wrapper .price-note {
    display: block;
    margin-top: 12px;
    color: var(--tm-text-secondary);
    font-size: 13px;
}

.tour-wrapper .price-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--tm-border);
}

.tour-wrapper .price-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.tour-wrapper .price-detail-item span {
    color: var(--tm-text-secondary);
}

.tour-wrapper .price-detail-item strong {
    color: var(--tm-text-primary);
    font-weight: 600;
}

/* ============================================
   RATING & REVIEWS
   ============================================ */
.tour-wrapper .rating-list {
    margin-top: 32px;
}

.tour-wrapper .rating-item {
    margin-bottom: 32px;
    padding: 20px;
    background: var(--tm-surface);
    border-radius: var(--tm-radius-lg);
    border: 1px solid var(--tm-border-light);
    transition: var(--tm-transition);
}

.tour-wrapper .rating-item:hover {
    box-shadow: var(--tm-shadow);
}

.tour-wrapper .rating-stars ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    gap: 2px;
}

.tour-wrapper .rating-stars ul > li.star {
    display: inline-block;
    cursor: pointer;
}

.tour-wrapper .rating-stars ul > li.star > i.icon-star {
    font-size: 1.2em;
    color: #E5E7EB;
    transition: var(--tm-transition-fast);
}

.tour-wrapper .rating-stars ul > li.star.hover > i.icon-star,
.tour-wrapper .rating-stars ul > li.star > i.icon-star.hover {
    color: #FBBF24;
}

.tour-wrapper .rating-stars ul > li.star.selected > i.icon-star {
    color: #F59E0B;
}

.tour-wrapper .box-rating-comment > * {
    display: inline-flex;
}

.tour-wrapper .box-rating-comment > *:not(:last-child) {
    margin-right: 15px;
}

.tour-wrapper .box-rating-comment .point {
    background: linear-gradient(135deg, var(--tm-primary), var(--tm-primary-light));
    font-size: 0.9rem;
    padding: 4px 10px;
    border-radius: var(--tm-radius);
    font-weight: bold;
    color: #ffffff;
}

.tour-wrapper .box-rating-comment .count {
    font-size: 0.9rem;
    color: var(--tm-text-secondary);
}

.tour-wrapper .box-rated {
    background-color: var(--tm-surface);
    padding: 24px 20px;
    border-radius: var(--tm-radius-lg);
    border: 1px solid var(--tm-border-light);
}

.tour-wrapper .rating-summary {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.tour-wrapper .average-rating {
    font-size: 36px;
    font-weight: 700;
    color: var(--tm-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.tour-wrapper .average-rating .icon-star {
    color: #F59E0B;
    font-size: 24px;
}

.tour-wrapper .comment-avatar {
    border-radius: var(--tm-radius-full);
    overflow: hidden;
    background: var(--tm-background);
    width: 48px;
    height: 48px;
}

.tour-wrapper .comment-info p {
    margin-bottom: 0;
}

.tour-wrapper .comment-date {
    font-size: 13px;
    color: var(--tm-text-muted);
}

.tour-wrapper .rating-item .rating-item_header {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-wrapper .rating-item .comment-text {
    color: var(--tm-text-primary);
    font-weight: 500;
    line-height: 1.7;
}

.tour-wrapper .review-tripadvisor-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px;
    background: var(--tm-background);
    border-radius: var(--tm-radius-lg);
}

.tour-wrapper .review-tripadvisor-group .logo-tripadvisor {
    max-width: 160px;
}

.tour-wrapper .review-tripadvisor-group .button-comment {
    margin-bottom: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.tour-wrapper .hero {
    margin-top: -30px;
    background-size: cover;
    background-position: center;
    min-height: calc(100vh + 180px);
    display: flex;
    align-items: flex-end;
    color: white;
    position: relative;
}

.tour-wrapper .hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, var(--tm-secondary-dark) 0%, var(--tm-secondary-dark) 50%, rgba(1, 74, 122, 0) 80%);
}

.tour-wrapper .hero .container {
    position: relative;
    z-index: 9;
}

.tour-wrapper .hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.tour-wrapper .hero-text p,
.tour-wrapper .hero-text .excerpt {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}
.sidebar-tour .white.is-outline{
    border-color: #fff;
}
.sidebar-tour .white.is-outline span{
    color: #fff;
}
.sidebar-tour .white.is-outline:hover span{
    color: #333;
}
/* ============================================
   BOOKING FORM (Sidebar)
   ============================================ */
.tour-wrapper .booking-form {
    background: var(--tm-surface);
    padding: 15px;
    border-radius: var(--tm-radius-xl);
    box-shadow: var(--tm-shadow-lg);
    color: var(--tm-text-primary);
    border: 1px solid var(--tm-border-light);
}

.tour-wrapper .booking-form h3 {
    color: var(--tm-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.tour-wrapper .form-group {
    margin-bottom: 16px;
}

.tour-wrapper .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--tm-text-secondary);
    font-size: 14px;
}

.tour-wrapper .form-group input,
.tour-wrapper .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--tm-border);
    border-radius: var(--tm-radius);
    font-size: 15px;
    transition: var(--tm-transition);
    background: var(--tm-surface);
}

.tour-wrapper .form-group input:focus,
.tour-wrapper .form-group select:focus {
    outline: none;
    border-color: var(--tm-primary);
    box-shadow: 0 0 0 4px rgba(var(--tm-primary-rgb), 0.1);
}

.tour-wrapper .price-display {
    background: linear-gradient(135deg, var(--tm-background) 0%, #fff 100%);
    padding: 20px;
    border-radius: var(--tm-radius-lg);
    margin-bottom: 20px;
    border: 1px solid var(--tm-border-light);
}

.tour-wrapper .price-display .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--tm-primary);
}

.tour-wrapper .btn-book,
.tour-wrapper .booking-form .button.primary {
    width: 100%;
    background: linear-gradient(135deg, var(--tm-primary), var(--tm-primary-light));
    color: white;
    border: none;
    border-radius: var(--tm-radius-full);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--tm-transition);
    box-shadow: 0 4px 14px rgba(var(--tm-primary-rgb), 0.4);
}

.tour-wrapper .btn-book:hover,
.tour-wrapper .booking-form .button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--tm-primary-rgb), 0.5);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.tour-wrapper .main-content {
    background: var(--tm-background);
    padding: 60px 0;
}

.tour-wrapper .section-box {
    background-color: var(--tm-surface);
    padding: 28px 24px;
    border-radius: var(--tm-radius-xl);
    margin-bottom: 28px;
    box-shadow: var(--tm-shadow-sm);
    border: 1px solid var(--tm-border-light);
    transition: var(--tm-transition);
}

.tour-wrapper .section-box:hover {
    box-shadow: var(--tm-shadow);
}

/* ============================================
   TOUR GALLERY
   ============================================ */
.tour-wrapper .wrapper-tour-images {
    position: relative;
}

.tour-wrapper .tour-gallery {
    position: relative;
    border-radius: var(--tm-radius-lg);
    overflow: hidden;
    margin-left: -6px;
    margin-right: -6px;
}

.tour-wrapper .tour-gallery:before,
.tour-wrapper .tour-gallery:after {
    content: "";
    display: table;
}

.tour-wrapper .tour-gallery:after {
    clear: both;
}

.tour-wrapper .tour-gallery .tour-gallery__image {
    float: left;
    width: 33.3333333333%;
    padding: 6px;
}

.tour-wrapper .tour-gallery .tour-gallery__image:nth-child(1) {
    width: 100%;
}

.tour-wrapper .tour-gallery .tour-gallery__image:nth-child(5),
.tour-wrapper .tour-gallery .tour-gallery__image:nth-child(6) {
    width: 50%;
}

.tour-wrapper .tour-gallery .tour-gallery__image .image-cover {
    padding-top: 65%;
    border-radius: var(--tm-radius);
    overflow: hidden;
    transition: var(--tm-transition);
}

.tour-wrapper .tour-gallery .tour-gallery__image:hover .image-cover {
    transform: scale(1.02);
    box-shadow: var(--tm-shadow-md);
}

.tour-wrapper .tour-gallery.count-image-1 .tour-gallery__image {
    width: 100%;
}

.tour-wrapper .tour-gallery.count-image-2 .tour-gallery__image,
.tour-wrapper .tour-gallery.count-image-4 .tour-gallery__image {
    width: 50%;
}

.tour-wrapper .tour-gallery.count-image-1 .tour-gallery__image .image-cover {
    padding-top: 48%;
}

.tour-wrapper .tour-gallery.count-image-2 .tour-gallery__image .image-cover {
    padding-top: 90%;
}

.tour-wrapper .tour-all-photos-count {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 8px 16px;
    border-radius: var(--tm-radius-full);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: var(--tm-transition);
    cursor: pointer;
}

.tour-wrapper .tour-all-photos-count:hover {
    background-color: var(--tm-primary);
    transform: scale(1.05);
}

/* ============================================
   SIDEBAR
   ============================================ */
.tour-wrapper .wrapper-list-item-section {
    border-radius: var(--tm-radius-xl);
    background: linear-gradient(135deg, var(--tm-secondary), var(--tm-secondary-dark));
    padding: 20px;
    box-shadow: var(--tm-shadow-lg);
}

.tour-wrapper .list-item-section {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-wrapper .list-item-section li {
    margin-bottom: 0;
}

.tour-wrapper .list-item-section li a {
    position: relative;
    display: block;
    color: rgba(255, 255, 255, 0.9);
    padding: 14px 16px;
    transition: var(--tm-transition);
    border-radius: var(--tm-radius);
    font-weight: 500;
}

.tour-wrapper .list-item-section li a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding-left: 20px;
}

.tour-wrapper .list-item-section li a.active {
    background-color: #fff;
    color: var(--tm-primary);
    font-weight: 600;
    box-shadow: var(--tm-shadow);
}

.tour-wrapper .list-item-section li:not(:last-child) a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
}

.tour-wrapper .sidebar-tour {
    margin-top: -610px;
    transition: var(--tm-transition);
}

.tour-wrapper .sidebar-tour.sticky .wrapper-list-item-section {
    position: sticky;
    top: 100px;
}

.admin-bar .tour-wrapper .sidebar-tour.sticky .wrapper-list-item-section {
    top: calc(100px + 32px);
}

.tour-wrapper .tour-sidebar {
    background-color: var(--tm-surface);
    padding: 20px;
    border-radius: var(--tm-radius-lg);
    box-shadow: var(--tm-shadow-sm);
    border: 1px solid var(--tm-border-light);
}

.tour-wrapper .sticky {
    position: sticky;
    top: 20px;
}

/* ============================================
   CALENDAR STYLES
   ============================================ */
.tour-wrapper .custom-calendar,
.tour-wrapper .custom-calendar-dt {
    border-radius: var(--tm-radius-xl);
    overflow: hidden;
    box-shadow: var(--tm-shadow-md);
    background: var(--tm-surface);
    transition: var(--tm-transition);
    border: 1px solid var(--tm-border-light);
}

.tour-wrapper .custom-calendar:hover {
    box-shadow: var(--tm-shadow-lg);
}

.tour-wrapper .custom-calendar .el-calendar__header,
.tour-wrapper .custom-calendar-dt .el-calendar__header {
    padding: 15px;
    background: linear-gradient(135deg, var(--tm-secondary) 0%, var(--tm-secondary-dark) 100%);
    border-bottom: none;
    flex-direction: column;
}

.tour-wrapper .custom-calendar .el-button-group {
    width: 100%;
    display: flex;
    justify-content: center;
}

.tour-wrapper .custom-calendar-dt .el-calendar__header {
    padding: 16px;
}

.tour-wrapper .custom-calendar .el-calendar__title,
.tour-wrapper .custom-calendar-dt .el-calendar__title {
    color: white !important;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.tour-wrapper .custom-calendar .el-calendar__button-group,
.tour-wrapper .custom-calendar-dt .el-calendar__button-group {
    display: flex;
    gap: 8px;
}

.tour-wrapper .custom-calendar .el-calendar__button-group button,
.tour-wrapper .custom-calendar-dt .el-calendar__button-group button {
    margin-bottom: 0;
}

.tour-wrapper .custom-calendar .el-calendar__button-group button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.tour-wrapper .custom-calendar .el-calendar__body,
.tour-wrapper .custom-calendar-dt .el-calendar__body {
    padding: 20px;
}

.tour-wrapper .custom-calendar-dt .el-calendar__header,
.tour-wrapper .custom-calendar-dt .el-calendar__body {
    padding: 0;
}

.tour-wrapper .custom-calendar-dt .el-calendar__header {
    padding-bottom: 15px;
}

.tour-wrapper .custom-calendar .el-calendar-table,
.tour-wrapper .custom-calendar-dt .el-calendar-table {
    width: 100%;
    margin-bottom: 0;
}

.tour-wrapper .custom-calendar .el-calendar-table thead th,
.tour-wrapper .custom-calendar-dt .el-calendar-table thead th {
    color: var(--tm-text-secondary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 4px;
    border-bottom: 2px solid var(--tm-border-light);
    text-align: center;
}

.tour-wrapper .custom-calendar .el-calendar-table td,
.tour-wrapper .custom-calendar-dt .el-calendar-table td {
    padding: 2px;
}

.tour-wrapper .custom-calendar .el-calendar-table .el-calendar-day,
.tour-wrapper .custom-calendar-dt .el-calendar-table .el-calendar-day {
    height: 100%;
    padding: 0;
    min-height: 60px;
    line-height: 1;
    text-align: center;
}

.tour-wrapper .custom-calendar-dt tr:first-child td {
    border-top-width: 0;
}

.tour-wrapper .custom-calendar-dt .el-calendar__header .el-button-group .el-button {
    margin-bottom: 0;
}

.tour-wrapper .custom-calendar-dt .el-calendar__header .el-button-group .el-button:last-child {
    margin-right: 0;
}

.tour-wrapper .custom-calendar-dt .el-calendar__header .el-button-group .el-button:not(:nth-child(2)) span {
    font-size: 0;
}

.tour-wrapper .custom-calendar-dt .el-calendar__header .el-button-group .el-button:first-child:after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/icon-ArrowLeft.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.tour-wrapper .custom-calendar-dt .el-calendar__header .el-button-group .el-button:last-child:after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/icon-ArrowRight.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

/* Calendar Cell Content */
.tour-wrapper .calendar-cell-content {
    text-align: center;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--tm-transition);
    cursor: pointer;
    position: relative;
    border-radius: var(--tm-radius);
    margin: 2px;
}

.tour-wrapper .calendar-cell-content:hover {
    background: var(--tm-background);
}

.tour-wrapper .calendar-cell-content .day-number {
    font-weight: 600;
    margin: 0;
    color: var(--tm-text-primary);
    line-height: 1;
    font-size: 15px;
}

.tour-wrapper .special-date .calendar-cell-content {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 2px solid #F59E0B;
    border-radius: var(--tm-radius);
}

.tour-wrapper .special-date .calendar-cell-content::after {
    content: '✨';
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 12px;
}

.tour-wrapper .special-day-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tour-wrapper .special-price {
    color: var(--tm-primary);
    font-weight: 700;
    font-size: 13px;
}

.tour-wrapper .seats-info {
    color: var(--tm-text-secondary);
    font-size: 10px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--tm-radius-full);
}

.tour-wrapper .regular-day-info {
    margin-top: 4px;
}

.tour-wrapper .regular-price {
    color: var(--tm-secondary);
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.tour-wrapper .selected-date .calendar-cell-content {
    background: linear-gradient(135deg, var(--tm-primary), var(--tm-primary-dark));
    box-shadow: 0 4px 14px rgba(var(--tm-primary-rgb), 0.4);
    border: 2px solid var(--tm-primary);
    border-radius: var(--tm-radius);
}

.tour-wrapper .selected-date .calendar-cell-content .day-number {
    color: white;
    font-size: 18px;
}

.tour-wrapper .selected-date .special-price,
.tour-wrapper .selected-date .regular-price {
    color: var(--tm-primary);
}

.tour-wrapper .selected-date .seats-info {
    background: rgba(255, 255, 255, 0.25);
    color: var(--tm-primary);
}

.tour-wrapper .past-disabled,
.tour-wrapper .el-calendar-table__row td.past-disabled,
.tour-wrapper .el-calendar-table__row td.past-disabled .el-calendar-day,
.tour-wrapper .custom-calendar-dt .past-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.tour-wrapper .past-date .calendar-cell-content {
    background: var(--tm-background);
    color: var(--tm-text-muted);
    cursor: not-allowed;
}

.tour-wrapper .past-date .calendar-cell-content .day-number {
    color: var(--tm-text-muted);
}

.tour-wrapper .custom-calendar td:not(.past-disabled):not(.selected-date):hover .calendar-cell-content {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.tour-wrapper .custom-calendar .el-calendar-table td.prev,
.tour-wrapper .custom-calendar .el-calendar-table td.next {
    opacity: 0.5;
}

/* ============================================
   BOOKING INFO CARD
   ============================================ */
.tour-wrapper .booking-info-card {
    background: var(--tm-surface);
    border-radius: var(--tm-radius-xl);
    padding: 28px 24px;
    box-shadow: var(--tm-shadow-md);
    transition: var(--tm-transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--tm-border-light);
}

.tour-wrapper .booking-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tm-primary), var(--tm-secondary));
}

.tour-wrapper .booking-info-card:hover {
    box-shadow: var(--tm-shadow-lg);
}

.tour-wrapper .selected-date-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tour-wrapper .date-header {
    margin: 0;
    color: var(--tm-text-primary);
    font-size: 18px;
    font-weight: 700;
}

.tour-wrapper .special-day-badge {
    animation: pulse 2s ease-in-out infinite;
}

.tour-wrapper .special-day-badge .el-tag {
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--tm-radius-full);
    background: linear-gradient(135deg, var(--tm-primary), var(--tm-primary-light));
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(var(--tm-primary-rgb), 0.3);
}

.tour-wrapper .seats-available {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    margin-top: 15px;
    background: linear-gradient(135deg, rgba(var(--tm-secondary-rgb), 0.1) 0%, rgba(var(--tm-secondary-rgb), 0.05) 100%);
    border-radius: var(--tm-radius);
    color: var(--tm-secondary);
    font-weight: 600;
    font-size: 14px;
    animation: fadeInUp 0.5s ease;
    border-top: 2px dashed var(--tm-secondary);
}

.tour-wrapper .seats-available .el-icon {
    font-size: 20px;
}

/* ============================================
   PASSENGER SELECTION
   ============================================ */
.tour-wrapper .passenger-selection {
    margin: 24px 0;
}
.tour-wrapper .passenger-selection p{
    margin-bottom: 5px;
}
.tour-wrapper .tour-booking__passenger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--tm-background);
    border-radius: var(--tm-radius);
    margin-bottom: 12px;
    transition: var(--tm-transition);
    border: 1px solid transparent;
}

.tour-wrapper .tour-booking__passenger:hover {
    border-color: var(--tm-primary);
    background: linear-gradient(135deg, rgba(var(--tm-primary-rgb), 0.05) 0%, transparent 100%);
}

.tour-wrapper .tour-booking__passenger:last-child {
    margin-bottom: 0;
}

.tour-wrapper .tour-booking__passenger-label {
    font-size: 15px;
    color: var(--tm-text-primary);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 50px;
}

.tour-wrapper .tour-booking__passenger > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tour-wrapper .tour-booking__price {
    font-weight: 700;
    color: var(--tm-secondary);
    font-size: 15px;
    white-space: nowrap;
    text-align: right;
    margin-left: 10px;
    min-width: 30px;
}

.tour-wrapper .el-button.el-button--warning {
    color: var(--tm-primary);
}

.tour-wrapper .tour-booking__input-number {
    width: 120px;
}

.tour-wrapper .readonly-notice {
    margin-bottom: 16px;
}

.tour-wrapper .readonly-input .el-input-number.is-disabled {
    opacity: 0.7;
}

.tour-wrapper .readonly-input .el-input__inner:disabled {
    background-color: #f5f7fa;
    cursor: not-allowed;
}

/* ============================================
   TOTAL SECTION
   ============================================ */
.tour-wrapper .tour-booking__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 20px;
    background: linear-gradient(135deg, var(--tm-primary), var(--tm-primary-dark));
    border-radius: var(--tm-radius-lg);
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(var(--tm-primary-rgb), 0.35);
    position: relative;
    overflow: hidden;
}

.tour-wrapper .tour-booking__total::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shine 3s infinite;
}

.tour-wrapper .tour-booking__total-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.tour-wrapper .total-price-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    z-index: 1;
}

.tour-wrapper .tour-booking__total-price {
    font-size: 28px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tour-wrapper .total-passengers {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: var(--tm-radius-full);
}

/* ============================================
   BOOKING BUTTON
   ============================================ */
.tour-wrapper .booking-button {
    width: 100%;
    background: linear-gradient(135deg, var(--tm-primary), var(--tm-primary-light));
    color: white;
    padding: 3px 32px !important;
    border: none;
    border-radius: var(--tm-radius-full) !important;
    font-size: 16px !important;
    font-weight: 700;
    cursor: pointer;
    transition: var(--tm-transition);
    box-shadow: 0 4px 14px rgba(var(--tm-primary-rgb), 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-wrapper .booking-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--tm-primary-rgb), 0.5);
}

.tour-wrapper .booking-button:active {
    transform: translateY(-1px);
}

/* ============================================
   PAYMENT METHOD
   ============================================ */
.tour-wrapper .payment-method-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.tour-wrapper .payment-method-group .payment-radio {
    margin: 0 !important;
    padding: 16px;
    border: 2px solid var(--tm-border);
    border-radius: var(--tm-radius);
    transition: var(--tm-transition);
    width: 100%;
    height: 44px;
}

.tour-wrapper .payment-radio:hover {
    border-color: var(--tm-secondary);
    background: var(--tm-background);
}

.tour-wrapper .payment-radio.is-checked {
    border-color: var(--tm-secondary);
    background: linear-gradient(135deg, rgba(var(--tm-secondary-rgb), 0.08) 0%, transparent 100%);
}

.tour-wrapper .payment-radio .el-radio__input.is-checked+.el-radio__label {
    color: var(--tm-secondary);
}

.tour-wrapper .payment-radio .el-radio__input.is-checked .el-radio__inner {
    background: var(--tm-secondary);
    border-color: var(--tm-secondary);
}

.tour-wrapper .payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.tour-wrapper .payment-option i {
    font-size: 20px;
    color: var(--tm-secondary);
}

.tour-wrapper .bank-info {
    margin-top: 12px;
}

.tour-wrapper .bank-details p {
    margin: 8px 0;
    font-size: 14px;
}

.tour-wrapper .copy-text {
    cursor: pointer;
    color: var(--tm-secondary);
    text-decoration: underline;
    transition: color 0.3s;
}

.tour-wrapper .copy-text:hover {
    color: var(--tm-secondary-dark);
}

.tour-wrapper .copy-text i {
    font-size: 12px;
}

/* ============================================
   SUMMARY
   ============================================ */
.tour-wrapper .tour-selected-info {
    background: var(--tm-background);
    padding: 20px;
    border-radius: var(--tm-radius-lg);
}

.tour-wrapper .tour-selected-info .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--tm-border-light);
}

.tour-wrapper .tour-selected-info .info-row:last-child {
    border-bottom: none;
}

.tour-wrapper .tour-selected-info .label {
    font-weight: 600;
    color: var(--tm-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-wrapper .tour-selected-info .value {
    color: var(--tm-text-primary);
    font-weight: 500;
}

.tour-wrapper .tour-booking__summary {
    padding: 0;
}

.tour-wrapper .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

.tour-wrapper .summary-row.discount-row {
    color: var(--tm-success);
    font-weight: 600;
}

.tour-wrapper .summary-row.discount-row i {
    margin-right: 4px;
}

/* ============================================
   ALERTS & NOTIFICATIONS
   ============================================ */
.tour-wrapper .el-alert {
    border-radius: var(--tm-radius);
    padding: 16px 20px;
    animation: fadeInUp 0.4s ease;
}

.tour-wrapper .el-alert.el-alert--error {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border: 1px solid #FECACA;
}

.tour-wrapper .booking-notes {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(var(--tm-secondary-rgb), 0.08) 0%, rgba(var(--tm-secondary-rgb), 0.03) 100%);
    border-radius: var(--tm-radius);
    color: var(--tm-secondary);
    border-left: 4px solid var(--tm-secondary);
    animation: slideInLeft 0.5s ease;
}

.tour-wrapper .booking-notes .el-icon {
    font-size: 20px;
}

.tour-wrapper .booking-notes small {
    font-size: 13px;
    font-weight: 500;
}

/* ============================================
   MISC
   ============================================ */
.single-st_tours .page-wrapper,
.single-st_tours .main-content {
    padding-bottom: 0;
}

.tour-wrapper .el-divider {
    margin: 24px 0;
    background: linear-gradient(90deg, transparent, var(--tm-border), transparent);
}

.tour-wrapper .el-loading-mask {
    border-radius: var(--tm-radius-lg);
    backdrop-filter: blur(4px);
}

.tour-wrapper .el-loading-spinner .el-loading-text {
    color: var(--tm-secondary);
    font-weight: 600;
    font-size: 15px;
}

.tour-wrapper .el-loading-spinner .circular {
    width: 48px;
    height: 48px;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.tour-wrapper .el-input__wrapper input {
    padding: 0;
    border: 0;
    box-shadow: none;
    margin: 0;
}

.tour-wrapper .el-input__wrapper input:focus {
    background-color: transparent;
    box-shadow: none;
}

.tour-wrapper .el-form-item.is-error .el-input__inner,
.tour-wrapper .el-form-item.is-error .el-textarea__inner {
    border-color: var(--tm-error) !important;
}

.tour-wrapper .el-form-item__error {
    color: var(--tm-error);
    font-size: 12px;
    line-height: 1;
    padding-top: 6px;
}

.tour-wrapper .el-form-item.relative {
    position: relative;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.tour-wrapper .calendar-cell-content:focus,
.tour-wrapper .booking-button:focus,
.tour-wrapper .tour-booking__input-number:focus {
    outline: 3px solid var(--tm-secondary);
    outline-offset: 2px;
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media only screen and (min-width: 1024px) {
    .tour-wrapper .custom-calendar .el-calendar__title {
        font-size: 18px;
    }
    
    .tour-wrapper .calendar-cell-content {
        min-height: 68px;
    }
    
    .tour-wrapper .booking-info-card {
        padding: 20px 15px;
    }
    
    .tour-wrapper .sticky {
        position: static;
    }
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media only screen and (max-width: 854px) {
    .tour-wrapper .hero-text .post-attribute li {
        width: 100%;
    }
    
    .tour-wrapper .sidebar-tour {
        display: none;
    }
}

@media (max-width: 768px) {
    .tour-wrapper .booking-info-card {
        padding: 24px 20px;
        margin-top: 20px;
    }
    
    .tour-wrapper .date-header {
        font-size: 16px;
    }
    
    .tour-wrapper .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px;
    }
    
    .tour-wrapper .price-value {
        width: 100%;
        justify-content: space-between;
    }
    
    .tour-wrapper .tour-booking__passenger {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 16px;
    }
    
    .tour-wrapper .tour-booking__passenger > div {
        width: 100%;
        justify-content: space-between;
    }
    
    .tour-wrapper .passenger-input-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .tour-wrapper .tour-booking__input-number {
        flex: 1;
        max-width: 160px;
        width: 100px;
    }
    
    .tour-wrapper .tour-booking__price {
        min-width: auto;
    }
    
    .tour-wrapper .tour-booking__total {
        flex-direction: column;
        gap: 14px;
        text-align: center;
        padding: 24px 20px;
    }
    
    .tour-wrapper .total-price-group {
        align-items: center;
    }
    
    .tour-wrapper .tour-booking__total-price {
        font-size: 26px;
    }
    
    .tour-wrapper .calendar-cell-content {
        min-height: 60px;
    }
    
    .tour-wrapper .calendar-cell-content .day-number {
        font-size: 14px;
    }
    
    .tour-wrapper .special-price,
    .tour-wrapper .regular-price {
        font-size: 11px;
    }
    
    .tour-wrapper .price-discount {
        font-size: 18px;
    }
    
    .tour-wrapper .review-tripadvisor-group {
        margin-bottom: 16px;
    }
    
    .tour-wrapper .payment-option {
        font-size: 14px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media only screen and (max-width: 554px) {
    .tour-wrapper .el-calendar-table .el-calendar-day {
        height: auto !important;
        min-height: 50px;
    }
    
    .tour-wrapper .review-tripadvisor-group {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .tour-wrapper .section-box {
        padding: 20px 16px;
        border-radius: var(--tm-radius-lg);
    }
    
    .tour-wrapper .booking-info-card {
        padding: 20px 16px;
        border-radius: var(--tm-radius-lg);
    }
    
    .tour-wrapper .custom-calendar {
        border-radius: var(--tm-radius-lg);
    }
    
    .tour-wrapper .custom-calendar .el-calendar__header {
        padding: 16px;
    }
    
    .tour-wrapper .custom-calendar .el-calendar__title {
        font-size: 15px;
    }
    
    .tour-wrapper .custom-calendar .el-calendar__button-group button {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .tour-wrapper .calendar-cell-content {
        min-height: 52px;
        padding: 4px 2px;
    }
    
    .tour-wrapper .calendar-cell-content .day-number {
        font-size: 13px;
    }
    
    .tour-wrapper .special-price,
    .tour-wrapper .regular-price {
        font-size: 10px;
    }
    
    .tour-wrapper .date-header {
        font-size: 15px;
    }
    
    .tour-wrapper .price-display-section {
        padding: 16px;
    }
    
    .tour-wrapper .tour-booking__passenger {
        padding: 14px 12px;
    }
    
    .tour-wrapper .tour-booking__passenger-label {
        font-size: 14px;
    }
    
    .tour-wrapper .tour-booking__total {
        padding: 20px 16px;
    }
    
    .tour-wrapper .tour-booking__total-label {
        font-size: 15px;
    }
    
    .tour-wrapper .tour-booking__total-price {
        font-size: 24px;
    }
    
    .tour-wrapper .booking-button {
        padding: 16px 24px !important;
        font-size: 15px !important;
    }
    
    .tour-wrapper .section-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 360px) {
    .tour-wrapper .calendar-cell-content {
        min-height: 48px;
    }
    
    .tour-wrapper .calendar-cell-content .day-number {
        font-size: 12px;
    }
    
    .tour-wrapper .special-price,
    .tour-wrapper .regular-price {
        font-size: 10px;
    }
    
    .tour-wrapper .tour-booking__total-price {
        font-size: 22px;
    }
}

/* ============================================
   HIGH CONTRAST MODE
   ============================================ */
@media (prefers-contrast: high) {
    .tour-wrapper .calendar-cell-content,
    .tour-wrapper .booking-info-card {
        border: 2px solid currentColor;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .tour-wrapper *,
    .tour-wrapper *::before,
    .tour-wrapper *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .tour-wrapper .booking-button,
    .tour-wrapper .custom-calendar .el-calendar__button-group {
        display: none;
    }
    
    .tour-wrapper .booking-info-card,
    .tour-wrapper .custom-calendar {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}

/**
 * Tour Card Listing Styles
 * Professional and modern design for tour listings
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --tour-primary: #1a5f7a;
    --tour-primary-dark: #0d3d4d;
    --tour-primary-light: #2d8bba;
    --tour-secondary: #ff6b35;
    --tour-secondary-dark: #e55a2b;
    --tour-success: #10b981;
    --tour-warning: #f59e0b;
    --tour-text: #1f2937;
    --tour-text-secondary: #6b7280;
    --tour-text-muted: #9ca3af;
    --tour-bg: #ffffff;
    --tour-bg-light: #f8fafc;
    --tour-border: #e5e7eb;
    --tour-radius: 16px;
    --tour-radius-sm: 8px;
    --tour-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --tour-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --tour-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Section Title
   ============================================ */
.tour-section-title,
.section-title-tours {
    font-size: 32px;
    font-weight: 700;
    color: var(--tour-primary-dark);
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 16px;
}

.tour-section-title::after,
.section-title-tours::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--tour-secondary) 0%, var(--tour-primary) 100%);
    border-radius: 2px;
}

/* ============================================
   Tour Card Base
   ============================================ */
.tour-item {
    height: 100%;
}

.tour-item .col-inner {
    height: 100%;
}

/* ============================================
   Tour Image
   ============================================ */
.tour-item .box-image {
    position: relative;
    overflow: hidden;
}

.tour-item .box-image .image-cover {
    padding-top: 66.67% !important; /* 3:2 aspect ratio */
    position: relative;
    overflow: hidden;
}

.tour-item .box-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--tour-transition);
}

.tour-item .box-tour-post:hover .box-image img {
    transform: scale(1.08);
}

/* Image Overlay Gradient */
.tour-item .box-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: var(--tour-transition);
}

.tour-item .box-tour-post:hover .box-image::after {
    opacity: 1;
}

/* Badge/Tag on Image */
.tour-item .box-image .tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--tour-secondary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Wishlist Button */
.tour-item .box-image .wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tour-transition);
    z-index: 2;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.tour-item .box-image .wishlist-btn:hover {
    background: var(--tour-secondary);
    color: #fff;
    transform: scale(1.1);
}

/* Tour Info Tags */
.tour-item .list-info-tour {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-item .list-info-tour li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tour-bg-light);
    color: var(--tour-text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--tour-border);
    margin-left: 0;
    margin-bottom: 0;
}

.tour-item .list-info-tour li::before {
    content: '⏱';
    font-size: 14px;
}

.tour-item .list-info-tour li.calendar::before {
    content: '🕐';
}

.tour-item .list-info-tour li.location::before {
    content: '📍';
}

.tour-item .list-info-tour li.difficulty::before {
    content: '⚡';
}

/* Tour Title */
.tour-item .post-title {
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.tour-item .post-title a {
    font-size: 18px;
    font-weight: 700;
    color: var(--tour-text);
    text-decoration: none;
    transition: var(--tour-transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-item .post-title a:hover {
    color: var(--tour-primary);
}

/* ============================================
   Rating Section
   ============================================ */
.tour-item .tour-card__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tour-item .tour-card__rating-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--tour-text);
    background: var(--tour-bg-light);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Star Rating */
.tour-item .tour-card__stars,
.tour-item .star-rating {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    letter-spacing: 2px;
}

.tour-item .star-rating::before {
    content: '★★★★★';
    color: #e5e7eb;
}

.tour-item .star-rating span {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
}

.tour-item .star-rating span::before {
    content: '★★★★★';
    color: #fbbf24;
}

/* Review Link */
.tour-item .tour-card__review-link {
    font-size: 13px;
    color: var(--tour-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--tour-transition);
}

.tour-item .tour-card__review-link:hover {
    color: var(--tour-primary-dark);
    text-decoration: underline;
}

/* ============================================
   Price Section
   ============================================ */
.tour-item .tour-price-wrapper {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--tour-border);
}

.tour-item .tour-price-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-item .tour-price-content > span:first-child {
    font-size: 13px;
    color: var(--tour-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-item .price-group {
    text-align: right;
}

.tour-item .price-current {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.tour-item .currency-symbol {
    font-size: 16px;
    font-weight: 600;
    color: var(--tour-primary);
}

.tour-item .price-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--tour-primary);
    line-height: 1;
}

.tour-item .price-unit {
    font-size: 13px;
    font-weight: 500;
    color: var(--tour-text-muted);
    margin-left: 2px;
}

/* Original Price (Strikethrough) */
.tour-item .price-original {
    font-size: 14px;
    color: var(--tour-text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

/* Discount Badge */
.tour-item .discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
}

/* ============================================
   Hover Effects - Book Now Button
   ============================================ */
.tour-item .box-tour-post .book-now-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--tour-primary) 0%, transparent 100%);
    padding: 60px 20px 20px;
    transform: translateY(100%);
    transition: var(--tour-transition);
}

.tour-item .box-tour-post:hover .book-now-overlay {
    transform: translateY(0);
}

.tour-item .book-now-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: var(--tour-secondary);
    color: #fff;
    text-align: center;
    border-radius: var(--tour-radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--tour-transition);
}

.tour-item .book-now-btn:hover {
    background: var(--tour-secondary-dark);
}

/* ============================================
   Card Variations
   ============================================ */

/* Featured Tour */
.tour-item.featured .box-tour-post {
    border: 2px solid var(--tour-secondary);
}

.tour-item.featured .box-image::before {
    content: 'FEATURED';
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--tour-secondary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

/* Best Seller */
.tour-item.best-seller .box-image::before {
    content: '🔥 BEST SELLER';
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* ============================================
   Loading Skeleton
   ============================================ */
.tour-item.loading .box-image,
.tour-item.loading .post-title,
.tour-item.loading .list-info-tour,
.tour-item.loading .tour-card__rating,
.tour-item.loading .tour-price-wrapper {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--tour-radius-sm);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   No Results
   ============================================ */
.no-tours-found {
    text-align: center;
    padding: 60px 20px;
    background: var(--tour-bg-light);
    border-radius: var(--tour-radius);
    border: 2px dashed var(--tour-border);
}

.no-tours-found h3 {
    font-size: 20px;
    color: var(--tour-text);
    margin-bottom: 8px;
}

.no-tours-found p {
    color: var(--tour-text-muted);
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    .tour-section-title,
    .section-title-tours {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .tour-item .box-text-inner {
        padding: 16px;
    }
    
    .tour-item .post-title a {
        font-size: 16px;
    }
    
    .tour-item .price-amount {
        font-size: 24px;
    }
    
    .tour-item .list-info-tour li {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* ============================================
   Animation on Scroll
   ============================================ */
.tour-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.tour-item:nth-child(1) { animation-delay: 0.1s; }
.tour-item:nth-child(2) { animation-delay: 0.2s; }
.tour-item:nth-child(3) { animation-delay: 0.3s; }
.tour-item:nth-child(4) { animation-delay: 0.4s; }
.tour-item:nth-child(5) { animation-delay: 0.5s; }
.tour-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Dark Mode Support (Optional)
   ============================================ */
@media (prefers-color-scheme: dark) {
    .tour-item .box-tour-post {
        background: #1f2937;
        border-color: #374151;
    }
    
    .tour-item .post-title a {
        color: #f9fafb;
    }
    
    .tour-item .list-info-tour li {
        background: #374151;
        border-color: #4b5563;
        color: #d1d5db;
    }
}
/**
 * Tour Sidebar Filter Styles
 * Professional and clean design for tour filtering
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --sidebar-primary: #1a5f7a;
    --sidebar-primary-dark: #0d3d4d;
    --sidebar-primary-light: #2d8bba;
    --sidebar-secondary: #ff6b35;
    --sidebar-text: #1f2937;
    --sidebar-text-secondary: #6b7280;
    --sidebar-text-muted: #9ca3af;
    --sidebar-bg: #ffffff;
    --sidebar-bg-light: #f8fafc;
    --sidebar-bg-hover: #f1f5f9;
    --sidebar-border: #e5e7eb;
    --sidebar-radius: 12px;
    --sidebar-radius-sm: 8px;
    --sidebar-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --sidebar-transition: all 0.25s ease;
}

/* ============================================
   Mobile Filter Toggle
   ============================================ */
.product-list-filter {
    display: none;
    margin-bottom: 16px;
}

.product-list-filter.show-for-small {
    display: none;
}

@media (max-width: 849px) {
    .product-list-filter.show-for-small {
        display: block;
    }
}

.product-list-filter .filter-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--sidebar-bg);
    border: 2px solid var(--sidebar-border);
    border-radius: var(--sidebar-radius);
    cursor: pointer;
    transition: var(--sidebar-transition);
    font-weight: 600;
    color: var(--sidebar-text);
}

.product-list-filter .filter-icon:hover {
    border-color: var(--sidebar-primary);
    background: var(--sidebar-bg-light);
}

.product-list-filter .filter-icon svg {
    color: var(--sidebar-primary);
}

.product-list-filter .filter-icon .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Sidebar Container
   ============================================ */
.styled-sidebar {
    background: var(--sidebar-bg);
    border-radius: var(--sidebar-radius);
    box-shadow: var(--sidebar-shadow);
    padding: 24px;
    border: 1px solid var(--sidebar-border);
}

/* ============================================
   Filter Box
   ============================================ */
.box-filter {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--sidebar-border);
}

.box-filter:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Filter Title */
.box-filter h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--sidebar-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sidebar-primary);
    display: inline-block;
}

/* ============================================
   Filter List Items
   ============================================ */
.list-styled-item {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-sidebar .list-styled-item li {
    margin-left: 0;
    margin: 0;
    padding: 0;
}

/* Link Style Items */
.list-styled-item li a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--sidebar-bg-light);
    border: 2px solid transparent;
    border-radius: var(--sidebar-radius-sm);
    color: var(--sidebar-text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--sidebar-transition);
    position: relative;
    overflow: hidden;
}

.list-styled-item li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--sidebar-primary);
    transform: scaleY(0);
    transition: var(--sidebar-transition);
}

.list-styled-item li a:hover {
    background: var(--sidebar-bg-hover);
    color: var(--sidebar-primary);
    border-color: var(--sidebar-primary-light);
    transform: translateX(4px);
}

.list-styled-item li a:hover::before {
    transform: scaleY(1);
}

/* Selected State */
.list-styled-item li a.selected {
    background: linear-gradient(135deg, var(--sidebar-primary) 0%, var(--sidebar-primary-dark) 100%);
    color: #ffffff;
    border-color: var(--sidebar-primary);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

.list-styled-item li a.selected::before {
    display: none;
}

.list-styled-item li a.selected::after {
    content: '✓';
    position: absolute;
    right: 16px;
    font-size: 14px;
    font-weight: 700;
}

/* Button Style Items */
.list-styled-item li button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    background: var(--sidebar-bg-light);
    border: 2px solid transparent;
    border-radius: var(--sidebar-radius-sm);
    color: var(--sidebar-text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--sidebar-transition);
    text-align: left;
}

.list-styled-item li button:hover {
    background: var(--sidebar-bg-hover);
    color: var(--sidebar-primary);
    border-color: var(--sidebar-primary-light);
}

.list-styled-item li button.selected {
    background: linear-gradient(135deg, var(--sidebar-primary) 0%, var(--sidebar-primary-dark) 100%);
    color: #ffffff;
    border-color: var(--sidebar-primary);
    font-weight: 600;
}

/* ============================================
   Select Dropdown
   ============================================ */

.box-filter select:hover {
    border-color: var(--sidebar-primary-light);
    background-color: var(--sidebar-bg);
}

.box-filter select:focus {
    outline: none;
    border-color: var(--sidebar-primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.15);
    background-color: var(--sidebar-bg);
}

.box-filter select option {
    padding: 12px;
    font-size: 14px;
}

/* ============================================
   Filter Tags (Alternative Style)
   ============================================ */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tags .tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: var(--sidebar-bg-light);
    border: 1px solid var(--sidebar-border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--sidebar-text-secondary);
    cursor: pointer;
    transition: var(--sidebar-transition);
}

.filter-tags .tag:hover {
    background: var(--sidebar-primary-light);
    border-color: var(--sidebar-primary);
    color: #ffffff;
}

.filter-tags .tag.active {
    background: var(--sidebar-primary);
    border-color: var(--sidebar-primary);
    color: #ffffff;
}

/* ============================================
   Active Filters Display
   ============================================ */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--sidebar-border);
}

.active-filters:empty {
    display: none;
}

.active-filters .filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--sidebar-primary);
    color: #ffffff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.active-filters .filter-chip .remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--sidebar-transition);
}

.active-filters .filter-chip .remove:hover {
    background: rgba(255, 255, 255, 0.4);
}

.active-filters .clear-all {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: transparent;
    border: 1px dashed var(--sidebar-text-muted);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--sidebar-text-muted);
    cursor: pointer;
    transition: var(--sidebar-transition);
}

.active-filters .clear-all:hover {
    border-color: var(--sidebar-secondary);
    color: var(--sidebar-secondary);
}

/* ============================================
   Search Box in Sidebar
   ============================================ */
.sidebar-search {
    position: relative;
    margin-bottom: 24px;
}

.sidebar-search input {
    width: 100%;
    padding: 14px 44px 14px 16px;
    font-size: 14px;
    border: 2px solid var(--sidebar-border);
    border-radius: var(--sidebar-radius-sm);
    transition: var(--sidebar-transition);
    background: var(--sidebar-bg-light);
}

.sidebar-search input:focus {
    outline: none;
    border-color: var(--sidebar-primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.15);
    background: var(--sidebar-bg);
}

.sidebar-search input::placeholder {
    color: var(--sidebar-text-muted);
}

.sidebar-search button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--sidebar-primary);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    transition: var(--sidebar-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-search button:hover {
    background: var(--sidebar-primary-dark);
}

/* ============================================
   Price Range Slider (if needed later)
   ============================================ */
.price-range-container {
    padding: 10px 0;
}

.price-range-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sidebar-primary);
}

.price-range-slider {
    width: 100%;
    height: 6px;
    background: var(--sidebar-bg-hover);
    border-radius: 3px;
    position: relative;
}

.price-range-slider .range-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--sidebar-primary) 0%, var(--sidebar-primary-light) 100%);
    border-radius: 3px;
}

.price-range-slider input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
    position: absolute;
    top: -5px;
}

.price-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--sidebar-bg);
    border: 3px solid var(--sidebar-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 849px) {
    .styled-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        z-index: 9999;
        border-radius: 0;
        overflow-y: auto;
        transition: left 0.3s ease;
        padding-top: 60px;
    }
    
    .styled-sidebar.active {
        left: 0;
    }
    
    .styled-sidebar::before {
        content: 'Filters';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 16px 24px;
        background: var(--sidebar-primary);
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        z-index: 1;
    }
    
    /* Overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: var(--sidebar-transition);
    }
    
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Close button */
    .styled-sidebar .close-sidebar {
        position: fixed;
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        border-radius: 50%;
        color: #ffffff;
        font-size: 20px;
        cursor: pointer;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 850px) {
    .styled-sidebar .close-sidebar {
        display: none;
    }
}

/* ============================================
   Animation
   ============================================ */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.box-filter {
    animation: slideIn 0.4s ease forwards;
}

.box-filter:nth-child(1) { animation-delay: 0.1s; }
.box-filter:nth-child(2) { animation-delay: 0.2s; }
.box-filter:nth-child(3) { animation-delay: 0.3s; }
.box-filter:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   Loading State
   ============================================ */
.styled-sidebar.loading .list-styled-item li,
.styled-sidebar.loading .box-filter select {
    pointer-events: none;
    opacity: 0.6;
}

.styled-sidebar.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid var(--sidebar-border);
    border-top-color: var(--sidebar-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}