/* ==========================================================================
   BERSAYAP - DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Color */
    --color-yellow: #FFC700;
    --color-yellow-light: #FFE885;
    --color-red: #D92525;
    --color-red-dark: #A81212;
    --color-cream: #FFFDF5;
    --color-white: #FFFFFF;
    --color-dark: #1A1A1A;
    --color-gray-light: #F4F4F6;
    --color-gray-text: #666666;

    /* Font */
    --font-heading: 'Fredoka', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Shadow */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, .06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, .12);
    --shadow-lg: 0 16px 36px rgba(217, 37, 37, .15);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    /* Animation */
    --transition: .3s ease;
}

/* ==========================================================================
   RESET
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */

.container {
    width: min(1140px, 100%);
    margin: auto;
    padding-inline: 20px;
}

/* ==========================================================================
   CHECKERED DIVIDER
   ========================================================================== */

.checkered-divider {
    width: 100%;
    height: 20px;
    background-color: var(--color-white);

    background-image:
        linear-gradient(45deg, var(--color-red) 25%, transparent 25%),
        linear-gradient(-45deg, var(--color-red) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--color-red) 75%),
        linear-gradient(-45deg, transparent 75%, var(--color-red) 75%);

    background-size: 20px 20px;
    background-position:
        0 0,
        0 10px,
        10px -10px,
        -10px 0;

    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

/* ==========================================================================
   BUTTON
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 24px;

    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;

    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.btn-primary {
    color: var(--color-white);
    background: var(--color-red);
    box-shadow: 0 6px 16px rgba(217, 37, 37, .30);
}

.btn-primary:hover {
    background: var(--color-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(217, 37, 37, .40);
}

.btn-secondary {
    color: var(--color-dark);
    background: var(--color-yellow);
    box-shadow: 0 6px 16px rgba(255, 199, 0, .30);
}

.btn-secondary:hover {
    background: #E6B400;
    transform: translateY(-3px);
}

.btn-bounce {
    animation: miniBounce 2s infinite ease-in-out;
}

/* ==========================================================================
   ANIMATION
   ========================================================================== */

@keyframes miniBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}

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

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;

    background: var(--color-yellow);

    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    z-index: 1000;

    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===========================
   Logo
=========================== */

.brand-logo .logo-img {
    width: auto;
    height: 36px;
    object-fit: contain;
    transition: var(--transition);
}

.brand-logo:hover .logo-img {
    transform: scale(1.05) rotate(-2deg);
}

/* ===========================
   Navigation Menu
=========================== */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 12px;
    background: transparent;

    transition: var(--transition);
}

.nav-link:hover {
    transform: scale(1.1);
}

.nav-link.active {
    color: var(--color-red);
}

.nav-icon {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* ===========================
   Header Action
=========================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-btn {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    color: var(--color-white);
    background: var(--color-red);

    border-radius: 50%;
    font-size: 18px;

    box-shadow: 0 4px 12px rgba(217, 37, 37, .30);

    transition: var(--transition);
}

.cart-btn:hover {
    background: var(--color-red-dark);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    border: 2px solid var(--color-red);
    border-radius: 50%;

    background: var(--color-yellow);

    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none;

    background: none;
    color: var(--color-red);
    font-size: 24px;
}

/* ==========================================================================
   SECTION 1 : HERO
   ========================================================================== */

.hero-section {
    position: relative;
    overflow: hidden;

    padding: 40px 0 60px;

    background: var(--color-yellow);
}

.hero-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 40px;
}

/* ===========================
   Hero Content
=========================== */

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-bottom: 16px;
    padding: 6px 14px;

    border-radius: var(--radius-pill);

    background: rgba(217, 37, 37, .10);

    color: var(--color-red);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
}

.hero-title {
    margin-bottom: 20px;

    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
}

.title-red {
    color: var(--color-red);
    text-shadow: 3px 3px 0 rgba(0, 0, 0, .15);
}

.title-outline {
    color: var(--color-yellow);

    -webkit-text-stroke: 2px var(--color-red);
    text-shadow: 3px 3px 0 var(--color-red);
}

.hero-desc {
    max-width: 480px;
    margin-bottom: 28px;

    color: #444;
    font-size: 17px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;

    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    gap: 20px;

    color: var(--color-red-dark);
    font-size: 14px;
    font-weight: 600;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===========================
   Hero Image
=========================== */

.hero-visual {
    position: relative;
}

.storefront-card {
    position: relative;

    overflow: hidden;
    border: 4px solid var(--color-white);
    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);
}

.storefront-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.burger-overlay {
    position: absolute;
    top: -20px;
    left: -20px;

    width: 220px;

    z-index: 10;

    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .25));
}

.burger-hand-img {
    width: 150%;
    object-fit: contain;
}

.floating-anim {
    animation: floatHand 3.5s ease-in-out infinite;
}

/* ===========================
   Animation
=========================== */

@keyframes floatHand {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }

}

.floating-badge {
    position: absolute;
    right: 0;
    bottom: 0;

    padding: 6px 12px;

    border-radius: var(--radius-pill);

    background: var(--color-white);

    color: var(--color-dark);
    font-size: 12px;
    font-weight: 700;

    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   SECTION 2 : TENTANG KAMI
   ========================================================================== */

.about-section {
    padding: 80px 0;
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    gap: 48px;
}

/* ===========================
   Mascot
=========================== */

.mascot-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 20px;
}

.mascot-img {
    width: 70px;
    height: auto;
}

.pulse-anim {
    animation: mascotPulse 2.5s ease-in-out infinite;
}

@keyframes mascotPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

}

.mascot-speech-bubble {
    position: relative;

    padding: 8px 16px;

    border-radius: var(--radius-md);

    background: var(--color-yellow);

    color: var(--color-red);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;

    box-shadow: var(--shadow-sm);
}

.mascot-speech-bubble::before {
    content: "";

    position: absolute;
    top: 50%;
    left: -8px;

    transform: translateY(-50%);

    border-style: solid;
    border-width: 6px 8px 6px 0;
    border-color: transparent var(--color-yellow) transparent transparent;
}

/* ===========================
   About Content
=========================== */

.section-title {
    margin-bottom: 20px;

    color: var(--color-red);
    font-family: var(--font-heading);
    font-size: 38px;
}

.text-highlight {
    position: relative;
    color: var(--color-dark);
}

.about-description {
    margin-bottom: 16px;

    color: #444;
    font-size: 16px;
}

/* ===========================
   Statistics
=========================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;

    margin-top: 32px;
}

.stat-card {
    padding: 16px;

    text-align: center;

    border: 2px solid var(--color-yellow-light);
    border-radius: var(--radius-md);

    background: var(--color-white);

    box-shadow: var(--shadow-sm);
}

.stat-num {
    color: var(--color-red);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
}

.stat-label {
    color: var(--color-gray-text);
    font-size: 12px;
    font-weight: 600;
}

/* ===========================
   Poster
=========================== */

.poster-frame-container {
    position: relative;

    overflow: hidden;
    cursor: pointer;

    border: 12px solid #5C3A21;
    border-radius: 12px;

    box-shadow: var(--shadow-lg);

    transition: var(--transition);
}

.poster-frame-container:hover {
    transform: scale(1.03) rotate(1deg);
}

.poster-img {
    display: block;
    width: 100%;
}

.poster-badge {
    position: absolute;
    left: 50%;
    bottom: 12px;

    transform: translateX(-50%);

    padding: 6px 14px;

    border-radius: var(--radius-pill);

    background: rgba(0, 0, 0, .75);

    color: var(--color-white);
    font-size: 12px;

    backdrop-filter: blur(4px);
}

/* ==========================================================================
   SECTION 3 : PRODUK
   ========================================================================== */

.products-section {
    padding: 80px 0;
    background: #FFF9E6;
}

.section-header.center {
    margin-bottom: 40px;
    text-align: center;
}

/* ===========================
   Heading
=========================== */

.product-title-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 8px;
}

.mini-mascot {
    width: 48px;
    height: auto;
}

.section-title-bubble {
    color: var(--color-red);

    font-family: var(--font-heading);
    font-size: 42px;

    text-shadow: 2px 2px 0 rgba(0, 0, 0, .10);
}

.text-yellow {
    color: var(--color-yellow);
    -webkit-text-stroke: 1.5px var(--color-red);
}

.section-subtitle {
    margin-bottom: 24px;

    color: #666;
    font-size: 16px;
}

/* ===========================
   Filter
=========================== */

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 20px;
}

.filter-btn {
    padding: 8px 20px;

    border: 2px solid var(--color-yellow);
    border-radius: var(--radius-pill);

    background: var(--color-white);

    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;

    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
}

/* ===========================
   Product Card
=========================== */

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

.product-card {
    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 2px solid #F0E6CC;
    border-radius: var(--radius-lg);

    background: var(--color-white);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);

    border-color: var(--color-yellow);

    box-shadow: var(--shadow-md);
}

.price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border: 2px solid var(--color-white);
    border-radius: 50%;

    background: var(--color-yellow);

    color: var(--color-red);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;

    box-shadow: var(--shadow-sm);
}

.product-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 200px;

    padding: 16px;

    overflow: hidden;

    background: #FAF4E8;
}

.product-img {
    width: 140px;
    height: 140px;

    object-fit: contain;

    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.1) rotate(3deg);
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;

    padding: 20px;
}

.product-name {
    margin-bottom: 8px;

    color: var(--color-red);
    font-family: var(--font-heading);
    font-size: 20px;
}

.product-category {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 12px;
    background: #FFF2B7;
    color: #D92525;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.product-card {
    position: relative;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FFC700, #D92525);
}

.product-img-wrapper {
    background: linear-gradient(180deg, #FFFDF5, #FFE9A9);
}

.product-price {
    font-size: 22px;
}

.btn-add-cart {
    transition: .3s;
}

.btn-add-cart:hover {
    transform: scale(1.08);
}

.product-card:hover .product-img {
    transform: scale(1.12) rotate(-4deg);
}

.product-desc {
    flex-grow: 1;

    margin-bottom: 20px;

    color: var(--color-gray-text);
    font-size: 14px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: auto;
}

.product-price {
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.btn-add-cart {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 8px 16px;

    border-radius: var(--radius-pill);

    background: var(--color-red);

    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--color-red-dark);
    transform: scale(1.05);
}

/* ==========================================================================
   HALAMAN KONTAK
   ========================================================================== */

.contact-section {
    padding: 80px 0;
    background: var(--color-cream);
    min-height: 80vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-title-stacked {
    font-family: var(--font-heading);
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.contact-title-stacked .text-red {
    color: var(--color-red);
}

.contact-desc {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: .3s;
}

.social-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.social-card i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
}

.tiktok-card i {
    background: #000;
}

.wa-card i {
    background: #25D366;
}

.ig-card i {
    background: #E1306C;
}

.social-meta {
    display: flex;
    flex-direction: column;
}

.platform {
    font-size: 13px;
    color: #777;
}

.handle {
    font-weight: 700;
    color: var(--color-red);
}

.order-cta-box {
    margin-top: 35px;
}

.btn-order-large {
    padding: 16px 40px;
    font-size: 18px;
}

.order-subtext {
    margin-top: 12px;
    color: #777;
    font-size: 14px;
}

.staff-card {
    background: var(--color-yellow);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    padding: 20px 20px 0;
}

.staff-img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.staff-badge {
    background: #fff;
    color: var(--color-red);
    padding: 14px;
    font-weight: 700;
    border-radius: 12px;
    margin: 20px;
}

@media(max-width:900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-title-stacked {
        font-size: 36px;
        text-align: center;
    }

    .order-cta-box {
        text-align: center;
    }

    .staff-card {
        margin-top: 40px;
    }

}

/* ==========================================================================
   LOKASI & FOOTER
   ========================================================================== */

.location-section {
    padding: 80px 0;
    background: #FFFDF5;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: .3s;
}

.map-card:hover {
    transform: translateY(-5px);
}

.map-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
    color: #fff;
}

.map-pin {
    font-size: 22px;
    font-family: var(--font-heading);
    color: var(--color-yellow);
    margin-bottom: 6px;
}

.map-click-hint {
    font-size: 13px;
}

.location-title {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--color-red);
    margin-bottom: 25px;
}

.address-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.address-item {
    display: flex;
    gap: 15px;
}

.address-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFE6E6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-red);
    font-size: 20px;
    flex-shrink: 0;
}

.address-item h4 {
    margin-bottom: 4px;
    color: var(--color-red);
}

.address-item p {
    color: #666;
    line-height: 1.6;
}

.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-red);
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    transition: .3s;
}

.btn-maps:hover {
    background: var(--color-red-dark);
}

.map-frame {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-map-col {
    width: 100%;
}

.location-text-col {
    width: 100%;
}

.map-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 4px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.map-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .65),
            transparent);
    color: #fff;
}

.map-pin {
    display: block;
    font-weight: 700;
    color: #FFC700;
    margin-bottom: 5px;
}

.map-click-hint {
    font-size: 13px;
}

/* ================= FOOTER ================= */

.footer {
    background: var(--color-yellow);
    padding: 35px 0;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 55px;
}

.footer-brand h3 {
    color: var(--color-red);
    font-family: var(--font-heading);
}

.footer-brand p {
    font-size: 14px;
    color: #444;
}

.footer-copy {
    font-size: 14px;
    color: #444;
}

@media(max-width:900px) {

    .location-grid {
        grid-template-columns: 1fr;
    }

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

    .location-title {
        font-size: 32px;
    }

}

/* ==========================================================================
   CART DRAWER
   ========================================================================== */

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 9999;
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer-content {
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: .35s;
}

.cart-drawer-overlay.active .cart-drawer-content {
    transform: translateX(0);
}

.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-yellow);
}

.cart-header h3 {
    color: var(--color-red);
    font-family: var(--font-heading);
}

.cart-close {
    font-size: 28px;
    background: none;
}

.cart-body {
    flex: 1;
    overflow: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 55px;
    color: #ccc;
    margin-bottom: 15px;
}

.cart-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 18px;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-family: var(--font-heading);
}

.cart-item-price {
    color: var(--color-red);
    font-weight: bold;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eee;
    font-weight: bold;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: bold;
}

.total-price {
    color: var(--color-red);
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    font-weight: bold;
}

.btn-checkout:hover {
    background: #20b857;
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 9999;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 650px;
    padding: 25px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 18px;
    background: none;
    font-size: 28px;
}

.lightbox-img {
    width: 100%;
    border-radius: 15px;
}

.modal-caption {
    margin-top: 20px;
    text-align: center;
    color: var(--color-red);
    font-family: var(--font-heading);
}

/* ==========================================================================
   TOAST
   ========================================================================== */

.toast-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 10000;
}

.toast {
    background: #222;
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    margin-top: 10px;
    animation: toastIn .3s;
}

@keyframes toastIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media(max-width:900px) {

    .hero-container,
    .about-grid,
    .products-grid,
    .contact-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .contact-title-stacked {
        font-size: 34px;
    }

    .location-title {
        font-size: 32px;
    }

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

    .cart-drawer-content {
        width: 100%;
    }

}

/* ==========================================================================
   HOMEPAGE - FIGMA MATCH
   ========================================================================== */

body.home-figma {
    margin: 0;
    background: #ffcd00;
    font-family: 'Work Sans', sans-serif;
    color: #fff;
}

.home-figma .figma-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #ffcd00;
}

.home-figma .figma-bg-glow {
    position: absolute;
    inset: -1px -1px auto auto;
    width: 1900px;
    height: 1100px;
    background: #d32027;
    border-radius: 100%;
    filter: blur(129px);
    opacity: .42;
    pointer-events: none;
}

.home-figma .figma-topbar {
    position: relative;
    z-index: 5;
    height: 158px;
    margin-top: 0;
    padding: 20px 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffce07;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.home-figma .figma-logo-link {
    display: flex;
    align-items: center;
}

.home-figma .figma-logo {
    width: 276px;
    height: auto;
    display: block;
}

.home-figma .figma-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: 28px;
}

.home-figma .figma-nav-link {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    width: 76px;
    transition: transform .2s ease;
}

.home-figma .figma-nav-link:hover {
    transform: translateY(-2px);
}

.home-figma .figma-nav-icon {
    width: 58px;
    height: auto;
    object-fit: contain;
}

.home-figma .figma-cart-link {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 4px solid #d32027;
    border-radius: 14px;
    color: #d32027;
    font-size: 32px;
}

.figma-cart-icon {
    width: 36px;
    max-width: 70%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform .2s ease;
}

.figma-cart-link:hover .figma-cart-icon {
    transform: scale(1.08);
}

.cart-drawer-header-icon {
    width: 26px;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
}

.home-figma .figma-cart-count {
    position: absolute;
    right: -7px;
    top: -8px;
    min-width: 22px;
    height: 22px;
    padding: 0 4px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #d32027;
    color: #ffce07;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.home-figma .figma-main {
    position: relative;
    z-index: 2;
}

.home-figma .figma-hero {
    position: relative;
}

.home-figma .figma-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.home-figma .figma-checker {
    position: relative;
    width: 100%;
    height: 74px;
}

.home-figma .figma-checker::before,
.home-figma .figma-checker::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background-size: 34px 34px;
    background-image:
        linear-gradient(45deg, currentColor 25%, transparent 25%, transparent 75%, currentColor 75%),
        linear-gradient(45deg, currentColor 25%, transparent 25%, transparent 75%, currentColor 75%);
}

.home-figma .figma-checker::before {
    top: 0;
    height: 28px;
    color: #111;
    background-color: #fff;
    background-position: 0 0, 17px 17px;
}

.home-figma .figma-checker::after {
    top: 28px;
    bottom: 0;
    color: #d32027;
    background-color: #fff;
    background-position: 0 0, 17px 17px;
}

.home-figma .figma-cta-wrap {
    position: relative;
    min-height: 286px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 170px;
    padding-top: 60px;
    background: linear-gradient(180deg, #ff7a00 0%, #ef5c00 100%);
}

.home-figma .figma-burger-kiri {
    position: absolute;
    left: -70px;
    bottom: 0;
    width: 300px;
    height: auto;
}

.figma-cta-wrap {
    position: relative;
}

.figma-burger {
    position: absolute;
    right: 0;
    bottom: -50px;

    width: 300px;
    height: auto;
}


.home-figma .figma-cta-btn {
    width: 466px;
    height: 140px;
    border-radius: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d32027;
    color: #fff;
    font-family: 'Modak', cursive;
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .5px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .1);
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
}

.home-figma .figma-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .2);
}

.home-figma .figma-footer {
    position: relative;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffce07;
}

.home-figma .figma-footer p {
    margin: 0;
    color: #d32027;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
}

@media (max-width:1100px) {

    .home-figma .figma-topbar {
        height: auto;
        padding: 16px 20px;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .home-figma .figma-logo {
        width: 200px;
    }

    .home-figma .figma-nav {
        margin: 0;
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .home-figma .figma-nav-link {
        width: 24%;
    }

    .home-figma .figma-nav-icon {
        width: 52px;
    }

    .home-figma .figma-cart-link {
        position: absolute;
        right: 20px;
        top: 14px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .home-figma .figma-checker {
        height: 50px;
    }

    .home-figma .figma-checker::before,
    .home-figma .figma-checker::after {
        background-size: 20px 20px;
        background-position: 0 0, 10px 10px;
    }

    .home-figma .figma-checker::before {
        height: 18px;
    }

    .home-figma .figma-checker::after {
        top: 18px;
    }

    .home-figma .figma-cta-wrap {
        min-height: 250px;
        gap: 18px;
        padding: 34px 16px 20px;
    }

    .home-figma .figma-cta-btn {
        width: 48%;
        height: 92px;
        font-size: 34px;
        text-align: center;
        padding: 0 10px;
    }

    .home-figma .figma-footer p {
        font-size: 15px;
    }

    .home-figma .figma-page {
        min-height: 100vh;
    }

}

@media (max-width:700px) {

    .home-figma .figma-cta-wrap {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .home-figma .figma-cta-btn {
        width: 92%;
        font-size: 34px;
    }

    .home-figma .figma-cta-wrap::before,
    .home-figma .figma-cta-wrap::after {
        opacity: .5;
        transform: scale(.7);
    }

}

/* ==========================================================================
   PROFILE - FIGMA MATCH
   ========================================================================== */

body.profile-figma {
    margin: 0;
    background: linear-gradient(180deg, #ff7a00 0%, #f26100 56%, #ef5c00 100%);
    font-family: 'Work Sans', sans-serif;
}

.profile-figma .profile-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, #ff7a00 0%, #f26100 56%, #ef5c00 100%);
}

.profile-figma .profile-bg-glow {
    position: absolute;
    inset: -300px auto auto -280px;
    width: 1300px;
    height: 1300px;
    border-radius: 50%;
    background: #d32027;
    filter: blur(280px);
    opacity: .35;
    pointer-events: none;
}

.profile-figma .figma-topbar {
    position: relative;
    z-index: 4;
    height: 158px;
    margin-top: 0;
    padding: 20px 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffce07;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.profile-figma .figma-logo-link {
    display: flex;
    align-items: center;
}

.profile-figma .figma-logo {
    width: 276px;
    height: auto;
    display: block;
}

.profile-figma .figma-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: 28px;
}

.profile-figma .figma-nav-link {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    width: 76px;
}

.profile-figma .figma-nav-icon {
    width: 58px;
    height: auto;
    object-fit: contain;
}

.profile-figma .figma-cart-link {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 4px solid #d32027;
    border-radius: 14px;
    color: #d32027;
    font-size: 32px;
}

.profile-figma .figma-cart-count {
    position: absolute;
    right: -7px;
    top: -8px;
    min-width: 22px;
    height: 22px;
    padding: 0 4px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #d32027;
    color: #ffce07;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.profile-figma .profile-main {
    position: relative;
    z-index: 2;
    padding: 30px 88px 88px;
}

.profile-figma .profile-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 44px;
}

.profile-figma .profile-left-col {
    padding-top: 10px;
}

.profile-figma .profile-bubble {
    position: relative;
    width: 404px;
    min-height: 120px;
    border-radius: 80px;
    background: #d32027;
    color: #ffce07;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Modak', cursive;
    font-size: 48px;
    line-height: .95;
    margin-bottom: 24px;
}

.profile-figma .profile-bubble::after {
    content: "";
    position: absolute;
    left: 108px;
    bottom: -22px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 28px solid #d32027;
}

.profile-figma .profile-mascot {
    width: 248px;
    height: auto;
    margin-left: 52px;
    margin-bottom: 26px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.profile-figma .profile-heading {
    margin: 0 0 8px;
    color: #ffce07;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
}

.profile-figma .profile-story {
    margin: 0;
    max-width: 610px;
    color: #fff;
    text-align: justify;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
}

.profile-figma .profile-right-col {
    position: relative;
    min-height: 720px;
}

.profile-figma .profile-photo-accent {
    position: absolute;
    right: 0;
    top: 12px;
    width: 502px;
    height: 712px;
    border-radius: 84px;
    background: #ffce07;
}

.profile-figma .profile-photo {
    position: absolute;
    left: 285px;
    top: 0;
    width: 506px;
    height: 675px;
    object-fit: cover;
    border-radius: 84px;
}

.profile-figma .profile-stats {
    margin-top: 56px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;
}

.profile-figma .profile-stat-pill {
    width: 296px;
    height: 140px;
    border-radius: 92px;
    background: #d32027;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .14);
}

.profile-figma .profile-stat-pill-wide {
    width: 466px;
}

.profile-figma .profile-stat-pill h2 {
    margin: 0 0 6px;
    font-family: 'Modak', cursive;
    font-size: 52px;
    line-height: .85;
    font-weight: 400;
}

.profile-figma .profile-stat-pill p {
    margin: 0;
    font-size: 31px;
    line-height: .95;
    font-weight: 400;
}

.profile-figma .profile-page::before,
.profile-figma .profile-page::after {
    content: "";
    position: absolute;
    border: 8px solid rgba(255, 205, 0, .45);
    border-radius: 50%;
    pointer-events: none;
}

.profile-figma .profile-page::before {
    width: 242px;
    height: 168px;
    left: 12px;
    bottom: 190px;
    transform: rotate(-14deg);
}

.profile-figma .profile-page::after {
    width: 238px;
    height: 238px;
    right: -32px;
    bottom: 138px;
}

.profile-figma .profile-footer {
    position: relative;
    z-index: 3;
    height: 74px;
    background: #ffce07;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-figma .profile-footer p {
    margin: 0;
    color: #d32027;
    font-size: 24px;
    line-height: 1;
}

@media (max-width:1200px) {

    .profile-figma .figma-topbar {
        height: auto;
        padding: 16px 20px;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .profile-figma .figma-logo {
        width: 200px;
    }

    .profile-figma .figma-nav {
        margin: 0;
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .profile-figma .figma-nav-link {
        width: 24%;
    }

    .profile-figma .figma-nav-icon {
        width: 52px;
    }

    .profile-figma .figma-cart-link {
        position: absolute;
        right: 20px;
        top: 14px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .profile-figma .profile-main {
        padding: 20px 30px 48px;
    }

    .profile-figma .profile-hero-grid {
        grid-template-columns: 1fr;
    }

    .profile-figma .profile-right-col {
        min-height: 0;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .profile-figma .profile-photo-accent,
    .profile-figma .profile-photo {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
    }

    .profile-figma .profile-photo-accent {
        width: min(94vw, 502px);
        height: auto;
        aspect-ratio: 502/712;
    }

    .profile-figma .profile-photo {
        width: min(92vw, 492px);
        height: auto;
        aspect-ratio: 506/675;
        margin: -640px auto 0;
    }

    .profile-figma .profile-stats {
        margin-top: 26px;
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media (max-width:760px) {

    .profile-figma .profile-bubble {
        width: 100%;
        font-size: 38px;
        min-height: 96px;
    }

    .profile-figma .profile-bubble::after {
        left: 64px;
    }

    .profile-figma .profile-mascot {
        margin-left: auto;
        margin-right: auto;
        width: 200px;
    }

    .profile-figma .profile-heading {
        font-size: 34px;
    }

    .profile-figma .profile-story {
        font-size: 13px;
    }

    .profile-figma .profile-stat-pill,
    .profile-figma .profile-stat-pill-wide {
        width: 100%;
        max-width: 420px;
        height: 122px;
    }

    .profile-figma .profile-stat-pill h2 {
        font-size: 44px;
    }

    .profile-figma .profile-stat-pill p {
        font-size: 26px;
    }

    .profile-figma .profile-footer p {
        font-size: 15px;
    }

}

/* ==========================================================================
   PRODUCT - FIGMA MATCH
   ========================================================================== */

body.product-figma {
    margin: 0;
    background: linear-gradient(180deg, #ff7a00 0%, #f16000 62%, #ee5900 100%);
    font-family: 'Work Sans', sans-serif;
}

.product-figma .product-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, #ff7a00 0%, #f16000 62%, #ee5900 100%);
}

.product-figma .product-bg-glow {
    position: absolute;
    inset: -380px auto auto -320px;
    width: 1500px;
    height: 1500px;
    border-radius: 50%;
    background: #d32027;
    filter: blur(290px);
    opacity: .32;
    pointer-events: none;
}

.product-figma .figma-topbar {
    position: relative;
    z-index: 4;
    height: 158px;
    margin-top: 0;
    padding: 20px 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffce07;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.product-figma .figma-logo-link {
    display: flex;
    align-items: center;
}

.product-figma .figma-logo {
    width: 276px;
    height: auto;
    display: block;
}

.product-figma .figma-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: 28px;
}

.product-figma .figma-nav-link {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    width: 76px;
}

.product-figma .figma-nav-icon {
    width: 58px;
    height: auto;
    object-fit: contain;
}

.product-figma .figma-cart-link {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 4px solid #d32027;
    border-radius: 14px;
    color: #d32027;
    background: transparent;
    font-size: 32px;
}

.product-figma .figma-cart-count {
    position: absolute;
    right: -7px;
    top: -8px;
    min-width: 22px;
    height: 22px;
    padding: 0 4px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #d32027;
    color: #ffce07;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.product-figma .product-main {
    position: relative;
    z-index: 2;
    padding: 76px 74px 160px;
}

.product-figma .product-title-wrap {
    position: relative;
    width: 850px;
    height: 145px;
    margin: 0 auto 50px;
}

.product-figma .product-pembatas {
    position: relative;
    width: calc(100% + 148px);
    margin-left: -74px;
    margin-right: -74px;
    height: 74px;
    margin-bottom: 60px;
    background: url('assets/pembatas merah.png') repeat-x center;
    background-size: auto 74px;
}

.product-figma .product-title-box {
    position: absolute;
    inset: 0;
    border-radius: 44px;
    background: #fff;
}

.product-figma .product-title {
    position: relative;
    margin: 0;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 100px;
    font-family: 'Modak', cursive;
    font-weight: 400;
}

.product-figma .product-title-icon {
    height: 85px;
    width: auto;
    object-fit: contain;
}

.product-figma .title-yellow {
    color: #ffce07;
}

.product-figma .title-red {
    color: #d32027;
}

.product-figma .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 467px);
    justify-content: center;
    gap: 78px 203px;
}

.product-figma .product-figma-card {
    width: 467px;
    min-height: 491px;
    border-radius: 84px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 18px 28px rgba(0, 0, 0, .14);
}

.product-figma .product-figma-card-top {
    height: 269px;
    background: #ffce07;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 84px;
    border-top-right-radius: 84px;
}

.product-figma .product-figma-img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-figma .product-figma-img-burger {
    max-width: 270px;
    max-height: 193px;
}

.product-figma .product-figma-img-wings {
    max-width: 295px;
    max-height: 193px;
}

.product-figma .product-figma-img-mac {
    max-width: 261px;
    max-height: 228px;
}

.product-figma .product-figma-img-fries {
    max-width: 279px;
    max-height: 229px;
}

.product-figma .product-figma-img-burn {
    max-width: 354px;
    max-height: 200px;
}

.product-figma .product-figma-img-panna {
    max-width: 271px;
    max-height: 240px;
}

.product-figma .product-figma-card-body {
    padding: 18px 36px 30px;
}

.product-figma .product-figma-card-body h2 {
    margin: 0;
    color: #d32027;
    font-size: 44px;
    line-height: 1.05;
    font-weight: 700;
}

.product-figma .product-figma-card-body p {
    margin: 10px 0 22px;
    color: #d32027;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
}

.product-figma .product-figma-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.product-figma .product-figma-row strong {
    color: #d32027;
    font-size: 32px;
    font-weight: 700;
}

.product-figma .product-figma-add {
    width: 140px;
    height: 42px;
    border: none;
    border-radius: 92px;
    background: #d32027;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.product-figma .product-page::before,
.product-figma .product-page::after {
    content: "";
    position: absolute;
    border: 10px solid rgba(255, 205, 0, .45);
    border-radius: 50%;
    pointer-events: none;
}

.product-figma .product-page::before {
    width: 250px;
    height: 176px;
    left: 28px;
    bottom: 248px;
    transform: rotate(-14deg);
}

.product-figma .product-page::after {
    width: 268px;
    height: 268px;
    right: -38px;
    bottom: 168px;
}

.product-figma .product-footer {
    position: relative;
    z-index: 3;
    height: 74px;
    background: #ffce07;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-figma .product-footer p {
    margin: 0;
    color: #d32027;
    font-size: 24px;
    line-height: 1;
}

@media (max-width:1320px) {

    .product-figma .figma-topbar {
        height: auto;
        padding: 16px 20px;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .product-figma .figma-logo {
        width: 200px;
    }

    .product-figma .figma-nav {
        margin: 0;
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .product-figma .figma-nav-link {
        width: 24%;
    }

    .product-figma .figma-nav-icon {
        width: 52px;
    }

    .product-figma .figma-cart-link {
        position: absolute;
        right: 20px;
        top: 14px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .product-figma .product-main {
        padding: 34px 20px 100px;
    }

    .product-figma .product-title-wrap {
        width: min(96vw, 850px);
        height: 110px;
        margin-bottom: 30px;
    }

    .product-figma .product-pembatas {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        height: 56px;
        margin-bottom: 36px;
        background-size: auto 56px;
    }

    .product-figma .product-title {
        height: 110px;
        font-size: 74px;
        gap: 14px;
    }

    .product-figma .product-title-icon {
        height: 64px;
    }

    .product-figma .product-grid {
        grid-template-columns: repeat(2, minmax(0, 467px));
        gap: 30px;
    }

}

@media (max-width:1024px) {

    .product-figma .product-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .product-figma .product-figma-card {
        width: min(95vw, 520px);
        min-height: 0;
    }

    .product-figma .product-figma-card-top {
        height: 240px;
    }

    .product-figma .product-figma-card-body h2 {
        font-size: 36px;
    }

    .product-figma .product-figma-card-body p {
        font-size: 24px;
    }

    .product-figma .product-figma-row strong {
        font-size: 30px;
    }

}

@media (max-width:700px) {

    .product-figma .product-title-wrap {
        height: 90px;
    }

    .product-figma .product-title {
        height: 90px;
        font-size: 52px;
        gap: 10px;
    }

    .product-figma .product-title-icon {
        height: 48px;
    }

    .product-figma .product-figma-card-body {
        padding: 18px 22px 24px;
    }

    .product-figma .product-figma-card-body h2 {
        font-size: 30px;
    }

    .product-figma .product-figma-card-body p {
        font-size: 20px;
    }

    .product-figma .product-figma-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-figma .product-figma-row strong {
        font-size: 28px;
    }

    .product-figma .product-figma-add {
        width: 160px;
    }

    .product-figma .product-footer p {
        font-size: 15px;
    }

}

/* ==========================================================================
   CONTACT - FIGMA MATCH
   ========================================================================== */

body.contact-figma {
    margin: 0;
    background: linear-gradient(180deg, #ff7a00 0%, #f16000 66%, #ee5900 100%);
    font-family: 'Work Sans', sans-serif;
}

.contact-figma .contact-page-figma {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, #ff7a00 0%, #f16000 66%, #ee5900 100%);
}

.contact-figma .contact-bg-glow {
    position: absolute;
    inset: -390px auto auto -330px;
    width: 1500px;
    height: 1500px;
    border-radius: 50%;
    background: #d32027;
    filter: blur(290px);
    opacity: .33;
    pointer-events: none;
}

.contact-figma .figma-topbar {
    position: relative;
    z-index: 4;
    height: 158px;
    margin-top: 0;
    padding: 20px 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffce07;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.contact-figma .figma-logo-link {
    display: flex;
    align-items: center;
}

.contact-figma .figma-logo {
    width: 276px;
    height: auto;
    display: block;
}

.contact-figma .figma-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: 28px;
}

.contact-figma .figma-nav-link {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    width: 76px;
}

.contact-figma .figma-nav-icon {
    width: 58px;
    height: auto;
    object-fit: contain;
}

.contact-figma .figma-cart-link {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 4px solid #d32027;
    border-radius: 14px;
    color: #d32027;
    font-size: 32px;
}

.contact-figma .figma-cart-count {
    position: absolute;
    right: -7px;
    top: -8px;
    min-width: 22px;
    height: 22px;
    padding: 0 4px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #d32027;
    color: #ffce07;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.contact-figma .contact-main-figma {
    position: relative;
    z-index: 2;
    padding: 96px 120px 88px;
}

.contact-figma .contact-top-grid-figma {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: start;
}

.contact-figma .contact-title-figma {
    margin: 0 0 36px;
    font-family: 'Modak', cursive;
    font-size: 128px;
    line-height: .98;
    font-weight: 400;
}

.contact-figma .contact-title-yellow {
    color: #ffce07;
}

.contact-figma .contact-title-white {
    color: #fff;
}

.contact-figma .contact-social-list-figma {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.contact-figma .contact-social-card-figma {
    width: 395px;
    height: 107px;
    border-radius: 44px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 32px;
    color: #d32027;
    box-shadow: 0 10px 16px rgba(0, 0, 0, .12);
}

.contact-figma .contact-social-card-figma i {
    width: 70px;
    font-size: 56px;
    text-align: center;
}

.contact-figma .contact-social-icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-figma .contact-social-card-figma span {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.contact-figma .contact-right-col-figma {
    position: relative;
    min-height: 670px;
}

.contact-figma .contact-waiter-accent-figma {
    position: absolute;
    right: 0;
    top: 45px;
    width: 502px;
    height: 641px;
    background: #ffce07;
    border-radius: 84px;
}

.contact-figma .contact-waiter-figma {
    position: absolute;
    left: 250px;
    top: 58px;
    width: 566px;
    height: 629px;
    object-fit: contain;
}

.contact-figma .contact-pembatas {
    position: relative;
    width: calc(100% + 240px);
    margin-left: -120px;
    margin-right: -120px;
    height: 74px;
    margin-top: 60px;
    margin-bottom: 60px;
    background: url('assets/pembatas putih.png') repeat-x center;
    background-size: auto 74px;
}

.contact-figma .contact-map-section-figma {
    margin-top: 0;
}

.contact-figma .contact-map-frame-figma {
    width: 100%;
    max-width: 2000px;
    height: 600px;
    border-radius: 85px;
    background: #ffce07;
    padding: 50px 0 0;
    overflow: hidden;

}

.contact-figma .contact-map-img-figma {
    width: 100%;
    height: 488px;
    object-fit: cover;
    border-radius: 84px;
}

.contact-figma .contact-map-btn-figma {
    margin: 60px auto 0;
    width: 506px;
    height: 140px;
    border-radius: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #d32027;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 12px 20px rgba(0, 0, 0, .16);
}

.contact-figma .contact-footer-figma {
    position: relative;
    z-index: 3;
    height: 74px;
    background: #ffce07;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-figma .contact-footer-figma p {
    margin: 0;
    color: #d32027;
    font-size: 24px;
    line-height: 1;
}

@media (max-width:1320px) {

    .contact-figma .figma-topbar {
        height: auto;
        padding: 16px 20px;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .contact-figma .figma-logo {
        width: 200px;
    }

    .contact-figma .figma-nav {
        margin: 0;
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .contact-figma .figma-nav-link {
        width: 24%;
    }

    .contact-figma .figma-nav-icon {
        width: 52px;
    }

    .contact-figma .figma-cart-link {
        position: absolute;
        right: 20px;
        top: 14px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .contact-figma .contact-main-figma {
        padding: 40px 22px 60px;
    }

    .contact-figma .contact-pembatas {
        width: calc(100% + 44px);
        margin-left: -22px;
        margin-right: -22px;
        height: 56px;
        margin-top: 40px;
        margin-bottom: 40px;
        background-size: auto 56px;
    }

    .contact-figma .contact-top-grid-figma {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-figma .contact-title-figma {
        font-size: 92px;
        margin-bottom: 20px;
    }

    .contact-figma .contact-social-card-figma {
        width: min(100%, 460px);
        height: 94px;
    }

    .contact-figma .contact-social-card-figma i {
        width: 58px;
        font-size: 46px;
    }

    .contact-figma .contact-social-card-figma span {
        font-size: 34px;
    }

    .contact-figma .contact-right-col-figma {
        min-height: 0;
        display: flex;
        justify-content: center;
    }

    .contact-figma .contact-waiter-accent-figma {
        position: relative;
        top: auto;
        right: auto;
        width: min(94vw, 502px);
        height: auto;
        aspect-ratio: 502/641;
    }

    .contact-figma .contact-waiter-figma {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 12px;
        width: min(96vw, 566px);
        height: auto;
    }

    .contact-figma .contact-map-section-figma {
        margin-top: 34px;
    }

    .contact-figma .contact-map-frame-figma {
        width: 100%;
        max-width: 1155px;
        height: 600px;
        border-radius: 85px;
        background: #ffce07;
        padding: 50px 0 0;
        overflow: hidden;
    }

    .contact-figma .contact-map-img-figma {
        height: auto;
        border-radius: 30px;
    }

    .contact-figma .contact-map-btn-figma {
        width: min(100%, 506px);
        height: 110px;
        margin-top: 26px;
        font-size: 30px;
    }

}

@media (max-width:760px) {

    .contact-figma .contact-title-figma {
        font-size: 72px;
    }

    .contact-figma .contact-social-card-figma {
        height: 84px;
        gap: 18px;
        padding: 0 20px;
    }

    .contact-figma .contact-social-card-figma i {
        width: 42px;
        font-size: 34px;
    }

    .contact-figma .contact-social-card-figma span {
        font-size: 28px;
    }

    .contact-figma .contact-map-btn-figma {
        height: 96px;
        font-size: 24px;
        padding: 0 16px;
    }

    .contact-figma .contact-footer-figma p {
        font-size: 15px;
    }

}