/* ========================================
   FRESH HIGHLIGHT BOXES CSS - JUNGLE LEELAA
   ========================================
   
   Fresh highlight boxes with multiple styles
   INHERITS ALL COLORS AND VARIABLES FROM THEME4.CSS
   
   INCLUDES:
   - Highlight boxes
   - Safari type cards
   - Timing cards
   - Season cards
   - Step cards
   - Multi-info cards
   ======================================== */

/* Fresh Highlight Boxes - Universal CSS */

/* Base Highlight Boxes Container */
.fresh-highlight-boxes,
.highlight-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    padding: 0 20px;
}

@media (max-width: 900px) {
    .fresh-highlight-boxes,
    .highlight-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .fresh-highlight-boxes,
    .highlight-boxes {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* 1. Classic Background Image Box */
.highlight-box {
    position: relative;
    min-height: 300px;
    height: auto;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    box-shadow: 0 8px 30px var(--primary); /* INHERIT FROM THEME4.CSS */
    transform: scale(1.02);
}

.highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), var(--primary)); /* INHERIT FROM THEME4.CSS */
    color: var(--primary-foreground) !important; /* INHERIT FROM THEME4.CSS */
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.highlight-overlay h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px !important;
    color: var(--primary-foreground) !important; /* INHERIT FROM THEME4.CSS */
}

.highlight-overlay p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px !important;
    line-height: 1.6;
    color: var(--primary-foreground) !important; /* INHERIT FROM THEME4.CSS */
}

.highlight-overlay .btn {
    margin-top: auto;
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 2px;
    background: transparent !important;
    color: var(--primary) !important;
    border: 2px solid #FFFFFF !important;
    text-decoration: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.highlight-overlay .btn:hover {
    background: var(--primary) !important;
    color: #FFFFFF !important;
    border-color: var(--primary) !important;
    transform: none;
}

/* 2. Icon Based Box */
.highlight-box-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); /* INHERIT FROM THEME4.CSS */
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-height: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-box-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--primary); /* INHERIT FROM THEME4.CSS */
}

.highlight-icon {
    margin-bottom: 25px;
}

.highlight-icon i {
    font-size: 4rem;
    color: var(--primary-foreground); /* INHERIT FROM THEME4.CSS */
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.highlight-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-foreground); /* INHERIT FROM THEME4.CSS */
}

.highlight-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--primary-foreground); /* INHERIT FROM THEME4.CSS */
}

.highlight-content .btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 2px;
    background: transparent;
    color: var(--primary);
    border: 2px solid #FFFFFF;
    text-decoration: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.highlight-content .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    transform: none;
}

/* 3. Gradient Background Box */
.highlight-box-gradient {
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-height: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); /* INHERIT FROM THEME4.CSS */
}

.highlight-box-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}



.highlight-box-gradient .highlight-content {
    position: relative;
    z-index: 2;
    color: var(--primary-foreground); /* INHERIT FROM THEME4.CSS */
}

.highlight-box-gradient h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-foreground); /* INHERIT FROM THEME4.CSS */
}

.highlight-box-gradient p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--primary-foreground); /* INHERIT FROM THEME4.CSS */
}

.highlight-box-gradient .btn {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 0;
    background: var(--primary);
    color: #000000;
    text-decoration: none;
    border: none;
}

/* 4. Card Style Box */
.highlight-box-card {
    background: var(--card); /* INHERIT FROM THEME4.CSS */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 300px;
    height: auto;
}



.highlight-card-image {
    height: 200px;
    overflow: hidden;
}

.highlight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.highlight-card-content {
    padding: 30px;
}

.highlight-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--foreground); /* INHERIT FROM THEME4.CSS */
}

.highlight-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--muted-foreground); /* INHERIT FROM THEME4.CSS */
}

.highlight-card-content .btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 2px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.highlight-card-content .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    transform: none;
}





/* 5. Food Page Highlight Cards - Fresh Minimalist Design */
.food-highlight-section .highlight-box {
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    min-height: 300px !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
}

.food-highlight-section .highlight-box:hover {
    border-color: var(--primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Food Card Content Section - Minimalist */
.food-highlight-section .highlight-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3)) !important;
    color: #fff !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1.5rem !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

/* Food Card Title - Clean Typography */
.food-highlight-section .highlight-overlay h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.4 !important;
}

/* Food Card Description - Simple Text */
.food-highlight-section .highlight-overlay p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: #fff !important;
    margin-bottom: 1rem !important;
    flex: 1 !important;
}

/* Food Card Button - Minimalist Style */
.food-highlight-section .highlight-overlay .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.75rem 1.25rem !important;
    background: transparent !important;
    color: var(--primary) !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease !important;
    border: 1px solid var(--primary) !important;
    align-self: center !important;
}

.food-highlight-section .highlight-overlay .btn:hover {
    background: var(--primary) !important;
    color: var(--background) !important;
}

/* 6. Video Background Box */
.highlight-box-video {
    position: relative;
    min-height: 300px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.highlight-box-video:hover {
    transform: translateY(-5px);
}

.highlight-box-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.highlight-box-video .highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    color: white;
}

.highlight-box-video .highlight-overlay h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: white;
}

.highlight-box-video .highlight-overlay p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.highlight-box-video .highlight-overlay .btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid #FFFFFF;
}

.highlight-box-video .highlight-overlay .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

/* 6. Animated Box */
.highlight-box-animated {
    position: relative;
    min-height: 250px;
    height: auto;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.highlight-box-animated:hover {
    transform: translateY(-5px);
}

.highlight-animation-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

.highlight-box-animated .highlight-content {
    position: relative;
    z-index: 2;
}

.highlight-icon-animated {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.9;
    animation: pulse 2s infinite;
}

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

.highlight-box-animated h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: white;
}

.highlight-box-animated p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.highlight-box-animated .btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid #FFFFFF;
    animation: bounce 2s infinite;
}

.highlight-box-animated .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* 7. Split Layout Box */
.highlight-box-split {
    display: flex;
    min-height: 250px;
    height: auto;
    max-height: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    background: white;
}

.highlight-box-split:hover {
    transform: translateY(-5px);
}

.highlight-split-image {
    flex: 1;
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.highlight-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.highlight-split-content {
    flex: 1;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.highlight-split-content .highlight-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: white;
}

.highlight-split-content .highlight-text {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.highlight-split-content .highlight-link {
    background: transparent;
    color: var(--primary);
    border: 2px solid #FFFFFF;
}

.highlight-split-content .highlight-link:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .highlight-box-split {
        flex-direction: column;
        max-height: none;
    }
    
    .highlight-split-image {
        height: 200px;
    }
    
    .highlight-split-image img {
        height: 100%;
    }
    
    .highlight-split-content {
        padding: 20px;
    }
}

/* Responsive adjustments for all boxes */
@media (max-width: 768px) {
    .highlight-box,
    .highlight-box-icon,
    .highlight-box-gradient,
    .highlight-box-card,
    .highlight-box-video,
    .highlight-box-animated,
    .highlight-box-split {
        min-height: 250px;
        height: auto;
    }
    
    .highlight-overlay,
    .highlight-content,
    .highlight-card-content,
    .highlight-split-content {
        padding: 25px 20px;
    }
    
    .highlight-overlay h3,
    .highlight-content h3,
    .highlight-card-content h3,
    .highlight-split-content h3 {
        font-size: 1.5rem;
    }
    
    .highlight-icon i,
    .highlight-icon-animated i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .highlight-box,
    .highlight-box-icon,
    .highlight-box-gradient,
    .highlight-box-card,
    .highlight-box-video,
    .highlight-box-animated,
    .highlight-box-split {
        min-height: 200px;
        height: auto;
    }
    
    .highlight-overlay,
    .highlight-content,
    .highlight-card-content,
    .highlight-split-content {
        padding: 15px 10px;
    }
    
    .highlight-overlay h3,
    .highlight-content h3,
    .highlight-card-content h3,
    .highlight-split-content h3 {
        font-size: 1.25rem;
    }
    
    .highlight-icon i,
    .highlight-icon-animated i {
        font-size: 2.5rem;
    }
} 

/* MULTI-INFO CARD - FRESH AND CLEAN */
.multi-info-card {
    background: var(--card);
    border-radius: 8px;
    padding: 2rem;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: none;
}

.multi-info-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: none;
}

.multi-info-card::before {
    content: none;
}

.multi-info-header {
    text-align: center;
    margin-bottom: 1rem;
}

.multi-info-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
    margin-bottom: 1rem;
    text-align: center;
    display: block;
    align-items: normal;
    justify-content: normal;
    gap: normal;
}

.multi-info-desc {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.multi-info-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.multi-info-section {
    background: var(--muted);
    border-radius: 6px;
    padding: 20px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    border-left: 1px solid var(--border);
}

.multi-info-section:hover {
    border-color: var(--primary);
    transform: none;
    box-shadow: none;
}

.multi-info-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
    align-items: normal;
    gap: normal;
}

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

.multi-info-section li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--muted-foreground);
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.multi-info-section li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 14px;
} 

/* FRESH WEATHER PAGE CONTENT - SYNCED WITH OTHER CARDS */
.fresh-weather-location {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 8px;
}

.fresh-location-name {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.fresh-location-details {
    font-size: var(--font-size-lg);
    color: var(--muted-foreground);
    font-weight: 400;
}

.fresh-weather-current {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 8px;
}

.fresh-weather-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.fresh-weather-icon span {
    font-size: 4rem;
    display: block;
}

.fresh-weather-temp {
    text-align: center;
}

.fresh-temp-value {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--foreground);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fresh-temp-feels {
    font-size: var(--font-size-lg);
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.fresh-weather-desc {
    font-size: var(--font-size-lg);
    color: var(--primary);
    font-weight: 500;
    text-transform: capitalize;
}

.fresh-weather-details {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 8px;
}

.fresh-weather-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.fresh-weather-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--muted);
    border-radius: 6px;
    border: 1px solid var(--border);
}

.fresh-weather-label {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
    font-weight: 500;
}

.fresh-weather-value {
    font-size: var(--font-size-sm);
    color: var(--foreground);
    font-weight: 600;
}

.fresh-weather-forecast {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 8px;
}

.fresh-weather-forecast h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
    text-align: center;
    margin-bottom: 1.5rem;
}

.fresh-forecast-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.fresh-forecast-list-item {
    text-align: center;
    padding: 1rem;
}

/* Food Page Highlight Cards Responsive Design */
@media (max-width: 768px) {
    .food-page-highlight-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .food-page-card-content {
        padding: 1.5rem;
    }
    
    .food-page-card-title {
        font-size: 1.5rem;
    }
    
    .food-page-card-image {
        height: 200px;
    }
    
    .food-page-highlight-title {
        font-size: 2rem;
    }
    
    .food-page-highlight-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .food-page-card-content {
        padding: 1.25rem;
    }
    
    .food-page-card-title {
        font-size: 1.25rem;
    }
    
    .food-page-card-image {
        height: 180px;
    }
}

.fresh-forecast-list-item {
    background: var(--muted);
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.fresh-forecast-list-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.fresh-forecast-day {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fresh-forecast-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.fresh-forecast-temp {
    margin-bottom: 0.5rem;
}

.temp-max {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--foreground);
    margin-right: 0.5rem;
}

.temp-min {
    font-size: var(--font-size-base);
    color: var(--muted-foreground);
}

.fresh-forecast-desc {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
    text-transform: capitalize;
}

.fresh-weather-update {
    text-align: center;
    padding: 1rem;
    background: var(--muted);
    border-radius: 6px;
    border: 1px solid var(--border);
}

.fresh-weather-update small {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
}

.fresh-weather-error {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 8px;
    margin: 2rem 0;
}

.fresh-error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fresh-weather-error h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.fresh-weather-error p {
    font-size: var(--font-size-base);
    color: var(--muted-foreground);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fresh-weather-main {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fresh-weather-icon span {
        font-size: 3rem;
    }
    
    .fresh-temp-value {
        font-size: 2.5rem;
    }
    
    .fresh-weather-list {
        grid-template-columns: 1fr;
    }
    
    .fresh-forecast-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* Food Page Highlight Cards Responsive Design */
@media (max-width: 768px) {
    .food-page-highlight-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .food-page-card-content {
        padding: 1.5rem;
    }
    
    .food-page-card-title {
        font-size: 1.5rem;
    }
    
    .food-page-card-image {
        height: 200px;
    }
    
    .food-page-highlight-title {
        font-size: 2rem;
    }
    
    .food-page-highlight-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .food-page-card-content {
        padding: 1.25rem;
    }
    
    .food-page-card-title {
        font-size: 1.25rem;
    }
    
    .food-page-card-image {
        height: 180px;
    }
}

/* ========================================
   SAFARI PAGE CARD STYLES
   ======================================== */

/* Safari Type Cards */
.safari-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.safari-type-card {
    background: var(--card);
    border-radius: 0;
    padding: 30px;
    border: 1px solid var(--border);
}

.safari-type-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
    margin-bottom: 1rem;
}

.safari-type-desc {
    font-size: var(--font-size-base);
    color: var(--muted-foreground);
    line-height: var(--line-height-normal);
    margin-bottom: 0.75rem;
}

.safari-pricing {
    background: var(--muted);
    border-radius: 0;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

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

.price-label {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
    font-weight: var(--font-weight-medium);
}

.price-value {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--foreground);
}

.safari-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.detail-item {
    padding: 12px;
    background: var(--muted);
    border-radius: 0;
    border: 1px solid var(--border);
}

.detail-label {
    font-size: var(--font-size-xs);
    color: var(--muted-foreground);
    text-transform: uppercase;
    font-weight: var(--font-weight-semibold);
    display: block;
    margin-bottom: 5px;
}

.detail-value {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    color: var(--foreground);
}

.safari-book-btn {
    width: 100%;
    background: var(--primary);
    color: #000000;
    border: none;
    padding: 12px 20px;
    border-radius: 0;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    text-decoration: none;
    text-align: center;
    display: block;
}

/* Timing Cards */
.timings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 0 !important;
}

.timing-card {
    background: var(--card);
    border-radius: 0;
    padding: 30px;
    border: 1px solid var(--border);
}

.timing-header {
    margin-bottom: 20px;
}

.timing-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
    margin-bottom: 1rem;
}

.timing-time {
    font-size: var(--font-size-lg);
    color: var(--muted-foreground);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.75rem;
}

.timing-description {
    font-size: var(--font-size-base);
    color: var(--muted-foreground);
    line-height: var(--line-height-normal);
    margin-bottom: 1rem;
}

.timing-highlights h4 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.timing-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timing-highlights li {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
    line-height: var(--line-height-normal);
}

.timing-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--muted-foreground);
    font-size: var(--font-size-sm);
}

/* Season Cards */
.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.season-card {
    background: var(--card);
    border-radius: 8px;
    padding: 2rem;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.season-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.season-card.current-season {
    border-color: var(--primary);
    background: var(--card);
}

.season-card.current-season::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.season-header {
    margin-bottom: 20px;
}

.season-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
    margin-bottom: 1rem;
}

.season-period {
    font-size: 18px;
    color: var(--muted-foreground);
    font-weight: 600;
    margin-bottom: 5px;
}

.season-content {
    color: var(--muted-foreground);
}

.season-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.season-highlights, .season-recommendations {
    margin-bottom: 20px;
}

.season-highlights h4, .season-recommendations h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.season-highlights ul, .season-recommendations ul {
    list-style: none;
    padding: 0;
}

.season-highlights li, .season-recommendations li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--muted-foreground);
    position: relative;
    padding-left: 20px;
}

.season-highlights li::before, .season-recommendations li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Step Cards */
.step-card {
    background: var(--card);
    border-radius: 8px;
    padding: 2.5rem;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.step-header {
    margin-bottom: 2rem;
}

.step-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
    margin-bottom: 1rem;
}

.step-description {
    font-size: var(--font-size-base);
    color: var(--muted-foreground);
    line-height: var(--line-height-normal);
}

.steps-container {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--muted);
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.step-item:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.step-item:hover .step-number {
    background: var(--foreground);
    color: var(--primary);
}

.step-item:hover .step-content h4 {
    color: var(--foreground);
}

.step-item:hover .step-content p {
    color: rgba(255, 255, 255, 0.8);
}

.step-number {
    background: var(--primary);
    color: var(--foreground);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
    transition: all 0.2s ease;
}

/* Multi-Info Cards */
.multi-info-card {
    background: var(--card);
    border-radius: 8px;
    padding: 2.5rem;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.multi-info-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.multi-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.multi-info-header {
    margin-bottom: 2rem;
}

.multi-info-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
    margin-bottom: 1rem;
}

.multi-info-desc {
    font-size: var(--font-size-base);
    color: var(--muted-foreground);
    line-height: var(--line-height-normal);
}

.multi-info-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.multi-info-section {
    padding: 1.5rem;
    background: var(--muted);
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.multi-info-section:hover {
    border-color: var(--primary);
    background: var(--card);
}

.multi-info-section h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
    margin-bottom: 1rem;
}

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

.multi-info-section li {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
    line-height: var(--line-height-normal);
}

.multi-info-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Responsive adjustments for safari cards */
@media (max-width: 768px) {
    .safari-types-grid,
    .seasons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .safari-type-card,
    .timing-card,
    .season-card,
    .step-card,
    .multi-info-card {
        padding: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .multi-info-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .safari-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .safari-types-grid,
    .seasons-grid {
        padding: 0 5px;
        gap: 15px;
    }
    
    .safari-type-card,
    .timing-card,
    .season-card,
    .step-card,
    .multi-info-card {
        padding: 10px;
        margin: 0;
    }
    
    .safari-pricing {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .detail-item {
        padding: 8px;
    }
    
    .safari-details {
        gap: 10px;
        margin-bottom: 20px;
    }
}