* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #080706;
    color: #f7f4f1;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */

.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    background: #080706;
    border-bottom: 1px solid #241812;
}

.logo {
    font-size: 27px;
    font-weight: 700;
}

.logo span {
    color: #c77a3d;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    font-size: 14px;
    color: #e8d5c4;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #c77a3d;
}

.nav-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-cart {
    border: 1px solid #51301f;
    padding: 11px 20px;
    border-radius: 25px;
}

.btn-order {
    background: #8b4d28;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-order:hover {
    background: #a96032;
}

/* =========================
   NAVBAR WRAPPER
========================= */

.mobile-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}


/* Hamburger disembunyikan di desktop */

.mobile-menu-button {
    display: none;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 610px;
    padding: 60px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    background:
        radial-gradient(
            circle at 70% 50%,
            #2b170f 0%,
            #120c09 35%,
            #080706 70%
        );
}

.hero-content {
    width: 50%;
    position: relative;
    z-index: 2;
}

.hero-small {
    color: #c77a3d;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: 1.12;
    color: #f7f4f1;
    margin-bottom: 22px;
}

.hero h1 span {
    color: #b96c3a;
}

.hero-description {
    max-width: 500px;
    color: #bdb2ab;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}


/* BUTTON */

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 7px;
    font-size: 14px;
    transition: 0.3s;
}

.hero-btn-primary {
    background: linear-gradient(
        135deg,
        #6e391f,
        #a85f32
    );

    color: white;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    background: #b86c3c;
}

.hero-btn-secondary {
    border: 1px solid #9a5832;
    color: #f7f4f1;
}

.hero-btn-secondary:hover {
    background: #3b2116;
}


/* FEATURES */

.hero-features {
    display: flex;
    gap: 35px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 45px;
    height: 45px;

    border: 1px solid #714127;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #c77a3d;
    font-size: 20px;
}

.feature strong {
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
}

.feature p {
    font-size: 11px;
    color: #8f8580;
}


/* HERO IMAGE */

.hero-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image img {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 650px;

    object-fit: contain;

    filter: drop-shadow(
        0 25px 35px rgba(0, 0, 0, 0.7)
    );
}

.hero-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(139, 77, 40, 0.17);

    filter: blur(80px);
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 42px;
    }
}

/* =========================
   PRODUCT SECTION
========================= */

.products {
    padding: 80px 7%;
    background: #080706;
}

.product-heading {
    text-align: center;
    margin-bottom: 45px;
}

.product-heading > p {
    color: #c77a3d;
    font-style: italic;
    margin-bottom: 8px;
}

.product-heading h2 {
    font-family: Georgia, serif;
    font-size: 38px;
    margin-bottom: 8px;
}

.product-heading h2 span {
    color: #b96c3a;
}

.product-heading small {
    color: #8f8580;
}


/* GRID */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* CARD */

.product-card {
    background: linear-gradient(
        145deg,
        #15110f,
        #0d0b0a
    );

    border: 1px solid #2d211b;
    border-radius: 15px;

    overflow: hidden;

    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: #714127;
}


/* IMAGE */

.product-image {
    height: 230px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            #2b1a12,
            #0d0b0a 70%
        );
}

.product-image img {
    width: 90%;
    height: 90%;

    object-fit: contain;

    transition: 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}


/* INFORMATION */

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-price {
    color: #d58a50;
    font-weight: bold;
    margin-bottom: 7px;
}

.product-stock {
    color: #83766f;
    font-size: 12px;
    margin-bottom: 17px;
}


/* ADD BUTTON */

.btn-add {
    display: block;

    text-align: center;

    padding: 11px;

    border-radius: 7px;

    background: #57301f;

    color: #fff;

    transition: 0.3s;
}

.btn-add:hover {
    background: #8b4d28;
}


/* ALL MENU */

.all-menu {
    text-align: center;
    margin-top: 35px;
}

.all-menu a {
    display: inline-block;

    border: 1px solid #714127;

    padding: 12px 25px;

    border-radius: 25px;

    color: #d58a50;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .product-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
   PROMO
========================= */

.promo {
    margin: 30px 7% 80px;
    min-height: 330px;

    padding: 45px 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    overflow: hidden;

    border: 1px solid #3b271c;
    border-radius: 20px;

    background:
        radial-gradient(
            circle at 80% 50%,
            #4a2818 0%,
            #24150f 30%,
            #110d0b 70%
        );
}

.promo::before {
    content: "";

    position: absolute;
    width: 350px;
    height: 350px;

    right: -100px;
    top: -130px;

    border-radius: 50%;

    background: rgba(199, 122, 61, 0.08);
}

.promo-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.promo-small {
    color: #c77a3d;
    font-style: italic;
    margin-bottom: 10px;
}

.promo h2 {
    font-family: Georgia, serif;
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.promo h2 span {
    color: #c77a3d;
}

.promo-description {
    color: #a99d96;
    line-height: 1.7;
    margin-bottom: 22px;
}


/* PROMO CODE */

.promo-code {
    max-width: 420px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 18px;
    margin-bottom: 25px;

    border: 1px dashed #8b4d28;
    border-radius: 8px;

    background: rgba(0, 0, 0, 0.25);
}

.promo-code div {
    display: flex;
    flex-direction: column;
}

.promo-code small {
    color: #81736c;
    font-size: 10px;
}

.promo-code strong {
    color: #e1a06e;
    letter-spacing: 2px;
}

.promo-code > span {
    color: #d58a50;
}


/* BUTTON */

.promo-button {
    display: inline-block;

    padding: 13px 24px;

    border-radius: 7px;

    background: #8b4d28;
    color: white;

    transition: 0.3s;
}

.promo-button:hover {
    background: #ad6234;
    transform: translateY(-2px);
}


/* DISCOUNT CIRCLE */

.promo-decoration {
    width: 300px;

    display: flex;
    justify-content: center;

    position: relative;
    z-index: 2;
}

.discount-circle {
    width: 190px;
    height: 190px;

    border-radius: 50%;

    border: 2px solid #9b5b35;

    background:
        radial-gradient(
            circle,
            #512a19,
            #1d110d
        );

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 0 70px rgba(177, 93, 44, 0.25);
}

.discount-circle small {
    color: #ba8c70;
    letter-spacing: 3px;
}

.discount-circle strong {
    font-family: Georgia, serif;

    font-size: 52px;

    color: #e3a16f;
}

.discount-circle span {
    color: #a99d96;
    font-size: 12px;
}


/* MOBILE */

@media (max-width: 800px) {

    .promo {
        padding: 40px 25px;
        flex-direction: column;
        text-align: center;
    }

    .promo-code {
        margin-left: auto;
        margin-right: auto;
    }

    .promo-decoration {
        margin-top: 40px;
    }

    .promo h2 {
        font-size: 30px;
    }
}

/* =========================
   CARA ORDER
========================= */

.order-steps {
    padding: 90px 7%;
    background:
        radial-gradient(
            circle at 50% 100%,
            #20130e 0%,
            #080706 50%
        );
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading > p {
    color: #c77a3d;
    font-style: italic;
    margin-bottom: 8px;
}

.section-heading h2 {
    font-family: Georgia, serif;
    font-size: 38px;
    margin-bottom: 10px;
}

.section-heading h2 span {
    color: #c77a3d;
}

.section-heading small {
    color: #8f8580;
}


/* STEPS */

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card {
    width: 190px;
    min-height: 230px;

    position: relative;

    text-align: center;

    padding: 30px 15px;

    border: 1px solid #30231d;
    border-radius: 15px;

    background: linear-gradient(
        145deg,
        #15110f,
        #0c0a09
    );

    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-7px);
    border-color: #75462c;
}

.step-number {
    position: absolute;
    top: 12px;
    right: 15px;

    font-family: Georgia, serif;
    font-size: 22px;

    color: #4c3428;
}

.step-icon {
    width: 65px;
    height: 65px;

    margin: 5px auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25160f;
    border: 1px solid #54301f;

    font-size: 27px;
}

.step-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
}

.step-card p {
    color: #837972;

    font-size: 12px;
    line-height: 1.6;
}


/* CONNECTOR */

.step-line {
    width: 40px;
    height: 1px;

    background: #54301f;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .steps-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .step-line {
        display: none;
    }
}

@media (max-width: 500px) {

    .step-card {
        width: 100%;
    }
}

/* =========================
   ABOUT
========================= */

.about {
    padding: 90px 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

    background:
        radial-gradient(
            circle at 20% 50%,
            #21130e,
            #080706 55%
        );

    border-top: 1px solid #211812;
}

.about-content {
    width: 50%;
}

.about-small {
    color: #c77a3d;
    font-style: italic;
    margin-bottom: 10px;
}

.about h2 {
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 22px;
}

.about h2 span {
    color: #c77a3d;
}

.about-content > p:not(.about-small) {
    max-width: 600px;
    color: #968b85;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;
    margin-top: 15px;

    padding: 13px 25px;

    border-radius: 7px;

    background: #6f3b23;
    color: white;

    transition: .3s;
}

.about-btn:hover {
    background: #9c5832;
}


/* STAT */

.about-stats {
    width: 45%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.stat-card {
    min-height: 130px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid #33241d;
    border-radius: 15px;

    background: linear-gradient(
        145deg,
        #17120f,
        #0d0b09
    );
}

.stat-card strong {
    color: #d18751;

    font-family: Georgia, serif;
    font-size: 25px;

    margin-bottom: 8px;
}

.stat-card span {
    color: #81766f;
    font-size: 12px;
}

@media(max-width: 800px) {

    .about {
        flex-direction: column;
    }

    .about-content,
    .about-stats {
        width: 100%;
    }
}

/* =========================
   ADVANTAGES
========================= */

.advantages {
    padding: 35px 7%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    background: #110d0b;

    border-top: 1px solid #2b1e18;
    border-bottom: 1px solid #2b1e18;
}

.advantage {
    display: flex;
    align-items: center;

    gap: 15px;
}

.advantage > span {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25160f;
    border: 1px solid #54301f;

    font-size: 20px;
}

.advantage h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.advantage p {
    color: #776e69;
    font-size: 11px;
}

@media(max-width: 900px) {

    .advantages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {

    .advantages {
        grid-template-columns: 1fr;
    }
}

/* =========================
   FOOTER
========================= */

.footer {
    padding: 65px 7% 25px;

    background: #070605;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.2fr;

    gap: 50px;

    padding-bottom: 45px;
}

.footer-brand h2 {
    font-size: 25px;
    margin-bottom: 15px;
}

.footer-brand h2 span {
    color: #c77a3d;
}

.footer-brand p {
    max-width: 280px;

    color: #776e69;

    font-size: 13px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    color: #d8c8bd;
    margin-bottom: 5px;
}

.footer-column a,
.footer-column p {
    color: #776e69;
    font-size: 12px;

    transition: .3s;
}

.footer-column a:hover {
    color: #c77a3d;
}


/* SOCIAL */

.socials {
    display: flex;
    gap: 8px;

    margin-top: 20px;
}

.socials a {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid #422a1e;

    color: #b56c40;

    font-size: 11px;
}


/* FOOTER BOTTOM */

.footer-bottom {
    padding-top: 22px;

    border-top: 1px solid #211812;

    display: flex;
    justify-content: space-between;

    color: #554d48;
    font-size: 11px;
}


@media(max-width: 800px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================
   MENU PAGE
========================= */

.menu-page {
    min-height: 100vh;
    padding: 70px 7% 100px;

    background:
        radial-gradient(
            circle at 50% 0%,
            #21130e,
            #080706 45%
        );
}

.product-description {
    color: #8f8580;
    font-size: 12px;
    line-height: 1.6;

    min-height: 40px;

    margin-bottom: 12px;
}

.btn-out {
    display: block;

    padding: 11px;

    text-align: center;

    border-radius: 7px;

    background: #25201d;
    color: #746b66;

    cursor: not-allowed;
}

/* =========================
   CART PAGE
========================= */

.cart-page {
    min-height: 100vh;
    padding: 70px 7% 100px;

    background:
        radial-gradient(
            circle at 50% 0%,
            #21130e,
            #080706 45%
        );
}

.cart-title {
    text-align: center;
    margin-bottom: 50px;
}

.cart-title p {
    color: #c77a3d;
    font-style: italic;
}

.cart-title h1 {
    font-family: Georgia, serif;
    font-size: 40px;
    margin-top: 8px;
}

.cart-title h1 span {
    color: #c77a3d;
}


/* EMPTY */

.empty-cart {
    max-width: 600px;

    margin: auto;
    padding: 70px 30px;

    text-align: center;

    border: 1px solid #33241d;
    border-radius: 18px;

    background: #100d0b;
}

.empty-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.empty-cart h2 {
    margin-bottom: 10px;
}

.empty-cart p {
    color: #887c75;
    margin-bottom: 25px;
}

.empty-cart a {
    display: inline-block;

    padding: 13px 25px;

    background: #754126;

    border-radius: 7px;

    color: white;
}


/* LAYOUT */

.cart-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 2fr) minmax(280px, 1fr);

    gap: 30px;

    max-width: 1250px;

    margin: auto;
}


/* ITEM */

.cart-items {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.cart-item {
    display: grid;

    grid-template-columns:
        100px 1fr auto auto 30px;

    gap: 20px;

    align-items: center;

    padding: 18px;

    border: 1px solid #30221b;
    border-radius: 14px;

    background: linear-gradient(
        145deg,
        #15110f,
        #0d0b09
    );
}

.cart-product-image {
    width: 100px;
    height: 90px;

    border-radius: 10px;

    background: #20140f;

    overflow: hidden;
}

.cart-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.cart-product-info h3 {
    margin-bottom: 7px;
}

.cart-product-info p {
    color: #d08750;
    font-size: 14px;

    margin-bottom: 5px;
}

.cart-product-info small {
    color: #746a64;
}


/* QUANTITY */

.cart-quantity {
    display: flex;

    align-items: center;

    border: 1px solid #493024;

    border-radius: 8px;

    overflow: hidden;
}

.cart-quantity a,
.cart-quantity span {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.cart-quantity a {
    background: #21150f;

    color: #d58a50;

    font-size: 20px;
}

.cart-quantity a:hover {
    background: #452718;
}


/* SUBTOTAL */

.cart-subtotal {
    min-width: 100px;

    text-align: right;
}

.cart-subtotal small {
    display: block;

    color: #746a64;

    margin-bottom: 5px;
}

.cart-subtotal strong {
    color: #d58a50;
}


/* DELETE */

.cart-delete {
    color: #a45c4d;

    font-size: 25px;

    text-align: center;
}

.cart-delete:hover {
    color: #e87b65;
}


/* CONTINUE */

.continue-shopping {
    color: #b36b42;

    font-size: 13px;

    margin-top: 10px;
}


/* SUMMARY */

.cart-summary {
    height: fit-content;

    padding: 25px;

    border: 1px solid #3a281f;
    border-radius: 15px;

    background: linear-gradient(
        145deg,
        #17110e,
        #0d0a09
    );

    position: sticky;

    top: 100px;
}

.cart-summary h3 {
    margin-bottom: 25px;
}

.summary-row,
.summary-total {
    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.summary-row {
    color: #91857e;

    font-size: 13px;
}

.summary-divider {
    height: 1px;

    background: #33241d;

    margin: 20px 0;
}

.summary-total {
    align-items: center;

    margin-bottom: 25px;
}

.summary-total strong {
    color: #df9157;

    font-family: Georgia, serif;

    font-size: 21px;
}


/* CHECKOUT */

.checkout-button {
    display: block;

    padding: 14px;

    text-align: center;

    border-radius: 8px;

    background: linear-gradient(
        135deg,
        #6d3a22,
        #a35b31
    );

    color: white;

    font-weight: 600;
}

.checkout-button:hover {
    background: #a85e33;
}

.summary-note {
    color: #665d58;

    text-align: center;

    font-size: 10px;

    margin-top: 15px;
}


/* MOBILE */

@media(max-width: 850px) {

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media(max-width: 650px) {

    .cart-item {
        grid-template-columns:
            80px 1fr;
    }

    .cart-product-image {
        width: 80px;
        height: 80px;
    }

    .cart-quantity,
    .cart-subtotal {
        grid-column: 2;
    }

    .cart-subtotal {
        text-align: left;
    }

    .cart-delete {
        position: absolute;
        right: 15px;
    }

    .cart-item {
        position: relative;
    }
}

/* =========================
   CART BADGE
========================= */

.btn-cart {
    position: relative;
}

.cart-badge {
    position: absolute;

    top: -9px;
    right: -9px;

    min-width: 21px;
    height: 21px;

    padding: 0 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50px;

    background: #c77a3d;
    color: #fff;

    font-size: 10px;
    font-weight: bold;

    border: 2px solid #080706;
}

/* =========================
   CHECKOUT
========================= */

.checkout-page {
    min-height: 100vh;

    padding: 70px 7% 100px;

    background:
        radial-gradient(
            circle at 50% 0%,
            #21130e,
            #080706 45%
        );
}

.checkout-heading {
    text-align: center;
    margin-bottom: 50px;
}

.checkout-heading > p {
    color: #c77a3d;
    font-style: italic;
}

.checkout-heading h1 {
    font-family: Georgia, serif;
    font-size: 40px;

    margin: 8px 0;
}

.checkout-heading h1 span {
    color: #c77a3d;
}

.checkout-heading small {
    color: #81766f;
}


/* LAYOUT */

.checkout-layout {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(300px, 1fr);

    gap: 30px;

    align-items: start;
}


/* CARD */

.checkout-form {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.checkout-card {
    padding: 28px;

    border: 1px solid #33241d;
    border-radius: 16px;

    background: linear-gradient(
        145deg,
        #15110f,
        #0c0a09
    );
}

.checkout-card-title {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 28px;
}

.checkout-card-title > span {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #2b190f;
    border: 1px solid #684027;

    color: #d58a50;

    font-family: Georgia, serif;
}

.checkout-card-title h3 {
    margin-bottom: 4px;
}

.checkout-card-title p {
    color: #776d67;
    font-size: 11px;
}


/* INPUT */

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;

    color: #bdb1aa;

    font-size: 12px;

    margin-bottom: 8px;
}

.form-group label small {
    color: #665e59;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px 15px;

    outline: none;

    border: 1px solid #38271f;
    border-radius: 8px;

    background: #0a0807;

    color: #eee5df;

    font-family: inherit;

    transition: .3s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #8b4d28;

    box-shadow:
        0 0 0 3px
        rgba(139, 77, 40, .1);
}


/* PAYMENT */

.payment-option {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 17px;

    margin-bottom: 12px;

    cursor: pointer;

    border: 1px solid #33241d;
    border-radius: 10px;

    background: #0d0a09;

    transition: .3s;
}

.payment-option:hover {
    border-color: #75452b;
}

.payment-option input {
    accent-color: #a75d32;
}

.payment-option div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.payment-option strong {
    font-size: 13px;
}

.payment-option small {
    color: #716862;
    font-size: 10px;
}


/* SUMMARY */

.checkout-summary {
    padding: 25px;

    position: sticky;
    top: 100px;

    border: 1px solid #3b2920;
    border-radius: 16px;

    background: linear-gradient(
        145deg,
        #17110e,
        #0c0908
    );
}

.checkout-summary > h3 {
    margin-bottom: 25px;
}

.checkout-products {
    display: flex;
    flex-direction: column;

    gap: 17px;
}

.checkout-product {
    display: grid;

    grid-template-columns:
        55px 1fr auto;

    gap: 12px;

    align-items: center;
}

.checkout-product img {
    width: 55px;
    height: 55px;

    object-fit: contain;

    border-radius: 8px;

    background: #21140f;
}

.checkout-product div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.checkout-product strong {
    font-size: 12px;
}

.checkout-product small {
    color: #746a64;
    font-size: 10px;
}

.checkout-product > span {
    color: #c87b48;

    font-size: 11px;

    white-space: nowrap;
}

.checkout-divider {
    height: 1px;

    margin: 25px 0;

    background: #33241d;
}

.checkout-total {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}

.checkout-total span {
    color: #aaa099;
    font-size: 12px;
}

.checkout-total strong {
    color: #e29359;

    font-family: Georgia, serif;

    font-size: 21px;
}


/* BUTTON */

.place-order-button {
    width: 100%;

    padding: 14px;

    cursor: pointer;

    border: none;
    border-radius: 8px;

    background: linear-gradient(
        135deg,
        #713d23,
        #a75c31
    );

    color: white;

    font-weight: 600;

    transition: .3s;
}

.place-order-button:hover {
    transform: translateY(-2px);

    background: #ae6338;
}

.checkout-security {
    margin-top: 15px;

    text-align: center;

    color: #655d58;

    font-size: 10px;
}


/* ERROR */

.checkout-error {
    max-width: 1200px;

    margin: 0 auto 20px;

    padding: 14px 18px;

    border: 1px solid #713c32;
    border-radius: 8px;

    background: #291411;

    color: #df8d7d;

    font-size: 12px;
}


/* =========================
   SUCCESS
========================= */

.checkout-success {
    min-height: calc(100vh - 80px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px 20px;

    background:
        radial-gradient(
            circle,
            #25150f,
            #080706 60%
        );
}

.success-box {
    width: 100%;
    max-width: 550px;

    padding: 55px 35px;

    text-align: center;

    border: 1px solid #3c2a20;
    border-radius: 20px;

    background: #100d0b;
}

.success-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #332015;
    border: 1px solid #87502f;

    color: #d98c53;

    font-size: 30px;
}

.success-small {
    color: #c77a3d;

    font-style: italic;

    margin-bottom: 7px;
}

.success-box h1 {
    font-family: Georgia, serif;

    font-size: 38px;

    margin-bottom: 10px;
}

.success-box > p {
    color: #8c817a;
}

.invoice-box {
    margin: 30px 0 15px;

    padding: 18px;

    border: 1px dashed #714329;
    border-radius: 10px;

    background: #0a0807;
}

.invoice-box small {
    display: block;

    color: #6e655f;

    margin-bottom: 7px;
}

.invoice-box strong {
    color: #dd8b52;

    letter-spacing: 1px;
}

.success-note {
    font-size: 11px;

    margin-bottom: 25px;
}

.success-button {
    display: inline-block;

    padding: 13px 25px;

    border-radius: 8px;

    background: #754126;

    color: white;
}


/* RESPONSIVE */

@media(max-width: 850px) {

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

/* =========================
   CEK PESANAN
========================= */

.track-page {
    min-height: 100vh;

    padding: 70px 7% 100px;

    background:
        radial-gradient(
            circle at 50% 0%,
            #21130e,
            #080706 50%
        );
}

.track-heading {
    text-align: center;
    margin-bottom: 35px;
}

.track-heading p {
    color: #c77a3d;
    font-style: italic;
}

.track-heading h1 {
    margin: 8px 0;

    font-family: Georgia, serif;
    font-size: 40px;
}

.track-heading h1 span {
    color: #c77a3d;
}

.track-heading small {
    color: #81766f;
}


/* SEARCH */

.track-search {
    max-width: 650px;

    margin: 0 auto 35px;

    display: flex;

    padding: 7px;

    border: 1px solid #3b2920;
    border-radius: 10px;

    background: #0d0a09;
}

.track-search input {
    flex: 1;

    padding: 13px;

    border: none;
    outline: none;

    background: transparent;

    color: white;
}

.track-search button {
    padding: 12px 20px;

    border: none;
    border-radius: 7px;

    cursor: pointer;

    background: #7b4428;

    color: white;
}


/* ERROR */

.track-error {
    max-width: 650px;

    margin: auto;

    padding: 15px;

    text-align: center;

    border: 1px solid #703b32;
    border-radius: 8px;

    background: #291411;

    color: #e38c7c;
}


/* RESULT */

.track-result {
    max-width: 900px;

    margin: auto;

    padding: 30px;

    border: 1px solid #3b2920;
    border-radius: 17px;

    background: linear-gradient(
        145deg,
        #15110f,
        #0c0a09
    );
}

.track-order-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 25px;

    border-bottom: 1px solid #30221b;
}

.track-order-header small {
    color: #776d67;
}

.track-order-header h2 {
    margin-top: 5px;

    color: #d98950;

    font-size: 18px;
}


/* BADGE */

.status-badge {
    padding: 8px 14px;

    border-radius: 30px;

    font-size: 11px;
}

.status-menunggu {
    background: #352713;
    color: #e1aa54;
}

.status-diproses {
    background: #172a35;
    color: #70b8df;
}

.status-dikirim {
    background: #24203a;
    color: #a99ae7;
}

.status-selesai {
    background: #172d20;
    color: #6fcb8c;
}

.status-dibatalkan {
    background: #351918;
    color: #df756e;
}


/* INFO */

.track-info {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid #30221b;
}

.track-info div {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.track-info small {
    color: #716862;
}

.track-info strong {
    font-size: 13px;
}


/* PROGRESS */

.status-progress {
    display: flex;

    justify-content: space-between;

    padding: 35px 20px;

    border-bottom: 1px solid #30221b;
}

.progress-step {
    flex: 1;

    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 9px;

    color: #554d48;
}

.progress-step:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 17px;
    left: 60%;

    width: 80%;
    height: 2px;

    background: #30231d;
}

.progress-circle {
    width: 35px;
    height: 35px;

    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #181310;

    border: 1px solid #3e3029;
}

.progress-step.active {
    color: #d88950;
}

.progress-step.active .progress-circle {
    background: #62351f;

    border-color: #a35a32;

    color: white;
}

.progress-step.active:not(:last-child)::after {
    background: #6e3d25;
}

.progress-step span {
    font-size: 11px;
}


/* CANCELLED */

.order-cancelled {
    margin: 25px 0;

    padding: 15px;

    text-align: center;

    border-radius: 8px;

    background: #301716;

    color: #dd766e;
}


/* PRODUCTS */

.track-products {
    padding-top: 25px;
}

.track-products h3 {
    margin-bottom: 20px;
}

.track-product {
    display: grid;

    grid-template-columns:
        60px 1fr auto;

    gap: 15px;

    align-items: center;

    padding: 12px 0;

    border-bottom: 1px solid #261c17;
}

.track-product img {
    width: 60px;
    height: 60px;

    object-fit: contain;

    border-radius: 8px;

    background: #21140f;
}

.track-product div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.track-product small {
    color: #746a64;
}

.track-product > span {
    color: #d1824d;

    font-size: 12px;
}


/* TOTAL */

.track-total {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #39271f;
}

.track-total span {
    color: #958983;
}

.track-total strong {
    color: #e18d53;

    font-family: Georgia, serif;

    font-size: 22px;
}


/* MOBILE */

@media(max-width: 650px) {

    .track-search {
        flex-direction: column;
    }

    .track-info {
        grid-template-columns: 1fr;
    }

    .status-progress {
        padding-left: 0;
        padding-right: 0;
    }

    .progress-step span {
        font-size: 9px;
    }
}/* =========================
   CEK PESANAN
========================= */

.track-page {
    min-height: 100vh;

    padding: 70px 7% 100px;

    background:
        radial-gradient(
            circle at 50% 0%,
            #21130e,
            #080706 50%
        );
}

.track-heading {
    text-align: center;
    margin-bottom: 35px;
}

.track-heading p {
    color: #c77a3d;
    font-style: italic;
}

.track-heading h1 {
    margin: 8px 0;

    font-family: Georgia, serif;
    font-size: 40px;
}

.track-heading h1 span {
    color: #c77a3d;
}

.track-heading small {
    color: #81766f;
}


/* SEARCH */

.track-search {
    max-width: 650px;

    margin: 0 auto 35px;

    display: flex;

    padding: 7px;

    border: 1px solid #3b2920;
    border-radius: 10px;

    background: #0d0a09;
}

.track-search input {
    flex: 1;

    padding: 13px;

    border: none;
    outline: none;

    background: transparent;

    color: white;
}

.track-search button {
    padding: 12px 20px;

    border: none;
    border-radius: 7px;

    cursor: pointer;

    background: #7b4428;

    color: white;
}


/* ERROR */

.track-error {
    max-width: 650px;

    margin: auto;

    padding: 15px;

    text-align: center;

    border: 1px solid #703b32;
    border-radius: 8px;

    background: #291411;

    color: #e38c7c;
}


/* RESULT */

.track-result {
    max-width: 900px;

    margin: auto;

    padding: 30px;

    border: 1px solid #3b2920;
    border-radius: 17px;

    background: linear-gradient(
        145deg,
        #15110f,
        #0c0a09
    );
}

.track-order-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 25px;

    border-bottom: 1px solid #30221b;
}

.track-order-header small {
    color: #776d67;
}

.track-order-header h2 {
    margin-top: 5px;

    color: #d98950;

    font-size: 18px;
}


/* BADGE */

.status-badge {
    padding: 8px 14px;

    border-radius: 30px;

    font-size: 11px;
}

.status-menunggu {
    background: #352713;
    color: #e1aa54;
}

.status-diproses {
    background: #172a35;
    color: #70b8df;
}

.status-dikirim {
    background: #24203a;
    color: #a99ae7;
}

.status-selesai {
    background: #172d20;
    color: #6fcb8c;
}

.status-dibatalkan {
    background: #351918;
    color: #df756e;
}


/* INFO */

.track-info {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid #30221b;
}

.track-info div {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.track-info small {
    color: #716862;
}

.track-info strong {
    font-size: 13px;
}


/* PROGRESS */

.status-progress {
    display: flex;

    justify-content: space-between;

    padding: 35px 20px;

    border-bottom: 1px solid #30221b;
}

.progress-step {
    flex: 1;

    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 9px;

    color: #554d48;
}

.progress-step:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 17px;
    left: 60%;

    width: 80%;
    height: 2px;

    background: #30231d;
}

.progress-circle {
    width: 35px;
    height: 35px;

    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #181310;

    border: 1px solid #3e3029;
}

.progress-step.active {
    color: #d88950;
}

.progress-step.active .progress-circle {
    background: #62351f;

    border-color: #a35a32;

    color: white;
}

.progress-step.active:not(:last-child)::after {
    background: #6e3d25;
}

.progress-step span {
    font-size: 11px;
}


/* CANCELLED */

.order-cancelled {
    margin: 25px 0;

    padding: 15px;

    text-align: center;

    border-radius: 8px;

    background: #301716;

    color: #dd766e;
}


/* PRODUCTS */

.track-products {
    padding-top: 25px;
}

.track-products h3 {
    margin-bottom: 20px;
}

.track-product {
    display: grid;

    grid-template-columns:
        60px 1fr auto;

    gap: 15px;

    align-items: center;

    padding: 12px 0;

    border-bottom: 1px solid #261c17;
}

.track-product img {
    width: 60px;
    height: 60px;

    object-fit: contain;

    border-radius: 8px;

    background: #21140f;
}

.track-product div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.track-product small {
    color: #746a64;
}

.track-product > span {
    color: #d1824d;

    font-size: 12px;
}


/* TOTAL */

.track-total {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #39271f;
}

.track-total span {
    color: #958983;
}

.track-total strong {
    color: #e18d53;

    font-family: Georgia, serif;

    font-size: 22px;
}


/* MOBILE */

@media(max-width: 650px) {

    .track-search {
        flex-direction: column;
    }

    .track-info {
        grid-template-columns: 1fr;
    }

    .status-progress {
        padding-left: 0;
        padding-right: 0;
    }

    .progress-step span {
        font-size: 9px;
    }
}

/* =========================
   PAYMENT METHOD
========================= */

.payment-method {
    margin-top: 25px;
}

.payment-method > label {
    display: block;
    margin-bottom: 12px;

    color: #b8aaa2;
    font-size: 12px;
}

.payment-options {
    display: grid;
    gap: 10px;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-card {
    padding: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid #382820;
    border-radius: 10px;

    background: #0d0a09;

    transition: .2s;
}

.payment-card > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.payment-card strong {
    color: #cbbdb5;
    font-size: 12px;
}

.payment-card small {
    color: #6f655f;
    font-size: 9px;
}

.payment-check {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #493229;
    border-radius: 50%;

    color: transparent;

    font-size: 10px;
}

.payment-option input:checked + .payment-card {
    border-color: #8b5130;

    background:
        linear-gradient(
            135deg,
            #21140f,
            #100c0a
        );
}

.payment-option input:checked + .payment-card strong {
    color: #dd8b52;
}

.payment-option input:checked + .payment-card .payment-check {
    background: #704027;
    border-color: #9c5b35;

    color: white;
}

/* =========================
   MANUAL PAYMENT
========================= */

.manual-payment-page {
    min-height: 100vh;
    padding: 70px 20px;

    background:
        radial-gradient(
            circle at top right,
            #21120c,
            #080605 45%
        );

    color: #fff;
}

.manual-payment-container {
    width: min(950px, 100%);
    margin: auto;
}

.manual-payment-header {
    margin-bottom: 30px;
}

.manual-payment-header p {
    margin-bottom: 7px;

    color: #d2743b;
    font-size: 11px;
    font-style: italic;
}

.manual-payment-header h1 {
    margin-bottom: 8px;

    font-family: Georgia, serif;
    font-size: 34px;
}

.manual-payment-header span {
    color: #85776f;
    font-size: 10px;
}


/* LAYOUT */

.manual-payment-layout {
    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    gap: 20px;

    align-items: start;
}

.manual-payment-layout > div {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* BANK */

.payment-bank-card,
.payment-instruction-card,
.payment-order-card,
.payment-upload-card {
    padding: 25px;

    border: 1px solid #3a281f;
    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #15100d,
            #0c0908
        );
}

.bank-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid #34251e;
}

.bank-card-header small,
.bank-account small,
.bank-owner small {
    color: #756961;
    font-size: 9px;
}

.bank-card-header h2 {
    margin-top: 4px;

    font-family: Georgia, serif;
    font-size: 24px;

    color: #f1e6df;
}

.bank-card-header > span {
    padding: 7px 10px;

    border: 1px solid #654029;
    border-radius: 20px;

    color: #d27b45;
    font-size: 8px;
}


/* ACCOUNT */

.bank-account {
    padding: 22px 0;
}

.bank-account > div {
    margin-top: 7px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.bank-account strong {
    color: #df8750;

    font-family: Georgia, serif;
    font-size: 23px;

    letter-spacing: 1px;
}

.copy-bank-button {
    padding: 8px 13px;

    cursor: pointer;

    border: 1px solid #684029;
    border-radius: 7px;

    background: #21130d;

    color: #d88750;

    font-size: 9px;
}

.bank-owner {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.bank-owner strong {
    color: #cbbdb5;
    font-size: 11px;
}


/* INSTRUCTION */

.payment-instruction-card h3,
.payment-upload-card h3 {
    margin-bottom: 15px;

    font-family: Georgia, serif;
    font-size: 18px;
}

.payment-instruction-card ol {
    padding-left: 18px;

    color: #958981;

    font-size: 10px;

    line-height: 2;
}


/* ORDER */

.payment-order-card > small {
    display: block;

    margin-bottom: 7px;

    color: #70645e;
    font-size: 8px;
}

.payment-invoice-number {
    display: block;

    padding-bottom: 18px;

    color: #d78049;

    font-size: 11px;

    word-break: break-all;
}

.payment-order-row,
.payment-order-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 15px 0;

    border-top: 1px solid #30221c;
}

.payment-order-row span,
.payment-order-total span {
    color: #756a63;
    font-size: 9px;
}

.payment-order-row strong {
    color: #c7bbb4;
    font-size: 10px;
}

.payment-order-total strong {
    color: #e28a50;

    font-family: Georgia, serif;
    font-size: 19px;
}


/* UPLOAD */

.payment-upload-box {
    min-height: 120px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 7px;

    cursor: pointer;

    border: 1px dashed #664029;
    border-radius: 10px;

    background: #0b0807;

    text-align: center;
}

.payment-upload-box strong {
    color: #c98354;
    font-size: 10px;
}

.payment-upload-box span {
    color: #655c56;
    font-size: 8px;
}

.payment-upload-box input {
    margin-top: 8px;

    max-width: 100%;

    color: #887b74;

    font-size: 8px;
}

.payment-submit-button {
    width: 100%;

    margin-top: 12px;
    padding: 12px;

    cursor: pointer;

    border: none;
    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #784225,
            #ad6135
        );

    color: #fff;

    font-size: 9px;
    font-weight: bold;
}


/* STATUS */

.payment-waiting,
.payment-verified {
    padding: 16px;

    border-radius: 8px;

    font-size: 9px;
    line-height: 1.6;
}

.payment-waiting {
    border: 1px solid #60491e;

    background: #211a0c;

    color: #d7a64c;
}

.payment-verified {
    border: 1px solid #295238;

    background: #102319;

    color: #6ac487;
}


/* MESSAGE */

.payment-upload-success {
    margin-bottom: 20px;
    padding: 13px;

    border: 1px solid #285039;
    border-radius: 8px;

    background: #11251a;

    color: #72c68b;

    font-size: 10px;
}

.payment-upload-error {
    margin-bottom: 20px;
    padding: 13px;

    border: 1px solid #63332d;
    border-radius: 8px;

    background: #27110f;

    color: #dc7770;

    font-size: 10px;
}

.payment-check-order {
    display: block;

    padding: 11px;

    border: 1px solid #443027;
    border-radius: 8px;

    color: #aa795b;

    font-size: 9px;

    text-align: center;
    text-decoration: none;
}


/* RESPONSIVE */

@media(max-width: 750px) {

    .manual-payment-layout {
        grid-template-columns: 1fr;
    }

    .manual-payment-page {
        padding: 40px 15px;
    }
}

.payment-rejected {
    margin-bottom: 15px;
    padding: 15px;

    border: 1px solid #65302b;
    border-radius: 8px;

    background: #27110f;

    color: #dc7770;
}

.payment-rejected strong {
    display: block;
    margin-bottom: 7px;

    font-size: 10px;
}

.payment-rejected p {
    margin: 0;

    color: #a56e69;
    font-size: 9px;
    line-height: 1.7;
}

/* =========================
   PAYMENT REJECTED - CEK PESANAN
========================= */

.payment-rejected-notice {
    margin: 20px 0;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border: 1px solid #652e28;
    border-radius: 10px;

    background: #21100e;
}

.payment-rejected-notice strong {
    display: block;

    margin-bottom: 6px;

    color: #e0786e;

    font-size: 11px;
}

.payment-rejected-notice p {
    margin: 0;

    color: #9c706b;

    font-size: 9px;
    line-height: 1.6;
}

.reupload-payment-button {
    flex-shrink: 0;

    padding: 11px 15px;

    border: 1px solid #814138;
    border-radius: 7px;

    background: #49201b;

    color: #ef8b7f;

    font-size: 9px;
    font-weight: bold;

    text-decoration: none;

    transition: .2s;
}

.reupload-payment-button:hover {
    background: #622a23;
}


/* MOBILE */

@media(max-width: 650px) {

    .payment-rejected-notice {
        flex-direction: column;
        align-items: flex-start;
    }

    .reupload-payment-button {
        width: 100%;
        text-align: center;
    }
}

.payment-rejected {
    margin-bottom: 15px;
    padding: 15px;

    border: 1px solid #65302b;
    border-radius: 8px;

    background: #27110f;

    color: #dc7770;
}

.payment-rejected strong {
    display: block;
    margin-bottom: 7px;

    font-size: 10px;
}

.payment-rejected p {
    margin: 0;

    color: #a56e69;
    font-size: 9px;
    line-height: 1.7;
}

/* =========================
   ORDER HISTORY SEARCH
========================= */

.history-divider {
    width: min(650px, 100%);
    margin: 25px auto;

    display: flex;
    align-items: center;

    gap: 15px;

    color: #5f5048;
    font-size: 8px;
}

.history-divider::before,
.history-divider::after {
    content: "";

    flex: 1;
    height: 1px;

    background: #30221c;
}

.order-history-search {
    width: min(650px, 100%);
    margin: 0 auto 20px;
}

.order-history-heading {
    margin-bottom: 12px;
}

.order-history-heading h3 {
    margin-bottom: 4px;

    color: #eee3dc;
    font-family: Georgia, serif;
    font-size: 17px;
}

.order-history-heading p {
    color: #776a63;
    font-size: 9px;
}

.history-search-form {
    display: flex;

    padding: 6px;

    border: 1px solid #422d23;
    border-radius: 9px;

    background: #0c0908;
}

.history-search-form input {
    flex: 1;

    min-width: 0;
    padding: 11px;

    border: none;
    outline: none;

    background: transparent;

    color: #fff;

    font-size: 10px;
}

.history-search-form button {
    padding: 11px 17px;

    cursor: pointer;

    border: none;
    border-radius: 7px;

    background: #92502d;

    color: white;

    font-size: 9px;
    font-weight: bold;
}


/* ERROR */

.history-error {
    width: min(650px, 100%);

    margin: 15px auto;
    padding: 12px 15px;

    border: 1px solid #63302b;
    border-radius: 8px;

    background: #25110f;

    color: #db756c;

    font-size: 9px;
}


/* RESULT */

.order-history-result {
    width: min(900px, 100%);

    margin: 40px auto 0;
}

.history-result-header {
    margin-bottom: 15px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.history-result-header p {
    margin-bottom: 3px;

    color: #cf713a;

    font-size: 9px;
    font-style: italic;
}

.history-result-header h2 {
    color: #eee3dc;

    font-family: Georgia, serif;
    font-size: 24px;
}

.history-result-header > span {
    color: #6d625c;
    font-size: 8px;
}


/* HISTORY CARD */

.history-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.history-card {
    padding: 20px;

    border: 1px solid #3b2920;
    border-radius: 11px;

    background:
        linear-gradient(
            145deg,
            #130e0c,
            #0c0908
        );
}

.history-card-top {
    padding-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid #30221c;
}

.history-card small {
    display: block;

    margin-bottom: 5px;

    color: #6f645e;

    font-size: 8px;
}

.history-card-top strong {
    color: #d77c45;
    font-size: 11px;
}

.history-status {
    padding: 6px 10px;

    border-radius: 20px;

    background: #33260f;

    color: #d9a641;

    font-size: 8px;
}


/* INFORMATION */

.history-info {
    padding: 15px 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.history-info strong {
    color: #c9bdb6;
    font-size: 9px;
}

.history-info .history-total {
    color: #dc8048;
}


/* ACTIONS */

.history-actions {
    padding-top: 13px;

    display: flex;

    gap: 10px;

    border-top: 1px solid #30221c;
}

.history-detail-button,
.history-reupload-button {
    padding: 9px 13px;

    border-radius: 6px;

    font-size: 8px;
    font-weight: bold;

    text-decoration: none;
}

.history-detail-button {
    border: 1px solid #63402e;

    color: #d28659;
}

.history-reupload-button {
    border: 1px solid #73342e;

    background: #351713;

    color: #e1776e;
}


@media(max-width: 650px) {

    .history-search-form {
        flex-direction: column;
    }

    .history-info {
        grid-template-columns: 1fr;
    }

    .history-actions {
        flex-direction: column;
    }

    .history-detail-button,
    .history-reupload-button {
        text-align: center;
    }
}

.rejection-reason-customer {
    margin-top: 12px;
    padding: 12px 14px;

    border: 1px solid #5c2924;
    border-radius: 8px;

    background: #1c0e0c;
}

.rejection-reason-customer small {
    display: block;
    margin-bottom: 5px;

    color: #9b6d65;
    font-size: 9px;
}

.rejection-reason-customer strong {
    display: block;

    color: #e27b70;
    font-size: 10px;
    line-height: 1.5;
}

.track-search-secure {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        auto;

    gap: 8px;
}

.track-search-secure input {
    min-width: 0;
}

@media(max-width: 700px) {

    .track-search-secure {
        grid-template-columns: 1fr;
    }

    .track-search-secure button {
        width: 100%;
    }
}

/* =========================
   MOBILE NAVBAR
========================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    /* NAVBAR */

    .navbar {
        position: relative;

        width: 100%;
        height: 70px;

        padding: 0 20px;

        box-sizing: border-box;

        z-index: 1000;
    }


    /* LOGO */

    .logo {
        font-size: 22px;
        white-space: nowrap;
    }


    /* =========================
       HAMBURGER
    ========================= */

    .mobile-menu-button {

        display: flex;

        width: 42px;
        height: 42px;

        padding: 9px;

        flex-direction: column;
        justify-content: center;
        gap: 5px;

        background: transparent;

        border: 1px solid #51301f;
        border-radius: 8px;

        cursor: pointer;

        z-index: 1002;
    }


    .mobile-menu-button span {

        display: block;

        width: 100%;
        height: 2px;

        background: #e8d5c4;

        border-radius: 10px;

        transition: 0.3s;
    }


    /* Animasi jadi X */

    .mobile-menu-button.active span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }


    /* =========================
       DROPDOWN
    ========================= */

    .mobile-nav-wrapper {

        display: none;

        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        padding: 20px;

        box-sizing: border-box;

        background: #080706;

        border-top: 1px solid #241812;
        border-bottom: 1px solid #51301f;

        flex-direction: column;
        align-items: stretch;

        gap: 20px;

        z-index: 1001;
    }


    .mobile-nav-wrapper.active {
        display: flex;
    }


    /* =========================
       MENU
    ========================= */

    .nav-menu {

        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }


    .nav-menu a {

        width: 100%;

        padding: 13px 5px;

        box-sizing: border-box;

        border-bottom: 1px solid #241812;

        font-size: 14px;
    }


    /* =========================
       ACTION
    ========================= */

    .nav-action {

        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 10px;
    }


    .nav-action a {

        width: 100%;

        box-sizing: border-box;

        text-align: center;
    }


    .btn-cart {
        padding: 12px 15px;
    }


    .nav-track {

        padding: 12px 15px;

        border: 1px solid #51301f;

        border-radius: 8px;
    }


    .btn-order {
        padding: 13px 15px;
    }

}

/* =========================
   MOBILE MENU PRODUK
========================= */

@media (max-width: 768px) {

    /* Section menu */
    .menu-section {
        padding: 55px 15px;
    }

    /* Judul */
    .menu-section h2 {
        font-size: 34px;
        line-height: 1.05;
    }

    /* Grid produk */
  @media (max-width: 768px) {

    .menu-section {
        padding: 50px 12px;
    }

    .menu-grid {
        display: grid;

        /* 2 PRODUK PER BARIS */
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px;

        width: 100%;
        max-width: 380px;

        margin: 25px auto 0;
    }


    /* CARD */

    .menu-card {
        width: 100%;
        min-width: 0;

        padding: 8px;

        box-sizing: border-box;

        border-radius: 12px;
    }


    /* GAMBAR */

    .menu-card img {
        display: block;

        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;

        object-fit: cover;

        margin: 0 auto;

        border-radius: 8px;
    }


    /* ISI CARD */

    .menu-card-content {
        padding: 10px 4px 5px;
    }


    /* NAMA DONAT */

    .menu-card h3 {
        font-size: 14px;
        line-height: 1.25;

        margin-bottom: 5px;
    }


    /* HARGA */

    .menu-card .price {
        font-size: 13px;
    }


    /* STOK */

    .menu-card .stock {
        font-size: 10px;
    }


    /* TOMBOL TAMBAH */

    .menu-card .btn-add {
        width: 100%;

        padding: 9px 4px;

        margin-top: 8px;

        font-size: 11px;
    }
}

    /* Card produk */
    .menu-card {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        border-radius: 14px;
    }

    /* Gambar donat */
    .menu-card img {
        display: block;

        width: 100%;
        max-width: 210px;
        height: 210px;

        margin: 0 auto;

        object-fit: cover;
    }

    /* Isi card */
    .menu-card-content {
        padding: 14px 8px 8px;
    }

    /* Nama produk */
    .menu-card h3 {
        font-size: 16px;
    }

    /* Harga */
    .menu-card .price {
        font-size: 14px;
    }

    /* Tombol tambah */
    .menu-card .btn-add {
        width: 100%;
        padding: 11px 10px;
        font-size: 13px;
    }
}

/* =====================================
   MOBILE PRODUCT GRID - 2 CARD PER BARIS
===================================== */

@media (max-width: 600px) {

    /* MENU PAGE */
    .menu-page {
        padding: 45px 12px 70px;
    }

    .menu-page .section-heading {
        margin-bottom: 28px;
    }

    .menu-page .section-heading h2 {
        font-size: 30px;
    }

    .menu-page .section-heading small {
        font-size: 11px;
    }


    /* 2 PRODUK PER BARIS */
    .menu-page .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }


    /* CARD */
    .menu-page .product-card {
        width: 100%;
        min-width: 0;

        border-radius: 11px;
    }


    /* GAMBAR */
    .menu-page .product-image {
        height: 145px;
    }

    .menu-page .product-image img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }


    /* ISI CARD */
    .menu-page .product-info {
        padding: 12px;
    }

    .menu-page .product-info h3 {
        font-size: 14px;
        margin-bottom: 6px;

        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    /* DESKRIPSI */
    .menu-page .product-description {
        font-size: 9px;
        line-height: 1.4;

        min-height: 26px;
        margin-bottom: 8px;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }


    /* HARGA */
    .menu-page .product-price {
        font-size: 13px;
        margin-bottom: 5px;
    }


    /* STOK */
    .menu-page .product-stock {
        font-size: 9px;
        margin-bottom: 10px;
    }


    /* BUTTON */
    .menu-page .btn-add,
    .menu-page .btn-out {
        padding: 10px 5px;

        font-size: 10px;

        border-radius: 6px;
    }
}

/* =================================
   FORCE 2 KOLOM MENU MOBILE
================================= */

@media screen and (max-width: 600px) {

    body .menu-page .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;

        width: 100% !important;
        max-width: 100% !important;

        padding: 0 !important;
        margin: 25px auto 0 !important;

        box-sizing: border-box !important;
    }

    body .menu-page .product-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;

        margin: 0 !important;
        box-sizing: border-box !important;
    }

    body .menu-page .product-image {
        width: 100% !important;
        height: 140px !important;
    }

    body .menu-page .product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    body .menu-page .product-info {
        padding: 10px !important;
    }

    body .menu-page .product-info h3 {
        font-size: 13px !important;
        line-height: 1.3;
    }

    body .menu-page .product-description {
        font-size: 9px !important;
        line-height: 1.4;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    body .menu-page .product-price {
        font-size: 13px !important;
    }

    body .menu-page .product-stock {
        font-size: 9px !important;
    }

    body .menu-page .btn-add,
    body .menu-page .btn-out {
        width: 100% !important;
        padding: 9px 3px !important;
        font-size: 9px !important;

        box-sizing: border-box !important;
    }
}

/* =====================================
   HOMEPAGE - 2 PRODUK PER BARIS MOBILE
===================================== */

@media screen and (max-width: 600px) {

    .products .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;

        width: 100% !important;
        max-width: 100% !important;
    }

    .products .product-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .products .product-image {
        width: 100% !important;
        height: 140px !important;
    }

    .products .product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .products .product-info {
        padding: 10px !important;
    }

    .products .product-info h3 {
        font-size: 13px !important;
        line-height: 1.3;
    }

    .products .product-description {
        font-size: 9px !important;
        line-height: 1.4;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .products .product-price {
        font-size: 13px !important;
    }

    .products .product-stock {
        font-size: 9px !important;
    }

    .products .btn-add,
    .products .btn-out {
        width: 100% !important;
        padding: 9px 3px !important;
        font-size: 9px !important;
        box-sizing: border-box !important;
    }
}
/* QRIS BELUM TERSEDIA */

.payment-option-disabled {
    cursor: not-allowed;
}

.payment-option-disabled .payment-card {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-option-disabled:hover .payment-card {
    border-color: #51301f;
}

.payment-coming-soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 12px;

    border: 1px solid #6b3b22;
    border-radius: 20px;

    color: #c77a3d;

    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;
}

/* =====================================
   STRUK DIGITAL
===================================== */

.receipt-body {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding: 50px 20px;

    background: #080706;
}


.receipt {
    width: 100%;
    max-width: 500px;

    background: #100d0b;

    border: 1px solid #4a2b1b;
    border-radius: 16px;

    padding: 35px;
}


.receipt-header {
    text-align: center;
}


.receipt-logo {
    font-size: 38px;
    margin-bottom: 8px;
}


.receipt-header h1 {
    margin: 0;

    font-size: 28px;
}


.receipt-header h1 span {
    color: #c77a3d;
}


.receipt-header p {
    margin-top: 6px;

    color: #927d70;

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.receipt-divider {
    border-top: 1px dashed #4a2b1b;
    margin: 25px 0;
}


.receipt-info {
    display: flex;
    flex-direction: column;
    gap: 13px;
}


.receipt-info > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


.receipt-info span {
    color: #927d70;
    font-size: 12px;
}


.receipt-info strong {
    font-size: 12px;
    text-align: right;
}


.receipt-products {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.receipt-product {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


.receipt-product > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.receipt-product small {
    color: #927d70;
}


.receipt-product > strong {
    color: #e77b3b;
}


.receipt-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.receipt-total span {
    font-weight: 700;
}


.receipt-total strong {
    color: #ef8745;
    font-size: 25px;
}


.receipt-status {
    margin-top: 25px;

    text-align: center;
}


.receipt-status span {
    display: inline-block;

    padding: 9px 15px;

    background: #0d2b1c;
    color: #5bd58b;

    border: 1px solid #195c38;
    border-radius: 20px;

    font-size: 11px;
    font-weight: 600;
}


.receipt-footer {
    margin-top: 30px;
    text-align: center;
}


.receipt-footer p {
    margin-bottom: 5px;
}


.receipt-footer small {
    color: #806e63;
}


.receipt-actions {
    margin-top: 30px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}


.receipt-actions button,
.receipt-actions a {
    width: 100%;

    padding: 13px;

    border-radius: 8px;

    text-align: center;
    font-weight: 600;

    box-sizing: border-box;
}


.receipt-actions button {
    background: #a85d32;
    color: #fff;

    border: none;
    cursor: pointer;
}


.receipt-actions a {
    border: 1px solid #4a2b1b;
    color: #d7c2b4;
}


/* =========================
   PRINT
========================= */

@media print {

    .receipt-body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 20px;
    background: #080706;
}

    .receipt {
        width: 100%;
        max-width: 500px;
        background: #100d0b;
        border: 1px solid #4a2b1b;
        border-radius: 16px;
        padding: 35px;
    }

    .receipt-actions {
        display: none;
    }

    .receipt-divider {
        border-color: #999;
    }

    .receipt-info span,
    .receipt-product small,
    .receipt-footer small {
        color: #555;
    }

    .receipt-logo-image {
        width: 200px;
    }

}


/* MOBILE */

@media screen and (max-width: 600px) {

    .receipt-body {
        padding: 20px 12px;
    }

    .receipt {
        padding: 25px 20px;
    }

    .receipt-info > div {
        flex-direction: column;
        gap: 4px;
    }

    .receipt-info strong {
        text-align: left;
    }

}

<link rel="stylesheet" href="assets/css/style.css">

/* =========================
   TOMBOL STRUK PEMBELI
========================= */

.track-receipt {
    margin-top: 20px;
}

.btn-view-receipt {
    width: 100%;
    padding: 14px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #784225,
        #ad6135
    );

    border: 1px solid #b66a3b;
    border-radius: 8px;

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    transition: 0.25s;
}

.btn-view-receipt:hover {
    background: #bd6a3b;
    transform: translateY(-1px);
}

.logo-image {
    width: 320px;
    height: 120px;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.receipt-logo-image {
    width: 220px;
    height: auto;

    display: block;
    margin: 0 auto 12px;

    object-fit: contain;
}

.receipt-header p {
    text-align: center;
    letter-spacing: 3px;
    font-size: 10px;
    color: #a77b68;
}