* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f0e5;
    color: #222;
}

img {
    max-width: 100%;
}

button,
a {
    font-family: inherit;
}

/*.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}*/

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: transparent;
    transition:
        background 0.3s ease,
        backdrop-filter 0.3s ease,
        box-shadow 0.3s ease;
}

/* ESTADO AL HACER SCROLL */

.topbar.scrolled {

    background: rgba(255, 248, 240, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);

}

.topbar-inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 24px;
}

/*
|--------------------------------------------------------------------------
| LEFT
|--------------------------------------------------------------------------
*/

.brand {

    display: flex;

    align-items: center;

    margin-right: auto;
}


.japanese-pattern {
    background-color: var(--warm-beige);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' width='80' height='80'%3E%3Cpath fill='%23ff8c42' fill-opacity='0.1' d='M0 0h40v40H0z M40 40h40v40H40z'%3E%3C/path%3E%3Cpath fill='%23e53e3e' fill-opacity='0.05' d='M26.5 25.5C33.4 25.5 39 19.9 39 13S33.4 0.5 26.5 0.5S14 6.1 14 13S19.6 25.5 26.5 25.5z M66.5 65.5C73.4 65.5 79 59.9 79 53S73.4 40.5 66.5 40.5S54 46.1 54 53S59.6 65.5 66.5 65.5z M26.5 65.5C33.4 65.5 39 59.9 39 53S33.4 40.5 26.5 40.5S14 46.1 14 53S19.6 65.5 26.5 65.5z M66.5 25.5C73.4 25.5 79 19.9 79 13S73.4 0.5 66.5 0.5S54 6.1 54 13S59.6 25.5 66.5 25.5z'%3E%3C/path%3E%3C/svg%3E");
    background-attachment: fixed
}

.logo {
    height: 52px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0 auto;
}

.nav-links a {
    color: #202020;
    text-decoration: none;
    font-weight: 700;
}
.nav-links_light a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.nav-links a:hover {
    text-decoration: solid;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/*
|--------------------------------------------------------------------------
| MOBILE BUTTON
|--------------------------------------------------------------------------
*/

.mobile-menu-button {

    display: none;

    background: none;

    border: none;

    color: red;

    font-size: 32px;

    cursor: pointer;

    padding: 0 10px;
}

/*
|--------------------------------------------------------------------------
| MOBILE MENU
|--------------------------------------------------------------------------
*/

.mobile-menu {

    display: none;

    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    background: rgba(214, 40, 40, 0.98);

    backdrop-filter: blur(10px);

    margin-top: -16px;
    padding: 20px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.2);

    flex-direction: column;

    gap: 20px;
}

.mobile-menu a {

    color: white;

    text-decoration: none;

    font-size: 18px;

    font-weight: 600;
}

.mobile-menu.open {

    display: flex;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 960px) {

    .nav-links {

        display: none;
    }

    .mobile-menu-button {

        display: block;
    }
}

/*
|--------------------------------------------------------------------------
| MOBILE ORDER BAR
|--------------------------------------------------------------------------
*/

.mobile-order-bar {

    display: none;
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    /*
    |--------------------------------------------------------------------------
    | HIDE DESKTOP SWITCH
    |--------------------------------------------------------------------------
    */

    .order-switch {

        display: none !important;
    }

    /*
    |--------------------------------------------------------------------------
    | STICKY MOBILE BAR
    |--------------------------------------------------------------------------
    */

    .mobile-order-bar {

        position: fixed;

        bottom: 0;

        left: 0;

        width: 100%;

        z-index: 9999;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 12px;

        padding: 14px;

        background: rgba(255,255,255,0.92);

        backdrop-filter: blur(12px);

        box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    }

    .mobile-order-bar button {

        height: 54px;

        border: none;

        border-radius: 999px;

        background: #d62828;

        color: white;

        font-size: 16px;

        font-weight: 700;

        cursor: pointer;

        transition: 0.2s;
    }

    .mobile-order-bar button:hover {

        background: #b71c1c;
    }

    /*
    |--------------------------------------------------------------------------
    | EXTRA SPACE BOTTOM
    |--------------------------------------------------------------------------
    */

    body {

        padding-bottom: 90px;
    }
}


.fortune-banner {
    margin-top:1rem;
    margin-bottom:1rem;
    background-color: #FFC300 !important;
    background: linear-gradient(45deg, var(--accent-yellow), #FFC300);
}
.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
}

.text-lg {
    font-size: 1.5rem;
    line-height: 1.75rem;
}
.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}
.flex {
    display: flex;
}
.text-red-600 {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.w-8 {
    width: 3rem;
}
.h-8 {
    height: 3rem;
}
.font-semibold {
    font-weight: 600;
}
.text-center {
    text-align: center;
}
.font-bold {
    font-weight: 700;
}


.order-switch {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.order-switch button {
    border: 0;
    background: transparent;
    border-radius: 999px;
    padding: 10px 14px;
    color: #555;
    font-weight: 700;
    cursor: pointer;
}

.order-switch button:hover {
    background: #fff1f1;
    color: #d62828;
}

.lang-selector {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-button {
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    padding: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s;
}

.lang-button img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.lang-button:hover,
.lang-button.active {
    transform: scale(1.08);
    border-color: #fff;
}

.hero_con_img {
    padding: 80px 20px 60px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(247, 127, 0, 0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(214, 40, 40, 0.16), transparent 32%),
        #f6f0e5;
}
.hero {
    padding: 80px 20px 60px;
    text-align: center;

}

.hero-inner_old {
    max-width: 850px;
    margin: 0 auto;
}
.hero-inner {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}

/*
|--------------------------------------------------------------------------
| ROWS
|--------------------------------------------------------------------------
*/

.hero-row {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;
}

/*
|--------------------------------------------------------------------------
| SPACING
|--------------------------------------------------------------------------
*/

.hero-row-logo {

    margin-bottom: 24px;
}

.hero-row-button {

    margin-bottom: 34px;
}

.hero-row-text {

    flex-direction: column;
}

/*
|--------------------------------------------------------------------------
| TEXT
|--------------------------------------------------------------------------
*/

.hero-row-text h1 {

    margin-bottom: 18px;
}



.hero-logo {
    width: 340px;
    max-width: 90%;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 56px;
    color: #d62828;
    margin: 0 0 20px;
    line-height: 1.08;
    letter-spacing: -1px;
}

.hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.6;
    color: #555;
}

.hero-button,
.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f77f00;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 18px 34px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 35px;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
}

.hero-button:hover,
.link-button:hover {
    transform: translateY(-2px);
    background: #df7200;
}

.menu-section {
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 24px;
}

.section-title h2 {
    color: #d62828;
    font-size: 42px;
    margin: 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-tabs button {
    border: 0;
    background: white;
    color: #555;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.category-tabs button.active,
.category-tabs button:hover {
    background: #d62828;
    color: white;
}

/*grid-template-columns: repeat(3, 1fr);*/
.products-grid_old {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.products-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 28px;

    max-width: 1200px;

    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: 0.25s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.product-image-wrap {
    padding: 16px 16px 0;
}

.product-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
    background: #f0f0f0;
}

.product-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.product-content h3 {
    margin: 0;
    color: #d62828;
    font-size: 24px;
    line-height: 1.2;
}

.flavor {
    background: #fff2cc;
    color: #8a5a00;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    white-space: normal;
    text-align: center;
}

.product-description {
    color: #555;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}

.allergens {
    background: #ffeaea;
    border: 1px solid #ffcdcd;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #7a2222;
    margin-bottom: 20px;
}

.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #eee;
    padding-top: 18px;
}

.price {
    font-size: 28px;
    color: #f77f00;
    font-weight: bold;
}

.product-footer button {
    background: #d62828;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.product-footer button:hover {
    background: #b71c1c;
}

.promo {
    background: #d62828;
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.promo-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.promo h2 {
    font-size: 48px;
    margin: 0 0 20px;
}

.promo p {
    margin: auto;
    line-height: 1.7;
    font-size: 18px;
}

.info-section {
    padding: 70px 20px;
    text-align: center;
    background: #fff;
}

.info-section.alt {
    background: #f6f0e5;
}

.info-section h2 {
    color: #d62828;
    font-size: 40px;
    margin: 0 0 16px;
}

.info-section p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 22px;
    line-height: 1.6;
}

.info-section .link-button {
    margin-bottom: 0;
}

.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 28px 20px;
}

.footer p {
    margin: 0;
}

@media (max-width: 900px) {
    .topbar-inner {
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 18px;
    }

    .top-actions {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        padding: 12px 16px;
    }

    .logo {
        height: 44px;
    }

    .order-switch button {
        padding: 8px 10px;
        font-size: 13px;
    }

    .hero {
        padding: 60px 18px 44px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    .menu-section {
        padding: 30px 18px 60px;
    }

    .product-heading {
        flex-direction: column;
    }

    .promo h2,
    .info-section h2 {
        font-size: 34px;
    }
}


/*
|--------------------------------------------------------------------------
| OFFERS
|--------------------------------------------------------------------------
*/

.offers-section {

    padding: 50px 20px;

    background: rgba(255,240,230,0.5);
}

.offers-header {

    text-align: center;

    margin-bottom: 60px;
}

.offers-pill {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #fff0d9;

    color: #f77f00;

    padding: 12px 22px;

    border-radius: 999px;

    font-weight: 700;

    margin-bottom: 10px;
}

.offers-header h2 {

    font-size: 44px;

    color: #d62828;

    margin-bottom: 20px;
}

.offers-header p {

    font-size: 20px;

    color: #666;
}

.offers-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit,minmax(360px,1fr));

    gap: 40px;

    max-width: 1200px;

    margin: auto;
}

/*
|--------------------------------------------------------------------------
| COMBO CARD
|--------------------------------------------------------------------------
*/

.combo-card {

    position: relative;

    background: linear-gradient(
        135deg,
        #fff7e6,
        #ffe9cc
    );

    border: 2px solid #ff9f1c;

    border-radius: 32px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.3s;

    display: flex;

    flex-direction: column;
}

.combo-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.combo-badge {

    position: absolute;

    top: 0;

    right: 0;

    background: #d62828;

    color: white;

    padding: 12px 20px;

    border-bottom-left-radius: 24px;

    font-weight: 700;

    z-index: 5;
}

.combo-image {

    width: 100%;

    height: 260px;

    object-fit: cover;
}

.combo-content {

    padding: 28px;

    display: flex;

    flex-direction: column;

    flex-grow: 1;
}

.combo-title-row {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 14px;
}

.combo-title-row h3 {

    margin: 0;

    color: #d62828;

    font-size: 34px;
}

.combo-icon {

    font-size: 30px;
}

.combo-description {

    line-height: 1.7;

    color: #555;

    margin-bottom: 22px;
}

.combo-allergens {

    background: #fff1f1;

    border: 1px solid #ffcaca;

    padding: 14px;

    border-radius: 14px;

    margin-bottom: 24px;
}

.combo-footer {

    margin-top: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top: 2px dashed #ffb347;

    padding-top: 24px;
}

.combo-price {

    font-size: 46px;

    font-weight: 800;

    color: #f77f00;
}

.combo-button {

    background: linear-gradient(
        90deg,
        #ef4444,
        #f97316
    );

    color: white;

    border: none;

    border-radius: 999px;

    padding: 16px 26px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}

.combo-button:hover {

    transform: scale(1.04);
}

/*
|--------------------------------------------------------------------------
| FRANCHISE
|--------------------------------------------------------------------------
*/

.franchise-section {

    padding: 60px 20px;

    background: rgba(255,240,240,0.5);
}

.franchise-container {

    max-width: 1200px;

    margin: auto;
}

/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

.franchise-header {

    text-align: center;

    margin-bottom: 30px;
}

.franchise-pill {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #fff0d9;

    color: #f97316;

    padding: 12px 14px;

    border-radius: 999px;

    font-weight: 700;

    margin-bottom: 10px;
}

.franchise-header h2 {

    font-size: 44px;

    color: #dc2626;

    margin-bottom: 26px;

    line-height: 1.05;
}

.franchise-header p {

    max-width: 900px;

    margin: auto;

    font-size: 26px;

    line-height: 1.6;

    color: #555;
}

/*
|--------------------------------------------------------------------------
| CARD
|--------------------------------------------------------------------------
*/

.franchise-card {

    background: white;

    border-radius: 36px;

    padding: 70px;

    border: 2px solid #fed7aa;

    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/*
|--------------------------------------------------------------------------
| FEATURES
|--------------------------------------------------------------------------
*/

.franchise-features {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 50px;

    margin-bottom: 60px;
}

.franchise-feature {

    text-align: center;
}

.feature-icon {

    width: 90px;

    height: 90px;

    border-radius: 999px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 24px;

    font-size: 42px;
}

.feature-icon.red {

    background: #fee2e2;
}

.feature-icon.orange {

    background: #ffedd5;
}

.feature-icon.yellow {

    background: #fef9c3;
}

.franchise-feature h4 {

    font-size: 32px;

    margin-bottom: 14px;

    color: #4b2e2e;
}

.franchise-feature p {

    font-size: 18px;

    color: #666;
}

/*
|--------------------------------------------------------------------------
| DESCRIPTION
|--------------------------------------------------------------------------
*/

.franchise-description {

    text-align: center;

    font-size: 28px;

    line-height: 1.8;

    color: #444;

    max-width: 1000px;

    margin: auto;
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 992px) {

    .franchise-header h2 {

        font-size: 44px;
    }

    .franchise-header p {

        font-size: 20px;
    }

    .franchise-card {

        padding: 40px 24px;
    }

    .franchise-features {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .franchise-description {

        font-size: 20px;
    }
}

/*
|--------------------------------------------------------------------------
| CONTACT
|--------------------------------------------------------------------------
*/

.contact-section {

    padding: 20px 20px;

    background: rgba(255,245,240,0.6);
}

.contact-container {

    max-width: 1400px;

    margin: auto;
}

/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

.contact-header {

    text-align: center;

    margin-bottom: 60px;
}

.contact-header h2 {

    font-size: 44px;

    color: #dc2626;

    margin-bottom: 20px;
}

.contact-header p {

    max-width: 900px;

    margin: auto;

    font-size: 24px;

    line-height: 1.7;

    color: #555;
}

/*
|--------------------------------------------------------------------------
| TABS
|--------------------------------------------------------------------------
*/

.location-tabs {

    display: flex;

    gap: 20px;

    margin-bottom: 40px;
}

.location-tab {

    flex: 1;

    height: 70px;

    border: none;

    border-radius: 999px;

    background: rgba(220,38,38,0.08);

    color: #991b1b;

    font-size: 24px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}

.location-tab.active {

    background: #dc2626;

    color: white;
}

/*
|--------------------------------------------------------------------------
| CARD
|--------------------------------------------------------------------------
*/

.location-card {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    background: white;

    border-radius: 36px;

    padding: 40px;

    border: 2px solid #fed7aa;

    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/*
|--------------------------------------------------------------------------
| INFO
|--------------------------------------------------------------------------
*/

.location-main h3 {

    font-size: 42px;

    margin-bottom: 12px;
}

.location-address {

    font-size: 22px;

    color: #666;

    text-decoration: none;
}

.location-block {

    margin-top: 10px;

    padding-top: 20px;

    border-top: 1px dashed #ddd;
}

.location-block h4 {

    color: #dc2626;

    font-size: 26px;

    margin-bottom: 10px;
}

.location-services {

    display: flex;

    gap: 24px;

    flex-wrap: wrap;
}

.location-services span {

    font-size: 20px;

    font-weight: 600;
}

.location-contact {

    display: flex;

    flex-direction: column;

    gap: 14px;
}

.location-contact a {

    color: #333;

    text-decoration: none;

    font-size: 18px;
}

/*
|--------------------------------------------------------------------------
| MAP + PHOTOS
|--------------------------------------------------------------------------
*/

.location-media {

    display: flex;

    flex-direction: column;

    gap: 24px;
}

.location-map {

    width: 100%;

    height: 420px;

    border: 0;

    border-radius: 24px;
}

.location-gallery {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.location-photo {

    width: 100%;

    height: 220px;

    object-fit: cover;

    border-radius: 20px;
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 992px) {

    .location-card {

        grid-template-columns: 1fr;
    }

    .contact-header h2 {

        font-size: 42px;
    }

    .location-main h3 {

        font-size: 38px;
    }

    .location-tab {

        font-size: 18px;

        height: 58px;
    }

    .location-gallery {

        grid-template-columns: 1fr;
    }
}


/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

.footer {

    padding: 40px 10px;

    background: #2b1d1d;

    color: #f6e7d8;
}

.footer-inner {

    max-width: 1200px;

    margin: auto;

    text-align: center;
}

/*
|--------------------------------------------------------------------------
| LOGO
|--------------------------------------------------------------------------
*/

.footer-logo {

    width: 120px;

    height: auto;

    margin-bottom: 24px;
}

/*
|--------------------------------------------------------------------------
| BRAND
|--------------------------------------------------------------------------
*/

.footer-brand {

    font-size: 42px;

    font-weight: 800;

    color: #ffd166;

    margin-bottom: 10px;
}

.footer-jp {

    font-size: 24px;

    color: rgba(255,255,255,0.6);

    margin-bottom: 36px;
}

/*
|--------------------------------------------------------------------------
| LINKS
|--------------------------------------------------------------------------
*/

.footer-links {

    display: flex;

    justify-content: center;

    gap: 30px;

    margin-bottom: 30px;

    flex-wrap: wrap;
}

.footer-links a {

    color: #f6e7d8;

    text-decoration: none;

    font-size: 18px;

    transition: 0.2s;
}

.footer-links a:hover {

    color: #ffd166;
}

/*
|--------------------------------------------------------------------------
| COPY
|--------------------------------------------------------------------------
*/

.footer-copy {

    font-size: 16px;

    color: rgba(255,255,255,0.7);
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .footer-brand {

        font-size: 28px;
    }

    .footer-jp {

        font-size: 18px;
    }

    .footer-links {

        gap: 18px;
    }
}


/*
|--------------------------------------------------------------------------
| PROMO
|--------------------------------------------------------------------------
*/

.promo-section {

    padding: 30px 10px;

    background: linear-gradient(
        90deg,
        #dc2626,
        #f97316
    );

    color: white;

    overflow: hidden;
}

.promo-inner {

    max-width: 1200px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 50px;
}

/*
|--------------------------------------------------------------------------
| ICON
|--------------------------------------------------------------------------
*/

.promo-icon-wrap {

    flex-shrink: 0;
}

.promo-icon {

    font-size: 100px;

    color: #fde047;

    animation: promoFloat 4s ease-in-out infinite;

    filter: drop-shadow(
        0 0 18px rgba(255,255,255,0.25)
    );
}

/*
|--------------------------------------------------------------------------
| TEXT
|--------------------------------------------------------------------------
*/

.promo-content h3 {

    font-size: 44px;

    font-weight: 900;

    margin-bottom: 20px;
}

.promo-content p {

    font-size: 24px;

    line-height: 1.6;

    max-width: 900px;

    text-transform: uppercase;

    font-weight: 700;
}

/*
|--------------------------------------------------------------------------
| ANIMATION
|--------------------------------------------------------------------------
*/

@keyframes promoFloat {

    0% {

        transform:
            translateY(0)
            rotate(0deg)
            scale(1);
    }

    25% {

        transform:
            translateY(-10px)
            rotate(-4deg)
            scale(1.04);
    }

    50% {

        transform:
            translateY(0)
            rotate(0deg)
            scale(1);
    }

    75% {

        transform:
            translateY(-6px)
            rotate(4deg)
            scale(1.02);
    }

    100% {

        transform:
            translateY(0)
            rotate(0deg)
            scale(1);
    }
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 992px) {

    .promo-inner {

        flex-direction: column;

        text-align: center;

        gap: 30px;
    }

    .promo-icon {

        font-size: 72px;
    }

    .promo-content h3 {

        font-size: 42px;
    }

    .promo-content p {

        font-size: 20px;
    }
}


/* =========================================================
   VOCABULARY
========================================================= */

.vocabulary-section {

    padding: 80px 20px;

    background: #fff8f1;
}

.vocabulary-container {

    max-width: 1280px;

    margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.vocabulary-header {

    text-align: center;

    margin-bottom: 50px;
}

.vocabulary-logo {

    font-size: 42px;

    margin-bottom: 14px;
}

.vocabulary-header h2 {

    font-size: 44px;

    line-height: 1.1;

    font-weight: 900;

    color: #c1121f;

    margin-bottom: 16px;
}

.vocabulary-header p {

    font-size: 16px;

    color: #555;

    max-width: 700px;

    margin: 0 auto;
}

/* =========================================================
   GRID
========================================================= */

.vocabulary-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}

/* =========================================================
   CARD
========================================================= */

.vocab-card {

    background: white;

    border-radius: 22px;

    overflow: hidden;

    border: 2px solid #ffd6a5;

    box-shadow: 0 8px 22px rgba(0,0,0,0.06);

    transition: all 0.25s ease;
}

.vocab-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}

/* =========================================================
   IMAGE
========================================================= */

.vocab-image-wrap {

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: white;
}

.vocab-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}

/* =========================================================
   CONTENT
========================================================= */

.vocab-content {

    padding: 18px;
}

.vocab-content h3 {

    font-size: 20px;

    font-weight: 800;

    color: #c1121f;

    margin-bottom: 10px;
}

.vocab-content p {

    font-size: 14px;

    line-height: 1.5;

    color: #555;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

    .vocabulary-grid {

        grid-template-columns: repeat(2, 1fr);
    }

    .vocabulary-header h2 {

        font-size: 36px;
    }
}

@media (min-width: 960px) {

    .vocabulary-grid {

        grid-template-columns: repeat(5, 1fr);
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 500px) {

    .vocabulary-grid {

        grid-template-columns: 1fr;

        gap: 16px;
    }

    .vocab-card {

        display: flex;

        align-items: center;

        min-height: 120px;
    }

    .vocab-image-wrap {

        width: 120px;

        min-width: 120px;

        height: 120px;

        aspect-ratio: auto;

        border-right: 2px solid #ffe0b2;
    }

    .vocab-content {

        padding: 14px;
    }

    .vocab-content h3 {

        font-size: 18px;

        margin-bottom: 6px;
    }

    .vocab-content p {

        font-size: 13px;

        line-height: 1.4;
    }

    .vocabulary-header h2 {

        font-size: 30px;
    }

    .vocabulary-header p {

        font-size: 14px;
    }
}


.notranslate {
    translate: no;
}
