/* ==========================================
   Header & Navigation (Clean Luxury Dropdown)
   ========================================== */

/* ── 1. 基础全局与 Header 容器 ── */
body {
    margin: 0;
    font-family: 'Inter', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #faf9f7;
}

.lzb-announce {
    background: #111;
    color: #fffdfb;
    text-align: center;
    padding: 10px 0;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.lzb-announce p { margin: 0; }

.lzb-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 253, 251, .96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(216, 167, 177, .15);
    box-shadow: 0 2px 24px 0 rgba(216, 167, 177, .08);
}

.lzb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 56px;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.lzb-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.lzb-logo img { height: 100px; width: 100px; }
.lzb-logo:hover { opacity: .85; }

/* ── 2. 一级导航栏排版 ── */
.lzb-header .lzb-nav, 
.lzb-header .lzb-nav__list {
    display: flex !important;
    align-items: center !important;
    gap: 40px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.lzb-header .lzb-nav > li {
    position: relative !important;
    list-style: none !important;
}

/* 一级链接样式 */
.lzb-header .lzb-nav > li > a,
.lzb-header .lzb-nav__link {
    position: relative !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    color: #2e2e2e !important;
    padding: 8px 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    border: none !important;
    background: transparent !important;
    transition: color 0.3s ease !important;
    white-space: nowrap !important;
}

/* ── 3. Chevron 下拉箭头 ── */
.lzb-header .lzb-nav > li.has-sub > a::after,
.lzb-header .lzb-nav > li.menu-item-has-children > a::after {
    content: "" !important;
    display: inline-block !important;
    width: 5px !important;
    height: 5px !important;
    border-right: 1.5px solid currentColor !important;
    border-bottom: 1.5px solid currentColor !important;
    transform: rotate(45deg) translateY(-2px) !important;
    transition: transform 0.3s ease !important;
    margin-left: 2px !important;
}

.lzb-header .lzb-nav > li.has-sub:hover > a::after,
.lzb-header .lzb-nav > li.menu-item-has-children:hover > a::after {
    transform: rotate(-135deg) translateY(-2px) !important;
}

/* ── 4. 一级菜单粉色下划线 Hover/Active ── */
.lzb-header .lzb-nav > li > a::before {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 1.5px !important;
    background-color: #d8a7b1 !important;
    transform: scaleX(0) !important;
    transition: transform 0.3s ease !important;
    transform-origin: left !important;
}

.lzb-header .lzb-nav > li > a:hover { color: #d8a7b1 !important; }
.lzb-header .lzb-nav > li > a:hover::before { transform: scaleX(1) !important; }

.lzb-header .lzb-nav > li.current-menu-item > a,
.lzb-header .lzb-nav > li.current_page_item > a,
.lzb-header .lzb-nav > li.current_page_parent > a {
    color: #d8a7b1 !important;
}
.lzb-header .lzb-nav > li.current-menu-item > a::before,
.lzb-header .lzb-nav > li.current_page_item > a::before,
.lzb-header .lzb-nav > li.current_page_parent > a::before {
    transform: scaleX(1) !important;
}

/* ── 5. 【核心改造】一级下拉弹窗容器（防关闭抖动 + 无滚动条） ── */
.lzb-site-header .lzb-nav > li > .sub-menu,
.lzb-site-header nav > ul > li > .sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: max-content !important;        /* 自适应宽，告别挤压 */
    min-width: 280px !important;
    max-width: 450px !important;
    overflow: visible !important;         /* 彻底拒绝滚动条 */
    background: #ffffff !important;
    padding: 20px 24px !important;
    margin: 0 !important;
    border: 1px solid rgba(216, 167, 177, 0.2) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-radius: 4px !important;
    z-index: 99999 !important;
    list-style: none !important;

    /* 防抖缓冲消失动画 */
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    transition: opacity 0.25s ease 0.15s, visibility 0.25s ease 0.15s, transform 0.25s ease 0.15s !important;
    display: block !important;
}

/* Hover 时瞬间显示白框 */
.lzb-site-header .lzb-nav > li:hover > .sub-menu,
.lzb-site-header nav > ul > li:hover > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition-delay: 0s !important;
}

/* 透明接应桥，防止移动鼠标时空隙断连 */
.lzb-site-header .lzb-nav > li::before,
.lzb-site-header nav > ul > li::before {
    content: '' !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    height: 20px !important;
    display: block !important;
}

/* ── 6. 【核心破局】三级/深层菜单悬停联动展开 ── */

/* 6.1 默认：隐藏三级及更深层菜单 */
.lzb-site-header .sub-menu .sub-menu {
    position: static !important;
    display: none !important;             /* 默认隐藏！绝不上来就露出来 */
    opacity: 0 !important;
    visibility: hidden !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 0 8px 16px !important;   /* 层级缩进 */
    margin: 0 !important;
    transition: opacity 0.25s ease !important;
}

/* 6.2 触发：当鼠标移入【二级菜单 li】时，展开其对应的【三级 menu】 */
.lzb-site-header .sub-menu > li:hover > .sub-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* 6.3 框内 li 恢复基础排列 */
.lzb-site-header .sub-menu li {
    position: relative !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* ── 7. 全层级子菜单 Hover 动态下划线高亮 ── */

/* 所有框内链接通铺 */
.lzb-site-header .sub-menu a {
    position: relative !important;
    display: inline-block !important;     /* 下划线仅跟文字长度相符 */
    font-family: 'Inter', sans-serif !important;
    text-decoration: none !important;
    border: none !important;
    background: transparent !important;
    transition: color 0.25s ease !important;
    white-space: nowrap !important;
}

/* 统一创建下划线 Pseudoelement */
.lzb-site-header .sub-menu a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #d8a7b1 !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* 鼠标悬停下划线展开 + 文字变粉 */
.lzb-site-header .sub-menu a:hover {
    color: #d8a7b1 !important;
}
.lzb-site-header .sub-menu a:hover::after {
    transform: scaleX(1) !important;
}

/* 【二级主标题】字体加粗 + 较粗下划线 */
.lzb-site-header .lzb-nav > li > .sub-menu > li > a,
.lzb-site-header nav > ul > li > .sub-menu > li > a {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    padding: 8px 0 4px 0 !important;
    margin-bottom: 2px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}
.lzb-site-header .lzb-nav > li > .sub-menu > li > a::after,
.lzb-site-header nav > ul > li > .sub-menu > li > a::after {
    height: 2px !important;
}

/* 【三级及深层子项】细体 + 精致细下划线 */
.lzb-site-header .sub-menu .sub-menu li a {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #666666 !important;
    padding: 3px 0 !important;
    letter-spacing: 0.3px !important;
    text-transform: capitalize !important;
}
.lzb-site-header .sub-menu .sub-menu li a::after {
    height: 1.2px !important;
}

/* ── 8. 右侧图标与搜索栏 ── */
.lzb-header__actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.lzb-header__icon { display: flex; align-items: center; justify-content: center; width: 17px; height: 17px; color: #2e2e2e; text-decoration: none; background: none; border: none; cursor: pointer; padding: 0; transition: opacity 0.2s; position: relative; }
.lzb-header__icon:hover { opacity: 0.6; }
.lzb-header__icon svg { width: 100%; height: 100%; }
.lzb-header__cart-count, .lzb-wishlist-badge { position: absolute; top: -6px; right: -8px; display: flex; align-items: center; justify-content: center; min-width: 16px; height: 16px; padding: 0 4px; background: #d8a7b1; color: #fffdfb; font-size: 9px; font-weight: 600; border-radius: 50%; line-height: 1; box-sizing: border-box; }

.lzb-header-search { position: relative; display: flex; align-items: center; }
.lzb-header-search__input { width: 0; padding: 0; border: none; border-bottom: 2px solid #d8a7b1; font-family: 'Inter', sans-serif; font-size: 14px; color: #2e2e2e; background: transparent; outline: none; transition: width 0.3s ease, padding 0.3s ease; }
.lzb-header-search--open .lzb-header-search__input { width: 180px; padding: 6px 8px; }

/* ── 9. 响应式控制 ── */
@media(max-width:768px){
    .lzb-header .lzb-nav, .lzb-header .lzb-nav__list { display: none !important; }
    .lzb-header { padding: 0 24px; height: 64px; }
}

/* ==========================================
   Account Panel & Cart Drawer (侧滑面板样式)
   ========================================== */
.lzb-account-overlay,
.lzb-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.lzb-account-overlay--open,
.lzb-cart-overlay--open {
    opacity: 1;
    visibility: visible;
}

.lzb-account-panel,
.lzb-cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fffdfb;
    z-index: 9999;
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    box-sizing: border-box;
    overflow-y: auto;
}

.lzb-account-panel--open,
.lzb-cart-drawer--open {
    right: 0 !important;
}

.lzb-account-panel__close,
.lzb-cart-drawer__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2e2e2e;
    padding: 5px;
    line-height: 1;
}

.lzb-account-panel .avatar,
.lzb-account-panel img {
    border-radius: 50%;
    margin-bottom: 12px;
}

.lzb-account-panel ul, 
.lzb-account-panel nav {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 0 0 !important;
}

.lzb-account-panel li,
.lzb-account-panel a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 0 !important;
    color: #2e2e2e !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-bottom: 1px solid rgba(216, 167, 177, 0.15) !important;
    transition: color 0.2s !important;
}

.lzb-account-panel a:hover {
    color: #d8a7b1 !important;
}

.lzb-cart-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(216, 167, 177, 0.2);
    margin-bottom: 20px;
}

.lzb-cart-drawer__title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin: 0;
    color: #2e2e2e;
}

.lzb-cart-drawer__items {
    flex: 1;
    overflow-y: auto;
}

.lzb-cart-drawer__footer {
    padding-top: 20px;
    border-top: 1px solid rgba(216, 167, 177, 0.2);
}

.lzb-cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
}

.lzb-cart-drawer__btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.lzb-cart-drawer__btn--primary {
    background: #2e2e2e;
    color: #fff;
    border: none;
}

.lzb-cart-drawer__btn--secondary {
    background: transparent;
    color: #2e2e2e;
    border: 1px solid #2e2e2e;
}

/* ==========================================
   Cart Drawer Items Modern Styling (购物车列表)
   ========================================== */
.lzb-cart-drawer__items .lzb-cart-item,
.lzb-cart-drawer__items .cart-item,
.lzb-cart-drawer__items > div {
    display: flex !important;
    gap: 16px !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(216, 167, 177, 0.15) !important;
    align-items: flex-start !important;
    position: relative !important;
}

.lzb-cart-drawer__items img {
    width: 80px !important;
    height: 100px !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important;
    background: #f5f5f5 !important;
}

.lzb-cart-drawer__items .lzb-cart-item__info,
.lzb-cart-drawer__items > div > div {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.lzb-cart-drawer__items a {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #2e2e2e !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
.lzb-cart-drawer__items a:hover {
    color: #d8a7b1 !important;
}

.lzb-cart-drawer__items .price,
.lzb-cart-drawer__items .amount {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2e2e2e !important;
    margin-bottom: 8px !important;
}

.lzb-cart-drawer__items .lzb-cart-qty,
.lzb-cart-drawer__items .quantity {
    display: inline-flex !important;
    align-items: center !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 20px !important;
    padding: 2px 8px !important;
    width: fit-content !important;
    background: #fff !important;
}

.lzb-cart-drawer__items button,
.lzb-cart-drawer__items .qty-btn {
    background: none !important;
    border: none !important;
    font-size: 14px !important;
    cursor: pointer !important;
    padding: 2px 8px !important;
    color: #666 !important;
    transition: color 0.2s !important;
}
.lzb-cart-drawer__items button:hover {
    color: #d8a7b1 !important;
}

.lzb-cart-drawer__items .remove,
.lzb-cart-drawer__items .lzb-remove-item {
    font-size: 11px !important;
    color: #999 !important;
    text-decoration: underline !important;
    cursor: pointer !important;
    margin-top: 6px !important;
    display: inline-block !important;
    transition: color 0.2s !important;
}
.lzb-cart-drawer__items .remove:hover,
.lzb-cart-drawer__items .lzb-remove-item:hover {
    color: #e74c3c !important;
}
/* ==========================================
   【强制渲染三级 DOM 节点】
   ========================================== */

/* 1. 强行拉开白框内所有 li 的展示空间 */
.lzb-site-header .sub-menu li,
.lzb-header .sub-menu li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 20px !important;
    margin: 0 !important;
}

/* 2. 强行暴露白框里的所有嵌套 ul (即三级菜单容器) */
.lzb-site-header .sub-menu .sub-menu,
.lzb-site-header .sub-menu ul,
.lzb-header .sub-menu .sub-menu,
.lzb-header .sub-menu ul {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 15px !important; /* 给三级菜单加点向右缩进 */
    margin: 5px 0 10px 0 !important;
    overflow-y: auto;
}

/* 3. 强行给三级菜单链接赋予字号和颜色（防止字体被缩小到 0 或变透明） */
.lzb-site-header .sub-menu .sub-menu a,
.lzb-header .sub-menu .sub-menu a {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #666666 !important;
    text-transform: capitalize !important;
    padding: 3px 0 !important;
    line-height: 1.4 !important;
}
/* ==========================================
   【严格一级 Hover 触发】防止误触 + 二三级联动 + 滚动条
   ========================================== */

/* ── 1. 【严防死守】一级下拉框默认必须绝对隐藏！ ── */
html body .lzb-site-header .lzb-nav > li > .sub-menu,
html body .lzb-header .lzb-nav > li > .sub-menu,
html body nav > ul > li > .sub-menu {
    display: none !important;            /* 默认绝不显示 */
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;      /* 隐藏时禁止接收鼠标事件，防止误触 */
    
    position: absolute !important;
    top: 100% !important;
    margin-top: -2px !important;         /* 紧贴一级菜单，消除缝隙 */
    left: 0 !important;
    
    max-height: 65vh !important;         /* 超长开启滚动条 */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    
    transition: opacity 0.2s ease, visibility 0.2s ease !important;
}

/* ── 2. 【唯一触发钥匙】只有鼠标真正 Hover 到一级菜单 <li> 上时才允许展示 ── */
html body .lzb-site-header .lzb-nav > li:hover > .sub-menu,
html body .lzb-header .lzb-nav > li:hover > .sub-menu,
html body nav > ul > li:hover > .sub-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;     /* 展开后恢复鼠标交互 */
}

/* ── 3. 【三级菜单联动】鼠标 Hover 二级菜单才展开三级 ── */
html body .sub-menu .sub-menu,
html body .sub-menu .children {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    padding-left: 14px !important;
    padding-top: 4px !important;
    padding-bottom: 8px !important;
}

/* 鼠标移动到二级 li 上才显示三级 */
html body .sub-menu > li:hover > .sub-menu,
html body .sub-menu > li:hover > .children {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ── 4. 美化粉色细滚动条 ── */
html body .sub-menu::-webkit-scrollbar { width: 4px !important; }
html body .sub-menu::-webkit-scrollbar-track { background: #f1f1f1 !important; border-radius: 4px !important; }
html body .sub-menu::-webkit-scrollbar-thumb { background: #d8a7b1 !important; border-radius: 4px !important; }

/* ── 5. 全层级动态粉色下划线高亮 ── */
html body .sub-menu a {
    position: relative !important;
    display: inline-block !important;
    text-decoration: none !important;
    transition: color 0.25s ease !important;
}
html body .sub-menu a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 1.5px !important;
    background-color: #d8a7b1 !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.25s ease !important;
}
html body .sub-menu a:hover { color: #d8a7b1 !important; }
html body .sub-menu a:hover::after { transform: scaleX(1) !important; }

/* ===============================
   Account Panel Overlay
================================ */

.lzb-account-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
    z-index: 9998;
}


.lzb-account-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ===============================
   Account Slide Panel
================================ */

.lzb-account-panel {

    position: fixed;
    top:0;
    right:-430px;

    width:420px;
    max-width:100%;

    height:100vh;

    background:#fff;

    box-shadow:-10px 0 40px rgba(0,0,0,.12);

    z-index:9999;

    overflow-y:auto;

    transition:right .35s ease;

}


.lzb-account-panel.active {

    right:0;

}


/* ===============================
   Inner
================================ */

.lzb-account-panel__inner {

    padding:40px;

}


/* ===============================
   Close Button
================================ */

.lzb-account-panel__close {

    position:absolute;

    top:20px;
    right:20px;

    width:38px;
    height:38px;

    border-radius:50%;

    border:1px solid #eee;

    background:#fff;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#333;

}


.lzb-account-panel__close:hover {

    background:#111;
    color:#fff;

}



/* ===============================
   Header
================================ */

.lzb-account-panel__label {

    font-size:13px;
    color:#999;

    margin-bottom:5px;

}


.lzb-account-panel__title {

    font-size:28px;

    font-weight:600;

    margin:0 0 10px;

}


.lzb-account-panel__sub {

    color:#666;

    font-size:14px;

    margin-bottom:30px;

}



/* ===============================
   User Logged State
================================ */


.lzb-account-panel__user {

    text-align:center;

    margin-bottom:35px;

}


.lzb-account-panel__avatar img {

    width:72px;

    height:72px;

    border-radius:50%;

}


.lzb-account-panel__greeting {

    margin-top:15px;

    font-size:14px;

    color:#999;

}


.lzb-account-panel__name {

    font-size:20px;

    font-weight:600;

}



/* ===============================
   Navigation
================================ */


.lzb-account-panel__nav {

    display:flex;

    flex-direction:column;

    gap:5px;

}


.lzb-account-panel__link {

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px 12px;

    color:#333;

    text-decoration:none;

    border-radius:8px;

    font-size:15px;

    transition:.25s;

}


.lzb-account-panel__link svg {

    flex-shrink:0;

}



.lzb-account-panel__link:hover {

    background:#f7f7f7;

    color:#111;

}



/* Logout */

.lzb-account-panel__logout {


    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;


    margin-top:35px;

    padding:14px;


    border:1px solid #ddd;

    color:#333;

    text-decoration:none;

    border-radius:8px;


}


.lzb-account-panel__logout:hover {

    background:#111;

    color:#fff;

}



/* ===============================
   Tabs
================================ */


.lzb-account-panel__tabs {

    display:flex;

    border-bottom:1px solid #eee;

    margin-bottom:25px;

}


.lzb-account-panel__tab {

    flex:1;

    padding:14px;

    border:0;

    background:none;

    cursor:pointer;

    font-size:15px;

    color:#888;

}


.lzb-account-panel__tab.active {

    color:#111;

    border-bottom:2px solid #111;

}



/* ===============================
   Form
================================ */


.lzb-account-panel__form {

    display:none;

}


.lzb-account-panel__form.active {

    display:block;

}


.lzb-account-panel__field {

    margin-bottom:18px;

}


.lzb-account-panel__field label {

    display:block;

    font-size:14px;

    margin-bottom:8px;

    color:#333;

}



.lzb-account-panel__field input {


    width:100%;

    height:48px;

    padding:0 15px;

    border:1px solid #ddd;

    border-radius:6px;

    font-size:14px;

}


.lzb-account-panel__field input:focus {

    border-color:#111;

    outline:none;

}



/* Remember */

.lzb-account-panel__check {

    display:flex;

    gap:8px;

    align-items:center;

    margin-bottom:20px;

    font-size:14px;

}



/* Button */

.lzb-account-panel__btn {


    width:100%;

    height:50px;

    border:0;

    background:#111;

    color:#fff;

    font-size:15px;

    border-radius:6px;

    cursor:pointer;


}



.lzb-account-panel__btn:hover {

    background:#333;

}



/* Footer */

.lzb-account-panel__foot {

    text-align:center;

    font-size:14px;

    margin-top:20px;

}


.lzb-account-panel__foot a {

    color:#111;

    text-decoration:underline;

}



/* ===============================
 Mobile
================================ */


@media(max-width:480px){


.lzb-account-panel {

    width:100%;

}


.lzb-account-panel__inner {

    padding:30px 22px;

}


.lzb-account-panel__title {

    font-size:24px;

}


}