/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

    .fourleaves-content * {
        box-sizing: border-box;
    }

    .fourleaves-content {
        font-family: 'Montserrat', sans-serif;
        margin: 0px;
        padding: 0px;
        max-width:800px;
    }

    .fourleaves-content .menu-container {
        font-family: 'Montserrat', sans-serif;
        max-width: 800px;
        margin: 20px auto;
        padding: 0 24px;
    }

    .fourleaves-content .page-title {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
    }
    
    
.nutrition-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    margin-left: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.2);
    position: relative;
}

.nutrition-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(231, 76, 60, 0.3);
}

.nutrition-icon i {
    font-size: 12px;
}

/* Nutrition Modal */
.nutrition-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.nutrition-modal.active {
    display: flex;
    opacity: 1;
}

.nutrition-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    max-height: 85vh;
    overflow-y: auto;
}

.nutrition-modal.active .nutrition-modal-content {
    transform: translateY(0);
    opacity: 1;
}

.nutrition-header {
    background: #e74c3c;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nutrition-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.nutrition-close {
    background: white;
    color: #e74c3c;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nutrition-close:hover {
    transform: rotate(90deg);
}

.nutrition-product-image {
    position: absolute;
    top: -10px;
    right: 50px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nutrition-body {
    padding: 20px;
}

.nutrition-summary {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.nutrition-chart-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin-right: 20px;
}

.calorie-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 50%, #CDDC39 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.calorie-value {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.calorie-label {
    font-size: 12px;
    opacity: 0.9;
}

.macros-legend {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 10px;
    padding: 2px 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.legend-item {
    display: flex;
    align-items: center;
}

.legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 2px;
}

.carbs-color { background: #2196F3; }
.protein-color { background: #FF9800; }
.fat-color { background: #F44336; }

.nutrition-stats {
    flex: 1;
}

.nutrition-stat-item {
    margin-bottom: 12px;
}

.nutrition-stat-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    font-size: 14px;
}

.nutrition-stat-name {
    display: flex;
    align-items: center;
    color: #333;
}

.nutrition-stat-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.nutrition-stat-value {
    font-weight: 600;
    color: #e74c3c;
}

.nutrition-stat-bar {
    height: 8px;
    width: 100%;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.carbs-fill { background: linear-gradient(90deg, #1E88E5, #2196F3); }
.protein-fill { background: linear-gradient(90deg, #FB8C00, #FF9800); }
.fat-fill { background: linear-gradient(90deg, #E53935, #F44336); }
.sodium-fill { background: linear-gradient(90deg, #8E24AA, #9C27B0); }

.nutrition-stat-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
    width: 0;
}

.nutrition-benefits {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 8px;
    color: #4CAF50;
}

.benefit-cards {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
}

.benefit-card {
    flex: 0 0 180px;
    background: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: white;
}

.child-icon {
    background: linear-gradient(135deg, #FF5722, #FF9800);
}

.brain-icon {
    background: linear-gradient(135deg, #F44336, #E91E63);
}

.muscle-icon {
    background: linear-gradient(135deg, #673AB7, #3F51B5);
}

.heart-icon {
    background: linear-gradient(135deg, #2196F3, #00BCD4);
}

.benefit-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

.benefit-text {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

.allergen-section {
    margin-top: 20px;
    background: #FFF8E1;
    border-radius: 10px;
    padding: 15px;
}

.allergen-title {
    display: flex;
    align-items: center;
}

.allergen-title i {
    color: #FF9800;
}

.allergen-subtitle {
    font-size: 12px;
    color: #666;
    margin: 8px 0 12px;
}

.allergen-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.allergen-tag {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 12px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
}

.allergen-tag::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #FF9800;
    border-radius: 50%;
    opacity: 0.5;
}

.allergen-tag i {
    font-size: 22px;
    color: #FF9800;
    margin-bottom: 5px;
}

.allergen-name {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.allergen-details {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
    margin-top: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 6px;
}

.nutrition-disclaimer {
    margin-top: 15px;
    font-size: 11px;
    color: #999;
    font-style: italic;
    text-align: center;
}

/* Yumminess Rating Section */
.yumminess-section {
    margin-top: 20px;
    background: linear-gradient(135deg, #FF9A8B 0%, #FF6B95 100%);
    border-radius: 10px;
    padding: 15px;
    color: white;
    position: relative;
    overflow: hidden;
}

.yumminess-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.yumminess-title i {
    margin-right: 8px;
    font-size: 18px;
}

.yumminess-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.yumminess-rating {
    display: flex;
    align-items: center;
}

.yumminess-number {
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    line-height: 1;
}

.yumminess-max {
    font-size: 16px;
    opacity: 0.8;
    margin-left: 2px;
    align-self: flex-start;
    margin-top: 8px;
}

.yummy-emoji {
    font-size: 32px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.yumminess-bars {
    display: flex;
    height: 8px;
    gap: 3px;
    margin-top: 10px;
}

.yummy-bar {
    flex: 1;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    overflow: hidden;
}

.yummy-bar-fill {
    height: 100%;
    background: white;
    width: 0;
    transition: width 1.2s ease;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.yumminess-comment {
    margin-top: 12px;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.yumminess-comment i {
    margin-right: 5px;
}

.decoration-dots {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 3px);
    background-size: 15px 15px;
    z-index: 1;
    opacity: 0.6;
}

/* Scroll indicators */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    color: #555;
}

.scroll-indicator:hover {
    background: #f5f5f5;
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}


.map-container {
      /*width: 100%;
      margin: 20px auto;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      background: white;
      */
    }
    
    .map-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .map-title {
      font-size: 20px;
      font-weight: 600;
      color: #333;
    }
    
    .map-frame {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: 8px;
      margin-bottom: 15px;
    }
    
    .map-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      background-color: #4285f4;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s;
    }
    
    .map-button:hover {
      background-color: #3367d6;
    }
    
    .map-button svg {
      margin-right: 8px;
    }

@media (max-width: 600px) {
    .nutrition-summary {
        flex-direction: column;
    }
    
    .nutrition-chart-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
    .fourleaves-content .red-line {
        width: 40px;
        height: 3px;
        background: #ff4747;
        margin-bottom: 30px;
    }

    .fourleaves-content .menu-section {
        margin: 12px 0;
        border-radius: 8px;
        overflow: hidden;
        background: white;
    }

    .fourleaves-content .section-header {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
        border: 2px solid #ff4747;
        border-radius: 8px;
        background: white;
        transition: all 0.3s ease;
    }

    .fourleaves-content .section-header h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #333;
        transition: color 0.3s ease;
    }

    .fourleaves-content .toggle-icon {
        font-size: 24px;
        transition: all 0.3s ease;
        color: #ff4747;
    }

    .fourleaves-content .section-header.active {
        background: #ff4747;
    }

    .fourleaves-content .section-header.active h3,
    .fourleaves-content .section-header.active .toggle-icon {
        color: white;
    }

    .fourleaves-content .section-header:hover {
        background: #ff4747;
    }

    .fourleaves-content .section-header:hover h3,
    .fourleaves-content .section-header:hover .toggle-icon {
        color: white;
    }

    .fourleaves-content .menu-items {
        padding: 20px;
        background: white;
        display: none;
        border: 2px solid #ff4747;
        border-top: none;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        margin-top: -8px;
    }

    .fourleaves-content .menu-items.active {
        display: block;
        animation: fl-fadeIn 0.3s ease;
    }

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

    .fourleaves-content .menu-item {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        padding: 15px;
        border-radius: 8px;
        transition: background-color 0.2s ease;
        align-items: flex-start;
    }

    .fourleaves-content .menu-item:last-child {
        margin-bottom: 0;
    }

    .fourleaves-content .menu-item:hover {
        background-color: #f8f8f8;
    }

    .fourleaves-content .item-image {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
    }

    .fourleaves-content .item-details {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .fourleaves-content .item-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .fourleaves-content .item-title h4 {
        margin: 0;
        font-weight: 600;
        font-size: 16px;
        color: #333;
    }

    .fourleaves-content .item-description {
        color: #666666;
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }

    @media (max-width: 600px) {
        .fourleaves-content .menu-container {
            padding: 10px;
        }

        .fourleaves-content .menu-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 10px;
        }

        .fourleaves-content .item-image {
            width: 80px;
            height: 80px;
            margin-bottom: 10px;
        }

        .fourleaves-content .item-title {
            flex-direction: column;
            gap: 5px;
            text-align: center;
        }
    }
 
    
/* */
.video-section {
    /*background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
    display: block;
    */
}

.video-title {
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    display: inline-block;
    padding-bottom: 6px;
    text-align: left;
    width: auto;
    border-bottom: 3px solid red;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}


.ufs-section{
    background: white; 
    padding: 24px; 
    border-radius: 8px; 
    margin-bottom: 20px!important; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
    font-family: 'Montserrat', sans-serif; 
    color: #333; 
    max-width: 800px;
}

.ufs-section-2{
    background: white; 
    padding: 24px; 
    border-radius: 0px; 
    margin-bottom: 20px!important; 
    box-shadow: none!important; 
    font-family: 'Montserrat', sans-serif; 
    color: #333; 
    max-width: 800px;
}




/* Google Fonts - Added more font weights and Inter for a more modern look */


/* Hide all location-specific content initially */
.fl-location-content-hidden {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fl-location-content-visible {
    opacity: 1;
}

/* Modern Base Styles - Updated color scheme and overall styling */
.fl-sidebar-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 100%;
    margin: 0 auto;
    color: #333;
    --primary-color: #ff4747; /* Changed to red from blue */
    --primary-dark: #e23939;
    --secondary-color: #f8f9fa;
    --accent-color: #f7c912; /* Added yellow accent color */
    --text-dark: #1a1a2e;
    --text-medium: #4a4e69;
    --text-light: #777;
    --border-radius: 16px; /* Increased border radius */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.06); /* More subtle shadow */
    --transition: all 0.3s ease;
    --card-spacing: 28px; /* Increased spacing between cards */
    display: flex;
    flex-direction: column;
    gap: var(--card-spacing);
    padding: 10px; /* Added padding around entire container */
    background: transparent; /* Completely transparent background */
}

/* Restaurant Info Card - Enhanced with gradients and better shadows */
.fl-restaurant-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 0;
    border: none; /* Removed border */
    position: relative; /* For gradient overlay */
}

.fl-card-header {
    padding: 24px; /* Increased padding */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    background: linear-gradient(135deg, #fff, #f8f9fa); /* Subtle gradient */
}

.fl-card-title {
    font-size: 22px; /* Increased size */
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--text-dark);
    letter-spacing: -0.5px; /* Tighter letter spacing */
}

/* Improved Location Selector */
.fl-location-selector {
    position: relative;
    margin-bottom: 16px;
}

.fl-location-label {
    font-size: 14px;
    font-weight: 600; /* Bolder label */
    color: var(--text-medium);
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase; /* Uppercase labels */
    letter-spacing: 0.5px; /* Letter spacing for labels */
    font-size: 12px; /* Smaller but uppercase */
}

.fl-location-select {
    width: 100%;
    padding: 14px 18px; /* Increased padding */
    border-radius: 12px; /* Larger radius */
    border: 1px solid rgba(0,0,0,0.08);
    background-color: white;
    font-size: 15px;
    color: var(--text-dark);
    appearance: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff4747' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03); /* Subtle inner shadow */
}

.fl-location-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 71, 71, 0.15);
}

/* Restaurant Profile */
.fl-profile-section {
    display: flex;
    align-items: center;
    padding:24px 24px;
}

.fl-profile-image {
    width: 80px; /* Larger image */
    height: 80px;
    border-radius: 20px; /* Increased radius */
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.fl-profile-info {
    flex: 1;
    margin-left: 20px;
}

.fl-profile-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.fl-profile-subtitle {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0;
    font-weight: 500;
}

/* Location Details Card - More visually interesting with accent border */
.fl-location-details {
    background: white;
    margin: 0 24px 24px;
    border-radius: 14px;
    padding: 22px;
    border-left: none; /* Removed left border */
    position: relative;
    box-shadow: 0 6px 16px rgba(0,0,0,0.03);
    overflow: hidden; /* For gradient overlay */
}

/* Changed gradient accent to yellow-to-red for location details */
.fl-location-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #f7c912, #ff4747);
    border-radius: 3px 0 0 3px;
}

.fl-location-detail-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.fl-location-detail-title i {
    margin-right: 10px;
    color: var(--primary-color);
}

.fl-contact-info {
    margin-bottom: 20px;
}

.fl-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 14px;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
    padding: 12px 16px;
    border-radius: 12px;
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    gap:10px;
}

.fl-info-item:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.fl-info-item i {
    width: 18px;
    margin-right: 14px;
    color: var(--primary-color);
}

.fl-today-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(145deg, #f9f9f9, #ffffff);
    padding: 14px 18px;
    border-radius: 12px;
    margin-top: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.fl-today-hours-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.fl-today-hours-time {
    color: #4ea88a; /* Changed to requested color */
    font-weight: 600;
    font-size: 15px;
}

.fl-location-specifics {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.fl-location-specifics-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    padding: 6px 0;
    color: var(--text-medium);
    font-size: 14px;
}

.fl-location-specifics-item i {
    width: 18px;
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 14px;
}

.fl-status-open {
    color: #38b000;
    font-weight: 600;
}

.fl-status-closed {
    color: #d90429;
    font-weight: 600;
}

/* Order Button - More prominent and stylish */
.fl-order-online {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 24px 24px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(255, 71, 71, 0.25);
    position: relative;
    overflow: hidden;
}

.fl-order-online i {
    margin-right: 10px;
}

.fl-order-online:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 71, 71, 0.3);
}

/* Added shine effect to button */
.fl-order-online::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.5s ease;
}

.fl-order-online:hover::after {
    transform: rotate(30deg) translate(10%, 10%);
}

/* Social Links - More prominent and colorful */
.fl-social-links {
    margin: 0 24px 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.fl-social-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.fl-social-icons {
    display: flex;
    gap: 14px;
}

.fl-social-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.fl-social-icon .svg-inline--fa{
    color:#FFFFFF!important;
}

.fl-social-icon:hover {
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.fl-facebook { background: linear-gradient(45deg, #3b5998, #4e69a2); }
.fl-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fl-linkedin { background: linear-gradient(45deg, #0077b5, #0e94da); }

/* Opening Hours Card - Added visual interest */
.fl-opening-hours {
    background: white;
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 0;
    box-shadow: var(--shadow);
    border: none;
    position: relative;
    overflow: hidden;
}

/* Added subtle pattern overlay */
.fl-opening-hours::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(255, 71, 71, 0.06), transparent 70%);
    border-radius: 0 0 0 100%;
}

.fl-opening-hours-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 22px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap:10px;
}

.fl-opening-hours-title i {
    margin-right: 12px;
    color: var(--primary-color);
}

.fl-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--text-medium);
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.fl-hours-row.fl-active {
    font-weight: 600;
    color: var(--text-dark);
    background-color: rgba(255, 71, 71, 0.06);
    padding: 12px 10px;
    border-radius: 10px;
    margin: 4px 0;
}

.fl-hours-row span:first-child {
    font-weight: 500;
}

.fl-status-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
}

.fl-status-message-open {
    background: linear-gradient(135deg, #e8f5e9, #d7f9d7);
    color: #2e7d32;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.1);
}

.fl-status-message-closed {
    background: linear-gradient(135deg, #ffebee, #ffdbdb);
    color: #c62828;
    box-shadow: 0 4px 10px rgba(198, 40, 40, 0.1);
}

/* Recommendations Card - More visual appeal */
.fl-recommendations-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 0;
    box-shadow: var(--shadow);
    border: none;
    position: relative;
    overflow: hidden;
}

/* Added subtle pattern overlay */
.fl-recommendations-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top left, rgba(247, 201, 18, 0.06), transparent 70%);
    border-radius: 0 0 100% 0;
}

.fl-recommendations-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 22px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.fl-recommendations-title i {
    margin-right: 12px;
    color: var(--accent-color);
}

.fl-recommended-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fl-recommended-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border-radius: 14px;
    background-color: rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.fl-recommended-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    background-color: white;
}

/* Added hover effect overlay */
.fl-recommended-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0), rgba(255, 71, 71, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fl-recommended-item:hover::after {
    opacity: 1;
}

.fl-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    transition: transform 0.3s ease;
}

.fl-recommended-item:hover .fl-item-image {
    transform: scale(1.05);
}

.fl-item-details {
    flex: 1;
}

.fl-item-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.fl-bestseller-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffeaa7, #ffd166);
    color: #cc5803;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    margin-left: 8px;
    vertical-align: middle;
    box-shadow: 0 2px 5px rgba(204, 88, 3, 0.1);
}

.fl-item-description {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

/* Promotions Card - More visual interest */
.fl-promotions-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 0;
    box-shadow: var(--shadow);
    border: none;
    position: relative;
    overflow: hidden;
}

/* Added subtle pattern overlay */
.fl-promotions-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at bottom right, rgba(255, 71, 71, 0.05), transparent 70%);
    border-radius: 150% 0 0 0;
}

.fl-promotions-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 22px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.fl-promotions-title i {
    margin-right: 12px;
    color: var(--primary-color);
}

.fl-promotion-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fl-promotion-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.fl-promotion-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.fl-promotion-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.fl-promotion-item:hover .fl-promotion-image {
    transform: scale(1.02);
}

.fl-promotion-loading {
    width: 100%;
    height: 160px; /* Taller skeleton */
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-animation 1.5s infinite;
    border-radius: 16px;
}

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

/* Report Issue Feature Styles */
.fl-report-issue-container {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 100;
}

.fl-report-issue-btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.fl-report-issue-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px) rotate(15deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.fl-report-issue-btn i {
    font-size: 20px;
}

/* Modal Styles - Improved look and feel */
#fl-report-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.6) !important; /* Darker overlay */
    z-index: 999999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px); /* Added blur effect */
}

.fl-modal {
    background-color: white;
    border-radius: 20px; /* Increased radius */
    max-width: 520px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25); /* More dramatic shadow */
    position: relative;
    animation: modalAppear 0.3s ease-out;
}

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

.fl-modal-header {
    padding: 20px !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ff4747; /* Changed to red background */
}

.fl-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: white; /* Changed to white text */
    margin: 0;
}

.fl-modal-close {
    background: none;
    border: none;
    color: white; /* Changed to match the white title text */
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: var(--transition);
}

.fl-modal-close:hover {
    background-color: rgba(255,255,255,0.1);
    transform: rotate(90deg);
}

.fl-modal-body {
    padding: 18px !important; /* Reduced padding */
}

.fl-form-group {
    margin-bottom: 18px !important;
}

.fl-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.fl-form-control {
    width: 100%;
    padding: 14px 16px !important;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    background-color: #f8f9fa;
    font-size: 15px;
    color: var(--text-dark);
    font-family: inherit;
    transition: var(--transition);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.fl-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 71, 71, 0.15), inset 0 1px 3px rgba(0,0,0,0.01);
    background-color: white;
}

.fl-form-textarea {
    min-height: 100px !important;
    resize: vertical;
}

.fl-form-submit {
    background: #ff4747; /* Changed to solid color as requested */
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(255, 71, 71, 0.25);
    border: none;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.fl-form-submit:hover {
    background: #ff4747; /* Keeping same color on hover as requested */
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 71, 71, 0.3);
}

/* Added shine effect to button */
.fl-form-submit::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.5s ease;
}

.fl-form-submit:hover::after {
    transform: rotate(30deg) translate(10%, 10%);
}

.fl-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    text-align: center;
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 768px) {
    .fl-disclaimer {
        font-size: 11px;
        margin-top: 10px;
        line-height: 1.4;
    }
}

.fl-page-notification {
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    background-color: #4EA88A;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    max-width: 300px;
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fl-page-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Success Message - More visually appealing */
.fl-success-message {
    display: none;
    background: linear-gradient(135deg, #e8f5e9, #d7f9d7);
    color: #2e7d32;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.1);
    animation: successAppear 0.5s ease-out;
}

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

/* Required indicator - More subtle */
.required-field::after {
    content: " *";
    color: var(--primary-color);
    font-weight: bold;
}

/* Section title adjustments */
.fl-section-title {
    margin-bottom: 14px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 16px;
    color: var(--text-dark);
}

/* Contact section adjustments */
.fl-contact-info-section {
    margin-top: 10px !important;
    padding: 16px !important;
    background-color: rgba(0,0,0,0.02);
    border-radius: 12px;
}

/* Compact Contact Section for Modal */
.fl-modal .fl-contact-info-section {
    background-color: rgba(0,0,0,0.01);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 10px !important;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

.fl-modal .fl-section-title {
    font-size: 13px !important;
    margin-bottom: 8px !important;
    padding-bottom: 4px !important;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fix for Order Online button text visibility */
.fl-order-online {
    color: white !important;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .fl-sidebar-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .fl-sidebar-container {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 10px;
    }
    
    .fl-profile-section {
        flex-direction: column;
        text-align: center;
        padding: 0 20px 20px;
    }
    
    .fl-profile-image {
        margin-bottom: 16px;
    }
    
    .fl-profile-info {
        margin-left: 0;
    }
    
    .fl-location-details,
    .fl-order-online,
    .fl-social-links {
        margin: 0 20px 20px;
    }
    
    .fl-modal {
        width: 95%;
        border-radius: 20px;
    }
    
    /* Force bottom alignment on mobile but show more content */
    #fl-report-modal {
        align-items: flex-start !important; /* Changed from flex-end to flex-start */
        padding-top: 5vh !important; /* Added top padding */
    }
    
    .fl-modal {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        max-height: 95vh !important; /* Increased from 85vh to 95vh */
        overflow-y: auto !important;
    }
    
    /* Fix for modal header on mobile */
    .fl-modal-header {
        padding: 15px 20px !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 10 !important;
    }
    
    .fl-modal-title {
        font-size: 18px !important;
        max-width: 80% !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Ensure space between close button and title */
    .fl-modal-close {
        min-width: 36px !important; 
        margin-left: 10px !important;
    }
    
    /* Mobile-specific contact section optimization - ENHANCED */
    .fl-contact-info-section {
        margin-top: 5px !important;
        padding: 6px !important;
        margin-bottom: 5px !important;
    }
    
    .fl-contact-info-section .fl-form-group {
        margin-bottom: 6px !important;
    }
    
    .fl-contact-info-section .fl-form-control {
        padding: 8px 10px !important;
        font-size: 13px;
        height: 38px !important;
    }
    
    .fl-modal .fl-contact-info-section .fl-form-label {
        margin-bottom: 3px !important;
        font-size: 10px !important;
        line-height: 1.2 !important;
    }
    
    /* Improved contact details grid layout for mobile */
    .fl-contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .fl-modal .fl-contact-grid .fl-form-group {
        margin-bottom: 2px !important;
    }
    
    .fl-contact-grid .fl-form-group:last-child {
        grid-column: span 2;
    }
    
    /* Further reduce the textarea height and other form elements to save space */
    .fl-form-textarea {
        min-height: 50px !important; /* Shorter textarea on mobile */
    }
    
    .fl-form-group {
        margin-bottom: 8px !important; /* Reduced from 10px */
    }
    
    .fl-modal-body {
        padding: 10px 12px !important; /* Reduced top padding */
        max-height: calc(95vh - 50px) !important; /* Adjusted to match new modal height */
        overflow-y: auto !important;
    }
    
    /* Make the disclaimer more compact */
    .fl-disclaimer {
        margin-top: 8px !important;
        font-size: 10px !important;
        line-height: 1.3 !important;
    }
    
    .fl-success-message {
        padding: 10px;
        margin-top: 8px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .fl-recommended-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .fl-item-image {
        width: 100px;
        height: 100px;
        margin-bottom: 14px;
    }
    
    .fl-item-name {
        justify-content: center;
    }
    
    .fl-bestseller-badge {
        margin-top: 6px;
        margin-left: 0;
    }
}

/* Fix for "More bakeries in Suntec City you might like" section heading */
.recommended-section .section-title {
  display: block;
  white-space: normal;
  line-height: 1.4;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

@media (max-width: 600px) {
  .recommended-section .section-title {
    font-size: 18px;
    text-align: left;
    margin-bottom: 16px;
  }
  
  .recommended-section .section-title #current-mall-name {
    display: inline;
    white-space: nowrap; /* Keep mall name together */
  }
  
  .recommended-section {
    padding: 0 10px;
  }
}

.recommendations-grid {
  width: 100%;
}


.fl-report-issue-btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex
;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.fl-report-issue-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px) rotate(15deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.svg-inline--fa {
    display: flex;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
    color: #ff4747!important;
}
    
.fl-location-detail-title i, .fl-location-detail-title .svg-inline--fa {
    margin-right: 10px;
    color: #ff4747!important;
}

.fl-info-item i, .fl-info-item .svg-inline--fa{
    margin-top:5px;
}

.fl-report-issue-btn:hover .svg-inline--fa{
    color:#FFFFFF!important;
}

.ufs-block{
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 0;
    border: none;
    min-height:200px;
}


.ufs-block .header, .ufs-block .ufs-header  {
    padding: 24px; /* Increased padding */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    background: linear-gradient(135deg, #fff, #f8f9fa); /* Subtle gradient */
}

.ufs-block .header .title,
.ufs-block .ufs-header .ufs-title{
    font-size: 22px; /* Increased size */
    font-weight: 700;
    margin: 0px!important;
    color: #1a1a2e;
    letter-spacing: -0.5px; /* Tighter letter spacing */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:10px;
    border:none;
}

.ufs-block .title, .ufs-block .ufs-title {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 22px 0;
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:10px;
}


.ufs-block .btn-icon{
    background-color: #FFFFFF;
    color: #ff4747;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.ufs-block .btn-icon:hover{
    background-color: #ff4747;
    color: #FFFFFF;
    transform: translateY(-3px) rotate(15deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}


.ufs-block i, 
.ufs-block .svg-inline--fa {
    margin-right: 10px;
    color: #ff4747!important;
}

.ufs-block.recomended .title i, 
.ufs-block.recomended .title .svg-inline--fa,
.ufs-block.recomended .ufs-title i, 
.ufs-block.recomended .ufs-title .svg-inline--fa{
    color:#f7c912!important;
}

.ufs-block.recomended::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top left, rgba(247, 201, 18, 0.06), transparent 70%);
    border-radius: 0 0 100% 0;
}

.ufs-block .content, .ufs-block .ufs-content{
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.ufs-block .ufs-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    background-color: rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    margin:0px 0px 24px 0px;
}

.ufs-block .ufs-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    background-color: #FFFFFF;
}

.ufs-block .content img, 
.ufs-block .ufs-content img{
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    transition: transform 0.3s ease;
}

.ufs-block .ufs-item-content, .ufs-block .item-content{
    display: flex;
    flex-direction: column;
    gap:7px;
}

.ufs-block .content .item-title, 
.ufs-block .ufs-content .item-title{
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.ufs-block .content .item-description, 
.ufs-block .ufs-content .item-description{
    font-size: 14px;
    font-weight: 400;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}




.ufs-block .badge,
.ufs-block .ufs-badge{
    background: linear-gradient(135deg, #ffeaa7, #ffd166);
    color: #cc5803;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(204, 88, 3, 0.1);
    width:auto;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.text-red{
   color: #ff4747!important; 
}

.text-yellow{
   color: #f7c912!important; 
}