
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Stack Sans Text', sans-serif;
    background-color: var(--color-surface-outer); /* Light grey background for large screens */
    color: var(--color-text-primary);
    -webkit-user-select: none;
    user-select: none;
}

input, textarea {
    -webkit-user-select: auto;
    user-select: auto;
}

::selection {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Application Container with Max Width */
.mobile-frame {
    width: 100%;
    max-width: 480px; /* Restrict width on desktop */
    height: 100vh; /* Force full viewport height */
    min-height: 100vh;
    margin: 0 auto; /* Center horizontally */
    background: var(--color-surface-main);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 40px rgba(0,0,0,0.05); /* Subtle shadow */
}

/* Scroll Container */
.screen-content {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
    background: var(--color-surface-main); /* Lighter background behind the sticky header */
}

/* Hide scrollbar for clean look */
.screen-content::-webkit-scrollbar {
    display: none;
}
.screen-content {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* 1. Top Header Container - The Peel-Away Section */
.hero-header {
    position: sticky;
    top: 0;
    z-index: 1; /* Below the main content */
    background: transparent;
    height: auto; /* Dynamic height based on content */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-nav {
    position: relative;
    width: 100%;
    padding: 16px 20px; /* Adjusted padding for solid navbar */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
    background: var(--color-surface-main); /* Matches the paper-like design color */
}
.top-nav .icon-btn, .top-nav .logo {
    /* No longer need pointer-events tricks as navbar is solid */
}

.icon-btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    cursor: pointer;
    color: var(--color-text-primary);
}

.cafe-name {
    font-family: 'Stack Sans Text', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: var(--color-primary);
    margin: 0;
    line-height: 40px; /* Aligns with the 40px icon-btn */
}

.hero-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.banner-carousel {
    display: flex;
    align-items: flex-start; /* Prevent images from stretching vertically if they have different heights */
    overflow-x: auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    gap: 0;
    padding: 0;
    margin-bottom: 0; /* Removed spacing */
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}
.banner-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.banner-image {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto; /* Allows the image to scale naturally without cropping */
    display: block;
    border-radius: 0;
    scroll-snap-align: start;
    box-shadow: none;
    object-fit: cover;
}

/* Carousel Pagination Dots */
.carousel-dots {
    position: absolute;
    bottom: 40px; /* Sits just above the 30px peel-away overlap */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2; /* Above banner but below main-content */
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}
.dot.active {
    background: rgba(255, 255, 255, 1);
    width: 24px; /* Elongated active dot */
    border-radius: 4px;
}

.hero-text {
    position: absolute;
    bottom: -60px; /* Overlaps into the next section for a bit of transition */
    text-align: center;
    padding: 0 20px;
    opacity: 0; /* hidden in this design since we want it higher, adjust below */
}

.main-content {
    position: relative;
    z-index: 2; /* Higher than hero header */
    background-color: var(--color-surface-main);
    
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    margin-top: -30px; /* Slight overlap */
    min-height: calc(100% + 30px); /* Ensure it can scroll fully over the header */
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    transition: border-radius 0.3s ease;
}

.sticky-nav-wrapper {
    position: sticky;
    top: -1px; /* Prevents 1px gap artifacts at the top of the screen */
    z-index: 4;
    background-color: var(--color-surface-main);
    
    padding: 16px 0 0;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    transition: border-radius 0.2s ease, box-shadow 0.2s ease;
    /* Hardware acceleration to prevent sticky scroll jitter on mobile */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.sticky-nav-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, var(--color-surface-main), transparent);
    pointer-events: none;
    z-index: 1;
}
.sticky-nav-wrapper.is-stuck {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* Search Bar */
.search-bar {
    position: relative;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}
.search-bar input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    background: var(--color-surface-outer);
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 14px;
    font-family: inherit;
    color: var(--color-text-primary);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-bar input::placeholder {
    color: var(--color-text-placeholder);
}
.search-bar input:focus {
    outline: none;
    background: var(--color-surface-focus);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.15);
}
.search-icon {
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    color: var(--color-icon-secondary);
    width: 20px;
    height: 20px;
}

/* Category Chips */
.category-chips {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 8px 20px 11px; /* Added padding to prevent shadow clipping and allow edge-to-edge scroll */
    scrollbar-width: none; /* Firefox */
    position: relative;
    z-index: 0;
}
.category-chips::-webkit-scrollbar {
    display: none;
}
.chip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 60px; /* Force uniform width for all chips, exactly matching circle width */
    position: relative;
    z-index: auto;
}

.chip-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-surface-outer);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--color-text-primary);
    overflow: hidden;
    transition: color 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    z-index: auto;
}
.chip-circle > * {
    position: relative;
    z-index: 3;
}
.chip-circle svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5px;
    display: block;
    transform: translateY(1px);
}

.chip-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-icon-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-align: center;
    line-height: 1.2;
}

/* Active State for Chips */
.chip-item.active .chip-circle {
    background-color: var(--color-primary);
    color: white;
}
.chip-item.active .chip-label {
    color: var(--color-primary);
    /* Removed font-weight: 700 to prevent layout shift that causes horizontal vibration */
}

/* 3. Main Menu List */
.menu-list {
    padding: 0 20px;
}

.menu-section {
    padding-top: 12px;
    padding-bottom: 16px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    color: var(--color-text-primary);
}
.section-title .line {
    flex-grow: 1;
    height: 2px;
    background: var(--color-primary);
    margin-left: 12px;
    border-radius: 2px;
    opacity: 0.8;
}

/* Food Grid Layout */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

/* Horizontal Scroll Carousel Layout */
.food-carousel {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 8px; /* Room for card shadow */
    scrollbar-width: none; /* Firefox */
    scroll-snap-type: x mandatory;
}
.food-carousel::-webkit-scrollbar {
    display: none;
}
.food-carousel .food-card {
    flex: 0 0 160px; /* Fixed width to allow scrolling */
    scroll-snap-align: start;
}

.food-card {
    background: var(--color-surface-outer);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.card-image-wrap {
    position: relative;
    height: 120px;
}
.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.discount-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--color-primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
}

.card-content {
    padding: 12px;
}


.food-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a120c;
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: auto;
}
.price {
    font-weight: 600;
    color: var(--color-icon-secondary);
    font-size: 14px;
}


/* --- New Menu Card Styles (Based on image) --- */
.menu-card {
    background-color: var(--color-surface-outer);
    background-image: 
        radial-gradient(circle at 85% 180px, rgba(var(--color-accent-rgb), 0.04) 129px, transparent 130px),
        radial-gradient(circle at 15% 450px, rgba(var(--color-accent-rgb), 0.03) 129px, transparent 130px);
    background-size: 100% 600px;
    background-repeat: repeat-y;
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}



.menu-card-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-highlight-text);
    text-transform: uppercase;
    margin-bottom: 32px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    width: 60%;
    letter-spacing: 0.5px;
    word-spacing: 100vw; /* Forces words to stack naturally if there are spaces */
}

.menu-card-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.menu-card-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    width: 100%;
}

.menu-item-name {
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: var(--color-text-primary);
    margin: 0;
    max-width: 60%;
    line-height: 1.2;
}

.menu-item-name .inline-desc {
    font-weight: 500;
    font-size: 13px;
    color: var(--color-icon-secondary);
    display: block;
    margin-top: 4px;
}

.menu-item-name em {
    display: none;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--color-icon-secondary) !important;
    margin-top: 2px;
}

.menu-item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(44, 36, 27, 0.25);
    margin: 0 12px;
    position: relative;
    min-width: 20px;
}

.menu-item-price {
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
    color: var(--color-text-primary);
    text-align: right;
    flex-shrink: 0;
    line-height: 1.35;
}

.menu-item-desc {
    font-size: 13px;
    color: var(--color-icon-secondary);
    margin: 0;
    display: none;
    line-height: 1.4;
    padding-right: 16px;
    margin-top: 4px;
}
/* Navigation Menu Overlay */
.nav-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.nav-menu-content {
    width: 75%;
    max-width: 340px;
    height: 100%;
    padding: 40px 30px;
    background-color: var(--color-surface-main); /* #F4ECE4 */
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    position: absolute;
    top: 0;
    left: -100%;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 4px 0 24px rgba(0,0,0,0.15); /* lighter shadow for light mode */
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}

.nav-menu-overlay.active .nav-menu-content {
    left: 0;
}

.nav-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 0;
}

.nav-menu-header .cafe-name {
    color: var(--color-text-primary);
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

#closeNavBtn {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text-primary);
    box-shadow: none;
    transition: background 0.3s ease;
}

#closeNavBtn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.nav-menu-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-link {
    font-size: 26px;
    color: var(--color-icon-secondary);
    text-decoration: none;
    font-weight: 600;
    display: block;
    padding: 16px 0;
    border-bottom: 1px dashed var(--color-border-standard);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link:active {
    color: var(--color-primary);
    padding-left: 12px;
    border-bottom-color: var(--color-primary);
}
/* Modal Styles */
.food-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.food-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.food-modal {
    background: var(--color-surface-outer);
    width: 90%;
    max-width: 400px;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-align: left;
}
.food-modal-overlay.active .food-modal {
    transform: translateY(0);
}
.food-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.05);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--color-text-primary);
}
.food-modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text-primary);
    text-align: center;
}
.food-modal-title .inline-desc {
    display: block;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    color: var(--color-icon-secondary);
    margin-top: 6px;
}
.food-modal-subtitle {
    font-size: 13px;
    font-style: normal;
    color: var(--color-text-placeholder);
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(44,36,27,0.1);
    padding-bottom: 16px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}
.food-modal-desc {
    font-size: 15px;
    color: var(--color-text-primary);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}
.food-modal-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    background: rgba(0,0,0,0.05);
    padding: 16px;
    border-radius: 8px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    line-height: 1.5;
}

.subcategory-title {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(44, 36, 27, 0.1);
    letter-spacing: 0.5px;
}
.instagram-card-new {
    margin: 20px 0 40px;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gradient-end) 100%);
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid var(--color-border-light);
}
.insta-title {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.instagram-qr-new {
    margin-bottom: 24px;
    padding: 16px;
    border: 3px dashed var(--color-primary);
    border-radius: 20px;
    display: inline-block;
    background: var(--color-white);
}
.instagram-qr-new img {
    width: 160px;
    height: 160px;
    display: block;
    border-radius: 8px;
}
.insta-desc {
    font-size: 15px;
    color: var(--color-gray-medium);
    line-height: 1.5;
    margin: 0;
}

/* Review Card */
.review-card-new {
    margin: 0 0 40px;
    background: var(--color-primary);
    border-radius: 12px;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.review-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.review-stars .star-icon {
    width: 22px;
    height: 22px;
    color: var(--color-highlight-bg);
    fill: var(--color-highlight-bg);
}
.review-subtitle {
    font-size: 14px;
    color: var(--color-highlight-bg);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.review-title-link {
    font-size: 28px;
    color: var(--color-white);
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* Footer */
.app-footer {
    background-color: var(--color-primary);
    color: var(--color-surface-outer);
    text-align: center;
    padding: 40px 20px 30px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    margin: 0;
    position: relative;
    bottom: -1px; /* Remove bottom sub-pixel gap */
    width: calc(100% + 1px); /* Remove right sub-pixel gap */
}
.footer-logo {
    color: var(--color-surface-outer);
    margin-bottom: 12px;
}
.footer-logo svg {
    width: 40px;
    height: 40px;
}
.app-footer h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--color-white);
}
.app-footer p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 24px;
}
.footer-bottom {
    font-size: 12px;
    opacity: 0.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Global Loader */
.global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-surface-main, #ffffff);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.global-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--color-primary, #000);
    border-radius: 50%;
    animation: spin 1.0s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* About Us View Styles */
.about-header-fresh {
    text-align: center;
    margin-bottom: 32px;
}
.about-header-fresh h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.about-header-fresh p {
    font-size: 14px;
    color: var(--color-icon-secondary);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 20px;
}

.bento-card-fresh {
    background: var(--color-surface-outer);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    text-decoration: none;
    color: var(--color-text-primary);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-border-standard);
}

.bento-full-fresh {
    grid-column: span 2;
}
.bento-half-fresh {
    grid-column: span 1;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.bento-title-fresh {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.bento-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--color-surface-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}
.bento-title-text {
    font-size: 16px;
    font-weight: 700;
}

.bento-story-fresh p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}
.bento-story-fresh p:last-child {
    margin-bottom: 0;
}

.timing-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--color-border-dashed);
    font-size: 14px;
}
.timing-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.timing-day {
    font-weight: 600;
    color: var(--color-text-primary);
}
.timing-hours {
    color: var(--color-icon-secondary);
    font-weight: 500;
}

.action-icon-fresh {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.action-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.action-sub {
    font-size: 12px;
    color: var(--color-icon-secondary);
}

.map-card-fresh {
    padding: 0;
    height: 200px;
    position: relative;
    display: block;
}
.map-card-fresh iframe {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    filter: sepia(0.6) hue-rotate(350deg) saturate(0.7) contrast(0.9);
}
.map-overlay-fresh {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: var(--color-surface-main);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-weight: 600;
    color: var(--color-text-primary);
}
.action-icon-fresh i, .action-icon-fresh svg {
    width: 24px;
    height: 24px;
}
.bento-icon-wrap i, .bento-icon-wrap svg {
    width: 20px;
    height: 20px;
}
