/* Radiance Jewels - Global Quiet Luxury Design System */

/* 1. Global Reset & Typography */
:root {
    --r-bg: #faf9f8;
    --r-text: #1a1c1c;
    --r-accent: #1c1917;
    --r-border: #e7e5e4;
    --r-shadow: rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Manrope', sans-serif !important;
    background: var(--r-bg) !important;
    color: var(--r-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.sf { font-family: 'Noto Serif', serif !important; }

/* 2. Global Header Styling */
.radiance-custom-header {
    background: #fff;
    padding: 24px 0;
    border-bottom: 1px solid var(--r-border);
    position: sticky;
    top: 0;
    z-index: 2000;
}

.r-header-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 20px;
}

.r-header-nav {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.nav-item-wrap {
    position: relative;
    padding-bottom: 5px;
}

.nav-item-wrap a {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: #444;
    transition: color 0.3s ease;
}

.nav-item-wrap:hover a {
    color: var(--r-text);
}

/* Submenu */
.subnav-container {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -24px;
    min-width: 250px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 16px 0;
    z-index: 1000;
    border-top: 2px solid var(--r-border);
}

.nav-item-wrap:hover .subnav-container {
    display: flex;
}

.subnav-container a {
    padding: 12px 24px !important;
    font-size: 13px !important;
    letter-spacing: 0.1em !important;
    text-transform: capitalize !important;
    color: #57534e !important;
    font-weight: 500 !important;
}

.subnav-container a:hover {
    background: #faf9f8;
    color: #1c1917 !important;
}

/* 3. Global Footer Styling */
.radiance-custom-footer {
    background: #fff;
    padding: 100px 0 60px;
    border-top: 1px solid var(--r-border);
}

.r-footer-grid {
    display: grid;
    grid-template-columns: 3fr 6fr 3fr;
    gap: 48px;
    margin-bottom: 80px;
}

/* 4. Hide Theme Residue */
header:not(.radiance-custom-header),
footer:not(.radiance-custom-footer),
.bt-purchase-noti,
#bt-scroll-up {
    display: none !important;
}
