* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #081120;
    --bg2: #0d1728;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.12);
    --text: #ebf2ff;
    --muted: #9eb0c9;
    --primary: #4f7cff;
    --primary-2: #7c4dff;
    --accent: #12d6a0;
    --danger: #ff6b81;
    --shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    --radius: 22px;
    --radius-sm: 16px;
    --container: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(79, 124, 255, 0.22), transparent 30%),
        radial-gradient(circle at top right, rgba(124, 77, 255, 0.18), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(14px);
    background: rgba(8, 17, 32, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 18px;
}

.logo-text small {
    font-size: 12px;
    color: var(--muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    color: var(--muted);
    font-weight: 600;
    transition: 0.25s ease;
}

.main-nav a:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    background: transparent;
    border-radius: 14px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 12px;
    cursor: pointer;
}

.menu-toggle span {
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

/* BUTTON */
.btn {
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.btn-sm {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    box-shadow: 0 14px 35px rgba(79, 124, 255, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.btn-outline {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* HERO */
.hero {
    padding: 80px 0 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
}

.badge {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(18, 214, 160, 0.12);
    color: #7ef5d0;
    border: 1px solid rgba(18, 214, 160, 0.2);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.08;
    margin-bottom: 18px;
}

.hero-content p {
    color: var(--muted);
    font-size: 18px;
    max-width: 720px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.stat-card {
    padding: 22px 16px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-card h3 {
    font-size: 28px;
    margin-bottom: 6px;
}

.stat-card p {
    font-size: 14px;
    margin: 0;
    color: var(--muted);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.glass-card {
    width: 100%;
    max-width: 460px;
    min-height: 420px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: -30% auto auto -20%;
    width: 260px;
    height: 260px;
    background: rgba(79, 124, 255, 0.25);
    filter: blur(80px);
}

.glass-top {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.glass-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
}

.code-lines {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 18px;
}

.line {
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(79,124,255,0.95), rgba(124,77,255,0.65));
}

.w-90 { width: 90%; }
.w-80 { width: 80%; }
.w-75 { width: 75%; }
.w-70 { width: 70%; }
.w-60 { width: 60%; }
.w-50 { width: 50%; }
.w-95 { width: 95%; }

/* SECTION */
.section {
    padding: 80px 0;
}

.section-dark {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-subtitle {
    display: inline-block;
    margin-bottom: 8px;
    color: #8fb0ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .4px;
}

.section-head h2 {
    font-size: 36px;
}

.section-link {
    color: #bfd0ff;
    font-weight: 700;
}

/* CATEGORY */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.category-card {
    padding: 28px;
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: 0.3s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.1);
}

.category-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    font-weight: 800;
    margin-bottom: 18px;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--muted);
}

/* PRODUCT */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    border-radius: 22px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.product-thumb img {
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #ff8a00, #ff4d6d);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
}

.product-body {
    padding: 20px;
}

.product-category {
    display: inline-block;
    font-size: 12px;
    color: #9ac2ff;
    background: rgba(79,124,255,0.12);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.product-body h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-body p {
    color: var(--muted);
    font-size: 14px;
    min-height: 66px;
}

.product-meta {
    margin: 16px 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #c8d7f1;
    font-size: 14px;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.product-price strong {
    display: block;
    font-size: 22px;
    color: #fff;
}

.product-price del {
    color: #8091ac;
    font-size: 14px;
}

/* ARTICLE */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.article-card {
    border-radius: 22px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: 0.3s ease;
}

.article-card:hover {
    transform: translateY(-6px);
}

.article-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.article-thumb img {
    height: 100%;
    object-fit: cover;
}

.article-body {
    padding: 22px;
}

.article-category {
    display: inline-block;
    color: #7ef5d0;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.article-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.article-body p {
    color: var(--muted);
    margin-bottom: 16px;
}

.read-more {
    color: #bfd0ff;
    font-weight: 700;
}

/* CTA */
.cta-section {
    padding: 0 0 80px;
}

.cta-box {
    padding: 38px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(79,124,255,0.18), rgba(124,77,255,0.18));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.cta-box h2 {
    font-size: 34px;
    margin: 6px 0 10px;
}

.cta-box p {
    color: #d0dcf3;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* FOOTER */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0, 0, 0, 0.15);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 14px;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: var(--muted);
    font-size: 15px;
}

.footer-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

/* EMPTY */
.empty-box {
    grid-column: 1 / -1;
    padding: 24px;
    border-radius: 18px;
    border: 1px dashed rgba(255,255,255,0.18);
    color: var(--muted);
    text-align: center;
    background: rgba(255,255,255,0.03);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hero-grid,
    .footer-grid,
    .product-grid,
    .article-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 82px;
        left: 16px;
        right: 16px;
        background: #0f1b2d;
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: var(--shadow);
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .main-nav.active {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .product-grid,
    .article-grid,
    .category-grid,
    .footer-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 50px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .cta-box {
        padding: 24px;
    }

    .cta-box h2,
    .section-head h2 {
        font-size: 28px;
    }
}
/* =========================
   HEADER NAV BARU
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(14px);
    background: rgba(8, 17, 32, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav a {
    color: var(--muted);
    font-weight: 600;
    transition: 0.25s ease;
}

.desktop-nav a:hover {
    color: #fff;
}

.mobile-menu-btn {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 12px;
    cursor: pointer;
}

.mobile-menu-btn span {
    height: 2px;
    background: #fff;
    border-radius: 999px;
    display: block;
}

/* =========================
   MOBILE DRAWER
========================= */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1200;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(86%, 360px);
    height: 100vh;
    background: #ffffff;
    color: #111827;
    transform: translateX(-100%);
    transition: 0.3s ease;
    z-index: 1300;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.mobile-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-top {
    min-height: 92px;
    padding: 22px 22px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #ececec;
}

.mobile-drawer-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.mobile-drawer-brand strong {
    font-size: 20px;
    color: #111827;
}

.mobile-drawer-brand small {
    color: #6b7280;
    font-size: 13px;
}

.mobile-drawer-close {
    width: 56px;
    height: 56px;
    border: none;
    background: #ffffff;
    color: #111827;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

.mobile-drawer-body {
    padding: 10px 0 30px;
}

.drawer-link,
.drawer-accordion {
    width: 100%;
    min-height: 76px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    background: #ffffff;
    color: #111827;
    font-size: 22px;
    font-weight: 500;
    border-bottom: 1px solid #f2f2f2;
    text-align: left;
    cursor: pointer;
}

.drawer-link:hover,
.drawer-accordion:hover {
    background: #fafafa;
}

.drawer-group {
    width: 100%;
}

.drawer-arrow {
    color: #b6b8c0;
    font-size: 20px;
    transition: 0.25s ease;
}

.drawer-group.active .drawer-arrow {
    transform: rotate(180deg);
}

.drawer-panel {
    max-height: 0;
    overflow: hidden;
    background: #f9fafb;
    transition: max-height 0.3s ease;
}

.drawer-panel a {
    display: block;
    padding: 15px 28px;
    color: #374151;
    font-size: 16px;
    border-bottom: 1px solid #eceff3;
}

.drawer-panel a:hover {
    background: #f1f5f9;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 860px) {
    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (min-width: 861px) {
    .mobile-drawer,
    .mobile-drawer-overlay {
        display: none;
    }
}
/* =========================
   REVIEW SECTION
========================= */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.10);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-user-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.review-user-info small {
    color: var(--muted);
    font-size: 13px;
}

.review-rating {
    font-size: 18px;
    color: #ffb020;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.review-text {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   PREMIUM HEADER
========================= */
.topbar-premium {
    position: relative;
    z-index: 1001;
    background: linear-gradient(90deg, rgba(79,124,255,0.14), rgba(124,77,255,0.12));
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-premium-wrap {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-left p {
    margin: 0;
    color: #dbe6ff;
    font-size: 14px;
}

.topbar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f7cff, #7c4dff);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(79, 124, 255, 0.25);
}

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

.topbar-right a {
    font-size: 13px;
    color: #d7e3ff;
    opacity: 0.9;
}

.premium-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0 0;
    background: linear-gradient(180deg, rgba(8,17,32,0.90), rgba(8,17,32,0.48));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.premium-header.scrolled {
    padding-top: 8px;
}

.header-shell {
    position: relative;
    min-height: 84px;
    padding: 14px 20px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 22px 50px rgba(0,0,0,0.22);
    overflow: visible;
}

.header-shell::before {
    top: -30px;
    left: 0;
    width: 160px;
    height: 160px;
    background: rgba(79,124,255,0.14);
    filter: blur(55px);
}

.header-shell::after {
    right: 0;
    top: -30px;
    width: 160px;
    height: 160px;
    background: rgba(124,77,255,0.14);
    filter: blur(55px);
}

.premium-logo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.premium-logo-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, #4f7cff, #7c4dff);
    box-shadow: 0 18px 35px rgba(79,124,255,0.28);
    font-size: 24px;
}

.logo-text strong {
    display: block;
    font-size: 18px;
    line-height: 1.15;
    color: #fff;
}

.logo-text small {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
}

.premium-nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}

.nav-link,
.nav-dropdown-toggle {
    position: relative;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: transparent;
    color: #d7e3ff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.28s ease;
}

.nav-link:hover,
.nav-dropdown-toggle:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4f7cff, #7c4dff);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 230px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(10, 18, 35, 0.96);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 24px 50px rgba(0,0,0,0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.28s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #d9e4ff;
    font-size: 14px;
    transition: 0.25s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.header-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost-light {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-weight: 700;
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,0.08);
}

.premium-cta {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 16px;
}

.premium-menu-btn {
    width: 52px;
    height: 52px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.premium-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: #fff;
}

/* =========================
   MOBILE DRAWER PREMIUM
========================= */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.48);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1200;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.premium-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(88%, 370px);
    height: 100vh;
    background: #ffffff;
    color: #111827;
    transform: translateX(-100%);
    transition: 0.3s ease;
    z-index: 1300;
    overflow-y: auto;
    box-shadow: 0 30px 70px rgba(0,0,0,0.28);
}

.premium-mobile-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-top {
    padding: 24px 22px;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #ececec;
    background: linear-gradient(135deg, #f7f9ff, #ffffff);
}

.mobile-drawer-brand strong {
    display: block;
    font-size: 20px;
    color: #111827;
}

.mobile-drawer-brand small {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 13px;
}

.mobile-drawer-close {
    width: 56px;
    height: 56px;
    border: none;
    background: #fff;
    font-size: 42px;
    line-height: 1;
    color: #111827;
    cursor: pointer;
}

.mobile-drawer-body {
    padding: 8px 0 28px;
}

.drawer-link,
.drawer-accordion {
    width: 100%;
    min-height: 74px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    background: #fff;
    color: #111827;
    font-size: 22px;
    font-weight: 500;
    text-align: left;
    border-bottom: 1px solid #f0f2f5;
    cursor: pointer;
}

.drawer-link:hover,
.drawer-accordion:hover {
    background: #fafafa;
}

.drawer-arrow {
    color: #b6b8c0;
    font-size: 18px;
    transition: 0.25s ease;
}

.drawer-group.active .drawer-arrow {
    transform: rotate(180deg);
}

.drawer-panel {
    max-height: 0;
    overflow: hidden;
    background: #f8fafc;
    transition: max-height 0.3s ease;
}

.drawer-panel a {
    display: block;
    padding: 14px 28px;
    color: #374151;
    font-size: 16px;
    border-bottom: 1px solid #e9eef4;
}

.drawer-panel a:hover {
    background: #eff6ff;
}

/* =========================
   RESPONSIVE HEADER
========================= */
@media (max-width: 1100px) {
    .premium-nav {
        gap: 4px;
    }

    .nav-link,
    .nav-dropdown-toggle {
        padding: 0 12px;
        font-size: 13px;
    }

    .logo-text strong {
        font-size: 16px;
    }
}

@media (max-width: 860px) {
    .topbar-right,
    .premium-nav,
    .header-right .btn-ghost-light,
    .header-right .premium-cta {
        display: none;
    }

    .premium-menu-btn {
        display: flex;
    }

    .header-shell {
        padding: 14px 16px;
        min-height: 78px;
        border-radius: 22px;
    }

    .premium-logo-icon {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .topbar-premium-wrap {
        min-height: 42px;
    }

    .topbar-left p {
        font-size: 12px;
    }

    .topbar-badge {
        height: 24px;
        padding: 0 10px;
        font-size: 11px;
    }

    .header-shell {
        gap: 12px;
    }

    .logo-text strong {
        font-size: 15px;
    }

    .logo-text small {
        font-size: 12px;
    }

    .premium-logo-icon {
        width: 50px;
        height: 50px;
    }

    .premium-menu-btn {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .drawer-link,
    .drawer-accordion {
        min-height: 68px;
        font-size: 20px;
    }
}
/* =========================
   PRODUCTS PAGE
========================= */
.page-hero {
    padding: 60px 0 20px;
}

.product-page-hero .page-hero-content {
    max-width: 860px;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(79,124,255,0.14), rgba(124,77,255,0.10));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
}

.page-hero-content h1 {
    font-size: 44px;
    line-height: 1.15;
    margin: 10px 0 14px;
}

.page-hero-content p {
    color: var(--muted);
    font-size: 17px;
    max-width: 760px;
}

.product-list-section {
    padding-top: 28px;
}

.product-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
}

.result-count {
    color: var(--muted);
    font-size: 15px;
}

.result-count strong {
    color: #fff;
}

.product-filter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.filter-input-group {
    min-width: 190px;
}

.filter-input,
.filter-select {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.06);
    color: #fff;
    outline: none;
    font-size: 14px;
}

.filter-select option {
    color: #111827;
}

.filter-input::placeholder {
    color: #aeb9d0;
}

.filter-btn,
.filter-reset-btn {
    min-height: 50px;
}

.product-grid-page {
    grid-template-columns: repeat(4, 1fr);
}

.product-thumb-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79,124,255,0.35), rgba(124,77,255,0.35));
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.product-extra-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 12px;
}

.product-extra-meta span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #dce7ff;
    font-size: 12px;
    font-weight: 600;
}

.pagination-wrap {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.page-link {
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    font-weight: 700;
    transition: 0.25s ease;
}

.page-link:hover,
.page-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-color: transparent;
}

@media (max-width: 1100px) {
    .product-grid-page {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-toolbar {
        flex-direction: column;
    }

    .product-filter-form {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 860px) {
    .product-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 640px) {
    .product-grid-page {
        grid-template-columns: 1fr;
    }

    .page-hero-content {
        padding: 24px;
    }

    .page-hero-content h1 {
        font-size: 28px;
    }

    .product-toolbar {
        padding: 18px;
    }

    .filter-input-group {
        width: 100%;
        min-width: 100%;
    }

    .product-filter-form {
        width: 100%;
    }

    .filter-btn,
    .filter-reset-btn {
        width: 100%;
    }
}
/* =========================
   HEADER V2 WITH SEARCH
========================= */
.premium-header-v2 {
    padding: 14px 0 0;
}

.premium-header-shell-v2 {
    min-height: 92px;
    padding: 14px 18px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 24px 55px rgba(0,0,0,0.24);
    gap: 18px;
}

.premium-logo-v2 {
    min-width: 280px;
}

.header-center-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.header-search-form {
    width: 100%;
}

.header-search-box {
    height: 54px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.header-search-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dce6ff;
    background: rgba(255,255,255,0.05);
    flex-shrink: 0;
}

.header-search-icon svg {
    width: 18px;
    height: 18px;
}

.header-search-input {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    color: #ffffff;
    outline: none;
    font-size: 14px;
}

.header-search-input::placeholder {
    color: #aeb9d0;
}

.header-search-btn {
    height: 42px;
    padding: 0 18px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(79,124,255,0.20);
}

.premium-nav-v2 {
    justify-content: flex-start;
    gap: 6px;
    padding: 6px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.premium-nav-v2 .nav-link,
.premium-nav-v2 .nav-dropdown-toggle {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 13px;
}

.header-right-v2 {
    align-self: center;
}

.modern-menu-btn {
    width: 54px;
    height: 54px;
    display: none;
    position: relative;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    box-shadow: 0 12px 28px rgba(0,0,0,0.16);
    padding: 0;
    cursor: pointer;
}

.modern-menu-btn span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}

.modern-menu-btn span:nth-child(1) { top: 17px; left: 17px; }
.modern-menu-btn span:nth-child(2) { top: 17px; right: 17px; }
.modern-menu-btn span:nth-child(3) { bottom: 17px; left: 17px; }
.modern-menu-btn span:nth-child(4) { bottom: 17px; right: 17px; }

/* =========================
   MOBILE DRAWER V2
========================= */
.mobile-drawer-v2 {
    width: min(86%, 340px);
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
}

.mobile-search-form {
    margin-bottom: 14px;
}

.mobile-search-box {
    display: flex;
    gap: 8px;
    padding: 6px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e8eef6;
}

.mobile-search-input {
    flex: 1;
    height: 44px;
    padding: 0 14px;
    border: none;
    background: transparent;
    outline: none;
    color: #0f172a;
    font-size: 14px;
}

.mobile-search-btn {
    height: 44px;
    padding: 0 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.drawer-bottom-card-v2 {
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(79,124,255,0.12), rgba(124,77,255,0.10));
    border: 1px solid rgba(79,124,255,0.15);
}

.drawer-bottom-card-v2 p {
    font-size: 14px;
    color: #334155;
    line-height: 1.65;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .premium-logo-v2 {
        min-width: 240px;
    }

    .header-search-btn {
        padding: 0 14px;
    }

    .premium-nav-v2 .nav-link,
    .premium-nav-v2 .nav-dropdown-toggle {
        padding: 0 11px;
        font-size: 12px;
    }
}

@media (max-width: 860px) {
    .header-center-area,
    .header-right-v2 .btn-ghost-light,
    .header-right-v2 .premium-cta {
        display: none;
    }

    .modern-menu-btn {
        display: inline-flex;
    }

    .premium-header-shell-v2 {
        min-height: 82px;
        padding: 12px 14px;
        border-radius: 22px;
    }

    .premium-logo-v2 {
        min-width: 0;
        flex: 1;
    }

    .premium-logo-icon {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        font-size: 22px;
    }

    .logo-text strong {
        font-size: 16px;
        line-height: 1.2;
    }

    .logo-text small {
        font-size: 12px;
        line-height: 1.35;
    }
}

@media (max-width: 640px) {
    .topbar-left p {
        font-size: 12px;
    }

    .mobile-drawer-v2 {
        width: min(88%, 320px);
    }

    .mobile-search-btn {
        padding: 0 14px;
        font-size: 13px;
    }
}
.category-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #ffffff;
    margin-bottom: 18px;
    box-shadow: 0 18px 35px rgba(79, 124, 255, 0.22);
}

.category-icon svg {
    width: 34px;
    height: 34px;
    display: block;
}
.clean-drawer-body {
    padding: 14px 14px calc(28px + env(safe-area-inset-bottom));
}

.drawer-bottom-card,
.drawer-bottom-card-v2 {
    margin-top: 18px;
    margin-bottom: 4px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(79,124,255,0.08), rgba(124,77,255,0.08));
    border: 1px solid rgba(79,124,255,0.12);
    box-shadow: 0 10px 24px rgba(15,23,42,0.05);
}

.drawer-bottom-card p,
.drawer-bottom-card-v2 p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
}

.drawer-bottom-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.drawer-bottom-actions .btn {
    min-height: 44px;
    width: 100%;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    padding: 0 14px;
}

.drawer-bottom-actions .btn-outline {
    background: #ffffff;
    border: 1px solid #dbe3ef;
    color: #0f172a;
}

.drawer-bottom-actions .btn-outline:hover {
    background: #f8fafc;
}

.drawer-bottom-actions .btn-primary {
    box-shadow: 0 10px 20px rgba(79,124,255,0.18);
}

@media (max-width: 640px) {
    .drawer-bottom-card,
    .drawer-bottom-card-v2 {
        padding: 14px;
        border-radius: 16px;
    }

    .drawer-bottom-card p,
    .drawer-bottom-card-v2 p {
        font-size: 13px;
        line-height: 1.55;
    }

    .drawer-bottom-actions .btn {
        min-height: 42px;
        font-size: 14px;
        border-radius: 12px;
    }
}
/* =========================
   PREMIUM PAGE LOADER
========================= */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(79,124,255,0.24), transparent 30%),
        radial-gradient(circle at 80% 15%, rgba(124,77,255,0.18), transparent 28%),
        radial-gradient(circle at 50% 85%, rgba(18,214,160,0.10), transparent 24%),
        linear-gradient(180deg, #060d1a 0%, #0a1630 55%, #081120 100%);
}

.page-loader-backdrop::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
    opacity: 0.4;
}

.page-loader-content {
    position: relative;
    z-index: 2;
    width: min(92%, 430px);
    padding: 34px 28px;
    text-align: center;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    backdrop-filter: blur(20px);
}

.loader-orb {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-orb-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.10);
}

.loader-orb-ring.ring-1 {
    animation: loaderRotate 2.8s linear infinite;
    border-top-color: rgba(79,124,255,0.95);
    border-right-color: rgba(124,77,255,0.85);
    box-shadow: 0 0 35px rgba(79,124,255,0.22);
}

.loader-orb-ring.ring-2 {
    inset: 12px;
    animation: loaderRotateReverse 2.1s linear infinite;
    border-bottom-color: rgba(18,214,160,0.85);
    border-left-color: rgba(255,255,255,0.45);
}

.loader-orb-core {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    box-shadow:
        0 18px 35px rgba(79,124,255,0.28),
        0 0 45px rgba(124,77,255,0.20);
    animation: loaderPulse 2s ease-in-out infinite;
}

.loader-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #ffffff;
}

.loader-subtitle {
    color: #b9c6dc;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.loader-progress {
    width: 100%;
    height: 12px;
    padding: 2px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    margin-bottom: 18px;
}

.loader-progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2), #8f6bff);
    box-shadow: 0 0 20px rgba(124,77,255,0.35);
    animation: loaderProgress 1.8s ease-in-out forwards;
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.loader-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    animation: loaderDots 1.2s infinite ease-in-out;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.18s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.36s;
}

body.loader-lock {
    overflow: hidden;
}

@keyframes loaderRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes loaderRotateReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 18px 35px rgba(79,124,255,0.28),
            0 0 45px rgba(124,77,255,0.20);
    }
    50% {
        transform: scale(1.06);
        box-shadow:
            0 20px 40px rgba(79,124,255,0.35),
            0 0 55px rgba(124,77,255,0.28);
    }
}

@keyframes loaderProgress {
    0% { width: 0%; }
    20% { width: 25%; }
    50% { width: 58%; }
    80% { width: 82%; }
    100% { width: 100%; }
}

@keyframes loaderDots {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.35;
    }
    40% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .page-loader-content {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .loader-orb {
        width: 110px;
        height: 110px;
        margin-bottom: 18px;
    }

    .loader-orb-core {
        width: 68px;
        height: 68px;
        border-radius: 20px;
        font-size: 26px;
    }

    .loader-title {
        font-size: 22px;
    }

    .loader-subtitle {
        font-size: 14px;
    }
}
/* =========================
   CONTACT PAGE
========================= */
.contact-page-hero .page-hero-content {
    max-width: 860px;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(79,124,255,0.14), rgba(124,77,255,0.10));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
}

.contact-page-hero .page-hero-content h1 {
    font-size: 44px;
    line-height: 1.15;
    margin: 10px 0 14px;
}

.contact-page-hero .page-hero-content p {
    color: var(--muted);
    font-size: 17px;
    max-width: 760px;
}

.contact-section {
    padding-top: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
}

.contact-info-side,
.contact-form-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card,
.contact-side-box,
.contact-form-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
}

.contact-info-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 16px 30px rgba(79,124,255,0.22);
}

.contact-info-icon svg {
    width: 26px;
    height: 26px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.contact-info-card p {
    color: var(--muted);
    font-size: 15px;
}

.contact-side-box {
    padding: 26px;
}

.contact-side-box h3 {
    font-size: 28px;
    margin: 8px 0 12px;
}

.contact-side-box p {
    color: var(--muted);
    line-height: 1.8;
}

.contact-form-box {
    padding: 28px;
}

.contact-form-head h2 {
    font-size: 34px;
    margin: 8px 0 10px;
}

.contact-form-head p {
    color: var(--muted);
    margin-bottom: 22px;
}

.contact-form {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #dfe7f6;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    border-radius: 16px;
    outline: none;
    padding: 15px 16px;
    font-size: 14px;
    transition: 0.25s ease;
}

.form-group input {
    height: 52px;
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aeb9d0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(124,77,255,0.55);
    box-shadow: 0 0 0 4px rgba(124,77,255,0.10);
}

.contact-submit-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 16px;
}

.alert-success,
.alert-error {
    padding: 16px 18px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.alert-success {
    background: rgba(22,199,132,0.12);
    border: 1px solid rgba(22,199,132,0.24);
    color: #9af0ca;
}

.alert-error {
    background: rgba(255,93,115,0.12);
    border: 1px solid rgba(255,93,115,0.24);
    color: #ffd0d7;
}

.form-error-list {
    margin-top: 8px;
    padding-left: 18px;
}

.form-error-list li {
    margin-bottom: 4px;
}

@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .contact-page-hero .page-hero-content h1 {
        font-size: 34px;
    }

    .contact-form-head h2 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .contact-page-hero .page-hero-content {
        padding: 24px;
    }

    .contact-page-hero .page-hero-content h1 {
        font-size: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-box,
    .contact-side-box,
    .contact-info-card {
        padding: 20px;
    }
}
/* =========================
   PRODUCT DETAIL PAGE
========================= */
.product-detail-hero {
    padding-top: 30px;
    padding-bottom: 10px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: #dbe6ff;
}

.product-detail-section {
    padding-top: 20px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
}

.product-gallery-card,
.product-info-card,
.content-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.product-gallery-card {
    padding: 20px;
}

.product-gallery-main {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    aspect-ratio: 16 / 10;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.product-thumb-mini {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.product-thumb-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-card {
    padding: 26px;
}

.product-detail-top h1 {
    font-size: 38px;
    line-height: 1.15;
    margin: 12px 0 14px;
}

.product-short-desc {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    color: #dce7ff;
    font-size: 14px;
}

.product-price-box {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(79,124,255,0.10), rgba(124,77,255,0.10));
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 22px;
}

.product-price-box .product-price strong {
    font-size: 34px;
}

.product-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.spec-item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.spec-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.spec-item strong {
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
}

.product-extra-links {
    margin-top: 18px;
}

.product-content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
}

.product-main-content,
.product-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content-card {
    padding: 26px;
}

.rich-content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 14px;
}

.sticky-card {
    position: sticky;
    top: 120px;
}

.file-list {
    display: grid;
    gap: 14px;
}

.file-item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.file-item h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.file-item p {
    color: var(--muted);
    font-size: 13px;
}

.file-type-badge {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(79,124,255,0.12);
    color: #dce7ff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.detail-review-list {
    display: grid;
    gap: 16px;
}

.detail-review-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.detail-review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.detail-review-user h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.detail-review-user small {
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 1100px) {
    .product-detail-grid,
    .product-content-grid {
        grid-template-columns: 1fr;
    }

    .sticky-card {
        position: static;
    }
}

@media (max-width: 860px) {
    .product-detail-top h1 {
        font-size: 30px;
    }

    .product-specs {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .product-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-info-card,
    .content-card,
    .product-gallery-card {
        padding: 20px;
    }

    .product-detail-top h1 {
        font-size: 26px;
    }

    .product-price-box .product-price strong {
        font-size: 28px;
    }

    .product-specs {
        grid-template-columns: 1fr;
    }

    .file-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.site-header,
.topbar-premium,
.hero,
.section,
.cta-section,
.site-footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.header-shell,
.clean-header-shell,
.premium-header-shell-v2 {
    overflow: hidden !important;
    max-width: 100%;
}

.header-shell::before,
.header-shell::after,
.clean-header-shell::before,
.clean-header-shell::after,
.premium-header-shell-v2::before,
.premium-header-shell-v2::after {
    pointer-events: none;
}

.container {
    width: min(var(--container), calc(100% - 24px));
    margin-left: auto;
    margin-right: auto;
}
/* =========================
   AUTH PAGE
========================= */
.auth-page-hero .page-hero-content {
    max-width: 860px;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(79,124,255,0.14), rgba(124,77,255,0.10));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
}

.auth-page-hero .page-hero-content h1 {
    font-size: 44px;
    line-height: 1.15;
    margin: 10px 0 14px;
}

.auth-page-hero .page-hero-content p {
    color: var(--muted);
    font-size: 17px;
    max-width: 760px;
}

.auth-section {
    padding-top: 30px;
}

.auth-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
}

.auth-side-card,
.auth-form-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.auth-side-card {
    padding: 28px;
    height: 100%;
}

.auth-side-card h2 {
    font-size: 34px;
    margin: 8px 0 14px;
}

.auth-side-card p {
    color: var(--muted);
    line-height: 1.8;
}

.auth-feature-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.auth-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.auth-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 12px 24px rgba(79,124,255,0.20);
}

.auth-feature-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.auth-feature-item p {
    font-size: 14px;
    color: var(--muted);
}

.auth-form-box {
    padding: 30px;
}

.auth-form-head h2 {
    font-size: 34px;
    margin: 8px 0 10px;
}

.auth-form-head p {
    color: var(--muted);
    margin-bottom: 22px;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #dfe7f6;
}

.auth-form .form-group input {
    width: 100%;
    height: 54px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    border-radius: 16px;
    outline: none;
    padding: 0 16px;
    font-size: 14px;
    transition: 0.25s ease;
}

.auth-form .form-group input::placeholder {
    color: #aeb9d0;
}

.auth-form .form-group input:focus {
    border-color: rgba(124,77,255,0.55);
    box-shadow: 0 0 0 4px rgba(124,77,255,0.10);
}

.auth-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.remember-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.auth-link {
    color: #c9d8ff;
    font-size: 14px;
    font-weight: 700;
}

.auth-submit-btn {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    font-size: 16px;
}

.auth-bottom-text {
    margin-top: 18px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

.auth-bottom-text a {
    color: #dce6ff;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .auth-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .auth-page-hero .page-hero-content h1,
    .auth-form-head h2,
    .auth-side-card h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .auth-page-hero .page-hero-content {
        padding: 24px;
    }

    .auth-page-hero .page-hero-content h1,
    .auth-form-head h2,
    .auth-side-card h2 {
        font-size: 26px;
    }

    .auth-form-box,
    .auth-side-card {
        padding: 22px;
    }

    .auth-form-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
.article-filter-grid {
    grid-template-columns: minmax(0, 1fr) 240px 220px;
}

.section-box {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.stats-inline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 18px 0 24px;
}

.stats-inline-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.stats-inline-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.stats-inline-item strong {
    color: #fff;
    font-size: 16px;
}

.article-lead {
    font-size: 18px;
    line-height: 1.8;
    color: #cdd9f6;
    margin-bottom: 18px;
}

@media (max-width: 1100px) {
    .article-filter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-inline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .article-filter-grid {
        grid-template-columns: 1fr;
    }

    .section-box {
        padding: 20px;
        border-radius: 22px;
    }
}
.public-article-detail-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.public-article-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.public-article-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.public-article-body {
    padding: 28px;
}

.public-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    color: #9ac2ff;
    font-size: 14px;
    font-weight: 700;
}

.public-article-body h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #ffffff;
}

.public-article-lead {
    font-size: 19px;
    line-height: 1.85;
    color: #cdd9f6;
    margin-bottom: 24px;
}

.public-article-content {
    color: #e6eeff;
    font-size: 17px;
    line-height: 1.95;
}

.public-article-content p {
    margin-bottom: 18px;
}

.public-article-content h2,
.public-article-content h3,
.public-article-content h4 {
    margin-top: 28px;
    margin-bottom: 14px;
    color: #ffffff;
}

.public-article-content ul,
.public-article-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.public-article-content li {
    margin-bottom: 10px;
}

.public-article-content a {
    color: #8fb5ff;
    text-decoration: underline;
}

.public-article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.public-article-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}

.public-article-card-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.public-article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.public-article-card-body {
    padding: 20px;
}

.public-article-card-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #9ac2ff;
    font-size: 13px;
    font-weight: 700;
}

.public-article-card-body h3 {
    font-size: 26px;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #ffffff;
}

.public-article-card-body p {
    color: #cad8f3;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.public-article-card-meta {
    color: #aebfdf;
    font-size: 13px;
    margin-bottom: 16px;
}

.public-article-card-actions {
    display: flex;
    gap: 12px;
}

@media (max-width: 900px) {
    .public-article-grid {
        grid-template-columns: 1fr;
    }

    .public-article-body {
        padding: 22px;
    }

    .public-article-body h1 {
        font-size: 32px;
    }

    .public-article-lead {
        font-size: 17px;
    }

    .public-article-content {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .public-article-body {
        padding: 18px;
    }

    .public-article-body h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    .public-article-lead {
        font-size: 16px;
        line-height: 1.8;
    }

    .public-article-content {
        font-size: 15px;
        line-height: 1.9;
    }

    .public-article-card-body {
        padding: 16px;
    }

    .public-article-card-body h3 {
        font-size: 22px;
    }

    .public-article-card-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
.public-article-detail-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.public-article-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.public-article-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.public-article-body {
    padding: 28px;
}

.public-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    color: #9ac2ff;
    font-size: 14px;
    font-weight: 700;
}

.public-article-body h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #ffffff;
}

.public-article-lead {
    font-size: 19px;
    line-height: 1.85;
    color: #cdd9f6;
    margin-bottom: 24px;
}

.public-article-content {
    color: #e6eeff;
    font-size: 17px;
    line-height: 1.95;
    word-break: break-word;
}

.public-article-content p {
    margin-bottom: 18px;
}

.public-article-content h2,
.public-article-content h3,
.public-article-content h4 {
    margin-top: 28px;
    margin-bottom: 14px;
    color: #ffffff;
}

.public-article-content ul,
.public-article-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.public-article-content li {
    margin-bottom: 10px;
}

.public-article-content a {
    color: #8fb5ff;
    text-decoration: underline;
}

.public-article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.public-article-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}

.public-article-card-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.public-article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.public-article-card-body {
    padding: 20px;
}

.public-article-card-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #9ac2ff;
    font-size: 13px;
    font-weight: 700;
}

.public-article-card-body h3 {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #ffffff;
}

.public-article-card-body p {
    color: #cad8f3;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.public-article-card-meta {
    color: #aebfdf;
    font-size: 13px;
    margin-bottom: 16px;
}

.public-article-card-actions {
    display: flex;
    gap: 12px;
}

@media (max-width: 900px) {
    .public-article-grid {
        grid-template-columns: 1fr;
    }

    .public-article-body {
        padding: 22px;
    }

    .public-article-body h1 {
        font-size: 32px;
    }

    .public-article-lead {
        font-size: 17px;
    }

    .public-article-content {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .public-article-body {
        padding: 18px;
    }

    .public-article-body h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    .public-article-lead {
        font-size: 16px;
        line-height: 1.8;
    }

    .public-article-content {
        font-size: 15px;
        line-height: 1.9;
    }

    .public-article-card-body {
        padding: 16px;
    }

    .public-article-card-body h3 {
        font-size: 22px;
    }

    .public-article-card-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
/* ========== LUXURY ARTICLE DETAIL ========== */
.lux-article-hero {
    padding: 30px 0 10px;
}

.lux-breadcrumb {
    margin-bottom: 18px;
    opacity: 0.95;
}

.lux-article-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
        radial-gradient(circle at top left, rgba(102,126,234,0.22), transparent 38%),
        radial-gradient(circle at top right, rgba(118,75,162,0.18), transparent 32%),
        rgba(7, 17, 40, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 18px 60px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(18px);
}

.lux-article-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.lux-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

.lux-article-cover-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(6, 12, 28, 0.95) 0%, rgba(6, 12, 28, 0.22) 45%, rgba(6, 12, 28, 0.08) 100%),
        radial-gradient(circle at center, transparent 20%, rgba(8, 18, 38, 0.25) 100%);
}

.lux-article-head {
    position: relative;
    padding: 28px 28px 20px;
}

.lux-article-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.lux-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #dce7ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.lux-chip-primary {
    background: linear-gradient(135deg, rgba(79,124,255,0.25), rgba(124,77,255,0.22));
    border-color: rgba(124,77,255,0.34);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(94, 92, 230, 0.18);
}

.lux-article-head h1 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.14;
    letter-spacing: -0.8px;
    color: #ffffff;
    text-shadow: 0 8px 28px rgba(0,0,0,0.24);
}

.lux-article-lead {
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    color: #d3def6;
    font-size: 18px;
    line-height: 1.9;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.lux-article-content-wrap {
    padding: 0 28px 28px;
}

.lux-article-content {
    padding: 28px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025)),
        rgba(10, 21, 45, 0.92);
    border: 1px solid rgba(255,255,255,0.08);
    color: #edf3ff;
    font-size: 17px;
    line-height: 2;
    word-break: break-word;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 16px 40px rgba(0,0,0,0.16);
}

.lux-article-content p {
    margin-bottom: 18px;
    color: #e3ecff;
}

.lux-article-content h2,
.lux-article-content h3,
.lux-article-content h4 {
    margin-top: 30px;
    margin-bottom: 14px;
    color: #ffffff;
    line-height: 1.3;
}

.lux-article-content h2 {
    font-size: 30px;
}

.lux-article-content h3 {
    font-size: 24px;
}

.lux-article-content h4 {
    font-size: 20px;
}

.lux-article-content ul,
.lux-article-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.lux-article-content li {
    margin-bottom: 10px;
}

.lux-article-content blockquote {
    margin: 22px 0;
    padding: 18px 20px;
    border-left: 4px solid rgba(124,77,255,0.85);
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    color: #dbe7ff;
}

.lux-article-content pre {
    overflow-x: auto;
    padding: 18px;
    border-radius: 18px;
    background: rgba(0,0,0,0.28);
    color: #eaf1ff;
}

.lux-article-content code {
    font-family: monospace;
}

.lux-article-content a {
    color: #8fb5ff;
    text-decoration: underline;
}

/* ========== LUXURY RELATED ARTICLES ========== */
.lux-related-section {
    padding-top: 8px;
    padding-bottom: 10px;
}

.lux-related-box {
    padding: 28px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)),
        rgba(7, 17, 40, 0.94);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 60px rgba(0,0,0,0.22);
}

.lux-related-head {
    margin-bottom: 22px;
}

.lux-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.lux-related-card {
    overflow: hidden;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025)),
        rgba(13, 25, 52, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 14px 40px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.lux-related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124,77,255,0.24);
    box-shadow:
        0 22px 50px rgba(0,0,0,0.24),
        0 0 0 1px rgba(124,77,255,0.08) inset;
}

.lux-related-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.lux-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lux-related-body {
    padding: 20px;
}

.lux-related-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.lux-related-category {
    display: inline-block;
    color: #9ac2ff;
    font-size: 13px;
    font-weight: 700;
}

.lux-related-date {
    color: #aebfdf;
    font-size: 12px;
}

.lux-related-body h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.35;
    color: #ffffff;
}

.lux-related-body p {
    margin: 0 0 16px;
    color: #d0dcf5;
    font-size: 15px;
    line-height: 1.8;
}

.lux-related-actions {
    display: flex;
    gap: 12px;
}

/* ========== MOBILE ========== */
@media (max-width: 900px) {
    .lux-article-head {
        padding: 22px 22px 16px;
    }

    .lux-article-content-wrap {
        padding: 0 22px 22px;
    }

    .lux-article-content {
        padding: 22px;
        font-size: 16px;
    }

    .lux-article-head h1 {
        font-size: 34px;
    }

    .lux-article-lead {
        font-size: 16px;
    }

    .lux-related-grid {
        grid-template-columns: 1fr;
    }

    .lux-related-box {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .lux-article-shell,
    .lux-related-box {
        border-radius: 24px;
    }

    .lux-article-head {
        padding: 18px 18px 14px;
    }

    .lux-article-content-wrap {
        padding: 0 18px 18px;
    }

    .lux-article-content {
        padding: 18px;
        border-radius: 20px;
        font-size: 15px;
        line-height: 1.9;
    }

    .lux-article-head h1 {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.4px;
    }

    .lux-article-lead {
        padding: 15px 16px;
        border-radius: 18px;
        font-size: 15px;
        line-height: 1.8;
    }

    .lux-chip {
        min-height: 34px;
        padding: 0 14px;
        font-size: 12px;
    }

    .lux-related-box {
        padding: 18px;
    }

    .lux-related-body {
        padding: 16px;
    }

    .lux-related-meta-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .lux-related-body h3 {
        font-size: 21px;
    }

    .lux-related-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
.public-article-detail-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.public-article-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.public-article-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.public-article-body {
    padding: 28px;
}

.public-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    color: #9ac2ff;
    font-size: 14px;
    font-weight: 700;
}

.public-article-body h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #ffffff;
}

.public-article-lead {
    font-size: 19px;
    line-height: 1.85;
    color: #cdd9f6;
    margin-bottom: 24px;
}

.public-article-content {
    color: #e6eeff;
    font-size: 17px;
    line-height: 1.95;
    word-break: break-word;
}

.public-article-content p {
    margin-bottom: 18px;
}

.public-article-content h2,
.public-article-content h3,
.public-article-content h4 {
    margin-top: 28px;
    margin-bottom: 14px;
    color: #ffffff;
}

.public-article-content ul,
.public-article-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.public-article-content li {
    margin-bottom: 10px;
}

.public-article-content a {
    color: #8fb5ff;
    text-decoration: underline;
}

.section-box {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.public-article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.public-article-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}

.public-article-card-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.public-article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.public-article-card-body {
    padding: 20px;
}

.public-article-card-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #9ac2ff;
    font-size: 13px;
    font-weight: 700;
}

.public-article-card-body h3 {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #ffffff;
}

.public-article-card-body p {
    color: #cad8f3;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.public-article-card-meta {
    color: #aebfdf;
    font-size: 13px;
    margin-bottom: 16px;
}

.public-article-card-actions {
    display: flex;
    gap: 12px;
}

@media (max-width: 900px) {
    .public-article-grid {
        grid-template-columns: 1fr;
    }

    .public-article-body {
        padding: 22px;
    }

    .public-article-body h1 {
        font-size: 32px;
    }

    .public-article-lead {
        font-size: 17px;
    }

    .public-article-content {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .public-article-body {
        padding: 18px;
    }

    .public-article-body h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    .public-article-lead {
        font-size: 16px;
        line-height: 1.8;
    }

    .public-article-content {
        font-size: 15px;
        line-height: 1.9;
    }

    .public-article-card-body {
        padding: 16px;
    }

    .public-article-card-body h3 {
        font-size: 22px;
    }

    .public-article-card-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
