
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --closure-banner-height: 0px;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f7f4eb;
    color: #1e2923;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

.kanji-background {
    position: fixed;
    top: 20%;
    right: -5%;
    font-family: 'Playfair Display', serif;
    font-size: 32vw;
    color: rgba(9, 90, 53, 0.025);
    font-weight: 500;
    pointer-events: none;
    z-index: -1;
    user-select: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(247, 244, 235, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(225, 219, 207, 0.6);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 7px;
    text-decoration: none;
    color: #095a35;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #7b8580;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #095a35;
    transform: scale(1.05);
}

.closure-announcement {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    z-index: 950;
    background-color: #a83232;
    color: #ffffff;
    text-align: center;
    padding: 12px 45px 12px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.closure-announcement.hidden {
    display: none;
}

.closure-announcement-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
}

.closure-announcement-close:hover {
    opacity: 1;
}

@media (max-width: 480px) {
    .closure-announcement {
        font-size: 12px;
        padding: 12px 40px 12px 14px;
        text-align: left;
    }
}

.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    min-height: 78vh;
    padding: 115px 20px 50px;
    margin-top: var(--closure-banner-height);
    width: 100%;
    overflow: hidden;
    animation: fadeIn 0.5s ease-out;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 15, 10, 0.5) 0%, rgba(6, 15, 10, 0.55) 45%, rgba(6, 15, 10, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-kicker {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #d4af37;
    margin: 4px 0 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.shoji-divider-center {
    width: 60px;
    height: 1px;
    background-color: #d4af37;
    margin: 0 auto 30px;
    position: relative;
    display: block;
}

.shoji-divider-center::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 27px;
    width: 7px;
    height: 7px;
    background-color: #d4af37;
    transform: rotate(45deg);
}

.hero-legend {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: #f0ece0;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.85);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.menu-section {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 30px;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 80px;
    color: #095a35;
}

.title-sub {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #8c9690;
    margin-top: 10px;
}

.category-block {
    margin-bottom: 110px;
    scroll-margin-top: calc(145px + var(--closure-banner-height));
}

.category-title {
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #0b6b3f, #095a35);
    padding: 13px 30px;
    margin-bottom: 18px;
    border-radius: 40px;
    box-shadow: 0 10px 26px rgba(9, 90, 53, 0.28);
}

.category-title .title-sub {
    color: rgba(255, 255, 255, 0.8);
}

.category-japanese-note {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 13px;
    color: #7b8580;
    max-width: 520px;
    margin: 0 0 40px;
    line-height: 1.6;
    text-align: left;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 34px 40px;
}

.menu-item {
    display: flex;
    flex-direction: column;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 10px;
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #1e2923;
}

.detail-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: #8c9690;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.4px;
    background: linear-gradient(135deg, #d4af37, #a8791a);
    padding: 5px 13px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(201, 160, 84, 0.35);
    white-space: nowrap;
}

.description {
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.9;
    color: #5c6660;
    text-align: left;
}

.raw-fish-notice {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
    color: #6b5220;
    background-color: rgba(201, 160, 84, 0.1);
    border-left: 2px solid #c9a054;
    padding: 6px 10px;
    margin-top: 8px;
    text-align: left;
}

.raw-fish-notice i {
    margin-right: 4px;
    color: #c9a054;
}

body.dark-mode .raw-fish-notice {
    color: #d9c48a !important;
    background-color: rgba(201, 160, 84, 0.08) !important;
}

.cart-promo-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: #095a35;
    background-color: rgba(9, 90, 53, 0.08);
    border-radius: 0;
    padding: 6px 10px;
    margin: -5px 0 12px 0;
}

.cart-promo-line.hidden {
    display: none;
}

.cart-loyalty-line {
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.5;
    color: #7a5c00;
    background-color: rgba(212, 175, 55, 0.12);
    border-radius: 0;
    padding: 8px 10px;
    margin: -5px 0 12px 0;
}

.cart-loyalty-line.hidden {
    display: none;
}

.roll-promo-banner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #d1483a, #a8291a);
    border: none;
    border-radius: 30px;
    padding: 7px 18px;
    margin: 4px 0 18px 0;
    box-shadow: 0 6px 16px rgba(168, 50, 50, 0.3);
}

.roll-promo-banner.hidden {
    display: none;
}

.coldfoam-desc.hidden {
    display: none;
}

.temaki-desc.hidden {
    display: none;
}

.menu-item.item-with-image {
    flex-direction: row;
    gap: 22px;
    align-items: center;
    background: #fffdf8;
    padding: 18px;
    border-radius: 18px;
    border: 1.5px solid rgba(201, 160, 84, 0.55);
    box-shadow: 0 10px 26px rgba(9, 90, 53, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.menu-item.item-with-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    transition: left 0.75s ease;
    pointer-events: none;
}

.menu-item.item-with-image:hover {
    transform: translateY(-6px);
    border-color: #c9a054;
    box-shadow: 0 22px 42px rgba(9, 90, 53, 0.16), 0 4px 14px rgba(201, 160, 84, 0.3);
}

.menu-item.item-with-image:hover::after {
    left: 130%;
}

.item-image-wrapper {
    width: 128px;
    height: 128px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #c9a054;
    box-shadow: 0 6px 16px rgba(201, 160, 84, 0.25);
    background-color: #ebdcb9;
}

.item-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-item.item-with-image:hover .item-photo {
    transform: scale(1.06);
}

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

.custom-roll-block {
    grid-column: 1 / -1;
    background: #fffdf8;
    border: 1.5px solid rgba(201, 160, 84, 0.5);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(9, 90, 53, 0.08);
}

.custom-roll-photo-wrapper {
    margin: -30px -30px 20px -30px;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background-color: #ebdcb9;
    position: relative;
}

.custom-roll-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-carousel {
    position: relative;
}

.photo-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.photo-carousel .carousel-slide.active {
    opacity: 1;
}

.custom-roll-selectors {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-roll-label {
    font-size: 11px;
    letter-spacing: 1px;
    color: #095a35;
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.custom-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: rgba(9, 90, 53, 0.03);
    padding: 14px 16px;
    border: 1px solid rgba(9, 90, 53, 0.1);
    border-radius: 10px;
}

.custom-check {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.custom-roll-submit {
    margin-top: 24px;
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 14px !important;
    font-size: 12px !important;
}

.variant-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.flavor-select {
    width: 100%;
    padding: 6px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(140, 150, 144, 0.4);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    outline: none;
    cursor: pointer;
}

.badge-new {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background: linear-gradient(135deg, #d4af37, #a8791a);
    border: none;
    padding: 3px 9px;
    margin-left: 8px;
    border-radius: 20px;
    box-shadow: 0 3px 8px rgba(201, 160, 84, 0.3);
}

.badge-soon {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7b8580;
    border: 1px solid rgba(123, 133, 128, 0.4);
    padding: 2px 6px;
    margin-left: 8px;
    vertical-align: middle;
    border-radius: 0;
}

.menu-item.coming-soon {
    pointer-events: none;
    user-select: none;
}

.menu-item.coming-soon-visual {
    user-select: none;
}

.menu-item.coming-soon .add-to-cart:disabled,
.menu-item.coming-soon .add-to-cart-variant:disabled {
    background-color: #b9b9b9 !important;
    color: #6b6b6b !important;
    opacity: 1 !important;
    cursor: not-allowed;
    box-shadow: none;
}

.info-delivery-section {
    background-color: #fcfbf7;
    padding: 60px 20px;
    text-align: center;
}

.info-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.info-block {
    flex: 1;
    min-width: 250px;
}

.info-block h3 {
    font-family: 'Playfair Display', serif;
    color: #095a35;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-block h3 i {
    font-size: 1.1rem;
    margin-right: 6px;
}

.info-block p {
    margin: 5px 0;
    color: #4a4a4a;
    font-size: 1.1rem;
}

.info-block .days,
.info-block .delivery-zone,
.info-block .location {
    font-weight: bold;
}

.info-block .hours {
    color: #bc9654;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-block .notes {
    font-size: 0.9rem;
    color: #8c8c8c;
    font-style: italic;
    margin-top: 8px;
}

.location-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.map-cta {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #095a35;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.location-link:hover .map-cta {
    opacity: 0.65;
}

.info-divider {
    width: 1px;
    height: 80px;
    background-color: #095a35;
    opacity: 0.2;
}

.trust-section {
    background-color: #eef0e9;
    padding: 30px 20px;
    text-align: center;
}

.trust-container {
    max-width: 600px;
    margin: 0 auto;
}

.trust-title {
    font-family: 'Playfair Display', serif;
    color: #095a35;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 300;
}

.contact-section {
    background-color: #095a35;
    color: #f7f4eb;
    padding: 80px 30px;
    text-align: center;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.contact-subtitle {
    font-size: 13px;
    font-weight: 200;
    letter-spacing: 1px;
    color: #ebdcb9;
    margin-bottom: 50px;
}

.contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-card {
    background: none;
    border: none;
    padding: 10px 35px;
    text-decoration: none;
    color: #f7f4eb;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:not(:first-child) {
    border-left: 1px solid rgba(235, 220, 185, 0.15);
}

.contact-card:hover {
    opacity: 0.65;
    transform: translateY(-3px);
}

.contact-card h4 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 11px;
    font-weight: 200;
    opacity: 0.6;
}

.contact-icon {
    font-size: 24px;
    margin-bottom: 14px;
    display: inline-block;
    color: #ebdcb9;
}

.footer-credits {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.4;
    text-transform: uppercase;
}

.cachis-bubble {
    position: fixed;
    left: 16px;
    bottom: 96px;
    width: min(72vw, 230px);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fffdf8;
    border: 1.5px solid rgba(201, 160, 84, 0.5);
    border-radius: 16px 16px 16px 4px;
    padding: 12px 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14), 0 0 0 4px rgba(201, 160, 84, 0.08);
    z-index: 99998;
    opacity: 0;
    transform: translateY(10px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cachis-bubble.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cachis-bubble.hidden {
    display: none;
}

.cachis-avatar {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #095a35;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 0 2px rgba(201, 160, 84, 0.4);
}

.cachis-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.cachis-text {
    font-size: 11.5px;
    line-height: 1.5;
    color: #1e2923;
    min-width: 0;
}

.cachis-text strong {
    display: block;
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    color: #095a35;
}

.cachis-step-text {
    min-height: 30px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cachis-step-text.fade {
    opacity: 0;
    transform: translateY(3px);
}

.cachis-step-text strong {
    display: inline;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    color: #095a35;
}

.cachis-dots {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.cachis-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(9, 90, 53, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
}

.cachis-dots span.active {
    background: #095a35;
    transform: scale(1.4);
}

.cachis-close {
    position: absolute;
    top: 5px;
    right: 8px;
    background: none;
    border: none;
    color: #7b8580;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
}

.cachis-close:hover {
    color: #095a35;
}

body.dark-mode .cachis-bubble {
    background: #141414 !important;
    border-color: rgba(201, 160, 84, 0.2) !important;
}

body.dark-mode .cachis-text {
    color: #e0e0e0 !important;
}

body.dark-mode .cachis-text strong,
body.dark-mode .cachis-step-text strong {
    color: #d4af37 !important;
}

body.dark-mode .cachis-dots span {
    background: rgba(255, 255, 255, 0.2);
}

body.dark-mode .cachis-dots span.active {
    background: #d4af37;
}

@media (max-width: 480px) {
    .cachis-bubble {
        left: 12px;
        bottom: 84px;
        width: min(70vw, 210px);
        padding: 11px 12px;
    }
}

.add-to-cart,
.add-to-cart-variant {
    background: #095a35;
    border: none;
    border-radius: 30px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 9px 18px;
    margin-top: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 6px 16px rgba(9, 90, 53, 0.28);
}

.add-to-cart:hover,
.add-to-cart-variant:hover {
    background: #c9a054;
    color: #111111;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(201, 160, 84, 0.4);
}

body.store-closed .add-to-cart,
body.store-closed .add-to-cart-variant {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

body.store-closed .add-to-cart:hover,
body.store-closed .add-to-cart-variant:hover {
    transform: none;
    box-shadow: none;
}

.cart-floating-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: #095a35;
    color: #f7f4eb;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    cursor: pointer;
    border: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.cart-floating-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(201, 160, 84, 0.4);
}

.cart-floating-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8) translateY(20px);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #c9a054;
    color: #1e2923;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 41, 35, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    transition: opacity 0.3s ease;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: #fffdf8;
    border: 2px solid rgba(201, 160, 84, 0.4);
    border-radius: 22px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 44px 34px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.5s ease-out;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: #7b8580;
    cursor: pointer;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    color: #095a35;
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.cart-items-list {
    margin-bottom: 20px;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(140, 150, 144, 0.2);
    font-size: 13px;
}

.cart-item-row .remove-item {
    background: none;
    border: none;
    color: #a83232;
    cursor: pointer;
    margin-left: 10px;
    font-size: 12px;
}

.cart-total-block {
    display: flex;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    margin-top: 15px;
}

.total-price {
    color: #a83232;
    font-weight: 500;
}

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #095a35;
    margin-bottom: 15px;
    text-align: center;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-form input,
.checkout-form textarea {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(140, 150, 144, 0.4);
    padding: 10px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #1e2923;
    outline: none;
    width: 100%;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: #095a35;
}

.submit-order-btn {
    background-color: #095a35;
    color: #f7f4eb;
    border: none;
    padding: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.submit-order-btn:hover {
    background-color: #123d28;
}

.location-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background-color: rgba(9, 90, 53, 0.06);
    border: 1px solid rgba(9, 90, 53, 0.15);
    border-radius: 0;
    padding: 10px 14px;
    font-size: 11px;
    color: #5c6660;
    line-height: 1.6;
}

.location-note i {
    color: #095a35;
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 18px 15px;
    }

    .logo-text {
        font-size: 15px;
        letter-spacing: 4px;
    }

    .nav-links li {
        margin-left: 14px;
    }

    .nav-links a {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .hero-section {
        padding: 115px 20px 35px;
    }

    .hero-legend {
        font-size: 11.5px;
        line-height: 1.7;
        max-width: 90%;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .kanji-background {
        font-size: 60vw;
        right: -20%;
    }

    .section-title {
        font-size: 26px;
    }

    .info-container {
        flex-direction: column;
    }

    .info-divider {
        width: 50px;
        height: 1px;
        margin: 10px auto;
    }

    .cart-floating-btn {
        bottom: 85px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .trust-section {
        padding: 22px 16px;
    }

    .trust-title {
        font-size: 0.95rem;
    }

    .trust-text {
        font-size: 0.72rem;
        line-height: 1.55;
    }

    .contact-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .contact-card {
        min-width: 0;
        padding: 18px 8px;
    }

    .contact-icon {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .contact-card h4 {
        font-size: 10px;
    }

    .contact-card p {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .menu-item.item-with-image {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 14px;
    }

    .item-image-wrapper {
        width: 100%;
        height: 190px;
    }

    .contact-section {
        padding: 60px 15px;
    }

    .contact-links {
        gap: 6px;
    }

    .contact-card {
        padding: 12px 4px;
    }

    .contact-icon {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .contact-card h4 {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .contact-card p {
        display: none;
    }
}

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

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffeb3b;
    color: #000;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    z-index: 1000;
}

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

.cart-floating-btn::before,
.cart-floating-btn::after,
.cart-floating-btn i,
#cart-floating-btn::before,
#cart-floating-btn::after,
#cart-floating-btn i {
    display: none !important;
    content: "" !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.cart-icon-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.bento-svg {
    width: 24px !important;
    height: 24px !important;
    color: #ffffff !important;
    display: block !important;
}

.add-to-cart,
.add-to-cart-variant,
#calpis-btn,
#add-custom-roll-btn,
#cart-floating-btn,
button {
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.add-to-cart:focus,
.add-to-cart-variant:focus,
#calpis-btn:focus,
#add-custom-roll-btn:focus,
.add-to-cart:focus-visible,
.add-to-cart-variant:focus-visible,
#calpis-btn:focus-visible,
#add-custom-roll-btn:focus-visible,
.add-to-cart:active,
.add-to-cart-variant:active {
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    background-color: #095a35 !important;
}

@media (hover: none) {
    .add-to-cart:hover,
    .add-to-cart-variant:hover,
    #calpis-btn:hover,
    #add-custom-roll-btn:hover {
        background-color: #095a35 !important;
        color: #ffffff !important;
    }
}

.add-to-cart:disabled,
.add-to-cart-variant:disabled {
    background-color: #095a35 !important;
    color: #ffffff !important;
    opacity: 1 !important;
}

body.dark-mode {
    background-color: #0d0d0d !important;
    color: #f5f5f5 !important;
}

body.dark-mode .menu-item,
body.dark-mode .card,
body.dark-mode .product-card {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

body.dark-mode p,
body.dark-mode .product-description,
body.dark-mode .item-description {
    color: #b3b3b3 !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode .product-title {
    color: #ffffff !important;
}

body.dark-mode .modal-content,
body.dark-mode #cart-modal .modal-body {
    background-color: #141414 !important;
    border-color: rgba(201, 160, 84, 0.35) !important;
    color: #ffffff !important;
}

body.dark-mode .cart-item-row span {
    color: #cccccc !important;
}

body.dark-mode .menu-item.item-with-image {
    background: #161616 !important;
    border-color: rgba(201, 160, 84, 0.4) !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3) !important;
}

body.dark-mode .menu-item.item-with-image:hover {
    border-color: #d4af37 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 4px 14px rgba(201, 160, 84, 0.25) !important;
}

body.dark-mode .item-image-wrapper {
    border-color: #d4af37 !important;
}

body.dark-mode .custom-roll-block {
    background: #161616 !important;
    border-color: rgba(201, 160, 84, 0.4) !important;
}

body.dark-mode .custom-checkbox-grid {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .custom-roll-label {
    color: #d4af37 !important;
}

body.dark-mode .hero-kicker {
    color: #d4af37 !important;
}

body.dark-mode .hero-legend {
    color: #f0ece0 !important;
}

body.dark-mode .info-delivery-section {
    background-color: #0d0d0d !important;
}

body.dark-mode .info-block .hours {
    color: #d4af37 !important;
}

body.dark-mode .info-block .notes {
    color: #999999 !important;
}

body.dark-mode .info-divider {
    background-color: #d4af37 !important;
    opacity: 0.25;
}

body.dark-mode .map-cta {
    color: #d4af37 !important;
}

.categories-nav {
    position: sticky;
    top: calc(75px + var(--closure-banner-height));
    background: #f7f4eb;
    z-index: 900;
    border-bottom: 2px solid rgba(201, 160, 84, 0.3);
    box-shadow: 0 6px 20px rgba(9, 90, 53, 0.06);
    padding: 14px 0;
    transition: border-color 0.3s ease;
}

.categories-scroll {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 15px;
    gap: 10px;
    scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-btn {
    display: inline-block;
    padding: 9px 20px;
    background: #ffffff;
    color: #095a35;
    text-decoration: none;
    border: 1.5px solid rgba(9, 90, 53, 0.25);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(9, 90, 53, 0.06);
    transition: all 0.25s ease;
}

.category-btn:hover,
.category-btn:active,
.category-btn.active {
    background: linear-gradient(135deg, #0b6b3f, #095a35);
    color: #ffffff;
    border-color: #095a35;
    box-shadow: 0 8px 18px rgba(9, 90, 53, 0.3);
}

body.dark-mode .categories-nav {
    background: #0d0d0d !important;
    border-bottom-color: rgba(201, 160, 84, 0.25);
}

body.dark-mode .category-btn {
    background: #161616;
    color: #cccccc;
    border-color: rgba(201, 160, 84, 0.25);
    box-shadow: none;
}

body.dark-mode .category-btn:hover,
body.dark-mode .category-btn:active,
body.dark-mode .category-btn.active {
    background: linear-gradient(135deg, #d4af37, #a8791a);
    color: #111111;
    border-color: #d4af37;
}

.product-card {
    position: relative;
}

.badge-seijaku {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    padding: 5px 12px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.badge-favorito {
    background: linear-gradient(135deg, #e6c565, #b8860b) !important;
    color: #111111 !important;
}

.badge-picante {
    background: linear-gradient(135deg, #e0503f, #a8291a) !important;
    color: #ffffff !important;
}

.badge-nuevo {
    background: #111111 !important;
    color: #ffffff !important;
}

.badge-vegetariano {
    background: linear-gradient(135deg, #0b6b3f, #074026) !important;
    color: #ffffff !important;
}
.menu-item {
    position: relative;

}

@keyframes seijakuShake {
    0% { transform: scale(1); }
    15% { transform: scale(1.1) rotate(-8deg); }
    30% { transform: scale(1.1) rotate(8deg); }
    45% { transform: scale(1.1) rotate(-6deg); }
    60% { transform: scale(1.1) rotate(6deg); }
    75% { transform: scale(1.1) rotate(-3deg); }
    90% { transform: scale(1.1) rotate(3deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.shake-cart {
    animation: seijakuShake 0.5s ease-in-out;
}

.flying-particle {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: #5d875a;
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.15);
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.3) rotate(-10deg); }
    50% { transform: scale(0.9) rotate(5deg); }
    70% { transform: scale(1.1) rotate(-3deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.cart-icon-bounce {
    animation: cartBounce 0.5s ease-in-out;
}

#preloader {
    position: fixed;
    inset: 0;
    background-color: #095a35;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-video {
    width: 180px;
    height: auto;
    border-radius: 16px;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    color: #ebdcb9;
    font-size: 16px;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0.8;
}

body.loading {
    overflow: hidden;
}