/* ============================================
   KINGSBRIDGE COMMERCIAL HOLDINGS
   2026 Ultra-Modern Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&display=swap');

:root {
    --kb-gold: #B8963A;
    --kb-gold-light: #D4B868;
    --kb-gold-dark: #8B6F2E;
    --kb-black: #1B2130;
    --kb-dark: #222A3A;
    --kb-darker: #181E2C;
    --kb-white: #FFFFFF;
    --kb-off-white: #F6F7FA;
    --kb-cream: #F9FAFB;
    --kb-gray-100: #F3F4F8;
    --kb-gray-200: #E2E4EA;
    --kb-gray-300: #CDD0D9;
    --kb-gray-500: #7B8194;
    --kb-gray-700: #3D4355;
    --kb-gray-900: #1B2130;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --glass: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.08);
    --glass-light: rgba(255,255,255,0.85);
    --glass-light-border: rgba(0,0,0,0.06);
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    color: var(--kb-gray-900);
    background: var(--kb-cream);
    overflow-x: hidden;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
}
img { max-width: 100%; }
a { text-decoration: none; transition: all 0.4s var(--transition); }

/* Selection */
::selection { background: var(--kb-gold); color: white; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--kb-cream); }
::-webkit-scrollbar-thumb { background: var(--kb-gold); border-radius: 10px; }

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 800; line-height: 1.1; }
h4, h5, h6 { font-family: var(--font-body); font-weight: 700; line-height: 1.3; }

.text-gold { color: var(--kb-gold) !important; }
.text-muted-custom { color: var(--kb-gray-500); }

/* ===================== BUTTONS ===================== */
.btn-kb-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--kb-black);
    color: var(--kb-white);
    padding: 16px 36px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--transition);
}
.btn-kb-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--kb-gold), var(--kb-gold-dark));
    border-radius: 100px;
    opacity: 0;
    transition: opacity 0.5s var(--transition);
}
.btn-kb-primary:hover::before { opacity: 1; }
.btn-kb-primary span, .btn-kb-primary i { position: relative; z-index: 1; }
.btn-kb-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.3); color: white; }
.btn-kb-primary .arrow { transition: transform 0.4s var(--transition); }
.btn-kb-primary:hover .arrow { transform: translateX(4px); }

.btn-kb-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--kb-black);
    padding: 15px 35px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    border: 1.5px solid var(--kb-gray-300);
    cursor: pointer;
    transition: all 0.5s var(--transition);
}
.btn-kb-outline:hover {
    border-color: var(--kb-gold);
    color: var(--kb-gold);
    transform: translateY(-2px);
}
.btn-kb-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    border: 1.5px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.5s var(--transition);
}
.btn-kb-outline-light:hover {
    border-color: var(--kb-gold);
    color: var(--kb-gold);
    background: rgba(201,168,76,0.08);
}

/* Tag/Label */
.kb-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.kb-tag-dark {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.1);
}
.kb-tag-light {
    background: var(--kb-gray-100);
    color: var(--kb-gray-700);
    border: 1px solid var(--kb-gray-200);
}
.kb-tag-gold {
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
    color: var(--kb-gold-dark);
    border: 1px solid rgba(201,168,76,0.2);
}

/* ===================== TOP BAR ===================== */
.topbar-strip {
    background: var(--kb-darker);
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    padding: 9px 0;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 10000;
}
.topbar-strip a { color: rgba(255,255,255,0.85); font-weight: 500; }
.topbar-strip a:hover { color: var(--kb-gold); }

/* ===================== NAVBAR ===================== */
.navbar-kb {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: white;
    border-bottom: 1px solid var(--kb-gray-200);
    transition: all 0.3s var(--transition);
    padding: 0;
}
.navbar-kb .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 24px;
}
.navbar-kb.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-kb.scrolled .nav-glass {
    opacity: 0;
}
.nav-glass {
    display: none;
    position: absolute;
    inset: 8px 24px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s var(--transition);
    z-index: -1;
}
.navbar-kb .brand img { height: 40px; position: relative; z-index: 1; transition: all 0.3s ease; }
.navbar-kb .logo-white { display: none !important; }
.navbar-kb .logo-dark { display: block !important; }

/* Search */
.nav-search { flex: 1; max-width: 500px; position: relative; z-index: 1; }
.nav-search-form { display: flex; border: 1.5px solid var(--kb-gray-200); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.3s; }
.nav-search-form:focus-within { border-color: var(--kb-gold); }
.nav-search-form input {
    flex: 1; border: none; padding: 10px 16px; font-family: var(--font-body); font-size: 0.85rem; outline: none; background: transparent; min-width: 0;
}
.nav-search-form button {
    border: none; background: var(--kb-black); color: white; padding: 0 16px; cursor: pointer; transition: background 0.3s;
}
.nav-search-form button:hover { background: var(--kb-gold); }

/* Old nav-links hidden - using category bar instead */
.navbar-kb .nav-links { display: none; }
.navbar-kb .nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}
.nav-action-link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kb-gray-100);
    color: var(--kb-gray-700);
    border: 1px solid var(--kb-gray-200);
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.nav-action-link:hover { border-color: var(--kb-gold); color: var(--kb-gold); }
.nav-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--kb-gold);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-login-btn {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    background: var(--kb-black);
    color: white;
    font-weight: 600;
    font-size: 0.82rem;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.nav-login-btn:hover { background: var(--kb-gold); color: white; }

/* Category Bar */
.nav-categories {
    border-top: 1px solid var(--kb-gray-200);
    background: white;
    overflow-x: auto;
    scrollbar-width: none;
}
.nav-categories::-webkit-scrollbar { display: none; }
.cat-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    white-space: nowrap;
}
.cat-links a {
    display: block;
    padding: 12px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--kb-gray-700);
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.2px;
}
.cat-links a:hover { color: var(--kb-gold); border-bottom-color: var(--kb-gold); }
.cat-links a.active { color: var(--kb-gold); border-bottom-color: var(--kb-gold); }

/* Price Gate */
.price-login-gate {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--kb-gold-dark);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s;
}
.price-login-gate:hover { background: var(--kb-gold); color: white; border-color: var(--kb-gold); }
.price-login-gate i { font-size: 0.65rem; }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--kb-gray-200);
    background: var(--kb-gray-100);
    color: var(--kb-gray-900);
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 2;
}

/* ===================== HERO ===================== */
.hero {
    min-height: 80vh;
    background: var(--kb-black);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: meshFloat 20s ease-in-out infinite;
}
.hero-gradient-1 { background: var(--kb-gold); top: -20%; right: -10%; animation-delay: 0s; }
.hero-gradient-2 { background: #8B5E3C; bottom: -30%; left: -15%; animation-delay: -7s; }
.hero-gradient-3 { background: var(--kb-gold-light); top: 40%; left: 50%; width: 500px; height: 500px; opacity: 0.08; animation-delay: -14s; }

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(30px, 40px) scale(1.02); }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    color: white;
    letter-spacing: -2px;
    margin-bottom: 20px;
    font-weight: 800;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .gold-italic {
    color: var(--kb-gold);
    font-style: italic;
    font-weight: 700;
}
.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 480px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 80px; }

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-item {}
.hero-stat-item .num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat-item .num span { color: var(--kb-gold); }
.hero-stat-item .label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Hero floating cards */
.hero-float-card {
    position: absolute;
    z-index: 3;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    animation: floatCard 6s ease-in-out infinite;
}
.hero-float-card-1 { right: 8%; top: 22%; animation-delay: 0s; }
.hero-float-card-2 { right: 15%; bottom: 20%; animation-delay: -2s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero-float-card .hfc-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--kb-gold), var(--kb-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.hero-float-card h6 { color: white; font-size: 0.85rem; margin-bottom: 4px; }
.hero-float-card p { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin: 0; }

/* Marquee */
.marquee-strip {
    background: var(--kb-gold);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-track span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--kb-black);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 20px;
}
.marquee-track span::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--kb-black);
    border-radius: 50%;
    opacity: 0.4;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================== SECTIONS ===================== */
.section-space { padding: 120px 0; }
.section-space-sm { padding: 80px 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--kb-gold);
    margin-bottom: 20px;
}
.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--kb-gold);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--kb-gray-900);
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}
.section-title-white { color: white; }
.section-desc {
    font-size: 1.05rem;
    color: var(--kb-gray-500);
    max-width: 580px;
    line-height: 1.8;
}

/* ===================== BENTO GRID ===================== */
.bento-grid {
    display: grid;
    gap: 16px;
}
.bento-grid-about {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
}
.bento-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--kb-gray-200);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--transition);
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: var(--kb-gold);
}
.bento-card-dark {
    background: var(--kb-black);
    border-color: rgba(255,255,255,0.08);
}
.bento-card-dark:hover { border-color: var(--kb-gold); }
.bento-card-gold {
    background: linear-gradient(135deg, var(--kb-gold), var(--kb-gold-dark));
    border: none;
}
.bento-card .bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.bento-icon-gold {
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    color: var(--kb-gold);
}
.bento-icon-white {
    background: rgba(255,255,255,0.1);
    color: white;
}
.bento-card h4 { font-size: 1.08rem; margin-bottom: 8px; }
.bento-card p { font-size: 0.92rem; color: var(--kb-gray-500); line-height: 1.7; margin: 0; }
.bento-card-dark p { color: rgba(255,255,255,0.5); }
.bento-card-dark h4 { color: white; }

/* Bento image placeholder */
.bento-img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--kb-gray-100), var(--kb-gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kb-gray-300);
    font-size: 3rem;
    overflow: hidden;
    position: relative;
}
.bento-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(201,168,76,0.05) 100%);
}

/* ===================== CATEGORY CARD ===================== */
.category-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--kb-gray-200);
    text-decoration: none;
    transition: all 0.4s var(--transition);
    height: 100%;
}
.category-card:hover {
    border-color: var(--kb-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.cat-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kb-gold);
    font-size: 1.2rem;
    transition: all 0.3s;
}
.category-card:hover .cat-card-icon {
    background: var(--kb-gold);
    color: white;
}
.cat-card-info { flex: 1; }
.cat-card-info h5 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--kb-gray-900);
    margin-bottom: 2px;
}
.cat-card-info span {
    font-size: 0.75rem;
    color: var(--kb-gray-500);
}
.cat-card-arrow {
    color: var(--kb-gray-300);
    font-size: 0.8rem;
    transition: all 0.3s;
}
.category-card:hover .cat-card-arrow {
    color: var(--kb-gold);
    transform: translateX(3px);
}

/* ===================== SERVICES ===================== */
.service-modern {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 36px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--kb-gray-200);
    transition: all 0.5s var(--transition);
    position: relative;
    overflow: hidden;
}
.service-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kb-gold), var(--kb-gold-light));
    transform: scaleX(0);
    transition: transform 0.5s var(--transition);
    transform-origin: left;
}
.service-modern:hover::after { transform: scaleX(1); }
.service-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border-color: rgba(201,168,76,0.3);
}
.service-modern .svc-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--kb-gray-200);
    line-height: 1;
    min-width: 60px;
    transition: color 0.4s ease;
}
.service-modern:hover .svc-num { color: var(--kb-gold); }
.service-modern h4 { font-size: 1.15rem; margin-bottom: 8px; color: var(--kb-gray-900); }
.service-modern p { font-size: 0.93rem; color: var(--kb-gray-500); margin: 0; line-height: 1.8; }

/* ===================== PRODUCTS ===================== */
.product-modern {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--kb-gray-200);
    transition: all 0.5s var(--transition);
    height: 100%;
    position: relative;
}
.product-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
    border-color: transparent;
}
.product-modern .p-img {
    height: 300px;
    background: linear-gradient(145deg, var(--kb-gray-100), #EDE8E0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-modern .p-img .placeholder-icon {
    font-size: 3rem;
    color: var(--kb-gray-300);
    transition: all 0.5s var(--transition);
}
.product-modern:hover .p-img .placeholder-icon {
    transform: scale(1.1) rotate(-5deg);
    color: var(--kb-gold);
}
.product-modern .p-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--kb-black);
    color: white;
}
.product-modern .p-quick {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--transition);
}
.product-modern:hover .p-quick { opacity: 1; transform: translateY(0); }
.product-modern .p-quick a {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--kb-black);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}
.product-modern .p-quick a:hover { background: var(--kb-gold); }
.product-modern .p-body { padding: 24px; }
.product-modern .p-cat {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--kb-gold);
    margin-bottom: 6px;
}
.product-modern .p-name {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--kb-gray-900);
    margin-bottom: 12px;
}
.product-modern .p-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--kb-gray-200);
}
.product-modern .p-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--kb-gray-900);
}
.product-modern .p-moq {
    font-size: 0.75rem;
    color: var(--kb-gray-500);
    font-weight: 500;
}

/* Product Filters Modern */
.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.filter-pill {
    padding: 10px 22px;
    border-radius: 100px;
    border: 1.5px solid var(--kb-gray-200);
    background: transparent;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--kb-gray-700);
    cursor: pointer;
    transition: all 0.3s var(--transition);
}
.filter-pill:hover { border-color: var(--kb-gold); color: var(--kb-gold); }
.filter-pill.active {
    background: var(--kb-black);
    border-color: var(--kb-black);
    color: white;
}

/* ===================== STATS / NUMBERS ===================== */
.stat-card {
    text-align: center;
    padding: 40px 20px;
}
.stat-card .stat-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--kb-gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-card .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-modern {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--kb-gray-200);
    height: 100%;
    transition: all 0.5s var(--transition);
    position: relative;
}
.testimonial-modern:hover {
    border-color: var(--kb-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.testimonial-modern .stars {
    color: var(--kb-gold);
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}
.testimonial-modern .quote {
    font-size: 1.02rem;
    color: var(--kb-gray-700);
    line-height: 1.85;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-modern .author-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-modern .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--kb-black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kb-gold);
    font-weight: 800;
    font-size: 0.85rem;
}
.testimonial-modern .author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--kb-gray-900);
    margin-bottom: 2px;
}
.testimonial-modern .author-title {
    font-size: 0.78rem;
    color: var(--kb-gray-500);
}

/* ===================== CTA SECTION ===================== */
.cta-modern {
    background: var(--kb-black);
    border-radius: var(--radius-xl);
    padding: 80px;
    position: relative;
    overflow: hidden;
    margin: 0 24px;
}
.cta-modern .cta-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--kb-gold);
    filter: blur(150px);
    opacity: 0.07;
    top: -200px;
    right: -200px;
}
.cta-modern h2 { color: white; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -1px; margin-bottom: 16px; }
.cta-modern p { color: rgba(255,255,255,0.55); max-width: 520px; margin-bottom: 30px; font-size: 1rem; line-height: 1.8; }

/* ===================== FOOTER ===================== */
.footer-modern {
    background: var(--kb-black);
    padding: 80px 0 0;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin-top: 100px;
}
.footer-modern h6 {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}
.footer-modern p, .footer-modern a { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.8; }
.footer-modern a:hover { color: var(--kb-gold); }
.footer-links-modern { list-style: none; padding: 0; margin: 0; }
.footer-links-modern li { margin-bottom: 14px; }
.footer-links-modern a { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.footer-contact-modern { list-style: none; padding: 0; margin: 0; }
.footer-contact-modern li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.7;
}
.footer-contact-modern i { color: var(--kb-gold); margin-top: 4px; width: 18px; font-size: 0.95rem; }
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
    transition: all 0.3s var(--transition);
}
.footer-social a:hover {
    background: var(--kb-gold);
    color: white;
    border-color: var(--kb-gold);
    transform: translateY(-3px);
}
.footer-bottom-modern {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 0;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom-modern p { margin: 0; font-size: 0.88rem; }
.footer-bottom-modern a { font-size: 0.88rem; }
.footer-newsletter .form-control {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: white;
    padding: 14px 18px;
    font-size: 0.88rem;
    font-family: var(--font-body);
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter .form-control:focus {
    border-color: var(--kb-gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
    background: rgba(255,255,255,0.08);
}

/* ===================== PAGE HEADER ===================== */
.page-header-modern {
    background: var(--kb-black);
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-header-modern .ph-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--kb-gold);
    filter: blur(150px);
    opacity: 0.06;
    top: -300px;
    right: -100px;
}
.page-header-modern h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}
.page-header-modern .breadcrumb {
    justify-content: flex-start;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.page-header-modern .breadcrumb-item,
.page-header-modern .breadcrumb-item a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}
.page-header-modern .breadcrumb-item.active { color: var(--kb-gold); }
.page-header-modern .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.2); }

/* ===================== AUTH PAGES ===================== */
.auth-modern {
    min-height: 100vh;
    display: flex;
}
.auth-left {
    flex: 1;
    background: var(--kb-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.auth-left .auth-gradient {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--kb-gold);
    filter: blur(120px);
    opacity: 0.1;
    bottom: -200px;
    right: -200px;
}
.auth-left-content { position: relative; z-index: 1; max-width: 400px; }
.auth-left-content h2 { color: white; font-size: 2.5rem; letter-spacing: -1px; margin-bottom: 16px; }
.auth-left-content p { color: rgba(255,255,255,0.4); font-size: 0.95rem; line-height: 1.7; }
.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--kb-cream);
}
.auth-form-card {
    max-width: 440px;
    width: 100%;
}
.auth-form-card h2 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.auth-form-card .form-control, .auth-form-card .form-select {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--kb-gray-200);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: white;
}
.auth-form-card .form-control:focus, .auth-form-card .form-select:focus {
    border-color: var(--kb-gold);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.auth-form-card label {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--kb-gray-700);
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}
.auth-divider {
    position: relative;
    text-align: center;
    margin: 28px 0;
}
.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--kb-gray-200);
}
.auth-divider span {
    background: var(--kb-cream);
    padding: 0 16px;
    color: var(--kb-gray-500);
    font-size: 0.82rem;
    position: relative;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--kb-gray-200);
    background: white;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--kb-gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}
.social-btn:hover { border-color: var(--kb-gold); color: var(--kb-gold); }

/* ===================== CONTACT ===================== */
.contact-info-modern {
    background: var(--kb-black);
    border-radius: var(--radius-lg);
    padding: 44px;
    height: 100%;
}
.contact-info-modern .ci-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-info-modern .ci-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kb-gold);
    font-size: 0.9rem;
}
.contact-info-modern h6 { color: white; font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-modern p { color: rgba(255,255,255,0.5); font-size: 0.92rem; margin: 0; line-height: 1.7; }
.contact-form-modern {
    background: white;
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1px solid var(--kb-gray-200);
}
.contact-form-modern .form-control,
.contact-form-modern .form-select {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--kb-gray-200);
    font-size: 0.9rem;
    font-family: var(--font-body);
}
.contact-form-modern .form-control:focus,
.contact-form-modern .form-select:focus {
    border-color: var(--kb-gold);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}

/* ===================== CART ===================== */
.cart-card-modern {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--kb-gray-200);
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--kb-gray-200);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    background: var(--kb-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kb-gray-300);
    font-size: 1.5rem;
    min-width: 80px;
}
.cart-item-info { flex: 1; }
.cart-item-info h6 { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.cart-item-info small { color: var(--kb-gray-500); }
.cart-item-qty {
    width: 70px;
    text-align: center;
    border: 1.5px solid var(--kb-gray-200);
    border-radius: var(--radius-sm);
    padding: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
}
.cart-item-price { font-weight: 800; font-size: 1rem; min-width: 100px; text-align: right; }
.cart-item-remove {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: var(--kb-gray-100);
    color: var(--kb-gray-500);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item-remove:hover { background: #FEE2E2; color: #EF4444; }

.cart-summary-modern {
    background: var(--kb-gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--kb-gray-200);
}
.cart-summary-modern h4 {
    padding-bottom: 16px;
    border-bottom: 2px solid var(--kb-gray-200);
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
.summary-row .label { color: var(--kb-gray-500); }
.summary-row .value { font-weight: 700; }
.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 2px solid var(--kb-gray-200);
    margin-top: 16px;
}
.summary-total .label { font-size: 1rem; font-weight: 700; }
.summary-total .value { font-size: 1.4rem; font-weight: 800; color: var(--kb-gray-900); }

.payment-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--kb-gray-200);
    cursor: pointer;
    transition: all 0.3s var(--transition);
    background: white;
}
.payment-modern:hover, .payment-modern.active {
    border-color: var(--kb-gold);
    background: rgba(201,168,76,0.04);
}
.payment-modern i { font-size: 1.4rem; color: var(--kb-gold); width: 30px; text-align: center; }
.payment-modern h6 { font-size: 0.88rem; margin: 0; }
.payment-modern small { color: var(--kb-gray-500); font-size: 0.75rem; }

/* ===================== SCROLL REVEAL ===================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================== BACK TO TOP ===================== */
.back-to-top-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--kb-black);
    color: var(--kb-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s var(--transition);
    z-index: 999;
    cursor: pointer;
}
.back-to-top-modern.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top-modern:hover {
    background: var(--kb-gold);
    color: white;
    transform: translateY(-3px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1199px) {
    .hero-float-card { display: none; }
}
@media (max-width: 991px) {
    .nav-toggle { display: flex; }
    .nav-search { display: none !important; }
    .topbar-strip { font-size: 0.68rem; }
    .hero-stats-row { flex-wrap: wrap; gap: 30px; }
    .cta-modern { padding: 50px 30px; margin: 0 16px; border-radius: var(--radius-lg); }
    .section-space { padding: 80px 0; }
    .auth-modern { flex-direction: column; }
    .auth-left { min-height: 300px; }
    .bento-grid-about { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .hero-title { letter-spacing: -1.5px; }
    .hero-stats-row { gap: 24px; }
    .hero-stat-item .num { font-size: 2rem; }
    .section-space { padding: 60px 0; }
    .cta-modern { padding: 40px 20px; }
    .footer-modern { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .footer-bottom-modern { flex-direction: column; text-align: center; }
}

/* ===================== CUSTOM CURSOR ===================== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--kb-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}
.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--kb-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: all 0.15s ease;
    opacity: 0.5;
}
@media (max-width: 991px) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ===================== LOADING PLACEHOLDER ===================== */
.img-placeholder-modern {
    background: linear-gradient(135deg, var(--kb-gray-100) 0%, #EDE8E0 50%, var(--kb-gray-100) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kb-gray-300);
    font-size: 2.5rem;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Horizontal scroll section */
.hscroll-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.hscroll-wrapper::-webkit-scrollbar { display: none; }
.hscroll-track {
    display: flex;
    gap: 20px;
    padding: 0 24px 20px;
    width: max-content;
}
.hscroll-track > * { scroll-snap-align: start; }
