:root {
    --scrollbar-thumb: #7ab5b2;
    --scrollbar-track: #c8d3d3;
    --bg-main: #c8d3d3;
    --text-dark: #5e5349;
    --text-light: #9c9183;
    --accent-sage: #b9c6a7;
    --accent-rose: #eacfc7;
    --accent-honey: #e8d5b8;
    --c-matcha: #aac79e;
    --c-sage: #9db788;
    --c-sage-dark: #4B6342;
    --c-latte: #EDDEC3;
    --c-mocha: #614E43;
    --c-terracotta: #D27A7A;
    --c-yellow: #fdd88a;
    --card-shadow: 0 4px 20px rgba(94, 83, 73, 0.05);
    --font-heading: 'Fredoka', sans-serif;
    --font-display: 'Fredoka One', cursive;
    --font-body: 'Outfit', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    background-color: transparent;
    overflow-x: hidden;
    scrollbar-width: auto;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
::-webkit-scrollbar {
    width: 14px;
}
::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}
::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 10px;
    border: 4px solid var(--scrollbar-track);
}
::-webkit-scrollbar-thumb:hover {
    background: #5c9b99;
}
body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-weight: 500;
}
.br-pt-only {
    display: none;
}
body.lang-pt .br-pt-only {
    display: block;
}
.toast {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--text-dark);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2000;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
}
.top-border {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
}
.top-border svg {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
}
.lang-switch-inline {
    position: absolute;
    top: 25px;
    right: 155px;
    left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 60;
}
.lang-sep {
    color: var(--text-light);
    opacity: 0.5;
    font-size: 1.1rem;
    font-weight: 700;
}
.lang-text {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}
.lang-text:hover {
    color: var(--accent-sage);
}
.lang-text.active {
    color: var(--accent-sage);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}
.bg-vines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}
.vine-trail {
    position: absolute;
    width: 15vw;
    min-width: 150px;
    opacity: 0.8;
}
.left-trail {
    top: -10px;
    left: 2%;
}
.right-trail {
    top: -10px;
    right: 2%;
    transform: scaleX(-1) scaleY(1.4);
    transform-origin: top;
}
.floating-flora {
    position: absolute;
    width: 60px;
    height: 60px;
}
.top-right {
    top: 20%;
    right: 15%;
    animation: float 6s ease-in-out infinite;
}
.bottom-left {
    bottom: 15%;
    left: 10%;
    animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}
.site-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 1rem 4rem;
    animation: siteEnter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transform: translateY(20px);
}
@keyframes siteEnter {
    to {
        transform: translateY(0);
    }
}
.lang-fade-play {
    animation: langFadeInOut 0.3s ease-in-out forwards;
}
@keyframes langFadeInOut {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}
.header {
    text-align: center;
    margin-bottom: 2rem;
}
.main-title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    color: var(--accent-sage);
    font-weight: 700;
    color: var(--accent-sage);
    text-shadow: 4px 4px 0px #e7e3da;
}
.title-sparkle {
    position: absolute;
    fill: var(--accent-sage);
    stroke: none;
    opacity: 0.95;
    filter: drop-shadow(0 2px 4px rgba(185, 198, 167, 0.5));
    animation: sparkleWobble 0.8s infinite steps(1);
}
.text-wobble {
    animation: textWobble 0.8s infinite steps(1);
}
@keyframes textWobble {
    0%,
    100% {
        transform: translate(0px, 0px) rotate(-0.1deg);
    }
    50% {
        transform: translate(0.2px, 0.2px) rotate(0.1deg);
    }
}
@keyframes sparkleWobble {
    0%,
    100% {
        transform: var(--base-rot) scale(1) translate(0px, 0px);
    }
    50% {
        transform: var(--base-rot) scale(1.05) translate(0px, -1px);
    }
}
.sparkle-left-big {
    width: 38px;
    height: 38px;
    top: -5px;
    left: -45px;
    --base-rot: rotate(-12deg);
    transform: var(--base-rot);
    animation-delay: 0s;
}
.sparkle-left-small {
    width: 20px;
    height: 20px;
    top: 35px;
    left: -20px;
    --base-rot: rotate(15deg);
    transform: var(--base-rot);
    animation-delay: 0.3s;
}
.sparkle-right-big {
    width: 38px;
    height: 38px;
    bottom: 5px;
    right: -45px;
    --base-rot: rotate(18deg);
    transform: var(--base-rot);
    animation-delay: 0.3s;
}
.sparkle-right-small {
    width: 20px;
    height: 20px;
    top: -5px;
    right: -20px;
    --base-rot: rotate(-8deg);
    transform: var(--base-rot);
    animation-delay: 0s;
}
.main-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
    z-index: 50;
}
.nav-links {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 8px;
    border-radius: 50px;
    display: inline-flex;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(185, 198, 167, 0.3);
}
.nav-btn {
    background: transparent;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-icon {
    width: 18px;
    height: 18px;
    transition: all 0.3s;
    color: var(--accent-rose);
}
.nav-btn:hover {
    color: var(--accent-sage);
    background: rgba(255, 255, 255, 0.5);
}
.nav-btn.active {
    background: var(--accent-sage);
    color: #fff;
}
.nav-btn.active .nav-icon {
    color: #fff;
}
.tab-section {
    position: relative;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.site-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 100px;
    position: relative;
    z-index: 2;
}
.main-content {
    position: relative;
}
.tab-section {
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}
.chunky-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #FDF9F1;
    background: var(--text-primary);
    padding: 10px 40px;
    border: 6px solid var(--text-primary);
    border-radius: 999px;
    display: inline-block;
    position: relative;
    box-shadow: 10px 10px 0px var(--c-latte);
    z-index: 2;
    transform: rotate(-2deg);
}
.chunky-title span {
    position: relative;
    z-index: 2;
}
.decor-matcha-leaf {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 1;
    filter: drop-shadow(4px 4px 0px var(--c-latte));
}
.cl-left {
    left: -40px;
    top: -20px;
    transform: rotate(-15deg);
}
.decor-sparkle {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 1;
    filter: drop-shadow(4px 4px 0px var(--c-latte));
}
.cl-right {
    right: -20px;
    bottom: -20px;
    transform: rotate(10deg);
}
.masonry-grid {
    column-count: 2;
    column-gap: 40px;
}
.botanic-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
    padding-bottom: 60px;
}
.botanic-gallery-frame:nth-child(even) {
    margin-top: 60px;
    margin-bottom: -60px;
}
.botanic-gallery-frame {
    display: block;
    width: 100%;
    background: #fdf9f1;
    border: 3px solid #6E5E51;
    border-radius: 10px;
    box-shadow: 8px 8px 0px rgba(82, 69, 56, 0.1);
    position: relative;
    cursor: pointer;
    padding: 10px;
    overflow: hidden;
}
.botanic-gallery-frame:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 14px 14px 0px rgba(82, 69, 56, 0.18);
    border-color: #524437;
    z-index: 5;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.img-wrapper {
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1 / 1;
}
.botanic-gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.botanic-gallery-frame:hover img {
    transform: scale(1.06);
}
.frame-leaf-decor {
    position: absolute;
    width: 55px;
    height: 55px;
    z-index: 5;
    filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.1));
}
.frame-leaf-decor.tl {
    top: -20px;
    left: -20px;
    transform: rotate(15deg);
}
.frame-leaf-decor.br {
    bottom: -20px;
    right: -20px;
    transform: rotate(-15deg);
}
.menu-hook {
    width: auto;
    margin: 0 auto;
    text-align: center;
    margin-bottom: -15px;
    position: relative;
    z-index: 0;
    filter: drop-shadow(4px 4px 0px rgba(82, 69, 56, 0.15));
}
.menu-hook svg {
    height: auto;
}
.cafe-menu-board {
    background: #524437;
    border-radius: 8px;
    box-shadow: 14px 14px 0px rgba(76, 58, 50, 0.15);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 50px;
    border: 6px solid #524437;
}
.board-wood-top {
    height: 40px;
    background: #6B5847;
    border-bottom: 4px solid #524437;
    border-radius: 2px 2px 0 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    align-items: center;
}
.nail {
    width: 16px;
    height: 16px;
    background: #3D2E26;
    border-radius: 50%;
    box-shadow: inset -2px -2px 0px rgba(0, 0, 0, 0.3), 2px 2px 0px rgba(255, 255, 255, 0.1);
}
.board-inner {
    padding: 40px;
    color: #e7d8c0;
}
.board-header h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #fdd88a;
    text-shadow: 3px 3px 0px rgba(61, 46, 38, 0.4);
    display: inline-block;
}
.menu-currency-toggle {
    text-align: center;
    margin-bottom: 40px;
}
.menu-currency-toggle .lang-text {
    background: #fdd88a !important;
    border: 3px solid #524437 !important;
    color: #524437 !important;
    font-size: 1.1rem;
    font-family: var(--font-display);
    padding: 6px 16px;
    border-radius: 12px;
    transition: all 0.2s;
    box-shadow: 0px 0px 0px #4C3B32 !important;
    transform: translateY(4px);
    cursor: pointer;
    text-decoration: none !important;
}
.menu-currency-toggle .lang-text:hover {
    opacity: 0.8;
}
.menu-currency-toggle .lang-text.active {
    color: #524437 !important;
    background: #fdd88a !important;
    border: 3px solid #524437 !important;
    box-shadow: 0px 4px 0px #3D2E26 !important;
    transform: translateY(0);
}
.menu-currency-toggle .lang-sep {
    display: inline-block;
    color: #f7dac4;
    margin: 0 10px;
}
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.menu-item-card {
    border: 3px dashed #6E5E51;
    padding: 25px;
    border-radius: 10px;
}
.item-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #aac79e;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}
.price-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.p-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    font-weight: 700;
    font-family: var(--font-body);
}
.p-type {
    color: #e7d8c0;
    font-size: 1.1rem;
}
.p-dots {
    flex: 1;
    border-bottom: 3px dotted #6E5E51;
    margin: 0 10px 8px;
}
.p-row .val {
    color: #fdd88a;
    font-family: var(--font-display);
    font-size: 1.3rem;
}
.specials-board {
    margin-top: 50px;
    background: #5d4f43;
    padding: 40px;
    border-radius: 10px;
    border: none;
    position: relative;
}
.specials-tape {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    width: 90px;
    height: 30px;
    background: #b88d6a;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.specials-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fdd88a;
    text-align: center;
    margin-bottom: 30px;
}
.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.sp-item {
    border-bottom: 2px dashed #6E5E51;
    padding-bottom: 15px;
}
.sp-item:last-child {
    border-bottom: none;
}
.sp-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}
.sp-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #aac79e;
}
.sp-head .val {
    color: #fdd88a;
    font-family: var(--font-display);
    font-size: 1.2rem;
}
.sp-item p {
    color: #E6E1D8;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}
.sp-item .bold {
    color: var(--c-latte);
    font-weight: 700;
    margin-top: 5px;
}
.decor-corner-leaf {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    filter: drop-shadow(4px 4px 0px rgba(82, 69, 56, 0.15));
}
.bg-green-section {
    background: var(--bg-main);
    position: relative;
    z-index: 2;
}
.bg-pink-section {
    position: relative;
    isolation: isolate;
    display: flow-root;
    z-index: 2;
    margin-top: -10px;
    margin-bottom: 0;
}
.bg-pink-section::before {
    content: '';
    position: absolute;
    top: -10px;
    bottom: 0;
    left: -100vw;
    right: -100vw;
    background: #FAEDF0;
    z-index: -1;
}
.cafe-receipt {
    background: #FFFCFA;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(176, 104, 126, 0.08), 0 2px 5px rgba(176, 104, 126, 0.05);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 60px 70px;
    background-image: radial-gradient(#FAEDF0 4px, transparent 5px);
    background-size: 15px 15px;
    background-position: -5px -5px;
    background-repeat: repeat-x;
    border: 1px solid #F1D4DC;
    border-top: none;
    border-bottom: none;
}
.cafe-receipt::before,
.cafe-receipt::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 12px;
    background-size: 20px 20px;
}
.cafe-receipt::before {
    top: -6px;
    background-image: radial-gradient(circle at 10px 0, transparent 10px, #FFFCFA 11px);
}
.cafe-receipt::after {
    bottom: -6px;
    background-image: radial-gradient(circle at 10px 20px, transparent 10px, #FFFCFA 11px);
}
.receipt-header {
    text-align: center;
    border-bottom: 2px dashed #EAC5CF;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.receipt-title {
    font-family: var(--font-display);
    color: #B0687E;
    font-size: 3rem;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
}
.receipt-meta {
    font-family: var(--font-heading);
    color: #CD94A5;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.receipt-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
}
@media (max-width: 768px) {
    .receipt-columns {
        grid-template-columns: 1fr;
    }
}
.receipt-subtitle {
    font-family: var(--font-heading);
    color: #B0687E;
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.receipt-subtitle::before {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: #EAC5CF;
}
.receipt-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #6E5A63;
}
.receipt-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.receipt-list.do-list li::before {
    content: '✿';
    color: #CD94A5;
    font-size: 1.2rem;
    position: static;
}
.receipt-list.dont-list li::before {
    content: '✕';
    color: #D27A7A;
    font-weight: bold;
    font-size: 1.2rem;
    position: static;
    top: auto;
}
.receipt-divider {
    border: none;
    border-top: 2px dashed #EAC5CF;
    margin: 40px 0;
}
.receipt-table-title {
    font-family: var(--font-display);
    color: #B0687E;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.receipt-tos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.receipt-tos-item {
    font-family: var(--font-body);
}
.receipt-tos-item h4 {
    color: #B0687E;
    font-size: 1.15rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 2px dashed #F1D4DC;
    padding-bottom: 5px;
    font-weight: 800;
}
.receipt-tos-item p {
    color: #6E5A63;
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 600;
}
.receipt-tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.receipt-tag {
    background: transparent;
    border: 2px solid #CD94A5;
    color: #B0687E;
    padding: 4px 12px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 6px;
}
.cup-order-container {
    max-width: 800px;
    margin: 50px auto 0 auto;
    text-align: center;
    position: relative;
}
.cup-svg-wrapper {
    width: 250px;
    height: 250px;
    margin: 0 auto 30px auto;
    position: relative;
    pointer-events: none;
}
.order-headline {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: #B0687E;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px rgba(250, 237, 240, 0.8);
}
.order-desc {
    font-size: 1.2rem;
    color: #8C7881;
    margin-bottom: 45px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.pink-btn-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 750px;
    margin: 0 auto;
}
.pink-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    background: #FFF;
    border: 3px solid #CD94A5;
    border-radius: 12px;
    color: #B0687E;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 6px 6px 0px #ECA7BE;
    cursor: pointer;
    margin: 0;
    letter-spacing: 0.5px;
}
.pink-btn:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px #ECA7BE;
    background: #FAEDF0;
    color: #B0687E;
    border-color: #B0687E;
}
.pink-btn svg {
    margin-right: 12px;
    transition: transform 0.3s;
    fill: #B0687E;
}
.pink-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
}
.table-section {
    text-align: center;
    position: relative;
    padding-bottom: 100px;
}
.contact-intro {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 50px;
}
.cafe-table-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
}
.cafe-table-top>* {
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cafe-table-top>*:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
}
.cafe-table-top h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-top: 15px;
    background: #FFF;
    border: 4px solid var(--text-primary);
    padding: 4px 12px;
    border-radius: 999px;
    display: inline-block;
    box-shadow: 4px 4px 0px var(--text-primary);
}
.item-polaroid {
    transform: rotate(-5deg);
}
.polaroid-photo {
    background: #FFF;
    padding: 15px 15px 40px;
    border: 6px solid var(--text-primary);
    box-shadow: 8px 8px 0px rgba(82, 69, 56, 0.15);
    width: 180px;
}
.polaroid-photo svg {
    width: 100%;
    height: auto;
    display: block;
}
.item-postcard {
    transform: rotate(5deg);
}
.post-stamp {
    background: #E2D3B5;
    border: 6px solid var(--text-primary);
    padding: 10px;
    box-shadow: 8px 8px 0px rgba(82, 69, 56, 0.15);
    width: 180px;
    position: relative;
}
.post-stamp::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    border: 4px dashed var(--text-primary);
}
.post-stamp svg {
    width: 100px;
    height: 100px;
    display: block;
    margin-top: 10px;
}
.item-coffee {
    transform: rotate(-2deg);
    position: relative;
}
.coaster {
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 80%;
    background: #AF9C8D;
    border-radius: 50%;
    opacity: 0.8;
    z-index: -1;
    transform: scaleY(0.5);
}
.item-coffee .cup {
    width: 160px;
    filter: drop-shadow(8px 8px 0px rgba(82, 69, 56, 0.15));
    margin: 0 auto;
}
.item-coffee svg {
    width: 100%;
    height: auto;
    display: block;
}
.item-ticket {
    transform: rotate(3deg);
}
.ticket-body {
    background: #FFF;
    border-left: 6px solid var(--text-primary);
    border-right: 6px solid var(--text-primary);
    padding: 20px;
    width: 160px;
    box-shadow: 8px 8px 0px rgba(82, 69, 56, 0.15);
    position: relative;
}
.ticket-zig {
    width: 160px;
    height: 20px;
    background-image: radial-gradient(circle at 10px 0, transparent 10px, var(--text-primary) 11px, var(--text-primary) 14px, #FFF 15px);
    background-size: 20px 20px;
    background-position: -10px 0;
    margin-left: 0;
    filter: drop-shadow(8px 8px 0px rgba(82, 69, 56, 0.15));
}
.ticket-zig.bot {
    background-image: radial-gradient(circle at 10px 20px, transparent 10px, var(--text-primary) 11px, var(--text-primary) 14px, #FFF 15px);
    background-position: -10px 20px;
    filter: none;
}
.item-ticket h3 {
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    background: transparent;
}
.item-ticket p {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 10px;
}
.kofi-heart {
    width: 40px;
    margin: 0 auto;
}
.item-trello {
    transform: rotate(-6deg);
}
.trello-svg {
    width: 150px;
    filter: drop-shadow(8px 8px 0px rgba(82, 69, 56, 0.15));
}
.decor-branch {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 300px;
    height: auto;
    z-index: -1;
    filter: drop-shadow(4px 4px 0px rgba(82, 69, 56, 0.1));
}
.footer {
    text-align: center;
    padding: 0 20px 35px 20px;
    background: #B0687E;
    color: #FFF;
    font-weight: 600;
    margin-top: 0;
    width: 100%;
    position: relative;
}
.footer-wave {
    display: block;
    width: 100%;
    height: 60px;
    transform: translateY(-1px);
    margin-bottom: 20px;
}
.footer .footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.footer-credits {
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.kioyy-btn {
    background: transparent;
    border: 2px solid #FFF;
    color: #FFF;
    padding: 2px 12px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
}
.kioyy-btn:hover {
    background: #FFF;
    color: #B0687E;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.prices-pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}
.price-row {
    background: transparent;
    padding: 6px 0;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.15rem;
    border-bottom: 2px dotted rgba(156, 145, 131, 0.4);
}
.price-row:last-child {
    border-bottom: none;
}
.price-row .val {
    color: var(--accent-sage);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}
.highlight-row {
    background: transparent;
    box-shadow: none;
    border: none;
    border-bottom: 2px dotted rgba(156, 145, 131, 0.4);
    font-size: 1.25rem;
}
.highlight-row:last-child {
    border-bottom: none;
}
.highlight-row span {
    color: var(--text-dark);
    font-size: 1.25rem;
}
.highlight-row .val {
    color: var(--text-dark);
    font-size: 1.5rem;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}
.terms-letter {
    background: #FFFAF4;
    padding: 3.5rem 2.5rem 3rem 2.5rem;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(156, 145, 131, 0.08);
}
.letter-header {
    text-align: center;
    margin-bottom: 2rem;
}
.terms-letter h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
    border-bottom: 3px solid var(--accent-sage);
    display: inline-block;
    padding-bottom: 5px;
}
.letter-list {
    list-style: none;
    margin-top: 15px;
}
.letter-list li {
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.4;
}
.do-list li::before {
    content: '♡';
    position: absolute;
    left: 0;
    color: #B0687E;
    font-size: 1.3rem;
    font-weight: bold;
}
.dont-list li::before {
    content: 'x';
    font-family: var(--font-heading);
    position: absolute;
    left: 0;
    color: #CD94A5;
    font-size: 1.3rem;
    font-weight: bold;
    top: -2px;
}
.clean-special {
    background: #faf5fc;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    border-radius: 30px;
    border: 2px dashed #d8cde6;
    box-shadow: none;
    padding: 3rem 2.5rem;
    position: relative;
    text-align: center;
}
.clean-special h3 {
    font-size: 2.2rem;
    color: #937ab0;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}
.clean-special .val {
    color: #937ab0;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}
.small-card {
    max-width: 100%;
    margin: 0;
    padding: 2.5rem 1.5rem;
    flex: 1 1 350px;
}
.flower-decor.ref-flower {
    left: auto;
    right: -35px;
    bottom: -50px;
    width: 185px;
    transform: rotate(5deg);
}
.info-card.small-card:hover .flower-decor.ref-flower {
    transform: rotate(0deg) scale(1.05) translateY(-5px);
}
.corner-mascot {
    position: absolute;
    bottom: -10px;
    right: 5px;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.08));
}
.mascot-do {
    width: 130px;
}
.mascot-dont {
    width: 250px;
    right: -25px;
    bottom: -35px;
}
.terms-letter.do-card,
.terms-letter.dont-card {
    padding-bottom: 50px;
}
.terms-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
    text-align: left;
}
.term-item {
    background: #FFFAF4;
    padding: 2.2rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(156, 145, 131, 0.08);
    position: relative;
    overflow: hidden;
}
.main-terms-card {
    overflow: hidden;
    position: relative;
}
.main-terms-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: repeating-linear-gradient(45deg, var(--accent-rose), var(--accent-rose) 15px, var(--bg-main) 15px, var(--bg-main) 30px, var(--accent-sage) 30px, var(--accent-sage) 45px, var(--bg-main) 45px, var(--bg-main) 60px);
    z-index: 10;
}
.term-item.span-full {
    grid-column: 1 / -1;
}
.term-heading {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent-sage);
    margin-bottom: 10px;
    border-bottom: 2px dotted rgba(185, 198, 167, 0.4);
    display: inline-block;
    padding-bottom: 3px;
}
.term-list.empty-bullets,
.term-list.empty-bullets li {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0px;
}
.term-list.empty-bullets li {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
    line-height: 1.3;
}
.term-list.empty-bullets li::before {
    content: none;
}
.term-desc {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}
.masonry-grid {
    column-count: 3;
    column-gap: 25px;
}
@media (max-width: 850px) {
    .masonry-grid {
        column-count: 2;
    }
}
@media (max-width: 550px) {
    .masonry-grid {
        column-count: 1;
    }
}
.gallery-card {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 25px;
    background: #ffffff;
    padding: 12px 12px 45px 12px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transform: rotate(calc(-3deg + 6deg * var(--rand, 0.5)));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}
.gallery-card:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
}
.gallery-card img {
    width: 100%;
    border-radius: 2px;
    display: block;
}
.paper-tape {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 100px;
    height: 30px;
    background-color: rgba(232, 213, 184, 0.65);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 2;
    background-image:
        linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.4) 50%),
        linear-gradient(transparent 50%, rgba(255, 255, 255, 0.4) 50%);
    background-size: 10px 10px;
}
.desc-text {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.desc-text.bold {
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 15px;
}
.desc-text.small {
    font-size: 0.9rem;
}
.text-center {
    text-align: center;
}
.price-tag {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent-sage);
    margin-top: 15px;
}
.order-intro {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
}
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
}
.link-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px dashed rgba(185, 198, 167, 0.8);
    box-shadow: inset 0 -4px 0 rgba(185, 198, 167, 0.2);
    margin-bottom: 15px;
    width: 100%;
    max-width: 400px;
    font-family: inherit;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
}
.link-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: #ffffff;
    box-shadow: inset 0 -8px 0 var(--accent-sage), 0 10px 20px rgba(94, 83, 73, 0.1);
}
.link-card h3 {
    margin: 0;
    margin-left: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}
.link-card p {
    display: none;
}
.link-card.simple-trello {
    border-color: #89b3d9;
}
.link-card.simple-trello:hover {
    box-shadow: inset 0 -8px 0 #89b3d9, 0 10px 20px rgba(0, 0, 0, 0.1);
}
.link-card.simple-insta {
    border-color: #EACFC7;
}
.link-card.simple-insta:hover {
    box-shadow: inset 0 -8px 0 #EACFC7, 0 10px 20px rgba(0, 0, 0, 0.1);
}
.link-card.simple-kofi {
    border-color: #e8d5b8;
}
.link-card.simple-kofi:hover {
    box-shadow: inset 0 -8px 0 #e8d5b8, 0 10px 20px rgba(0, 0, 0, 0.1);
}
.link-card.simple-discord {
    border-color: #d8cde6;
}
.link-card.simple-discord:hover {
    box-shadow: inset 0 -8px 0 #d8cde6, 0 10px 20px rgba(0, 0, 0, 0.1);
}
.link-card.simple-x {
    border-color: #bbccd6;
}
.link-card.simple-x:hover {
    box-shadow: inset 0 -8px 0 #bbccd6, 0 10px 20px rgba(0, 0, 0, 0.1);
}
.link-card.simple-x .social-icon {
    transform: scale(0.85);
}
.stamps-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.social-icon {
    width: 45px;
    height: 45px;
    transition: all 0.3s;
    z-index: 2;
    flex-shrink: 0;
}
.copy-tooltip {
    position: absolute;
    right: 25px;
    font-size: 0.85rem;
    color: var(--accent-sage);
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}
.link-card.kofi h3,
.link-card.kofi .social-icon {
    color: #FF5E5B;
}
.link-card.trello h3,
.link-card.trello .social-icon {
    color: #0079BF;
}
.footer {
    text-align: center;
    margin-top: 5rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 700;
}
.footer-credits {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(156, 145, 131, 0.6);
}
.kioyy-btn {
    background: rgba(156, 145, 131, 0.1);
    border: none;
    border-radius: 12px;
    padding: 3px 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    color: rgba(156, 145, 131, 0.8);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}
.kioyy-btn:hover {
    background: rgba(185, 198, 167, 0.2);
    color: var(--accent-sage);
    transform: translateY(-2px);
}
.mini-discord-icon {
    width: 12px;
    height: 12px;
}
@media (max-width: 768px) {
    .site-wrapper {
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }
    .header {
        margin-bottom: 1.5rem !important;
    }
    .main-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        line-height: 1.1;
        margin-top: 25px;
        white-space: normal;
        display: inline-block;
        max-width: 85%;
        padding: 0 5px;
    }
    .sparkle-left-big {
        left: -40px;
        width: 35px;
        height: 35px;
        top: -5px;
        transform: rotate(-12deg);
    }
    .sparkle-left-small {
        left: -10px;
        width: 20px;
        height: 20px;
        top: 30px;
        transform: rotate(15deg);
    }
    .sparkle-right-big {
        right: -40px;
        width: 35px;
        height: 35px;
        bottom: 5px;
        top: auto;
        transform: rotate(18deg);
    }
    .sparkle-right-small {
        right: -10px;
        width: 20px;
        height: 20px;
        top: -15px;
        transform: rotate(-8deg);
    }
    .lang-switch-inline {
        top: 15px;
        right: 15px;
        left: auto;
        background: none !important;
        padding: 0;
        border-radius: 0;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .bg-vines {
        display: none;
    }
    .main-nav {
        margin-bottom: 3.5rem;
    }
    .nav-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 12px;
    }
    .nav-btn {
        width: 100%;
        padding: 14px 12px;
        font-size: 1.15rem;
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.85);
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    .nav-btn .nav-icon {
        width: 24px;
        height: 24px;
    }
    .nav-btn.active {
        background: var(--bg-main);
        border-color: var(--accent-sage);
        color: var(--accent-sage);
    }
    .nav-btn.active .nav-icon {
        color: var(--accent-sage);
    }
    .masonry-grid {
        padding: 0 5px;
    }
    .gallery-card {
        transform: rotate(0deg) !important;
        margin-bottom: 25px;
        padding: 10px 10px 40px 10px;
    }
    .card-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .info-card {
        padding: 2.5rem 1.5rem 3.5rem 1.5rem;
        min-width: unset;
        margin-bottom: 10px;
    }
    .flower-decor {
        width: 100px;
        left: -15px;
        bottom: -25px;
        transform: rotate(-10deg);
        z-index: 10;
    }
    .special-card-wrapper {
        flex-direction: column !important;
        gap: 35px !important;
    }
    .special-card-wrapper .small-card {
        flex: 1 1 100%;
        padding: 2.5rem 1.5rem 3.5rem 1.5rem;
    }
    .flower-decor.ref-flower {
        width: 130px;
        right: -10px;
        bottom: -35px;
        left: auto;
        transform: rotate(5deg);
    }
    .terms-letter {
        padding: 2.5rem 1.2rem 4rem 1.2rem;
    }
    .do-list li,
    .dont-list li {
        font-size: 1.05rem;
        padding-left: 25px;
        margin-bottom: 12px;
    }
    .mascot-do {
        width: 95px;
        right: -5px;
        bottom: -15px;
    }
    .mascot-dont {
        width: 140px;
        right: -15px;
        bottom: -20px;
    }
    .main-terms-card {
        padding: 2.2rem 1.5rem !important;
    }
    .main-terms-card h3 {
        font-size: 1.8rem !important;
    }
    .terms-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .order-header-box {
        margin-bottom: 2.5rem !important;
        max-width: 100% !important;
        display: block !important;
        text-align: center;
        position: relative;
        padding-top: 55px;
    }
    .order-header-box .cute-asset {
        top: -10px !important;
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 65px !important;
        position: absolute;
    }
    .order-intro {
        font-size: 1.15rem;
        margin-bottom: 0 !important;
        position: relative;
        z-index: 2;
    }
    .links-grid {
        gap: 15px;
    }
    .link-card {
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        border-radius: 40px;
        max-width: 100%;
        margin-bottom: 0;
    }
    .link-card h3 {
        font-size: 1.35rem;
        margin-left: 15px;
    }
    .social-icon {
        width: 35px;
        height: 35px;
    }
    .kioyy-btn {
        font-size: 0.85rem;
    }
}
@media (max-width: 400px) {
    .nav-btn {
        padding: 10px 15px;
        font-size: 1rem;
    }
    .term-heading {
        font-size: 1.3rem;
    }
    .gallery-card {
        padding: 10px 10px 35px 10px;
    }
    .info-card h3 {
        font-size: 1.9rem;
    }
    .price-row .val {
        font-size: 1.35rem;
    }
    .clean-special h3 {
        font-size: 1.9rem;
    }
}
.lightbox {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(94, 83, 73, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.lightbox.show {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.lightbox.show .lightbox-content {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--bg-main);
    font-size: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.lightbox-close:hover {
    color: var(--accent-sage);
    transform: scale(1.1);
}
.lang-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(251, 249, 244, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.lang-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.lang-overlay-box {
    background: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(94, 83, 73, 0.1);
    border: 2px dashed rgba(185, 198, 167, 0.6);
    text-align: center;
    max-width: 90%;
    width: 450px;
    animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.lang-overlay-box h2 {
    font-family: var(--font-heading);
    color: var(--accent-sage);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}
.lang-overlay-box p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}
.lang-overlay-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.lang-btn-big {
    background: #ffffff;
    border: 2px solid var(--accent-sage);
    color: var(--accent-sage);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1 1 120px;
}
.lang-btn-big:hover {
    background: var(--accent-sage);
    color: #ffffff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 5px 15px rgba(185, 198, 167, 0.4);
}
@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.pastel-brown {
    background-color: #f7ede2;
    border: 2px dashed #dcbca3;
}
.pastel-brown .price-tape {
    background-color: rgba(220, 188, 163, 0.8);
}
.bg-content-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.bg-botanic {
    position: absolute;
    width: 250px;
    height: auto;
    z-index: 0;
}
.site-wrapper {
    position: relative;
    z-index: 1;
}
.main-content {
    position: relative;
    z-index: 2;
}
.bg-vine {
    position: absolute;
    max-width: 250px;
    height: auto;
}
.bg-vine-1 {
    top: 5%;
    left: -50px;
}
.bg-vine-2 {
    top: 40%;
    right: -50px;
}
.bg-monstera {
    position: absolute;
    width: 350px;
    height: 350px;
    top: 25%;
    left: -100px;
    animation: starSpin 30s linear infinite;
}
.bg-coffee-ring {
    position: absolute;
}
.bg-cr-1 {
    top: 18%;
    right: 5%;
    width: 200px;
    height: 200px;
    animation: starSpin 40s linear infinite reverse;
}
.bg-cr-2 {
    top: 60%;
    left: 10%;
    width: 140px;
    height: 140px;
    animation: starSpin 25s linear infinite;
}
.bg-sparkle-blob {
    position: absolute;
    top: 70%;
    right: 15%;
    width: 80px;
    height: 80px;
    animation: paperAnim 1.5s steps(2) infinite;
}
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-zoom {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-zoom.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}
.menu-hook {
    filter: drop-shadow(4px 4px 0px rgba(82, 69, 56, 0.15));
}
.cafe-menu-board {
    margin-bottom: 60px;
}
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120vh;
    overflow: visible;
    z-index: 0;
    pointer-events: none;
}
.pc-worm {
    position: absolute;
    overflow: visible;
}
.pc-worm.worm-2,
.pc-worm.worm-3,
.pc-worm.worm-4,
.pc-worm.worm-5 {
    display: none !important;
}
.pc-worm.worm-1 {
    top: -42vh;
    left: -28vw !important;
    width: 45vw;
    height: 140vh;
    z-index: 0;
    display: block !important;
    overflow: visible;
    transform: scaleX(1.3) rotate(5deg);
    transform-origin: left center;
}
.pc-worm.worm-1 svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}
.pc-worm.worm-1 path {
    fill: none;
    opacity: 1;
}
.pc-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
}
.pc-blob.latte {
    top: -5vh;
    right: -5vw;
    width: 45vw;
    height: 95vh;
    background: #2E8B86;
    opacity: 0.18;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(-10deg);
    z-index: 0;
}
.pc-blob.matcha {
    top: 60vh;
    left: 68vw;
    transform: translate(-50%, -50%) rotate(15deg);
    width: 38vw;
    height: 75vh;
    background: #e89bb0;
    opacity: 0.22;
    border-radius: 40% 60% 70% 30% / 50% 50% 50% 50%;
    z-index: 1;
}
.pc-blob.pink {
    display: none !important;
}
.pc-star {
    position: absolute;
}
.pc-star.star-1 {
    width: 300px;
    left: 3vw;
    top: 37vh;
    transform: rotate(-5deg);
    z-index: 10;
    display: block !important;
    filter: none;
}
.pc-star.star-3 {
    width: 200px;
    left: auto !important;
    right: 8vw;
    top: 20vh;
    transform: rotate(15deg);
    display: block !important;
    z-index: 10;
}
.pc-star.star-5 {
    width: 140px;
    right: 38vw;
    top: 20vh;
    transform: rotate(10deg);
    display: block !important;
    z-index: 10;
}
.pc-star.star-7 {
    width: 260px;
    right: 2vw;
    top: 55vh;
    transform: rotate(-10deg);
    display: block !important;
    z-index: 10;
}
.pc-star.star-2,
.pc-star.star-4,
.pc-star.star-6 {
    display: none !important;
}
@keyframes pc-paper-twinkle {
    0%,
    49.9% {
        transform: scale(1) rotate(0deg);
    }
    50%,
    99.9% {
        transform: scale(1.05) rotate(5deg);
    }
}
@keyframes pc-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.title-green-star,
.pc-star.star-1,
.bege-star-left {
    animation: pc-paper-twinkle 1.2s steps(2, end) infinite;
}
.title-green-star-2 {
    animation: pc-paper-twinkle 1.5s steps(2, end) infinite 0.4s;
}
.bege-star-right-new {
    animation: pc-spin 30s linear infinite reverse;
    transform-origin: center;
    display: block;
}
.pc-star.star-3 svg {
    animation: pc-spin 18s linear infinite;
    transform-origin: center;
    display: block;
}
.pc-star.star-5 svg {
    animation: pc-spin 25s linear infinite reverse;
    transform-origin: center;
    display: block;
}
.pc-star.star-7 svg {
    animation: pc-spin 32s linear infinite;
    transform-origin: center;
    display: block;
}
.pc-star svg {
    width: 100%;
    height: 100%;
}
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 0;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 10;
}
.hero-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.hero-star {
    position: absolute;
    z-index: 10;
}
.bege-star-left,
.bege-star-right-new,
.hero-star-green-hey,
.beige-blob-star {
    display: none;
}
.hero-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}
.hero-text {
    flex: 1;
    min-width: 50%;
    padding-left: 0% !important;
    transition: padding 0.3s ease;
}
body.lang-pt .hero-text {
    padding-left: 4% !important;
}
.hero-illustration {
    flex: 1;
    position: relative;
    margin-right: -5%;
}
.hero-mobile-cyan {
    display: none;
}
.illustration-frame img {
    margin-top: 0;
    max-height: 80vh;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transform: scale(1.15);
}
body {
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
}
.hero-name {
    font-family: "Fredoka One", cursive;
    font-size: 8rem;
    font-weight: 400;
    line-height: 1;
    color: #474949;
    text-shadow: 5px 5px 0px #d0d4d6;
    margin-bottom: 5px;
    letter-spacing: -1px;
    position: relative;
    z-index: 5;
}
.hero-name .accent-dot {
    color: #898f91 !important;
}
.hero-desc {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    color: #6b7a85;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 8px;
    max-width: 480px;
    line-height: 1.6;
}
body.lang-pt .hero-desc {
    margin-top: 30px;
}
.hero-cta-row {
    display: flex;
    gap: 20px;
}
.btn-chunky {
    display: inline-block;
    padding: 18px 45px !important;
    border-radius: 50px;
    font-family: "Fredoka One", cursive;
    font-weight: 400;
    font-size: 1.3rem;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    white-space: nowrap !important;
}
.btn-chunky:hover {
    transform: translateY(-3px);
}
.btn-secondary {
    background: #fc919f;
    color: #ffffff;
    border: none !important;
    box-shadow: 6px 6px 0px #b05860 !important;
    padding: 18px 50px !important;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}
.btn-secondary:hover {
    background: #e88693;
    box-shadow: 4px 4px 0px #b05860 !important;
}
.btn-primary {
    background: #3d8a87;
    color: #ffffff;
    border: none !important;
    box-shadow: 6px 6px 0px #2b6563 !important;
}
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    z-index: 1000;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s, box-shadow 0.3s;
}
.top-nav.scrolled {
    background: var(--bg-main) !important;
    padding: 15px 60px;
    box-shadow: 0px 4px 0px rgba(82, 69, 56, 0.05);
}

@keyframes pc-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes pc-spin-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.nav-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #4a6060;
    text-decoration: none;
    letter-spacing: -1.5px;
}
.nav-links-top {
    display: flex;
    gap: 40px;
}
.nav-links-top a {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #7a9090;
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links-top a:hover {
    color: #4a6060;
}
.nav-links-top a.active {
    color: #2d4a4a;
}
.nav-right {
    display: flex;
    align-items: center;
    margin-right: 50px;
}
.lang-switch-inline {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    top: auto;
    right: auto;
    margin: 0;
}
.lang-text {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.0rem;
    color: #7ab5b2;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    padding: 6px 12px;
    border-radius: 8px;
}
.lang-text.active {
    background: transparent !important;
    color: #4a6060 !important;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    box-shadow: none;
}
.lang-sep {
    color: #5a9e9b;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 4px;
}
.mobile-menu-btn {
    display: none;
}
.mobile-nav-drawer {
    display: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    filter: none !important;
}
body {
    background-color: var(--bg-main) !important;
}
.bg-green-section {
    background-color: #f5dce3;
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.04);
    overflow: visible;
    margin-bottom: 0;
}
.bg-green-section .site-wrapper {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.bg-green-section .tab-section:last-child {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
#precos {
    position: relative;
    isolation: isolate;
    padding-bottom: 80px !important;
    margin-bottom: 0 !important;
}
#precos::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: -10px;
    left: -100vw;
    right: -100vw;
    background: #f5e2c8;
    z-index: -1;
}
.top-nav.nav-green .nav-logo {
    color: #a85a72;
}
.top-nav.nav-green .nav-links-top a {
    color: #c4899e;
}
.top-nav.nav-green .nav-links-top a:hover {
    color: #8c4a62;
}
.top-nav.nav-green .nav-links-top a.active {
    color: #7a3d55;
    font-weight: 800;
}
.top-nav.nav-green.scrolled {
    background: rgba(245, 220, 227, 0.92) !important;
    box-shadow: 0 4px 0px rgba(168, 90, 114, 0.08) !important;
}
.top-nav.nav-green .lang-text {
    color: #d4a0b2;
}
.top-nav.nav-green .lang-text.active {
    background: #c4899e !important;
    color: #fff !important;
    box-shadow: 0 3px 0 #a85a72 !important;
}
.top-nav.nav-green .lang-sep {
    color: #d4a0b2;
}
.top-nav.nav-mocha .nav-logo {
    color: #EDDEC3;
}
.top-nav.nav-mocha .nav-links-top a {
    color: #c9b99e;
}
.top-nav.nav-mocha .nav-links-top a:hover {
    color: #f2e4cc;
}
.top-nav.nav-mocha .nav-links-top a.active {
    color: #fdd88a;
    font-weight: 800;
}
.top-nav.nav-mocha.scrolled {
    background: rgba(60, 46, 37, 0.93) !important;
    box-shadow: 0 4px 0px rgba(0, 0, 0, 0.15) !important;
}
.top-nav.nav-mocha .lang-text {
    color: #b09880;
}
.top-nav.nav-mocha .lang-text.active {
    background: #7a5c44 !important;
    color: #EDDEC3 !important;
    box-shadow: 0 3px 0 #4C3A2E !important;
}
.top-nav.nav-pink .nav-logo {
    color: #B0687E;
}
.top-nav.nav-pink .nav-links-top a {
    color: #CD94A5;
}
.top-nav.nav-pink .nav-links-top a:hover {
    color: #9A5064;
}
.top-nav.nav-pink .nav-links-top a.active {
    color: #8C5A6B;
    font-weight: 800;
}
.top-nav.nav-pink.scrolled {
    background: rgba(250, 237, 240, 0.95) !important;
    box-shadow: 0 4px 0px rgba(176, 104, 126, 0.08) !important;
}
.top-nav.nav-pink .lang-text {
    color: #DEB2C0;
}
.top-nav.nav-pink .lang-text.active {
    background: #CD94A5 !important;
    color: #FFF !important;
    box-shadow: 0 3px 0 #B0687E !important;
}
.top-nav.nav-pink .lang-sep {
    color: #DEB2C0;
}
.top-nav.nav-mocha .lang-sep {
    color: #907060;
}
.top-nav .nav-logo,
.top-nav .nav-links-top a,
.top-nav .lang-text,
.top-nav .lang-sep {
    transition: color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
@keyframes stylize2frames {
    0%,
    49.9% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50%,
    100% {
        transform: scale(0.6) rotate(45deg);
        opacity: 0.8;
    }
}
@keyframes stylize2framesAlt {
    0%,
    49.9% {
        transform: scale(0.6) rotate(-45deg);
        opacity: 0.8;
    }
    50%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}
.sparkle-anim {
    animation: stylize2frames 0.8s steps(1) infinite;
}
.sparkle-anim-alt {
    animation: stylize2framesAlt 0.8s steps(1) infinite;
}
@keyframes smoothSmoke {
    0% {
        transform: translateY(10px) translateX(0) scale(0.9);
        opacity: 0;
    }
    30% {
        opacity: 0.85;
    }
    80% {
        transform: translateY(-20px) translateX(6px) scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-35px) translateX(12px) scale(1.2);
        opacity: 0;
    }
}
@keyframes smoothSmokeAlt {
    0% {
        transform: translateY(15px) translateX(0) scale(0.85);
        opacity: 0;
    }
    30% {
        opacity: 0.75;
    }
    80% {
        transform: translateY(-25px) translateX(-6px) scale(1.15);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-45px) translateX(-12px) scale(1.25);
        opacity: 0;
    }
}
.smoke-anim {
    animation: smoothSmoke 3.5s ease-in-out infinite;
}
.smoke-anim-alt {
    animation: smoothSmokeAlt 4.2s ease-in-out infinite;
    animation-delay: 1.2s;
}
.footer {
    background: #FAEDF0;
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
    border-top: 2px dashed #EAC5CF;
    overflow: hidden;
    margin-top: -1px;
    display: flow-root;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#F1D4DC 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
    opacity: 0.5;
}
.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.kioyy-btn {
    background: #FFFCFA;
    color: #B0687E;
    border: 2px solid #CD94A5;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.85rem;
    font-family: var(--font-display);
    cursor: pointer;
    margin-left: 5px;
    transition: all 0.2s ease;
    box-shadow: 2px 2px 0px rgba(205, 148, 165, 0.4);
}
.kioyy-btn:hover {
    background: #FAEDF0;
    transform: translateY(-2px);
    box-shadow: 2px 4px 0px rgba(205, 148, 165, 0.4);
}
@keyframes heartColorPulse {
    0% { fill: #ff8cae; }
    50% { fill: #ffbfcf; }
    100% { fill: #ff8cae; }
}
@keyframes heartColorPulseAlt {
    0% { fill: #ffbfcf; }
    50% { fill: #ff8cae; }
    100% { fill: #ffbfcf; }
}
.hero-mobile-star { display: none !important; }
.order-mobile-star { display: none !important; }

