/*!
 * Celtic Horizon Tours - Avada Theme Integration CSS
 * Enhanced shortcodes styling for Avada compatibility
 */

/* ==========================================================================
   Base Avada Integration Styles
   ========================================================================== */

.cht-theme-avada {
    font-family: inherit;
    line-height: inherit;
}

.cht-theme-avada.fusion-builder-element {
    margin-bottom: 20px;
}

/* ==========================================================================
   Enhanced Category Navigation Shortcode
   ========================================================================== */

.cht-category-nav-shortcode.cht-theme-avada {
    clear: both;
}

.cht-category-nav-shortcode.cht-style-grid {
    display: grid;
    gap: 20px;
}

.cht-category-nav-shortcode.cht-style-grid.cht-spacing-tight {
    gap: 10px;
}

.cht-category-nav-shortcode.cht-style-grid.cht-spacing-loose {
    gap: 30px;
}

/* Category card styling for Avada */
.cht-theme-avada .cht-category-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.cht-theme-avada .cht-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cht-theme-avada .cht-category-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.cht-theme-avada .cht-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cht-theme-avada .cht-category-card:hover .cht-category-image img {
    transform: scale(1.05);
}

.cht-theme-avada .cht-category-content {
    padding: 20px;
}

.cht-theme-avada .cht-category-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: var(--fusion-color-text, #333);
}

.cht-theme-avada .cht-category-count {
    font-size: 0.9rem;
    color: var(--fusion-color-text-light, #777);
    margin-bottom: 15px;
}

/* Fusion Button Styling */
.cht-theme-avada .cht-category-button {
    background: var(--fusion-color-accent, #ff6900);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cht-theme-avada .cht-category-button:hover {
    background: var(--fusion-color-accent-hover, #e55a00);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ==========================================================================
   Enhanced Packages Shortcode
   ========================================================================== */

.cht-packages-shortcode.cht-theme-avada {
    clear: both;
}

.cht-packages-shortcode.cht-theme-avada .cht-packages-grid {
    display: grid;
    gap: 30px;
    margin-top: 20px;
}

/* Grid columns */
.cht-packages-shortcode.cht-theme-avada .cht-packages-grid.cht-columns-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.cht-packages-shortcode.cht-theme-avada .cht-packages-grid.cht-columns-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cht-packages-shortcode.cht-theme-avada .cht-packages-grid.cht-columns-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Package cards for Avada */
.cht-theme-avada .cht-package-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cht-theme-avada .cht-package-card.cht-hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cht-theme-avada .cht-package-image {
    position: relative;
    overflow: hidden;
}

.cht-theme-avada .cht-package-card.cht-ratio-4-3 .cht-package-image {
    aspect-ratio: 4/3;
}

.cht-theme-avada .cht-package-card.cht-ratio-16-9 .cht-package-image {
    aspect-ratio: 16/9;
}

.cht-theme-avada .cht-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cht-theme-avada .cht-package-card:hover .cht-package-image img {
    transform: scale(1.1);
}

.cht-theme-avada .cht-package-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cht-theme-avada .cht-package-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--fusion-color-text, #333);
    line-height: 1.3;
}

.cht-theme-avada .cht-package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--fusion-color-text-light, #666);
}

.cht-theme-avada .cht-package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fusion-color-accent, #ff6900);
    margin-bottom: 20px;
}

.cht-theme-avada .cht-package-description {
    color: var(--fusion-color-text, #555);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Load more button */
.cht-theme-avada .cht-load-more-button {
    background: var(--fusion-color-accent, #ff6900);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 30px auto 0;
    display: block;
}

.cht-theme-avada .cht-load-more-button:hover {
    background: var(--fusion-color-accent-hover, #e55a00);
    transform: translateY(-2px);
}

/* ==========================================================================
   Enhanced Category Info Shortcode
   ========================================================================== */

.cht-category-info.cht-theme-avada {
    clear: both;
}

.cht-category-info.cht-theme-avada.cht-card-modern {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cht-category-info.cht-theme-avada.cht-card-minimal {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 2px solid var(--fusion-color-accent, #ff6900);
    padding-bottom: 20px;
}

.cht-category-info.cht-theme-avada.cht-card-bordered {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background: #ffffff;
}

/* Image positioning */
.cht-category-info.cht-image-top .cht-category-image {
    width: 100%;
    margin-bottom: 20px;
}

.cht-category-info.cht-image-left {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

.cht-category-info.cht-image-right {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
}

.cht-category-info.cht-image-background {
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.cht-category-info.cht-image-background .cht-category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cht-category-info.cht-image-background .cht-category-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.cht-category-info.cht-image-background .cht-category-title,
.cht-category-info.cht-image-background .cht-category-content,
.cht-category-info.cht-image-background .cht-category-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: #ffffff;
}

.cht-category-info.cht-image-background .cht-category-content-wrapper {
    padding: 60px 40px;
}

/* Title styling */
.cht-theme-avada .cht-category-title {
    margin: 0 0 20px 0;
    line-height: 1.2;
    color: var(--fusion-color-text, #333);
}

.cht-theme-avada .cht-category-title.cht-align-center {
    text-align: center;
}

.cht-theme-avada .cht-category-title.cht-align-right {
    text-align: right;
}

.cht-theme-avada .cht-category-title.cht-size-h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cht-theme-avada .cht-category-title.cht-size-h2 {
    font-size: 2rem;
    font-weight: 600;
}

.cht-theme-avada .cht-category-title.cht-size-h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Content styling */
.cht-theme-avada .cht-category-content {
    line-height: 1.7;
    color: var(--fusion-color-text, #555);
}

.cht-theme-avada .cht-category-content.cht-align-center {
    text-align: center;
}

.cht-theme-avada .cht-category-content.cht-align-right {
    text-align: right;
}

/* ==========================================================================
   Breadcrumbs Shortcode
   ========================================================================== */

.cht-breadcrumbs.cht-theme-avada {
    background: transparent;
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cht-breadcrumbs.cht-theme-avada .cht-breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.cht-breadcrumbs.cht-theme-avada .cht-breadcrumb-item {
    display: flex;
    align-items: center;
}

.cht-breadcrumbs.cht-theme-avada .cht-breadcrumb-separator {
    margin: 0 8px;
    color: var(--fusion-color-text-light, #999);
}

.cht-breadcrumbs.cht-theme-avada a {
    color: var(--fusion-color-accent, #ff6900);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cht-breadcrumbs.cht-theme-avada a:hover {
    color: var(--fusion-color-accent-hover, #e55a00);
    text-decoration: underline;
}

.cht-breadcrumbs.cht-theme-avada .cht-breadcrumb-current {
    color: var(--fusion-color-text, #333);
    font-weight: 500;
}

/* ==========================================================================
   Animation Support
   ========================================================================== */

.cht-theme-avada[data-animation="fadeIn"] {
    animation: chtFadeIn 0.6s ease-out;
}

.cht-theme-avada[data-animation="fadeInUp"] {
    animation: chtFadeInUp 0.6s ease-out;
}

.cht-theme-avada[data-animation="fadeInLeft"] {
    animation: chtFadeInLeft 0.6s ease-out;
}

.cht-theme-avada[data-animation="fadeInRight"] {
    animation: chtFadeInRight 0.6s ease-out;
}

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

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

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

@keyframes chtFadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   Tours Template Layout Fixes
   ========================================================================== */

/* Hero section - full-width like About Us page */
.cht-fullwidth-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: -1px; /* Remove any potential gap */
    height: 30vh;
    min-height: 300px;
    max-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.cht-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cht-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.cht-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

/* Category description section - follows Avada standard */
.cht-category-description-section {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.cht-category-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.cht-category-description h3 {
    display: none; /* Hide the inline title since we have the hero */
}

.cht-category-description p {
    margin-bottom: 1.5rem;
}

/* Section title styling */
.cht-section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* Subcategories and packages sections - follow Avada standard */
.cht-subcategories-section,
.cht-packages-section {
    margin: 0;
    padding: 60px 0;
}

/* Ensure shortcodes respect Avada container boundaries */
.cht-subcategories-section [class*="cht_category_nav"],
.cht-packages-section [class*="cht_packages"] {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Fix any remaining full-width issues */
.cht-category-nav,
.cht-packages-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Ensure proper spacing between sections */
.cht-category-description-section,
.cht-subcategories-section,
.cht-packages-section {
    margin: 0;
    padding: 60px 0;
}

/* Fix any Fusion Builder conflicts */
.fusion-builder-row {
    max-width: var(--site_width, 1200px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.fusion-fullwidth {
    max-width: var(--site_width, 1200px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Additional fixes for category navigation and packages */
.cht-category-nav {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.cht-packages-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Ensure all content respects the container */
.cht-container {
    max-width: var(--site_width, 1200px);
    margin: 0 auto;
    padding: 0 20px;
}

/* Fix any remaining full-width elements */
.cht-category-description,
.cht-section-title,
.cht-subcategories-section,
.cht-packages-section {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Override any problematic inline styles from category navigation */
.cht-category-nav {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cht-category-nav .cht-category-icon {
    max-width: 100% !important;
    width: 100% !important;
}

.cht-category-nav .cht-category-link {
    max-width: 100% !important;
    width: 100% !important;
}

/* Ensure the grid layout respects container boundaries */
.cht-category-nav .cht-desktop-menu .cht-category-list {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Fix any remaining inline style conflicts */
.cht-category-nav * {
    max-width: 100% !important;
}

/* Ensure proper container constraints for all elements */
.cht-container *,
.cht-subcategories-section *,
.cht-packages-section * {
    max-width: 100% !important;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .cht-category-info.cht-image-left,
    .cht-category-info.cht-image-right {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cht-packages-shortcode.cht-theme-avada .cht-packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cht-theme-avada .cht-category-title.cht-size-h1 {
        font-size: 2rem;
    }
    
    .cht-theme-avada .cht-category-title.cht-size-h2 {
        font-size: 1.5rem;
    }
    
    .cht-breadcrumbs.cht-theme-avada .cht-breadcrumb-list {
        font-size: 0.8rem;
    }
    
    /* Hero section responsive */
    .cht-fullwidth-hero {
        height: 25vh;
        min-height: 250px;
        max-height: 350px;
    }
    
    .cht-hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        color: #ffffff;
    }
    
    .cht-category-description-section {
        padding: 40px 0;
    }
    
    .cht-section-title {
        font-size: 2rem;
    }
    
    .cht-subcategories-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .cht-theme-avada .cht-package-body {
        padding: 16px;
    }
    
    .cht-theme-avada .cht-category-content {
        padding: 20px;
    }
    
    .cht-category-info.cht-image-background .cht-category-title,
    .cht-category-info.cht-image-background .cht-category-content {
        padding: 20px;
    }
}

/* ==========================================================================
   Enhanced Shortcode Features
   ========================================================================== */

/* View Toggle Styling */
.cht-view-toggle {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.cht-view-toggle-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cht-view-toggle-label {
    font-weight: 600;
    color: var(--fusion-color-text, #333);
    font-size: 0.9rem;
}

.cht-view-toggle-buttons {
    display: flex;
    gap: 8px;
}

.cht-view-toggle-btn {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.cht-view-toggle-btn:hover {
    border-color: var(--fusion-color-accent, #ff6900);
    background: #f8f9fa;
}

.cht-view-toggle-btn.active {
    background: var(--fusion-color-accent, #ff6900);
    border-color: var(--fusion-color-accent, #ff6900);
    color: #ffffff;
}

.cht-view-toggle-btn svg {
    width: 16px;
    height: 16px;
}

/* Package Count Badges */
.cht-category-count-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--fusion-color-accent, #ff6900);
    color: #ffffff;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cht-category-card {
    position: relative;
}

/* Enhanced Mobile Optimization */
.cht-mobile-optimized {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.cht-mobile-optimized .cht-category-card {
    min-height: 200px;
}

.cht-mobile-optimized .cht-package-card {
    min-height: 180px;
}

/* Mobile View Toggle */
@media (max-width: 768px) {
    .cht-view-toggle-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cht-view-toggle-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cht-view-toggle-btn {
        flex: 1;
        max-width: 60px;
    }
    
    .cht-category-count-badge {
        top: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 3px 8px;
        min-width: 25px;
    }
}

/* Enhanced Breadcrumbs */
.cht-breadcrumbs.cht-theme-avada {
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Ensure visibility */
    display: block;
    visibility: visible;
    opacity: 1;
}

.cht-breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0 20px;
    list-style: none;
    font-size: 0.95rem;
    font-family: inherit;
    /* Ensure visibility */
    visibility: visible;
    opacity: 1;
}

.cht-breadcrumb-item {
    display: flex;
    align-items: center;
    /* Ensure visibility */
    visibility: visible;
    opacity: 1;
    margin: 0;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cht-breadcrumb-item:hover {
    background: rgba(255, 105, 0, 0.1);
}

.cht-breadcrumb-separator {
    margin: 0 4px;
    color: #6c757d;
    /* Ensure visibility */
    visibility: visible;
    opacity: 1;
    font-weight: 400;
    font-size: 0.9rem;
}

.cht-breadcrumb-item a {
    color: var(--fusion-color-accent, #ff6900);
    text-decoration: none;
    transition: all 0.2s ease;
    /* Ensure visibility */
    visibility: visible;
    opacity: 1;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
}

.cht-breadcrumb-item a:hover {
    color: var(--fusion-color-accent-hover, #e55a00);
    background: rgba(255, 105, 0, 0.1);
    text-decoration: none;
}

/* Enhanced home breadcrumb */
.cht-breadcrumb-home a {
    background: linear-gradient(135deg, #ff6900 0%, #e55a00 100%);
    color: #ffffff !important;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 105, 0, 0.3);
}

.cht-breadcrumb-home a:hover {
    background: linear-gradient(135deg, #e55a00 0%, #d44a00 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.4);
}



.cht-breadcrumb-current {
    color: var(--fusion-color-text, #333);
    font-weight: 600;
    /* Ensure visibility */
    visibility: visible;
    opacity: 1;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    border-left: 3px solid var(--fusion-color-accent, #ff6900);
}

/* Enhanced tours breadcrumb */
.cht-breadcrumb-tours a {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: #ffffff !important;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.3);
}

.cht-breadcrumb-tours a:hover {
    background: linear-gradient(135deg, #005a87 0%, #004a73 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.4);
}

/* Enhanced category breadcrumbs */
.cht-breadcrumb-category a {
    position: relative;
}

.cht-breadcrumb-category a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--fusion-color-accent, #ff6900);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.cht-breadcrumb-category a:hover::after {
    width: 100%;
}

/* Enhanced Package Grid/List Views */
.cht-packages-grid.cht-view-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.cht-packages-grid.cht-view-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cht-packages-grid.cht-view-list .cht-package-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cht-packages-grid.cht-view-list .cht-package-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
}

.cht-packages-grid.cht-view-list .cht-package-content {
    flex-grow: 1;
}

/* Animation Classes */
.cht-animation-fadeInUp {
    animation: chtFadeInUp 0.6s ease-out;
}

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

/* Enhanced Category Navigation */
.cht-category-nav-shortcode.cht-mobile-friendly {
    touch-action: manipulation;
}

.cht-category-nav-shortcode.cht-mobile-friendly .cht-category-card {
    cursor: pointer;
    user-select: none;
}

.cht-category-nav-shortcode.cht-mobile-friendly .cht-category-card:active {
    transform: scale(0.98);
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
    .cht-category-nav-shortcode.cht-style-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .cht-category-nav-shortcode.cht-style-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cht-packages-grid.cht-view-list .cht-package-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cht-packages-grid.cht-view-list .cht-package-image {
        width: 100%;
        height: 200px;
    }
    
    /* Mobile breadcrumbs */
    .cht-breadcrumbs.cht-theme-avada {
        padding: 15px 0;
        margin-bottom: 20px;
    }
    
    .cht-breadcrumb-list {
        padding: 0 15px;
        gap: 8px;
        font-size: 0.85rem;
    }
    
    .cht-breadcrumb-item {
        padding: 6px 8px;
    }
    
    .cht-breadcrumb-item a {
        padding: 3px 6px;
    }
}
