@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #faf8f5;
    --bg-warm: #f5f0eb;
    --ink: #1a1a1a;
    --ink-light: #3d3d3d;
    --text-muted: #6b6b6b;
    --accent: #c9a96e;
    --accent-dark: #b08d55;
    --line: #e8e4df;
    --line-dark: #d5cfc8;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(26,26,26,0.06);
    --shadow-lg: 0 12px 40px rgba(26,26,26,0.1);
    --radius: 0px;
    --tr: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Montserrat', 'Inter', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--tr); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 14px; }
.lx-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}
/* Header */
.lx-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 3000;
    background: rgba(250,248,245,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: var(--tr);
}
.lx-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lx-logo {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
}
.lx-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}
.lx-nav a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-light);
    position: relative;
}
.lx-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: var(--tr);
}
.lx-nav a:hover { color: var(--ink); }
.lx-nav a:hover::after { width: 100%; }
.lx-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
.lx-icon-btn {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--ink-light);
    font-size: 16px;
    transition: var(--tr);
    position: relative;
}
.lx-icon-btn:hover { background: var(--bg-warm); color: var(--ink); }
.lx-badge {
    position: absolute;
    top: 2px; right: 2px;
    width: 16px; height: 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lx-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.lx-burger span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--ink);
    transition: var(--tr);
}
/* Buttons */
.lx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    transition: var(--tr);
    cursor: pointer;
}
.lx-btn:hover {
    background: transparent;
    color: var(--ink);
}
.lx-btn-outline {
    background: transparent;
    color: var(--ink);
}
.lx-btn-outline:hover {
    background: var(--ink);
    color: var(--white);
}
.lx-btn-gold {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}
.lx-btn-gold:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}
/* Section headers */
.lx-section {
    padding: 40px 0;
}
.lx-section-header {
    text-align: center;
    margin-bottom: 64px;
}
.lx-section-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}
.lx-section-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
}
.lx-section-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}
/* Product cards */
.lx-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}
.lx-product-card {
    position: relative;
    background: var(--white);
    transition: var(--tr);
}
.lx-product-card:hover {
    box-shadow: var(--shadow-lg);
}
.lx-product-image {
    position: relative;  
    overflow: hidden;
    background: var(--bg-warm);
    height: 200px;
}
.lx-product-image img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.lx-product-card:hover .lx-product-image img {
    transform: scale(1.05);
}
.lx-product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,26,26,0.15);
    opacity: 0;
    transition: var(--tr);
}
.lx-product-card:hover .lx-product-overlay {
    opacity: 1;
}
@media (max-width: 768px) {
    .lx-product-overlay { opacity: 1; flex-direction: column;}
}
.lx-product-info {
    padding: 24px;
    text-align: center;
}
.lx-product-brand {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
}
.lx-product-name {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--ink);
}
.lx-product-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}
.lx-product-price span {
    text-decoration: line-through;
    margin-left: 10px;
    opacity: 0.5;
}
/* Footer */
.lx-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 40px;
}
.lx-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.lx-footer-brand {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.lx-footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
}
.lx-footer-col a {
    display: block;
    font-size: 14px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.55);
}
.lx-footer-col a:hover { color: var(--accent); }
.lx-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
/* Page header */
.lx-page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: var(--bg-warm);
    border-bottom: 1px solid var(--line);
}
.lx-page-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 16px;
}
.lx-page-subtitle {
    font-size: 15px;
    color: var(--text-muted);
}
/* Forms */
.lx-form-group {
    margin-bottom: 24px;
}
.lx-form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    color: var(--ink-light);
}
.lx-form-group input,
.lx-form-group textarea,
.lx-form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    transition: var(--tr);
}
.lx-form-group input:focus,
.lx-form-group textarea:focus,
.lx-form-group select:focus {
    outline: none;
    border-color: var(--accent);
}
.lx-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
/* Cart / tables */
.lx-table {
    width: 100%;
    border-collapse: collapse;
}
.lx-table th {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    color: var(--text-muted);
}
.lx-table td {
    padding: 24px 16px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}
.lx-table img {
    width: 80px; height: 100px;
    object-fit: cover;
}
.lx-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 768px) {
    .lx-nav { display: none; }
.lx-burger { display: flex; }
.lx-section-title { font-size: 32px; }
.lx-footer-grid { grid-template-columns: 1fr; gap: 40px; }
.lx-products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
.lx-form-row { grid-template-columns: 1fr; }
.lx-header-inner { padding: 0 16px; }
.lx-container { padding: 0 16px; }
.lx-product-info { padding: 10px; }
.lx-header-actions #jq-search-trigger,
    .lx-header-actions > a[href="/wishlist/"] { display: none; }
.lx-logo span { font-size: 22px; }
}

/* ===== h6po80.js compatibility styles ===== */

/* Side menu */
.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: var(--white);
    z-index: 3100;
    transition: left 0.35s ease;
    overflow-y: auto;
    box-shadow: 4px 0 30px rgba(0,0,0,0.1);
}
.side-menu.active { left: 0; }
.menu-header {
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.menu-close {
    margin-left: auto;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}
.menu-list {
    list-style: none;
    padding: 10px 0;
}
.menu-item {
    border-bottom: 1px solid var(--line);
    position: relative;
}
.menu-link {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}
.menu-arrow {
    position: absolute;
    right: 12px;
    top: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tr);
}
.menu-arrow.expanded { transform: rotate(90deg); }
.submenu {
    display: none;
    padding-left: 16px;
    background: var(--bg-warm);
}
.submenu.expanded { display: block; }

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2500;
    display: none;
}
.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid var(--line);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); }
}

/* Pop-up */
.Pop-up {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    z-index: 3200;
    max-width: 900px;
    width: 92%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.top_header {
    display: flex;
    justify-content: flex-end;
    padding: 16px;
    border-bottom: 1px solid var(--line);
}
#jq-close-pop {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-warm);
    cursor: pointer;
    font-size: 14px;
    color: var(--ink);
}
.products_box { padding: 24px; }

/* Shop cart popup */
.shop-cart {
    display: none;
    width: 380px;
    background: var(--white);
    position: absolute;
    box-shadow: var(--shadow-lg);
    top: 48px;
    right: -20px;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
    color: var(--ink);
    padding: 0;
    border: 1px solid var(--line);
    z-index: 3001;
}
.shop-cart-icon:hover .shop-cart { display: block; }
.shop-cart::after {
    content: '';
    position: absolute;
    top: -7px;
    right: 33px;
    width: 15px;
    height: 15px;
    background: var(--white);
    transform: rotate(44deg);
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
}
.shop-cart-body {
    max-height: 360px;
    overflow-y: auto;
    padding: 16px;
}
.shop-cart-body a { text-decoration: none; color: var(--ink); }
.shop-cart-items {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--line);
}
.shop-img img { object-fit: contain; width: 50px; height: 50px; }
.shop-info h4 { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.shop-delete {
    background: var(--accent);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    flex: none;
    font-size: 10px;
    line-height: 20px;
    cursor: pointer;
}
.shop-cart-total {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 600;
}
.shop-cart-subtotal { font-weight: 700; }
.shop-cart-footer { padding: 16px; }
.chekc_btn {
    background: var(--ink);
    color: #fff;
    padding: 14px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--tr);
}
.chekc_btn:hover { background: var(--accent); }

/* Cart & Wishlist items rendered by JS */
.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.cart-item .item-image img { width: 60px; height: 80px; object-fit: cover; }
.cart-item .item-details { flex: 1; }
.cart-item .item-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item .item-sku { font-size: 12px; color: var(--text-muted); }
.cart-item .btn-remove {
    background: var(--accent);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    flex: none;
    font-size: 10px;
    line-height: 20px;
    cursor: pointer;
}
.cart-item .quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    width: fit-content;
}
.cart-item .quantity-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: none;
    border: none;
    color: var(--ink-light);
}
.cart-item .quantity-input {
    width: 36px;
    text-align: center;
    border: none;
    background: none;
    font-size: 13px;
}
.cart-item .item-price { font-size: 14px; font-weight: 600; display: flex;flex-direction: column;}
.cart-item .price-original { text-decoration: line-through; color: var(--text-muted); margin-left: 8px; }

.wishlist-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.wishlist-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    margin-bottom: 0;
}
.wishlist-item .item-image {
    position: relative;
    width: 100%;
}
.wishlist-item .item-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}
.wishlist-item .item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    z-index: 2;
}
.wishlist-item .item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wishlist-item .item-title {
    font-family: var(--font-serif);
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.4;
}
.wishlist-item .item-price {
    font-size: 14px;
    color: var(--text-muted);
}
.wishlist-item .btn-add-to-cart {
    width: 100%;
    padding: 10px 24px;
    background: var(--ink);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: var(--tr);
}
.wishlist-item .btn-add-to-cart:hover { background: var(--accent); }

@media (max-width: 768px) {
    .wishlist-items {
        grid-template-columns: 1fr;
    }
}

/* Search bar */
.lx-search-bar {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 20px 40px;
    z-index: 2999;
}
.lx-search-bar.open { display: block; }

/* ===== Quick View popup styles ===== */
.products_box .pro_title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.2;
    color: var(--ink);
}
.products_box .box_price {
    margin-bottom: 20px;
}
.products_box .discount_price {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-right: 12px;
     text-decoration: line-through;
}
.products_box .price {
    font-size: 16px;
    color: var(--text-muted);
 
}
.products_box .sku_code {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.products_box .sku_code select {
    padding: 10px 14px;
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 14px;
    min-width: 160px;
    cursor: pointer;
}
.products_box .quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    width: fit-content;
}
.products_box .quantity-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: var(--tr);
}
.products_box .quantity-btn:hover {
    background: var(--line);
}
.products_box .quantity-input {
    width: 60px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    text-align: center;
    font-size: 14px;
    color: var(--ink);
    -moz-appearance: textfield;
}
.products_box .quantity-input::-webkit-outer-spin-button,
.products_box .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.products_box .btn {
    display: flex;
    gap: 12px;
}
.products_box .btn .button {
    flex: 1;
    padding: 14px 24px;
    background: var(--ink);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--ink);
    text-align: center;
    cursor: pointer;
    transition: var(--tr);
}
.products_box .btn .button:hover {
    background: transparent;
    color: var(--ink);
}

/* ===== Mobile side-menu search ===== */
.menu-search {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    display: none;
}
.menu-search input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    background: var(--bg);
    font-size: 14px;
    color: var(--ink);
}
.menu-search button {
    margin-top: 10px;
    width: 100%;
}
@media (max-width: 768px) {
    .menu-search { display: block; }
}

/* Successful toast (add to cart / wishlist) */
.successful_title {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3500;
    background: var(--ink);
    color: var(--white);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: flash 0.5s ease-in-out;
    max-width: 90%;
}
@keyframes flash {
    0%, 100% { opacity: 1; }
25%, 75% { opacity: 0.5; }
}
@media (max-width: 768px) {
    .successful_title { top: 64px; font-size: 12px; padding: 12px 20px; }
    .shop-cart-icon:hover .shop-cart { display: none !important; }
}

/* Cards (login, checkout) */
.lx-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 48px;
    max-width: 520px;
    margin: 0 auto;
}
.lx-card-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 8px;
    text-align: center;
}
.lx-card-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
}

/* Policy text */
.lx-policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}
.lx-policy h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
}
.lx-policy h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 40px 0 16px;
}
.lx-policy p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Toast */
#to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: var(--ink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--tr);
    z-index: 2000;
}
#to-top.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===== Site Map ===== */
.lx-sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.lx-sitemap-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 40px;
}
.lx-sitemap-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--ink);
}
.lx-sitemap-list {
    list-style: none;
}
.lx-sitemap-list li {
    margin-bottom: 12px;
}
.lx-sitemap-list a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.3s ease;
}
.lx-sitemap-list a:hover {
    color: var(--accent);
}
.lx-sitemap-cat-title {
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}
.lx-sitemap-cat-list {
    list-style: none;
    margin-top: 8px;
}
.lx-sitemap-cat-list li {
    margin-bottom: 6px;
}
.lx-sitemap-cat-list a {
    color: var(--text-muted);
    font-size: 13px;
    transition: color 0.3s ease;
}
.lx-sitemap-cat-list a:hover {
    color: var(--accent);
}

@media (max-width: 991px) {
    .lx-sitemap-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .lx-sitemap-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 32px; }
}
@media (max-width: 639px) {
    .lx-sitemap-grid { grid-template-columns: 1fr; gap: 24px; }
    .lx-sitemap-cat-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Description image overflow fix */
.desc img { max-width: 100%; height: auto; }
