@font-face {
    font-family: 'Quicksand';
    src: url(../fonts/static/Quicksand-Medium.woff2) format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Quicksand';
    src: url(../fonts/static/Quicksand-Bold.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Quicksand-Fallback';
    src: local(Arial);
    ascent-override: 96%;
    descent-override: 22%;
    line-gap-override: 0;
    size-adjust: 104%
}

:root {
    --accent-color: #2563eb;
    --hover-color: #1d4ed8;
    --success-green: #15803d;
    --primary-color: #2d3e50;
    --text-muted: #555;
    --text-paragraph: #4a4a4a;
    --white: #fff;
    --bg-light: #f9f9f9;
    --border-color: #eee;
    --border-soft: #f0f0f0;
    --footer-bg: #2d3e50;
    --card-shadow: #0000000d
}

body.dark-mode {
    --primary-color: #e2e8f0;
    --text-muted: #a0aec0;
    --text-paragraph: #cbd5e0;
    --white: #1e1e1e;
    --bg-light: #121212;
    --border-color: #333;
    --border-soft: #2d2d2d;
    --footer-bg: #1a1a1a;
    --card-shadow: #0006
}

*,
::before,
::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overscroll-behavior: none
}

body {
    font-family: 'Quicksand', 'Quicksand-Fallback', sans-serif;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: var(--primary-color);
    background-color: var(--bg-light);
    overflow-x: hidden
}

main {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding: 0 2rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem
}

.section-title {
    margin-top: 0;
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 3.2rem);
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 700
}

.gallery-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px
}

.cta-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start
}

.btn-primary,
.btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: 1px;
    border-radius: 50px;
    height: 54px;
    min-width: 200px;
    transition: all .3s ease;
    cursor: pointer
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff !important;
    border: 2px solid transparent
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px)
}

.btn-wa {
    background-color: var(--success-green);
    color: #fff !important;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px #25d3664d;
    gap: 8px
}

.btn-wa:hover {
    background-color: #128c7e;
    transform: scale(1.05)
}

.btn-maps {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s ease
}

.btn-maps:hover {
    background-color: var(--primary-color);
    color: var(--bg-light);
    border-color: var(--primary-color)
}

.btn-instagram {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s ease;
    box-shadow: 0 4px 15px #e1306c4d;
    margin-left: 10px
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px #e1306c80
}

.cta-menu-wrapper {
    text-align: center;
    margin-top: 40px;
    width: 100%
}

.btn-wide {
    display: inline-flex;
    width: auto;
    min-width: 250px;
    justify-content: center;
    align-items: center
}

.status-badge {
    width: 100%;
    padding: 8px 0;
    text-align: center;
    font-size: .9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 1001
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block
}

.status-open {
    color: var(--success-green);
    border-color: #15803d33
}

.status-open .dot {
    background-color: var(--success-green);
    box-shadow: 0 0 8px var(--success-green)
}

.status-closed {
    color: #dc2626;
    border-color: #dc262633
}

.status-closed .dot {
    background-color: #dc2626
}

header.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: sticky;
    top: 32px;
    z-index: 999;
    background-color: var(--white);
    box-shadow: 0 4px 15px var(--card-shadow);
    transition: background-color .3s ease
}

header.navbar-container .logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform .3s
}

header.navbar-container .logo img:hover {
    transform: rotate(10deg)
}

header.navbar-container .nav-list {
    margin-right: auto;
    margin-left: 20px
}

header.navbar-container .nav-list ul {
    padding-left: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    list-style: none
}

header.navbar-container .nav-list li a {
    padding: .6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    transition: all .3s ease
}

header.navbar-container .nav-list li:hover a {
    background-color: var(--hover-color);
    color: #fff;
    box-shadow: 0 4px 10px #425c774d
}

.dark-mode-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform .2s ease;
    position: absolute;
    right: max(70px, calc((100% - 1200px) / 2 + 70px));
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    position: absolute;
    right: max(20px, calc((100% - 1200px) / 2 + 20px));
    top: 50%;
    transform: translateY(-50%);
    transition: color .3s ease
}

#close-icon {
    display: none
}

.content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem
}

.content-description {
    flex: 1
}

.content-description .title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    color: var(--primary-color)
}

.content-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-paragraph);
    margin-bottom: 2rem
}

.video {
    flex: 1;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px var(--card-shadow);
    display: flex;
    align-items: center;
    justify-content: center
}

.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01)
}

.video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, #0006 100%);
    pointer-events: none
}

.menu-highlight-wrapper {
    padding: 4rem 1rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%
}

.menu-highlight-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700
}

.menu-highlight-desc {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem
}

.slider-container-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center
}

.kopi-slider {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px 5px;
    overflow: hidden
}

.swiper-slide {
    height: auto
}

.menu-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--card-shadow);
    border: 1px solid var(--border-soft);
    position: relative;
    text-align: left;
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px var(--card-shadow)
}

.menu-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD700;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 5px #0003
}

.menu-card-img-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-light)
}

.menu-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.menu-card:hover .menu-card-img-container img {
    transform: scale(1.05)
}

.menu-card-body {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    flex-grow: 1
}

.menu-card-name {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    flex: 1;
    padding-right: 10px;
    line-height: 1.3
}

.menu-card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color)
}

.slider-arrow {
    display: none
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px 40px
}

.about-title {
    text-align: center;
    font-size: clamp(1.5rem, 6vw, 2.8rem);
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700
}

.about-header-img {
    margin-bottom: 25px;
    width: 100%
}

.about-header-img img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px var(--card-shadow)
}

.about-text-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 25px;
    text-align: justify
}

.section-subtitle {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px
}

.feature-item h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    margin-top: 0
}

.feature-item p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0
}

.soft-sell-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 10px
}

.soft-sell {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-top: 40px;
    font-style: italic;
    color: var(--text-muted) !important
}

.cta-area {
    text-align: center;
    margin-top: 40px
}

.delivery-logos {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px
}

.delivery-logos span {
    font-size: .9rem;
    color: #888
}

.delivery-logos img {
    height: 25px;
    filter: grayscale(100%);
    opacity: .6;
    transition: .3s
}

.delivery-logos img:hover {
    filter: grayscale(0%);
    opacity: 1
}

.features-title {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--primary-color)
}

.menu-section {
    width: 100%
}

.menu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    width: 100%
}

.menu-category {
    width: 100%
}

.category-header {
    margin-bottom: 1.5rem;
    text-align: left;
    border-bottom: 2px solid var(--border-soft);
    padding-bottom: 10px
}

.category-header h3 {
    color: var(--primary-color);
    margin: 0 0 .5rem;
    font-size: 1.8rem;
    display: inline-block;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 5px
}

.menu-desc {
    font-size: .95rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0
}

.extra-note {
    font-size: .85rem;
    color: #888;
    margin: 0 0 10px;
    line-height: 1.2
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    align-items: stretch
}

.item-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px var(--card-shadow);
    border: 1px solid var(--border-soft);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
    height: 100%
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px var(--card-shadow);
    border-color: var(--accent-color)
}

.item-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--border-soft);
    overflow: hidden
}

.item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.item-card:hover .item-img-wrapper img {
    transform: scale(1.05)
}

.item-details {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.item-details h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.3
}

.item-short-desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
    flex-grow: 1
}

.item-details .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto
}

.item-details .price {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem
}

.menu-pdf-container {
    margin-top: 25px;
    text-align: center
}

.menu-pdf-container p {
    margin-top: 0;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700
}

.menu-filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2.5rem;
    padding: 0 10px
}

.filter-btn {
    background-color: var(--white);
    color: var(--text-muted);
    border: 2px solid var(--border-soft);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease
}

.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color)
}

.filter-btn.active {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 4px 10px #2563eb4d
}

.hidden-category {
    display: none !important
}

.badge-new {
    background-color: #ff4757;
    color: #fff;
    font-size: .65rem;
    padding: 3px 6px;
    border-radius: 6px;
    margin-left: 5px;
    vertical-align: middle;
    font-weight: 700
}

.text-accent {
    color: var(--accent-color);
    font-size: .9rem
}

.text-warning {
    color: #ffc107;
    font-size: .9rem
}

.bundle-card {
    border: 2px solid #fbbf24;
    box-shadow: 0 10px 25px #fbbf2426
}

.bundle-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 15px 35px #fbbf2440;
    transform: translateY(-5px)
}

.bundle-card .badge-new {
    background-color: #15803d;
    color: #fff
}

.bundle-card {
    border: 1px solid #15803d33
}

.menu-footer-note {
    text-align: center;
    padding: 10px;
    font-size: .85rem;
    color: var(--text-muted);
    opacity: .7;
    width: 100%;
    margin-bottom: 0
}

.menu-footer-note p {
    margin: 0
}

.temp-icon {
    font-size: .8rem;
    margin-right: 5px
}

.icon-hot {
    color: #ff4500
}

.icon-ice {
    color: #00bfff
}

.contact-section {
    padding: 2rem 0 4rem;
    width: 100%
}

.contact-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center
}

.menu-intro {
    max-width: 650px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    justify-content: center;
    font-style: normal;
    text-align: justify
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 4rem
}

.contact-card {
    background: var(--white);
    padding: 3.5rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 15px 35px var(--card-shadow);
    transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px #3b87d81f;
    border-color: var(--accent-color)
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    opacity: .03;
    border-radius: 50%;
    transition: all .4s ease
}

.contact-card:hover::before {
    transform: scale(2);
    opacity: .05
}

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    height: 50px
}

.contact-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: all .3s ease;
    width: 100%;
    display: block;
    text-align: center
}

.contact-link:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    border-color: var(--primary-color)
}

.contact-card i {
    font-size: 2.2rem;
    color: #fff;
    background: var(--accent-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px #3b87d84d;
    transition: all .3s ease
}

.contact-card:hover i {
    transform: scale(1.1) rotate(5deg)
}

.contact-card:first-child i {
    background: #25d366;
    box-shadow: 0 10px 20px #25d3664d
}

.contact-card.card-maps i {
    background: #DB4437;
    box-shadow: 0 10px 20px #db44374d
}

.contact-meta {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px dashed var(--border-color)
}

.testimonials-section {
    padding: 60px 20px 20px;
    background-color: var(--bg-light);
    text-align: center
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto
}

.testimonial-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    width: 310px;
    box-shadow: 0 8px 20px var(--card-shadow);
    border: 1px solid var(--border-soft);
    transition: all .3s ease
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px var(--card-shadow);
    border-color: var(--border-color)
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: .9rem
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: .95rem
}

.testimonial-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 1px solid var(--border-soft);
    padding-top: 15px
}

.more-reviews {
    margin-top: 40px
}

.gallery-section {
    padding: 60px 5%;
    background-color: var(--white);
    text-align: center
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto
}

.gallery-item {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--card-shadow)
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    image-rendering: -webkit-optimize-contrast
}

@media (hover: hover) {
    .gallery-item:hover img {
        transform: scale(1.03)
    }
}

.gallery-container .gallery-item:nth-child(7) img {
    object-fit: cover;
    object-position: left center;
    background-color: transparent;
    padding: 0
}

.faq-section {
    padding: 30px 20px;
    background-color: var(--bg-light);
    width: 100%
}

.faq-container,
.about-container .faq-wrapper {
    max-width: 800px;
    margin: 0 auto
}

details {
    background: var(--white);
    margin-bottom: 1.5rem;
    padding: 1.8rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 15px var(--card-shadow)
}

details:hover {
    border-color: var(--border-color);
    box-shadow: 0 6px 20px var(--card-shadow)
}

details[open] {
    box-shadow: 0 10px 30px var(--card-shadow);
    border-color: var(--accent-color)
}

summary {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none
}

summary .badge-new,
summary .badge-closed {
    margin-left: auto;
    margin-right: 15px;
    display: inline-block
}

summary::-webkit-details-marker {
    display: none
}

summary::after {
    content: '\f0fe';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform .3s ease
}

details[open] summary::after {
    content: '\f146';
    transform: rotate(180deg)
}

details p {
    margin-top: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
    font-size: 1.05rem
}

.faq-footer {
    text-align: center;
    margin-top: 30px
}

.faq-link {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    display: inline-block
}

.faq-link:hover {
    color: var(--hover-color);
    text-decoration: underline;
    transform: translateY(-2px)
}

aside {
    position: fixed !important;
    bottom: 30px;
    right: 8px;
    top: auto;
    transform: none;
    z-index: 9999;
    width: auto;
    background: transparent;
    margin: 0
}

aside .social-media ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    background: transparent;
    box-shadow: none;
    width: auto
}

aside .social-media li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 10px #0003;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

aside .social-media li a:hover {
    transform: scale(1.15) translateY(-5px);
    color: #fff
}

aside .social-media li a[title*="WhatsApp"]:hover {
    background-color: #25D366
}

aside .social-media li a[title*="Instagram"]:hover {
    background-color: #E1306C
}

aside .social-media li a[title*="TikTok"]:hover {
    background-color: #000
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    left: 15px;
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px #0003;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

#back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px)
}

.main-footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 4rem 2rem 1.5rem;
    margin-top: auto;
    transition: background-color .3s ease
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem
}

.footer-column h2,
.footer-column h3 {
    color: #93c5fd;
    margin-bottom: 1.2rem
}

.delivery-logos-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem
}

.location-link {
    color: #cbd5e1 !important;
    text-decoration: none;
    transition: color .2s
}

.location-link:visited {
    color: #cbd5e1 !important
}

.location-link:hover {
    color: var(--accent-color) !important;
    text-decoration: underline
}

.logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin: 0 5px;
    transition: transform .2s
}

.logo-item img:hover {
    transform: scale(1.1)
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 1.5rem;
    border-top: 1px solid #ffffff1a;
    font-size: .9rem;
    color: #cbd5e1
}

.footer-bottom-links {
    margin-top: 15px;
    font-size: .85rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px
}

.footer-bottom-links a {
    color: #cbd5e1 !important;
    text-decoration: none;
    transition: all .3s ease;
    opacity: .8
}

.footer-bottom-links a:hover {
    opacity: 1;
    text-decoration: underline;
    color: var(--accent-color) !important
}

.footer-bottom-links span {
    -webkit-user-select: none;
    color: #fff3;
    user-select: none
}

.footer-bottom p a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color .3s ease;
    font-weight: 700
}

.footer-bottom p a:hover {
    color: var(--accent-color);
    text-decoration: underline
}

.legal-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: justify;
    line-height: 1.8;
    -webkit-hyphens: auto;
    hyphens: auto
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 30px
}

.legal-content h2 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--text-color)
}

.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    padding-top: 2rem
}

.error-code {
    font-size: clamp(6rem, 20vw, 10rem);
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    opacity: .15;
    margin-bottom: -2rem;
    z-index: 1
}

.error-container .title {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 4vw, 2.8rem)
}

.error-container .menu-intro {
    max-width: 500px;
    margin-bottom: 2.5rem
}

.career-page-container {
    max-width: 1000px !important
}

.career-intro {
    text-align: center
}

.career-list {
    margin-top: 40px;
    width: 100%
}

.career-page-container details {
    background: var(--white);
    margin-bottom: 2rem;
    padding: 2rem 3rem !important;
    border-radius: 20px !important;
    border: 1px solid var(--border-soft);
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 5px 20px var(--card-shadow);
    width: 100%
}

.career-page-container summary {
    font-weight: 700;
    font-size: 1.4rem !important;
    color: var(--primary-color);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none
}

.career-page-container summary .badge-new,
.career-page-container summary .badge-closed {
    margin-left: auto;
    margin-right: 20px !important;
    padding: 6px 14px;
    font-size: .75rem
}

.no-vacancy-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-top: 50px;
    margin-bottom: 20px;
    display: block
}

.job-content {
    padding-top: 20px
}

.job-subtitle {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px
}

.job-requirements {
    padding-left: 20px;
    margin-bottom: 25px
}

.job-requirements li {
    margin-bottom: 10px;
    color: var(--text-muted);
    line-height: 1.8
}

.job-info-box {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border-soft);
    margin-bottom: 25px
}

.job-info-box p {
    margin: 8px 0 !important;
    font-size: 1rem;
    color: var(--primary-color)
}

.hidden-section {
    display: none !important
}

@media screen and (max-width: 992px) {
    main {
        padding: 2rem
    }

    .content {
        flex-direction: column;
        text-align: center
    }

    .video {
        width: 100%;
        max-width: 600px
    }

    .kopi-slider {
        padding: 15px
    }
}

@media screen and (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100vw;
        position: relative;
        overflow-x: hidden
    }

    main,
    footer,
    section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important
    }

    .cta-container {
        flex-direction: column;
        width: 100%;
        gap: 10px
    }

    .btn-primary,
    .btn-wa,
    .btn-maps,
    .btn-instagram {
        width: 100%;
        min-width: unset;
        max-width: 100%;
        box-sizing: border-box
    }

    .more-reviews .btn-maps,
    .more-reviews .btn-instagram {
        margin-top: 10px;
        margin-left: 0
    }

    .dark-mode-btn {
        right: 70px;
        top: 50%;
        transform: translateY(-50%)
    }

    .menu-toggle {
        display: block !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 99999;
        cursor: pointer;
        background: none;
        border: none;
        color: var(--primary-color)
    }

    .menu-toggle i {
        pointer-events: none
    }

    #close-icon {
        color: var(--primary-color)
    }

    header.navbar-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        width: 100%;
        box-sizing: border-box
    }

    header.navbar-container .logo img {
        width: 60px;
        height: 60px
    }

    header.navbar-container .nav-list {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: auto;
        margin: 0;
        height: auto;
        background-color: var(--white);
        padding: 90px 2rem 2rem;
        box-shadow: 0 15px 30px var(--card-shadow);
        border-radius: 0 0 24px 24px;
        z-index: 10000;
        animation: slideDown .3s ease-out
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    header.navbar-container .nav-list.active {
        display: block
    }

    header.navbar-container .nav-list ul {
        flex-direction: column;
        gap: .5rem
    }

    header.navbar-container .nav-list li {
        width: 100%;
        text-align: center
    }

    header.navbar-container .nav-list li a {
        display: block;
        padding: 1rem;
        border: none !important;
        border-radius: 12px;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-color);
        transition: all .3s ease
    }

    header.navbar-container .nav-list li:hover a {
        background-color: var(--bg-light);
        color: var(--accent-color);
        transform: translateX(5px)
    }

    .video {
        height: auto;
        width: 100%;
        aspect-ratio: 4 / 3
    }

    .section-title {
        font-size: 1.5rem !important;
        line-height: 1.3;
        padding: 0 15px;
        word-wrap: normal;
        overflow-wrap: normal;
        word-break: keep-all;
        display: block;
        text-align: center !important;
        width: 100%;
        margin-bottom: 20px
    }

    .menu-highlight-wrapper {
        padding: 3rem 0
    }

    .menu-card-img-container {
        height: 380px !important
    }

    .slider-arrow {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
        background: #ffffffd9;
        color: #333;
        border: 1px solid #ddd;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px #00000026;
        cursor: pointer
    }

    .left-arrow {
        left: 10px
    }

    .right-arrow {
        right: 10px
    }

    .about-container {
        padding-top: 30px
    }

    .about-title {
        font-size: 1.8rem;
        padding: 0 10px
    }

    .about-header-img img {
        max-height: 300px
    }

    .about-text-content p {
        font-size: 1.05rem;
        text-align: left
    }

    .section-subtitle {
        font-size: 1.4rem;
        text-align: center
    }

    .feature-item h3 {
        font-size: 1.1rem
    }

    .feature-item p {
        font-size: .95rem;
        text-align: justify
    }

    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
        align-items: stretch
    }

    .item-details {
        padding: 1rem
    }

    .item-details h4 {
        font-size: 1rem;
        margin-bottom: 5px
    }

    .item-details .price {
        font-size: 1rem
    }

    .category-header h3 {
        font-size: 1.4rem
    }

    .gallery-section {
        padding: 40px 0
    }

    .gallery-container {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 15px 0;
        gap: 0;
        scrollbar-width: none;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch
    }

    .gallery-container::-webkit-scrollbar {
        display: none
    }

    .gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        aspect-ratio: 4 / 5;
        overflow: hidden
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 25px;
        box-shadow: 0 10px 20px #0000001a
    }

    .gallery-dots {
        display: flex
    }

    .dot-item {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--border-color);
        transition: all .3s ease;
        cursor: pointer
    }

    .dot-item.active {
        background-color: var(--accent-color);
        width: 25px;
        border-radius: 10px
    }

    .testimonial-card {
        width: 100%
    }

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 10px
    }

    .contact-card {
        padding: 3rem 1.5rem
    }

    .contact-card p {
        height: auto
    }

    .faq-section {
        padding: 10px 15px 50px
    }

    .testimonials-section {
        padding-bottom: 10px
    }

    details {
        padding: 1.4rem 1.5rem;
        border-radius: 15px
    }

    summary {
        font-size: 1.1rem;
        line-height: 1.4
    }

    summary .badge-new,
    summary .badge-closed {
        margin-right: 10px;
        font-size: .6rem
    }

    details p {
        font-size: .95rem;
        line-height: 1.6
    }

    .faq-footer {
        margin-top: 20px
    }

    .footer-container {
        flex-direction: column;
        text-align: center
    }

    .delivery-logos-container {
        justify-content: center
    }

    aside {
        position: fixed !important;
        bottom: 20px;
        right: 10px;
        width: auto;
        margin-top: 0;
        z-index: 9999
    }

    aside .social-media ul {
        flex-direction: column-reverse;
        gap: 10px;
        background: transparent;
        box-shadow: none;
        width: auto;
        padding: 0
    }

    aside .social-media li a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        box-shadow: 0 2px 5px #0003
    }

    #back-to-top {
        bottom: 20px;
        left: 8px;
        width: 40px;
        height: 40px;
        font-size: 1rem
    }

    .error-container {
        min-height: 60vh
    }

    .error-container .cta-container {
        justify-content: center;
        width: 100%;
        padding: 0 20px
    }

    .menu-filter-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none
    }

    .menu-filter-container::-webkit-scrollbar {
        display: none
    }

    .filter-btn {
        white-space: nowrap;
        scroll-snap-align: start
    }

    .bundle-card .extra-note {
        font-size: .75rem;
        margin-bottom: 5px
    }

    .bundle-card .badge-new {
        font-size: .6rem;
        padding: 2px 6px;
        letter-spacing: .5px
    }

    .career-intro {
        padding: 0 10px
    }

    .job-action {
        text-align: center
    }

    .job-info-box {
        padding: 12px;
        text-align: left
    }

    .job-requirements {
        padding-left: 15px
    }

    .career-page-container details {
        padding: 1.5rem !important
    }

    .career-page-container summary {
        font-size: 1.1rem !important
    }
}