﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #F5A623;
    --red: #C0392B;
    --black: #0A0A0A;
    --charcoal: #1A1A1A;
    --white: #FFFFFF;
}

html, body {
    height: 100%;
}

body {
    background: var(--black);
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ── HEADER ── */
.site-header {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a0000 50%, #0A0A0A 100%);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--gold);
    flex-shrink: 0;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(192,57,43,0.6);
    border: 2px solid rgba(245,166,35,0.35);
}

    .logo-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    letter-spacing: 2px;
    line-height: 1;
}

    .brand-name span {
        color: var(--gold);
    }

.tagline {
    font-size: 11px;
    color: #999;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
}

.header-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--gold);
    letter-spacing: 2px;
}

/* ── MAIN CONTENT AREA ── */
.page-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 36px 40px;
    gap: 28px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Page heading */
.page-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.page-heading-icon {
    width: 46px;
    height: 46px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(192,57,43,0.5);
}

.page-heading h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
}

.page-heading p {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

/* ── TWO-COLUMN LAYOUT ── */
.location-two-col {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 24px;
    flex: 1;
    min-height: 0;
}

/* ── LEFT PANEL ── */
.location-left {
    background: #161616;
    border: 1px solid rgba(245,166,35,0.15);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .field-group label {
        font-size: 12px;
        font-weight: 600;
        color: #aaa;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .field-group label i {
            color: var(--gold);
            font-size: 14px;
        }

    .field-group select {
        width: 100%;
        background: #0f0f0f;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 10px;
        color: var(--white);
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        padding: 11px 14px;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F5A623' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        transition: border-color 0.2s;
        cursor: pointer;
    }

        .field-group select:focus {
            border-color: rgba(245,166,35,0.5);
        }

        .field-group select option {
            background: #1a1a1a;
            color: #fff;
        }

/* GPS button */
.gps-btn {
    background: transparent;
    border: 1px solid rgba(245,166,35,0.4);
    border-radius: 10px;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, border-color 0.2s;
    width: 100%;
}

    .gps-btn:hover {
        background: rgba(245,166,35,0.08);
        border-color: rgba(245,166,35,0.7);
    }

    .gps-btn i {
        font-size: 16px;
    }

/* Divider inside panel */
.panel-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
}

/* Address display */
.map-pin-label {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .map-pin-label i {
        color: var(--gold);
        font-size: 13px;
    }

.address-box {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 52px;
    line-height: 1.5;
}

    .address-box i {
        color: var(--red);
        font-size: 15px;
        flex-shrink: 0;
        margin-top: 1px;
    }

/* Confirm button */
.confirm-btn {
    margin-top: auto;
    background: var(--red);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 20px rgba(192,57,43,0.4);
}

    .confirm-btn:hover {
        background: #a93226;
    }

    .confirm-btn:active {
        transform: scale(0.98);
    }

/* ── RIGHT PANEL (MAP) ── */
.location-right {
    background: #161616;
    border: 1px solid rgba(245,166,35,0.15);
    border-radius: 16px;
    overflow: hidden;
    min-height: 480px;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 480px;
}
/* ═══════════════════════════════════════════════
             RESPONSIVE PATCH — The Melting Bites Location Page
             Paste inside your existing <style> block or
             append to CustomCSS.css
             ═══════════════════════════════════════════════ */

/* ── Tablet (≤ 900px): stack map below controls ── */
@media (max-width: 900px) {

    /* Header: shrink padding, stack on very narrow */
    .site-header {
        padding: 14px 20px;
    }

    .brand-name {
        font-size: 26px;
    }

    .tagline {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .header-phone {
        font-size: 17px;
    }

    /* Page body: tighter padding */
    .page-body {
        padding: 24px 20px;
        gap: 20px;
    }

    /* Switch two-col → single column, map goes below */
    .location-two-col {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* Map: fixed height so it doesn't collapse */
    .location-right {
        min-height: 340px;
    }

    #map {
        min-height: 340px;
    }
}

/* ── Mobile (≤ 600px): full phone treatment ── */
@media (max-width: 600px) {

    /* Header: logo + phone stacked OR phone hidden */
    .site-header {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
    }

    .brand-name {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    /* Move phone number to its own line, center it */
    .header-phone {
        font-size: 15px;
        width: 100%;
        text-align: center;
        padding-top: 4px;
        border-top: 1px solid rgba(245, 166, 35, 0.15);
    }

    /* Page body: edge-to-edge feel */
    .page-body {
        padding: 18px 14px;
        gap: 16px;
    }

    /* Page heading: smaller icon + text */
    .page-heading-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .page-heading h1 {
        font-size: 24px;
    }

    .page-heading p {
        font-size: 12px;
    }

    /* Left panel: tighter inner padding */
    .location-left {
        padding: 20px 16px;
        gap: 14px;
        border-radius: 12px;
    }

    /* Fields: full tap targets */
    .field-group select {
        font-size: 15px; /* prevents iOS auto-zoom on focus */
        padding: 13px 14px;
        border-radius: 8px;
    }

    .gps-btn {
        font-size: 15px;
        padding: 13px 16px;
        border-radius: 8px;
    }

    .address-box {
        font-size: 13px;
        border-radius: 8px;
        padding: 11px 12px;
    }

    .confirm-btn {
        font-size: 15px;
        padding: 14px 16px;
        border-radius: 8px;
    }

    /* Map: taller on mobile so it's actually usable */
    .location-right {
        min-height: 300px;
        border-radius: 12px;
    }

    #map {
        min-height: 300px;
    }
}

/* ── Very small (≤ 380px): Galaxy Fold etc. ── */
@media (max-width: 380px) {

    .brand-name {
        font-size: 19px;
    }

    .header-phone {
        font-size: 14px;
    }

    .page-heading h1 {
        font-size: 21px;
    }

    .location-left {
        padding: 16px 12px;
    }

    /* Map: slightly shorter to leave room for controls */
    .location-right,
    #map {
        min-height: 260px;
    }
}
/* ═══════════════════════════════════════════════
        RESPONSIVE PATCH — The Melting Bites Location Page
        Paste inside your existing <style> block or
        append to CustomCSS.css
        ═══════════════════════════════════════════════ */

/* ── Tablet (≤ 900px): stack map below controls ── */
@media (max-width: 900px) {

    /* Header: shrink padding, stack on very narrow */
    .site-header {
        padding: 14px 20px;
    }

    .brand-name {
        font-size: 26px;
    }

    .tagline {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .header-phone {
        font-size: 17px;
    }

    /* Page body: tighter padding */
    .page-body {
        padding: 24px 20px;
        gap: 20px;
    }

    /* Switch two-col → single column, map goes below */
    .location-two-col {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* Map: fixed height so it doesn't collapse */
    .location-right {
        min-height: 340px;
    }

    #map {
        min-height: 340px;
    }
}

/* ── Mobile (≤ 600px): full phone treatment ── */
@media (max-width: 600px) {

    /* Header: logo + phone stacked OR phone hidden */
    .site-header {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
    }

    .brand-name {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    /* Move phone number to its own line, center it */
    .header-phone {
        font-size: 15px;
        width: 100%;
        text-align: center;
        padding-top: 4px;
        border-top: 1px solid rgba(245, 166, 35, 0.15);
    }

    /* Page body: edge-to-edge feel */
    .page-body {
        padding: 18px 14px;
        gap: 16px;
    }

    /* Page heading: smaller icon + text */
    .page-heading-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .page-heading h1 {
        font-size: 24px;
    }

    .page-heading p {
        font-size: 12px;
    }

    /* Left panel: tighter inner padding */
    .location-left {
        padding: 20px 16px;
        gap: 14px;
        border-radius: 12px;
    }

    /* Fields: full tap targets */
    .field-group select {
        font-size: 15px; /* prevents iOS auto-zoom on focus */
        padding: 13px 14px;
        border-radius: 8px;
    }

    .gps-btn {
        font-size: 15px;
        padding: 13px 16px;
        border-radius: 8px;
    }

    .address-box {
        font-size: 13px;
        border-radius: 8px;
        padding: 11px 12px;
    }

    .confirm-btn {
        font-size: 15px;
        padding: 14px 16px;
        border-radius: 8px;
    }

    /* Map: taller on mobile so it's actually usable */
    .location-right {
        min-height: 300px;
        border-radius: 12px;
    }

    #map {
        min-height: 300px;
    }
}

/* ── Very small (≤ 380px): Galaxy Fold etc. ── */
@media (max-width: 380px) {

    .brand-name {
        font-size: 19px;
    }

    .header-phone {
        font-size: 14px;
    }

    .page-heading h1 {
        font-size: 21px;
    }

    .location-left {
        padding: 16px 12px;
    }

    /* Map: slightly shorter to leave room for controls */
    .location-right,
    #map {
        min-height: 260px;
    }
}

.ft-wrap {
    background: #0a0a0a;
    border-top: 3px solid #F5A623;
    font-family: 'Poppins', sans-serif;
}

.ft-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding: 48px 40px 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.ft-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F5A623;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .ft-col-title i {
        font-size: 14px;
    }

.ft-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1;
}

    .ft-brand-name span {
        color: #F5A623;
    }

.ft-tagline {
    font-size: 10px;
    color: #666;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ft-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.75;
    margin-bottom: 18px;
}

.ft-addr-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

    .ft-addr-row i {
        font-size: 15px;
        color: #C0392B;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .ft-addr-row span {
        font-size: 13px;
        color: #aaa;
        line-height: 1.6;
    }

    .ft-addr-row a {
        font-size: 13px;
        color: #aaa;
        text-decoration: none;
        transition: color .15s;
    }

        .ft-addr-row a:hover {
            color: #F5A623;
        }

.ft-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
}

    .ft-hours-row .day {
        color: #777;
    }

    .ft-hours-row .time {
        color: #ccc;
    }

    .ft-hours-row.open .time {
        color: #4ade80;
    }

.ft-social-row {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.ft-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #161616;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    text-decoration: none;
}

    .ft-social-btn i {
        font-size: 17px;
    }

    .ft-social-btn:hover {
        background: #1e1e1e;
        border-color: rgba(245,166,35,0.45);
    }

    .ft-social-btn.fb i {
        color: #4267B2;
    }

    .ft-social-btn.ig i {
        color: #E1306C;
    }

    .ft-social-btn.wa i {
        color: #25D366;
    }

    .ft-social-btn.yt i {
        color: #FF0000;
    }

    .ft-social-btn.tt i {
        color: #aaa;
    }

.ft-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 0 40px;
}

.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

.ft-copy {
    font-size: 12px;
    color: #555;
}

    .ft-copy span {
        color: #F5A623;
    }

.ft-dev {
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .ft-dev i {
        font-size: 14px;
        color: #C0392B;
    }

    .ft-dev a {
        color: #F5A623;
        text-decoration: none;
    }

        .ft-dev a:hover {
            text-decoration: underline;
        }

@media (max-width: 860px) {
    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding: 36px 24px 28px;
    }
}

@media (max-width: 560px) {
    .ft-top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 18px 24px;
    }

    .ft-divider {
        margin: 0 18px;
    }

    .ft-bottom {
        padding: 14px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
  :root{--gold:#F5A623;--red:#C0392B;--pink:#E91E8C;--black:#0A0A0A;--charcoal:#161616;--white:#fff}
  body-sim{display:block;background:#f5f5f5;font-family:'Poppins',sans-serif}

  /* HEADER */
  .hdr{background:linear-gradient(135deg,#0A0A0A 0%,#1a0000 50%,#0A0A0A 100%);padding:16px 40px;display:flex;align-items:center;justify-content:space-between;border-bottom:3px solid var(--gold)}
  .hdr-logo{display:flex;align-items:center;gap:12px}
  .hdr-logo-circle{width:50px;height:50px;border-radius:50%;background:#C0392B;display:flex;align-items:center;justify-content:center;border:2px solid rgba(245,166,35,0.35)}
  .hdr-logo-circle i{font-size:20px;color:#fff}
  .hdr-brand{font-family:'Bebas Neue',sans-serif;font-size:30px;letter-spacing:2px;color:#fff;line-height:1}
  .hdr-brand span{color:var(--gold)}
  .hdr-tagline{font-size:10px;color:#777;letter-spacing:3px;text-transform:uppercase;margin-top:2px}
  .hdr-phone{font-family:'Bebas Neue',sans-serif;font-size:20px;color:var(--gold);letter-spacing:2px}

  /* BREADCRUMB */
  .breadcrumb{padding:14px 40px;background:#fff;border-bottom:1px solid #eee;display:flex;align-items:center;gap:6px;font-size:13px}
  .breadcrumb a{color:#999;text-decoration:none}
  .breadcrumb a:hover{color:#fcb816}
  .breadcrumb .sep{color:#ccc}
  .breadcrumb .cur{color:#fcb816;font-weight:600}

  /* PAGE */
  .ck-page{display:grid;grid-template-columns:1fr 380px;gap:24px;padding:28px 40px;max-width:1200px;margin:0 auto;background:#f5f5f5}

  /* CARD */
  .ck-card{background:#fff;border:1px solid #e8e8e8;border-radius:14px;padding:24px;margin-bottom:18px}
  .ck-card:last-child{margin-bottom:0}

  /* FORM ROW */
  .ck-row{display:grid;grid-template-columns:1fr 1fr 1fr;gap:14px;margin-bottom:0}
  .ck-field{display:flex;flex-direction:column;gap:6px}
  .ck-label{font-size:12px;font-weight:600;color:#777;letter-spacing:0.5px}
  .ck-input{border:1.5px solid #e0e0e0;border-radius:10px;padding:11px 14px;font-size:14px;color:#222;font-family:'Poppins',sans-serif;outline:none;transition:border-color .2s;width:100%}
  .ck-input:focus{border-color:#fcb816}
  .phone-wrap{display:flex;gap:0}
  .phone-flag{border:1.5px solid #e0e0e0;border-right:none;border-radius:10px 0 0 10px;padding:11px 10px;background:#f9f9f9;font-size:13px;display:flex;align-items:center;gap:4px;color:#555;cursor:pointer;white-space:nowrap}
  .phone-flag:hover{background:#f0f0f0}
  .phone-input{border-radius:0 10px 10px 0!important;border-left:none!important;flex:1}

  /* ADDRESS */
  .addr-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
  .addr-label{font-size:14px;font-weight:600;color:#333}
  .change-btn{background:#fcb816;color:#fff;border:none;border-radius:8px;padding:8px 16px;font-size:13px;font-weight:600;cursor:pointer;display:flex;align-items:center;gap:7px;font-family:'Poppins',sans-serif;transition:background .15s}
  .change-btn:hover{background:#fcb816}
  .addr-box{border:1.5px solid #e0e0e0;border-radius:10px;padding:12px 14px;font-size:14px;color:#444;background:#fafafa}

  /* DELIVERY TIME */
  .section-title{font-size:15px;font-weight:700;color:#222;margin-bottom:12px}
  .time-input{border:1.5px solid #e0e0e0;border-radius:10px;padding:12px 14px;font-size:14px;color:#aaa;background:#fafafa;width:100%;font-family:'Poppins',sans-serif;cursor:pointer;outline:none}
  .time-input:focus{border-color:#fcb816;color:#222}
  .special-textarea{border:1.5px solid #e0e0e0;border-radius:10px;padding:12px 14px;font-size:14px;color:#aaa;background:#fafafa;width:100%;font-family:'Poppins',sans-serif;height:100px;resize:none;outline:none;margin-top:12px}
  .special-textarea:focus{border-color:#fcb816;color:#222}
  .special-label{font-size:14px;font-weight:600;color:#222;margin-top:16px;margin-bottom:0}

  /* PAYMENT */
  .payment-option{display:inline-flex;align-items:center;gap:8px;border:2px solid #fcb816;border-radius:10px;padding:10px 18px;font-size:14px;font-weight:600;color:#fcb816;cursor:pointer;background:#fff5fa}
  .payment-option i{font-size:18px}

  /* RIGHT: CART */
  .cart-box{background:#fff;border:1px solid #e8e8e8;border-radius:14px;padding:24px;position:sticky;top:20px}
  .cart-title{font-size:18px;font-weight:700;color:#222;margin-bottom:18px;padding-bottom:14px;border-bottom:1px solid #f0f0f0}
  .cart-item{display:flex;gap:12px;margin-bottom:16px;padding-bottom:16px;border-bottom:1px solid #f0f0f0}
  .cart-item-img{width:60px;height:60px;border-radius:10px;background:#f5e8d0;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:22px}
  .cart-item-name{font-size:14px;font-weight:700;color:#222;margin-bottom:3px}
  .cart-item-desc{font-size:12px;color:#999;line-height:1.5;margin-bottom:4px}
  .cart-item-sub{font-size:12px;color:#777}
  .cart-item-price{font-size:14px;font-weight:700;color:#222;margin-left:auto;white-space:nowrap}
  .qty-wrap{display:flex;align-items:center;gap:0;border:1.5px solid #e0e0e0;border-radius:8px;overflow:hidden;width:fit-content;margin-top:8px}
  .qty-btn{width:30px;height:30px;border:none;background:#fff;cursor:pointer;font-size:16px;color:#555;display:flex;align-items:center;justify-content:center;transition:background .15s}
  .qty-btn:hover{background:#f5f5f5}
  .qty-num{width:34px;height:30px;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;border-left:1.5px solid #e0e0e0;border-right:1.5px solid #e0e0e0;color:#222}
  .add-more{color:#fcb816;font-size:13px;font-weight:600;cursor:pointer;text-align:center;display:block;margin-bottom:18px;text-decoration:none}
  .add-more:hover{text-decoration:underline}

  /* PROMO */
  .promo-note{font-size:12px;color:#888;background:#fffbe6;border:1px solid #ffe082;border-radius:8px;padding:8px 12px;margin-bottom:10px}
  .promo-input{border:1.5px solid #e0e0e0;border-radius:10px;padding:10px 14px;font-size:14px;width:100%;outline:none;font-family:'Poppins',sans-serif;color:#aaa;background:#fafafa;margin-bottom:16px}
  .promo-input:focus{border-color:#fcb816;color:#222}

  /* TOTALS */
  .total-row{display:flex;justify-content:space-between;font-size:14px;margin-bottom:8px;color:#555}
  .total-row span:last-child{color:#222;font-weight:600}
  .grand-row{display:flex;justify-content:space-between;font-size:16px;font-weight:700;color:#111;margin:14px 0 18px;padding-top:12px;border-top:2px solid #f0f0f0}
  .grand-row span:last-child{color:#222}
  .grand-label{display:flex;flex-direction:column}
  .grand-label small{font-size:11px;font-weight:400;color:#999;margin-top:2px}

  .place-btn{width:100%;background:#fcb816;color:#fff;border:none;border-radius:10px;padding:15px;font-size:16px;font-weight:700;cursor:pointer;font-family:'Poppins',sans-serif;letter-spacing:0.3px;transition:background .15s}
  .place-btn:hover{background:#fcb816}
  .place-btn:active{transform:scale(0.99)}

  /* FOOTER */
  .ftr{background:#0a0a0a;border-top:3px solid var(--gold);font-family:'Poppins',sans-serif}
  .ftr-top{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:40px;padding:44px 40px 32px;max-width:1200px;margin:0 auto}
  .ftr-brand{font-family:'Bebas Neue',sans-serif;font-size:26px;letter-spacing:2px;color:#fff;line-height:1}
  .ftr-brand span{color:var(--gold)}
  .ftr-tag{font-size:9px;color:#666;letter-spacing:3px;text-transform:uppercase;margin-bottom:12px}
  .ftr-desc{font-size:12px;color:#666;line-height:1.7;margin-bottom:14px}
  .ftr-col-title{font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--gold);margin-bottom:14px}
  .ftr-addr-row{display:flex;align-items:flex-start;gap:8px;margin-bottom:9px}
  .ftr-addr-row i{font-size:13px;color:var(--red);flex-shrink:0;margin-top:2px}
  .ftr-addr-row span,.ftr-addr-row a{font-size:12px;color:#888;line-height:1.6;text-decoration:none}
  .ftr-addr-row a:hover{color:var(--gold)}
  .ftr-hours-row{display:flex;justify-content:space-between;padding:6px 0;border-bottom:1px solid rgba(255,255,255,0.04);font-size:12px}
  .ftr-hours-row .day{color:#666}
  .ftr-hours-row .time{color:#4ade80}
  .ftr-social{display:flex;gap:8px;flex-wrap:wrap;margin-top:4px}
  .ftr-soc{width:36px;height:36px;border-radius:8px;border:1px solid rgba(255,255,255,0.08);background:#161616;display:flex;align-items:center;justify-content:center;cursor:pointer;text-decoration:none;transition:border-color .15s,background .15s}
  .ftr-soc:hover{background:#1e1e1e;border-color:rgba(245,166,35,0.4)}
  .ftr-soc.fb i{color:#4267B2}.ftr-soc.ig i{color:#E1306C}.ftr-soc.wa i{color:#25D366}.ftr-soc.yt i{color:#FF0000}.ftr-soc.tt i{color:#aaa}
  .ftr-soc i{font-size:15px}
  .ftr-divider{height:1px;background:rgba(255,255,255,0.06);margin:0 40px}
  .ftr-bottom{display:flex;align-items:center;justify-content:space-between;padding:14px 40px;max-width:1200px;margin:0 auto;flex-wrap:wrap;gap:8px}
  .ftr-copy{font-size:11px;color:#555}
  .ftr-copy span{color:var(--gold)}
  .ftr-dev{font-size:11px;color:#555;display:flex;align-items:center;gap:5px}
  .ftr-dev i{font-size:13px;color:var(--red)}
  .ftr-dev a{color:var(--gold);text-decoration:none}
  .ftr-dev a:hover{text-decoration:underline}

  @media(max-width:900px){
    .hdr{padding:14px 20px}
    .breadcrumb{padding:12px 20px}
    .ck-page{grid-template-columns:1fr;padding:20px 16px}
    .ck-row{grid-template-columns:1fr 1fr}
    .ftr-top{grid-template-columns:1fr 1fr;gap:24px;padding:32px 20px 24px}
    .ftr-divider{margin:0 20px}
    .ftr-bottom{padding:12px 20px}
  }
  @media(max-width:560px){
    .hdr{flex-wrap:wrap;gap:8px;padding:12px 16px}
    .hdr-phone{width:100%;text-align:center;padding-top:6px;border-top:1px solid rgba(245,166,35,0.15);font-size:16px}
    .breadcrumb{padding:10px 16px}
    .ck-page{padding:16px 12px}
    .ck-row{grid-template-columns:1fr}
    .ftr-top{grid-template-columns:1fr;padding:24px 16px 20px}
    .ftr-divider{margin:0 16px}
    .ftr-bottom{padding:12px 16px;flex-direction:column;align-items:flex-start}
  }
