    /* ============================================
       HEADER · STICKY + BRAND COLORS
       Primary: #c0673c (terracotta)
       Secondary: #68736d (sage green)
       Background: #f6f4f0
    ============================================ */

    /* ---------- STICKY HEADER ---------- */
    .rahayu-header {
        width: 100%;
        height: 98px;
        background: rgba(246, 244, 240, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        padding: 0 32px;
        box-sizing: border-box;
        position: sticky;
        top: 0;
        z-index: 1050;
        border-bottom: 1px solid rgba(192, 103, 60, 0.08);
        transition: box-shadow 0.3s ease, background 0.3s ease;
    }

    /* Scrolled state */
    .rahayu-header.scrolled {
        box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
        background: rgba(246, 244, 240, 0.98);
    }

    .rahayu-header-inner {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* ---------- LOGO ---------- */
    .rahayu-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

    .rahayu-logo i {
        font-size: 42px;
        color: #c0673c;
    }

    .rahayu-logo-text {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 32px;
        font-weight: 700;
        color: #2d332f;
        white-space: nowrap;
    }

    .rahayu-logo-text span {
        color: #c0673c;
    }

    /* ---------- NAVIGATION ---------- */
    .rahayu-nav {
        display: flex;
        align-items: center;
        gap: 48px;
    }

    .rahayu-nav a {
        text-decoration: none;
        font-family: Arial, sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #68736d;
        white-space: nowrap;
        position: relative;
        transition: color 0.3s ease;
        letter-spacing: 0.5px;
        padding: 4px 0;
    }

    /* Underline hover effect */
    .rahayu-nav a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: #c0673c;
        transition: width 0.3s ease;
        border-radius: 4px;
    }

    .rahayu-nav a:hover::after {
        width: 60%;
    }

    .rahayu-nav a:hover {
        color: #c0673c;
    }

    /* ---------- ACTIVE MENU STATE ---------- */
    .rahayu-nav a.active {
        color: #c0673c;
        font-weight: 600;
    }

    .rahayu-nav a.active::after {
        width: 60%;
    }

    /* ---------- RIGHT GROUP (Cart + Contact) ---------- */
    .rahayu-right-group {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* ---------- CART ICON ---------- */
    .rahayu-cart {
        position: relative;
        text-decoration: none;
        color: #68736d;
        font-size: 24px;
        display: flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 30px;
        transition: all 0.3s ease;
    }

    .rahayu-cart:hover {
        color: #c0673c;
        background: rgba(192, 103, 60, 0.06);
    }

    .rahayu-cart-count {
        position: absolute;
        top: 0px;
        right: 2px;
        min-width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #c0673c;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 5px;
        box-shadow: 0 2px 8px rgba(192, 103, 60, 0.3);
    }

    /* ---------- CONTACT BUTTON ---------- */
    .rahayu-contact-btn {
        background: #68736d;
        color: white !important;
        padding: 12px 28px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        font-family: Arial, sans-serif;
        transition: all 0.3s ease;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }

    .rahayu-contact-btn:hover {
        background: #c0673c;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(192, 103, 60, 0.25);
    }

    /* ---------- HAMBURGER TOGGLE ---------- */
    .rahayu-menu-toggle {
        display: none;
        border: none;
        background: transparent;
        font-size: 30px;
        color: #68736d;
        cursor: pointer;
        padding: 8px;
        transition: color 0.3s ease;
        border-radius: 8px;
    }

    .rahayu-menu-toggle:hover {
        color: #c0673c;
        background: rgba(192, 103, 60, 0.06);
    }

    /* ---------- MOBILE MENU ---------- */
    .rahayu-mobile-menu {
        display: none;
    }

    .rahayu-mobile-menu a.active {
        color: #c0673c !important;
        font-weight: 600;
    }

    .mobile-cart-link.active {
        color: #c0673c !important;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 900px) {
        .rahayu-nav {
            gap: 24px;
        }

        .rahayu-header {
            padding: 0 20px;
        }

        .rahayu-contact-btn {
            padding: 10px 20px;
            font-size: 13px;
        }
    }

    @media (max-width: 768px) {
        .rahayu-header {
            height: 70px;
            padding: 0 15px;
        }

        .rahayu-logo-text {
            font-size: 22px;
        }

        .rahayu-logo i {
            font-size: 28px;
        }

        .rahayu-nav {
            display: none;
        }

        .rahayu-contact-btn {
            display: none;
        }

        .rahayu-menu-toggle {
            display: block;
        }

        .rahayu-right-group {
            gap: 4px;
        }

        .rahayu-cart {
            font-size: 22px;
            padding: 6px 10px;
        }

        .rahayu-cart-count {
            min-width: 18px;
            height: 18px;
            font-size: 10px;
            top: -2px;
            right: 0px;
        }

        /* Mobile menu */
        .rahayu-mobile-menu {
            position: absolute;
            top: 70px;
            left: 10px;
            right: 10px;
            background: #ffffff;
            padding: 15px;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            z-index: 999;
        }

        .rahayu-mobile-menu.active {
            display: flex;
            flex-direction: column;
        }

        .rahayu-mobile-menu a {
            padding: 14px 15px;
            color: #2d332f;
            text-decoration: none;
            font-family: Arial, sans-serif;
            font-size: 14px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .rahayu-mobile-menu a:hover {
            color: #c0673c;
        }

        .rahayu-mobile-menu .mobile-book-btn {
            margin-top: 10px;
            background: #68736d;
            color: white;
            text-align: center;
            border-radius: 25px;
            border: none;
            font-weight: 600;
        }

        .rahayu-mobile-menu .mobile-book-btn:hover {
            background: #c0673c;
            color: white;
        }

        .mobile-cart-link {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-cart-count {
            background: #c0673c;
            color: white;
            min-width: 20px;
            height: 20px;
            padding: 0 6px;
            border-radius: 20px;
            font-size: 11px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
    }
