/* =========================================================
   HEADER THEME VARIABLES
========================================================= */

:root {
    /* Heaven Touch */
    --rk-primary: #111111;
    --rk-secondary: #f58220;
    --rk-accent: #ff9a4d;

    --rk-black: #111111;
    --rk-white: #ffffff;

    --rk-background: #ffffff;
    --rk-surface: #ffffff;
    --rk-surface-soft: #f8f8f8;

    --rk-text: #111111;
    --rk-text-muted: #707070;
    --rk-text-white: #ffffff;

    --rk-border: #ebebeb;
    --rk-border-dark: rgba(255, 255, 255, 0.18);

    --rk-topbar-height: 38px;
    --rk-desktop-header-height: 68px;
    --rk-mobile-announcement-height: 36px;
    --rk-mobile-header-height: 70px;

    --rk-container-width: 1840px;

    --rk-radius-sm: 6px;
    --rk-radius-md: 12px;
    --rk-radius-round: 999px;

    --rk-shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
    --rk-shadow-lg: 0 18px 55px rgba(0, 0, 0, 0.14);

    --rk-transition: 0.3s ease;
}

/* =========================================================
   BASE
========================================================= */

body.rk-menu-open,
body.rk-search-open {
    overflow: hidden;
}

.rk-site-header,
.rk-site-header * {
    box-sizing: border-box;
}

.rk-site-header a {
    text-decoration: none;
}

.rk-header-container {
    width: 100%;
    max-width: var(--rk-container-width);
    margin: 0 auto;
    padding: 0 18px;
}

/* =========================================================
   DESKTOP TOP BAR
========================================================= */

.rk-desktop-topbar {
    height: var(--rk-topbar-height);
    background: var(--rk-black);
    color: var(--rk-text-white);
}

.rk-topbar-inner {
    height: var(--rk-topbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rk-topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rk-text-white);
    font-size: 17px;
    font-weight: 600;
}

.rk-topbar-contact i {
    font-size: 18px;
}

.rk-topbar-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.rk-topbar-social a {
    color: var(--rk-text-white);
    font-size: 17px;
    transition: color var(--rk-transition);
}

.rk-topbar-social a:hover {
    color: var(--rk-accent);
}

/* =========================================================
   DESKTOP MAIN HEADER
========================================================= */

.rk-desktop-header {
    position: relative;
    z-index: 1000;
    height: var(--rk-desktop-header-height);
    background: var(--rk-background);
    border-bottom: 1px solid var(--rk-border);
}

.rk-desktop-header-inner {
    height: var(--rk-desktop-header-height);
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    align-items: center;
}

.rk-desktop-logo {
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--rk-border);
}

.rk-desktop-logo a {
    display: inline-flex;
    align-items: center;
}

.rk-desktop-logo img {
    display: block;
    width: auto;
    max-width: 115px;
    max-height: 52px;
    object-fit: contain;
}

.rk-desktop-nav {
    height: 100%;
    min-width: 0;
}

.rk-desktop-nav > ul {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    list-style: none;
}

.rk-nav-item {
    position: static;
    height: 100%;
    border-right: 1px solid var(--rk-border);
}

.rk-nav-item > a {
    position: relative;
    height: 100%;
    padding: 0 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--rk-text);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        color var(--rk-transition),
        background var(--rk-transition);
}

.rk-nav-item > a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 2px;
    background: var(--rk-secondary);
    transition:
        left var(--rk-transition),
        right var(--rk-transition);
}

.rk-nav-item:hover > a {
    color: var(--rk-secondary);
    background: var(--rk-surface-soft);
}

.rk-nav-item:hover > a::after {
    left: 16px;
    right: 16px;
}

.rk-nav-item > a i {
    font-size: 10px;
}

/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.rk-mega-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 100;
    padding: 24px;
    background: var(--rk-surface);
    border-top: 1px solid var(--rk-border);
    box-shadow: var(--rk-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    pointer-events: none;
    transition:
        opacity var(--rk-transition),
        visibility var(--rk-transition),
        transform var(--rk-transition);
}

.rk-nav-item:hover .rk-mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.rk-dropdown-inner {
    width: 100%;
    max-width: var(--rk-container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 30px;
}

.rk-dropdown-title {
    display: block;
    margin-bottom: 14px;
    color: var(--rk-text);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.rk-dropdown-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rk-dropdown-column li + li {
    margin-top: 9px;
}

.rk-dropdown-column li a {
    color: var(--rk-text-muted);
    font-size: 14px;
    transition:
        color var(--rk-transition),
        padding-left var(--rk-transition);
}

.rk-dropdown-column li a:hover {
    color: var(--rk-secondary);
    padding-left: 4px;
}

/* =========================================================
   HEADER ACTIONS
========================================================= */

.rk-header-actions {
    height: 100%;
    display: flex;
    align-items: center;
}

.rk-account-action,
.rk-cart-action {
    position: relative;
}

.rk-account-action > a,
.rk-cart-button,
.rk-search-toggle {
    position: relative;
    width: 54px;
    height: var(--rk-desktop-header-height);
    border: 0;
    border-left: 1px solid var(--rk-border);
    background: transparent;
    color: var(--rk-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        color var(--rk-transition),
        background var(--rk-transition);
}

.rk-account-action > a:hover,
.rk-cart-button:hover,
.rk-search-toggle:hover {
    color: var(--rk-secondary);
    background: var(--rk-surface-soft);
}

.rk-account-action i,
.rk-cart-button > i {
    font-size: 23px;
}

.rk-search-toggle {
    width: 72px;
}

.rk-search-toggle::before {
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    border: 3px solid var(--rk-text);
    border-radius: 50%;
    transition: border-color var(--rk-transition);
}

.rk-search-toggle:hover::before {
    border-color: var(--rk-secondary);
}

.rk-search-toggle i {
    position: relative;
    z-index: 2;
    font-size: 19px;
}

.rk-cart-badge {
    position: absolute;
    top: 15px;
    right: 9px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: var(--rk-radius-round);
    background: var(--rk-black);
    color: var(--rk-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

/* =========================================================
   MINI CART
========================================================= */

.rk-mini-cart {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 500;
    width: 360px;
    background: var(--rk-surface);
    border: 1px solid var(--rk-border);
    box-shadow: var(--rk-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition:
        opacity var(--rk-transition),
        visibility var(--rk-transition),
        transform var(--rk-transition);
}

.rk-cart-action:hover .rk-mini-cart {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.rk-mini-cart::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 12px;
}

.rk-mini-cart-header {
    padding: 17px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--rk-border);
}

.rk-mini-cart-header strong {
    color: var(--rk-text);
    font-size: 16px;
}

.rk-mini-cart-header span {
    color: var(--rk-text-muted);
    font-size: 13px;
}

.rk-mini-cart-body {
    max-height: 330px;
    overflow-y: auto;
}

.rk-mini-cart-item {
    position: relative;
    padding: 14px 42px 14px 14px;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    border-bottom: 1px solid var(--rk-border);
}

.rk-mini-cart-image {
    width: 68px;
    height: 72px;
    background: var(--rk-surface-soft);
    overflow: hidden;
}

.rk-mini-cart-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rk-mini-cart-info > a {
    display: block;
    color: var(--rk-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.rk-mini-cart-info p {
    margin: 8px 0 0;
    color: var(--rk-text-muted);
    font-size: 13px;
}

.rk-mini-cart-remove {
    position: absolute;
    top: 14px;
    right: 13px;
    width: 26px;
    height: 26px;
    border: 0;
    background: transparent;
    color: var(--rk-text-muted);
    cursor: pointer;
}

.rk-mini-cart-remove:hover {
    color: #d70000;
}

.rk-mini-cart-footer {
    padding: 17px;
}

.rk-mini-cart-subtotal {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rk-mini-cart-subtotal strong {
    color: var(--rk-text);
    font-size: 18px;
}

.rk-checkout-button {
    width: 100%;
    min-height: 46px;
    padding: 0 20px;
    background: var(--rk-primary);
    color: var(--rk-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    transition: background var(--rk-transition);
}

.rk-checkout-button:hover {
    background: var(--rk-secondary);
    color: var(--rk-text-white);
}

.rk-empty-cart {
    padding: 40px 20px;
    text-align: center;
    color: var(--rk-text-muted);
}

.rk-empty-cart i {
    margin-bottom: 12px;
    font-size: 35px;
}

.rk-empty-cart p {
    margin: 0;
}

/* =========================================================
   SEARCH OVERLAY
========================================================= */

.rk-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    padding: 30px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transform: translateY(-30px);
    transition:
        opacity var(--rk-transition),
        visibility var(--rk-transition),
        transform var(--rk-transition);
}

.rk-search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rk-search-close {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    color: var(--rk-text);
    font-size: 28px;
    cursor: pointer;
}

.rk-search-overlay-content {
    width: min(780px, 100%);
    margin-top: 140px;
}

.rk-search-overlay-content > p {
    margin: 0 0 20px;
    color: var(--rk-text-muted);
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rk-search-overlay-content form {
    position: relative;
    border-bottom: 2px solid var(--rk-text);
}

.rk-search-overlay-content input {
    width: 100%;
    height: 70px;
    padding: 0 70px 0 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--rk-text);
    font-size: 30px;
}

.rk-search-overlay-content button[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 70px;
    border: 0;
    background: transparent;
    color: var(--rk-text);
    font-size: 24px;
    cursor: pointer;
}

.rk-desktop-search-result {
    position: relative;
    margin-top: 5px;
    background: var(--rk-surface);
    box-shadow: var(--rk-shadow-lg);
}

/* =========================================================
   MOBILE HEADER
========================================================= */

.rk-mobile-announcement,
.rk-mobile-header {
    display: none;
}

.rk-mobile-drawer {
    display: none;
}

/* =========================================================
   STICKY HEADER
========================================================= */

.rk-site-header.rk-header-sticky .rk-desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    box-shadow: var(--rk-shadow-sm);
    animation: rkHeaderSlideDown 0.3s ease;
}

@keyframes rkHeaderSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1250px) {
    .rk-desktop-header-inner {
        grid-template-columns: 140px minmax(0, 1fr) auto;
    }

    .rk-desktop-logo img {
        max-width: 95px;
    }

    .rk-nav-item > a {
        padding: 0 12px;
        font-size: 13px;
    }

    .rk-dropdown-inner {
        grid-template-columns: repeat(4, minmax(150px, 1fr));
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {
    .rk-desktop-topbar,
    .rk-desktop-header {
        display: none;
    }

    .rk-mobile-announcement {
        height: var(--rk-mobile-announcement-height);
        padding: 0 15px;
        background: var(--rk-black);
        color: var(--rk-text-white);
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 3px solid rgba(255, 255, 255, 0.2);
        font-size: 15px;
        text-align: center;
    }

    .rk-mobile-header {
        height: var(--rk-mobile-header-height);
        background: var(--rk-background);
        display: block;
        border-bottom: 1px solid var(--rk-border);
    }

    .rk-mobile-header-inner {
        position: relative;
        height: 100%;
        padding: 0 18px;
        display: grid;
        grid-template-columns: 70px minmax(0, 1fr) 105px;
        align-items: center;
    }

    .rk-mobile-menu-button {
        width: 52px;
        height: 52px;
        padding: 0;
        border: 1px solid var(--rk-border);
        border-radius: 50%;
        background: var(--rk-surface);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
    }

    .rk-mobile-menu-button span {
        width: 22px;
        height: 1px;
        background: var(--rk-text);
        display: block;
    }

    .rk-mobile-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rk-mobile-logo img {
        width: auto;
        max-width: 90px;
        max-height: 54px;
        object-fit: contain;
    }

    .rk-mobile-cart {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 9px;
        color: var(--rk-text);
    }

    .rk-mobile-cart-icon {
        position: relative;
        font-size: 23px;
    }

    .rk-mobile-cart-icon .mobilecart-qty {
        position: absolute;
        top: -9px;
        right: -10px;
        min-width: 18px;
        height: 18px;
        padding: 0 4px;
        border-radius: var(--rk-radius-round);
        background: var(--rk-black);
        color: var(--rk-text-white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        font-weight: 700;
    }

    .rk-mobile-cart-total {
        color: var(--rk-text);
        font-size: 14px;
        white-space: nowrap;
    }

    .rk-site-header.rk-header-sticky .rk-mobile-announcement {
        display: none;
    }

    .rk-site-header.rk-header-sticky .rk-mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9000;
        box-shadow: var(--rk-shadow-sm);
        animation: rkHeaderSlideDown 0.3s ease;
    }

    /* Mobile drawer */

    .rk-mobile-drawer {
        position: fixed;
        inset: 0;
        z-index: 99999;
        display: block;
        visibility: hidden;
        pointer-events: none;
    }

    .rk-mobile-drawer.active {
        visibility: visible;
        pointer-events: auto;
    }

    .rk-drawer-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        transition: opacity var(--rk-transition);
    }

    .rk-mobile-drawer.active .rk-drawer-overlay {
        opacity: 1;
    }

    .rk-drawer-panel {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(88%, 390px);
        background: var(--rk-surface);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform var(--rk-transition);
    }

    .rk-mobile-drawer.active .rk-drawer-panel {
        transform: translateX(0);
    }

    .rk-drawer-header {
        min-height: 74px;
        padding: 12px 18px;
       background: #111111;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .rk-drawer-logo img {
        width: auto;
        max-width: 105px;
        max-height: 50px;
    }

    .rk-drawer-close {
        width: 40px;
        height: 40px;
        border: 1px solid var(--rk-border-dark);
        border-radius: 50%;
        background: transparent;
        color: var(--rk-white);
        font-size: 20px;
        cursor: pointer;
    }

    .rk-drawer-search {
        position: relative;
        padding: 16px;
        border-bottom: 1px solid var(--rk-border);
    }

    .rk-drawer-search form {
        position: relative;
    }

    .rk-drawer-search input {
        width: 100%;
        height: 46px;
        padding: 0 48px 0 14px;
        border: 1px solid var(--rk-border);
        border-radius: var(--rk-radius-sm);
        outline: none;
        background: var(--rk-surface-soft);
    }

    .rk-drawer-search button {
        position: absolute;
        top: 0;
        right: 0;
        width: 46px;
        height: 46px;
        border: 0;
        background: transparent;
        color: var(--rk-text);
    }

    .rk-mobile-search-result {
        position: absolute;
        top: 68px;
        left: 16px;
        right: 16px;
        z-index: 20;
        background: var(--rk-surface);
        box-shadow: var(--rk-shadow-lg);
    }

    .rk-drawer-account {
        padding: 15px 17px;
        border-bottom: 1px solid var(--rk-border);
    }

    .rk-drawer-account > a {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--rk-text);
    }

    .rk-account-icon {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--rk-surface-soft);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rk-drawer-account small,
    .rk-drawer-account strong {
        display: block;
    }

    .rk-drawer-account small {
        margin-bottom: 2px;
        color: var(--rk-text-muted);
        font-size: 11px;
    }

    .rk-drawer-account strong {
        font-size: 14px;
    }

    .rk-mobile-menu-list,
    .rk-mobile-submenu,
    .rk-mobile-childmenu {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .rk-mobile-menu-item {
        border-bottom: 1px solid var(--rk-border);
    }

    .rk-mobile-menu-row,
    .rk-mobile-submenu-row {
        display: flex;
        align-items: center;
    }

    .rk-mobile-category-link {
        min-height: 55px;
        padding: 9px 16px;
        flex: 1;
        display: flex;
        align-items: center;
        gap: 11px;
        color: var(--rk-text);
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .rk-mobile-category-link img {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        object-fit: cover;
    }

    .rk-mobile-submenu-toggle,
    .rk-mobile-child-toggle {
        width: 52px;
        min-height: 52px;
        border: 0;
        border-left: 1px solid var(--rk-border);
        background: transparent;
        color: var(--rk-text);
        cursor: pointer;
        transition: transform var(--rk-transition);
    }

    .rk-mobile-submenu-toggle.active i,
    .rk-mobile-child-toggle.active i {
        transform: rotate(180deg);
    }

    .rk-mobile-submenu,
    .rk-mobile-childmenu {
        display: none;
        background: var(--rk-surface-soft);
    }

    .rk-mobile-submenu > li {
        border-top: 1px solid var(--rk-border);
    }

    .rk-mobile-submenu-row > a {
        min-height: 48px;
        padding: 10px 16px 10px 30px;
        flex: 1;
        display: flex;
        align-items: center;
        color: var(--rk-text);
        font-size: 14px;
    }

    .rk-mobile-childmenu a {
        min-height: 43px;
        padding: 9px 20px 9px 47px;
        display: flex;
        align-items: center;
        color: var(--rk-text-muted);
        font-size: 13px;
        border-top: 1px solid var(--rk-border);
    }

    .rk-drawer-footer {
        padding: 18px;
        display: grid;
        gap: 12px;
    }

    .rk-drawer-footer a {
        min-height: 44px;
        padding: 0 14px;
        border: 1px solid var(--rk-border);
        border-radius: var(--rk-radius-sm);
        color: var(--rk-text);
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

    .rk-search-overlay {
        padding: 20px;
    }

    .rk-search-overlay-content {
        margin-top: 100px;
    }

    .rk-search-overlay-content input {
        height: 58px;
        font-size: 21px;
    }
}

@media (max-width: 480px) {
    .rk-mobile-header-inner {
        grid-template-columns: 62px minmax(0, 1fr) 100px;
        padding: 0 14px;
    }

    .rk-mobile-menu-button {
        width: 50px;
        height: 50px;
    }

    .rk-mobile-logo img {
        max-width: 82px;
    }

    .rk-mobile-cart-total {
        font-size: 13px;
    }
}

/*  */
/* =========================================================
   MOBILE DRAWER DESIGN FIX
   Keep this block at the end of rikaz-header.css
========================================================= */

@media (max-width: 991px) {
    /* Drawer wrapper */

    .rk-mobile-drawer {
        position: fixed;
        inset: 0;
        z-index: 999999;
        display: block;
        visibility: hidden;
        pointer-events: none;
    }

    .rk-mobile-drawer.active {
        visibility: visible;
        pointer-events: auto;
    }

    .rk-drawer-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.58);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .rk-mobile-drawer.active .rk-drawer-overlay {
        opacity: 1;
    }

    /* Drawer panel */

    .rk-drawer-panel {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;

        width: min(86vw, 380px);
        max-width: 100%;

        display: flex;
        flex-direction: column;

        background: var(--rk-surface);
        overflow-x: hidden;
        overflow-y: auto;

        transform: translateX(-100%);
        transition: transform 0.32s ease;

        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
    }

    .rk-mobile-drawer.active .rk-drawer-panel {
        transform: translateX(0);
    }

    .rk-drawer-panel::-webkit-scrollbar {
        width: 5px;
    }

    .rk-drawer-panel::-webkit-scrollbar-track {
        background: transparent;
    }

    .rk-drawer-panel::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.25);
        border-radius: 20px;
    }

    /* Drawer header */

    .rk-drawer-header {
        position: sticky;
        top: 0;
        z-index: 30;

        width: 100%;
        min-height: 82px;
        padding: 12px 20px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        background:#fff0e6;
        border: 0;
    }

    .rk-drawer-logo {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
    }

    .rk-drawer-logo img {
        display: block;
        width: auto;
        max-width: 82px;
        max-height: 58px;
        object-fit: contain;
    }

    .rk-drawer-close {
        width: 48px;
        height: 48px;
        padding: 0;

        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;

        background: transparent;
        color: var(--rk-white);

        display: inline-flex;
        align-items: center;
        justify-content: center;

        font-size: 24px;
        cursor: pointer;
        transition:
            background var(--rk-transition),
            border-color var(--rk-transition);
    }

    .rk-drawer-close:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.4);
    }

    /* Search */

    .rk-drawer-search {
        position: relative;
        width: 100%;
        padding: 18px 20px;

        background: var(--rk-surface);
        border-bottom: 1px solid var(--rk-border);
    }

    .rk-drawer-search form {
        position: relative;
        width: 100%;
        margin: 0;
    }

    .rk-drawer-search input {
        width: 100%;
        height: 52px;
        padding: 0 52px 0 16px;

        border: 1px solid var(--rk-border);
        border-radius: 8px;
        outline: none;

        background: var(--rk-surface-soft);
        color: var(--rk-text);

        font-size: 15px;
        line-height: 1;
        box-shadow: none;
    }

    .rk-drawer-search input:focus {
        border-color: var(--rk-primary);
        background: var(--rk-surface);
    }

    .rk-drawer-search button {
        position: absolute;
        top: 0;
        right: 0;

        width: 52px;
        height: 52px;
        padding: 0;

        border: 0;
        background: transparent;
        color: var(--rk-text);

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 18px;
        cursor: pointer;
    }

    .rk-mobile-search-result {
        position: absolute;
        top: calc(100% - 12px);
        left: 20px;
        right: 20px;
        z-index: 50;

        max-height: 320px;
        overflow-y: auto;

        background: var(--rk-surface);
        border: 1px solid var(--rk-border);
        box-shadow: var(--rk-shadow-lg);
    }

    /* Account */

    .rk-drawer-account {
        width: 100%;
        padding: 16px 20px;

        background: var(--rk-surface);
        border-bottom: 1px solid var(--rk-border);
    }

    .rk-drawer-account > a {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 13px;
        color: var(--rk-text);
    }

    .rk-account-icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;

        border-radius: 50%;
        background: var(--rk-surface-soft);

        display: flex;
        align-items: center;
        justify-content: center;

        color: var(--rk-text);
        font-size: 18px;
    }

    .rk-drawer-account small {
        display: block;
        margin: 0 0 3px;

        color: var(--rk-text-muted);
        font-size: 12px;
        font-weight: 400;
        line-height: 1.3;
    }

    .rk-drawer-account strong {
        display: block;
        margin: 0;

        color: var(--rk-text);
        font-size: 15px;
        font-weight: 700;
        line-height: 1.35;
    }

    /* Navigation reset */

    .rk-mobile-navigation {
        width: 100%;
        background: var(--rk-surface);
    }

    .rk-mobile-menu-list,
    .rk-mobile-submenu,
    .rk-mobile-childmenu {
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;

        display: block;
    }

    .rk-mobile-menu-list li,
    .rk-mobile-submenu li,
    .rk-mobile-childmenu li {
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* Main category */

    .rk-mobile-menu-item {
        width: 100%;
        border-bottom: 1px solid var(--rk-border);
        background: var(--rk-surface);
    }

    .rk-mobile-menu-row {
        width: 100%;
        min-height: 62px;

        display: flex;
        align-items: stretch;

        background: var(--rk-surface);
    }

    .rk-mobile-category-link {
        min-width: 0;
        min-height: 62px;
        padding: 10px 8px 10px 20px;
        flex: 1;

        display: flex;
        align-items: center;
        gap: 13px;

        color: var(--rk-text);
        background: transparent;

        font-size: 15px;
        font-weight: 700;
        line-height: 1.3;
        text-transform: uppercase;
    }

    .rk-mobile-category-link:hover {
        color: var(--rk-secondary);
    }

    .rk-mobile-category-link img {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;

        border-radius: 50%;
        object-fit: cover;

        background: var(--rk-surface-soft);
        border: 1px solid var(--rk-border);
    }

    .rk-mobile-submenu-toggle {
        width: 62px;
        min-width: 62px;
        min-height: 62px;
        padding: 0;

        border: 0;
        border-left: 1px solid var(--rk-border);

        background: transparent;
        color: var(--rk-text);

        display: flex;
        align-items: center;
        justify-content: center;

        cursor: pointer;
    }

    .rk-mobile-submenu-toggle i {
        font-size: 14px;
        transition: transform var(--rk-transition);
    }

    .rk-mobile-submenu-toggle.active i {
        transform: rotate(180deg);
    }

    /* First submenu */

    .rk-mobile-submenu {
        display: none;
        width: 100%;

        background: var(--rk-surface-soft);
        border-top: 1px solid var(--rk-border);
    }

    .rk-mobile-submenu > li {
        border-bottom: 1px solid var(--rk-border);
    }

    .rk-mobile-submenu > li:last-child {
        border-bottom: 0;
    }

    .rk-mobile-submenu-row {
        width: 100%;
        min-height: 48px;

        display: flex;
        align-items: stretch;
    }

    .rk-mobile-submenu-row > a {
        min-width: 0;
        min-height: 48px;
        padding: 11px 12px 11px 32px;
        flex: 1;

        display: flex;
        align-items: center;

        color: var(--rk-text);
        background: transparent;

        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
        text-align: left;
    }

    .rk-mobile-submenu-row > a:hover {
        color: var(--rk-secondary);
    }

    .rk-mobile-child-toggle {
        width: 52px;
        min-width: 52px;
        min-height: 48px;
        padding: 0;

        border: 0;
        border-left: 1px solid var(--rk-border);

        background: transparent;
        color: var(--rk-text);

        display: flex;
        align-items: center;
        justify-content: center;

        cursor: pointer;
    }

    .rk-mobile-child-toggle i {
        font-size: 12px;
        transition: transform var(--rk-transition);
    }

    .rk-mobile-child-toggle.active i {
        transform: rotate(180deg);
    }

    /* Child categories */

    .rk-mobile-childmenu {
        display: none;
        width: 100%;

        background: var(--rk-surface);
        border-top: 1px solid var(--rk-border);
    }

    .rk-mobile-childmenu li {
        border-bottom: 1px solid var(--rk-border);
    }

    .rk-mobile-childmenu li:last-child {
        border-bottom: 0;
    }

    .rk-mobile-childmenu a {
        width: 100%;
        min-height: 44px;
        padding: 10px 16px 10px 48px;

        display: flex;
        align-items: center;

        color: var(--rk-text-muted);
        background: var(--rk-surface);

        font-size: 13px;
        font-weight: 400;
        line-height: 1.4;
        text-align: left;
    }

    .rk-mobile-childmenu a:hover {
        color: var(--rk-secondary);
        background: var(--rk-surface-soft);
    }

    /* Drawer footer */

    .rk-drawer-footer {
        width: 100%;
        margin-top: auto;
        padding: 18px 20px 26px;

        display: grid;
        gap: 10px;

        background: var(--rk-surface);
        border-top: 1px solid var(--rk-border);
    }

    .rk-drawer-footer a {
        width: 100%;
        min-height: 48px;
        padding: 0 15px;

        border: 1px solid var(--rk-border);
        border-radius: 7px;

        background: var(--rk-surface);
        color: var(--rk-text);

        display: flex;
        align-items: center;
        gap: 11px;

        font-size: 14px;
        font-weight: 500;
    }

    .rk-drawer-footer a:hover {
        color: var(--rk-secondary);
        border-color: var(--rk-secondary);
    }

    .rk-drawer-footer i {
        width: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .rk-drawer-panel {
        width: min(88vw, 370px);
    }

    .rk-drawer-header {
        min-height: 78px;
        padding: 11px 18px;
    }

    .rk-drawer-search,
    .rk-drawer-account {
        padding-left: 18px;
        padding-right: 18px;
    }

    .rk-mobile-category-link {
        padding-left: 18px;
    }
}

/* =========================================================
   PREMIUM DESKTOP MEGA MENU
========================================================= */

@media (min-width: 992px) {
    .rk-desktop-header {
        overflow: visible;
    }

    .rk-desktop-header-inner {
        position: relative;
    }

    .rk-desktop-nav {
        position: static;
    }

    .rk-nav-item {
        position: relative;
    }

    .rk-mega-dropdown {
        position: absolute;
        top: 100%;
        margin-top: 10px;
        left: 50%;
        right: auto;

        width: max-content;
        min-width: 420px;
        max-width: 900px;

        padding: 0;

        background: var(--rk-surface);
        border: 1px solid var(--rk-border);
        border-radius: 16px;

        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.15);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateX(-50%) translateY(14px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;

        overflow: hidden;
        z-index: 9999;
    }

    .rk-mega-dropdown::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 50%;

        width: 16px;
        height: 16px;

        background: var(--rk-surface);
        border-left: 1px solid var(--rk-border);
        border-top: 1px solid var(--rk-border);

        transform: translateX(-50%) rotate(45deg);

        z-index: 2;
    }

    .rk-nav-item:hover > .rk-mega-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateX(-50%) translateY(0);
    }

    .rk-dropdown-inner {
        position: relative;
        z-index: 3;

        width: 100%;
        max-width: none;

        padding: 26px;

        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));

        gap: 18px 28px;

        background: var(--rk-surface);
    }

    .rk-dropdown-column {
        min-width: 0;
    }

    .rk-dropdown-title {
        position: relative;

        display: block;
        margin: 0 0 13px;
        padding: 0 0 11px;

        color: var(--rk-text);
        font-size: 14px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.35px;

        border-bottom: 1px solid var(--rk-border);
    }

    .rk-dropdown-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;

        width: 38px;
        height: 2px;

        background: var(--rk-secondary);
    }

    .rk-dropdown-column ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .rk-dropdown-column li {
        margin: 0;
        padding: 0;
    }

    .rk-dropdown-column li + li {
        margin-top: 4px;
    }

    .rk-dropdown-column li a {
        position: relative;

        min-height: 38px;
        padding: 7px 10px 7px 18px;

        border-radius: 7px;

        color: var(--rk-text-muted);

        display: flex;
        align-items: center;

        font-size: 13px;
        font-weight: 500;
        line-height: 1.4;

        transition:
            color 0.2s ease,
            background 0.2s ease,
            transform 0.2s ease;
    }

    .rk-dropdown-column li a::before {
        content: "";
        position: absolute;
        left: 7px;

        width: 5px;
        height: 5px;

        border-radius: 50%;
        background: var(--rk-secondary);

        opacity: 0.65;
    }

    .rk-dropdown-column li a:hover {
        color: var(--rk-secondary);
        background: rgba(183, 139, 79, 0.08);
        transform: translateX(3px);
    }

    /*
     * একটি category-তে শুধু subcategory আছে,
     * child category নেই—তবুও premium card দেখাবে
     */
    .rk-dropdown-column:only-child {
        min-width: 250px;
    }

    /*
     * Dropdown viewport-এর বাইরে যেন না যায়
     */
    .rk-nav-item:first-child .rk-mega-dropdown,
    .rk-nav-item:nth-child(2) .rk-mega-dropdown {
        left: 0;
        transform: translateX(0) translateY(14px);
    }

    .rk-nav-item:first-child:hover > .rk-mega-dropdown,
    .rk-nav-item:nth-child(2):hover > .rk-mega-dropdown {
        transform: translateX(0) translateY(0);
    }

    .rk-nav-item:first-child .rk-mega-dropdown::before,
    .rk-nav-item:nth-child(2) .rk-mega-dropdown::before {
        left: 45px;
    }

    .rk-nav-item:last-child .rk-mega-dropdown {
        left: auto;
        right: 0;
        transform: translateX(0) translateY(14px);
    }

    .rk-nav-item:last-child:hover > .rk-mega-dropdown {
        transform: translateX(0) translateY(0);
    }

    .rk-nav-item:last-child .rk-mega-dropdown::before {
        left: auto;
        right: 45px;
    }
}

@media (min-width: 992px) {
    .rk-nav-item {
        position: relative;
    }

    .rk-nav-item::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 18px;
        background: transparent;
    }

    .rk-mega-dropdown {
        top: 100% !important;
        margin-top: 10px;
    }

    .rk-nav-item:hover > .rk-mega-dropdown,
    .rk-nav-item > .rk-mega-dropdown:hover {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}




/* =========================================================
   MOBILE FIXED HEADER CONTENT OFFSET
========================================================= */

@media (max-width: 991px) {
    :root {
        --rk-mobile-announcement-height: 32px;
        --rk-mobile-header-height: 72px;
        --rk-mobile-total-header-height:
            calc(
                var(--rk-mobile-announcement-height) +
                var(--rk-mobile-header-height)
            );
    }

    /*
     * Mobile header fixed থাকার কারণে page content যেন
     * header-এর নিচে শুরু হয়।
     */


    .rk-site-header {
        z-index: 99990;
    }

    .rk-mobile-announcement {
        height: var(--rk-mobile-announcement-height);
        min-height: var(--rk-mobile-announcement-height);
    }

    .rk-mobile-header {
        height: var(--rk-mobile-header-height);
        min-height: var(--rk-mobile-header-height);
    }


}


/* Heaven Touch Orange Accents */

.rfh-topbar {
    background: var(--rk-black);
}

.rfh-topbar i {
    color: var(--rk-secondary);
}

.rfh-search-form button {
    background: var(--rk-secondary);
    color: var(--rk-white);
}

.rfh-all-categories-button {
    background: var(--rk-secondary);
    color: var(--rk-white);
}

.rfh-main-nav a:hover {
    color: var(--rk-secondary);
}

.rfh-cart-count,
.rk-mobile-cart-icon .mobilecart-qty {
    background: var(--rk-secondary);
    color: var(--rk-white);
}

.rfh-nav-support > i {
    color: var(--rk-secondary);
}


/* Mobile */

.rk-mobile-announcement {
    background: var(--rk-black);
    color: var(--rk-white);
}

.rk-mobile-menu-button:hover {
    border-color: var(--rk-secondary);
}

.rk-mobile-menu-button:hover span {
    background: var(--rk-secondary);
}

.rk-drawer-search input:focus {
    border-color: var(--rk-secondary);
}

.rk-drawer-search button {
    color: var(--rk-secondary);
}

.rk-account-icon {
    background: #fff4ea;
    color: var(--rk-secondary);
}

.rk-mobile-category-link:hover {
    color: var(--rk-secondary);
}

.rk-mobile-submenu-toggle:hover,
.rk-mobile-child-toggle:hover {
    color: var(--rk-secondary);
}

.rk-drawer-footer a:hover {
    border-color: var(--rk-secondary);
    color: var(--rk-secondary);
}