/* ── FINAL LC HEADER STYLES (Resized to 1280x116) ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background: #dde8f5 !important;
}

/* ── TOP BAR ── */
.top-bar {
    background: linear-gradient(90deg, #00b4d8 0%, #1565c0 60%, #0d47a1 100%);
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #fff;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.top-bar-left a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-bar-right .item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #fff;
}

.top-bar-right .item svg {
    width: 14px;
    height: 14px;
}

/* ── MAIN HEADER ── */
.main-header {
    background: linear-gradient(135deg, #00c1e4 0%, #1a73e8 45%, #1557c0 100%);
    padding: 0 20px;
    height: 116px;
    /* User requested height */
    display: flex;
    align-items: center;
    position: relative;
}

/* decorative flowers left */
.deco-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 160px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.deco-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 180px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.header-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    /* User requested width */
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 38px;
    height: 38px;
}

.logo-icon span {
    border-radius: 2px;
}

.logo-icon span:nth-child(1) {
    background: #e53935;
}

.logo-icon span:nth-child(2) {
    background: #4caf50;
}

.logo-icon span:nth-child(3) {
    background: #ff9800;
}

.logo-icon span:nth-child(4) {
    background: #2196f3;
}

.logo-text {
    color: #fff;
    line-height: 1.1;
}

.logo-text .fpt {
    font-size: 10px;
    letter-spacing: 1px;
    opacity: 0.85;
}

.logo-text .name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-text .sub {
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 500;
    opacity: 0.9;
}

/* Search */
.search-wrap {
    flex: 1;
    max-width: 720px;
}

.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 0 18px;
    height: 48px;
    gap: 10px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    font-family: inherit;
    background: transparent;
}

.search-box input::placeholder {
    color: #aaa;
}

.search-box .icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #1a73e8;
    display: flex;
    align-items: center;
    padding: 0;
}

.search-box .icon-btn svg {
    width: 22px;
    height: 22px;
}

/* Auth buttons */
.auth-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
}

.btn-login svg {
    width: 24px;
    height: 24px;
}

.btn-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1a73e8;
    border: none;
    border-radius: 22px;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

.btn-cart svg {
    width: 22px;
    height: 22px;
}

/* ── NAV BAR ── */
.nav-bar {
    background: linear-gradient(90deg, #1a73e8 0%, #1557c0 100%);
    padding: 0 20px;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    justify-content: center;
}

.nav-inner a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    white-space: nowrap;
    transition: background 0.15s;
    border-radius: 4px 4px 0 0;
}

.nav-inner a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Global reset for old themes */
#guide-nav-top,
#header,
#main-nav {
    display: none !important;
}

.lc-header-wrapper {
    display: none !important;
}

.lc-top-bar,
.lc-main-header {
    display: none !important;
}