/* =============================================
   BLACK DIAMOND THEME - Premium Dark Jewellery
   Black · Dark Blue · Silver · Grey
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
    --bd-black: #0a0a0a;
    --bd-black-mid: #111118;
    --bd-black-light: #1a1a2e;
    --bd-navy: #0d1b3e;
    --bd-navy-mid: #16213e;
    --bd-navy-light: #1e2d5a;
    --bd-blue: #0f4c81;
    --bd-cyan: #00b4d8;
    --bd-silver: #c0c0c0;
    --bd-silver-light: #e8e8e8;
    --bd-silver-dark: #8a8a8a;
    --bd-grey: #2a2a3a;
    --bd-grey-mid: #3a3a4a;
    --bd-grey-light: #4a4a5a;
    --bd-white: #ffffff;
    --bd-text: #e0e0e0;
    --bd-text-muted: #9090a0;
    --bd-border: rgba(192, 192, 192, 0.15);
    --bd-shadow: rgba(0, 180, 216, 0.15);
    --bd-gold: #c9a227;
    --bd-font-serif: 'Cormorant Garamond', Georgia, serif;
    --bd-font-sans: 'Jost', sans-serif;
    --bd-radius: 4px;
    --bd-transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bd-font-sans);
    color: var(--bd-text);
    background: var(--bd-black);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Container --- */
.bd-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bd-font-serif);
    font-weight: 600;
    line-height: 1.3;
    color: var(--bd-white);
}

.bd-section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--bd-white);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.bd-section-subtitle {
    font-size: 0.92rem;
    color: var(--bd-text-muted);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.bd-silver-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--bd-cyan), var(--bd-silver));
    margin: 12px auto 40px;
}

.bd-section {
    padding: 70px 0;
}

/* ========================================
   TOP BAR
======================================== */
.bd-top-bar {
    background: var(--bd-black);
    border-bottom: 1px solid var(--bd-border);
    color: var(--bd-text-muted);
    font-size: 0.78rem;
    padding: 7px 0;
    overflow: hidden;
}

.bd-top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bd-ticker-wrap {
    overflow: hidden;
    flex: 1;
}

.bd-ticker {
    display: flex;
    gap: 40px;
    animation: bdTickerScroll 30s linear infinite;
    white-space: nowrap;
}

.bd-ticker span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bd-ticker i {
    color: var(--bd-cyan);
}

@keyframes bdTickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.bd-top-links {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.bd-top-links a {
    color: var(--bd-text-muted);
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--bd-transition);
}

.bd-top-links a:hover {
    color: var(--bd-cyan);
}

/* ========================================
   MAIN HEADER
======================================== */
.bd-header {
    background: var(--bd-black-mid);
    border-bottom: 1px solid var(--bd-border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--bd-transition);
    backdrop-filter: blur(10px);
}

.bd-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.bd-header-main {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

/* Logo */
.bd-logo {
    flex-shrink: 0;
}

.bd-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bd-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--bd-cyan), var(--bd-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bd-white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.bd-logo-text h1 {
    font-size: 1.3rem;
    color: var(--bd-white);
    line-height: 1.1;
    font-weight: 600;
    white-space: nowrap;
}

.bd-logo-text h1 span {
    color: var(--bd-cyan);
}

.bd-logo-text small {
    font-size: 0.63rem;
    color: var(--bd-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Search */
.bd-search-box {
    flex: 1;
    min-width: 0;
    max-width: 480px;
}

.bd-search-box form {
    display: flex;
    position: relative;
}

.bd-search-box input {
    width: 100%;
    padding: 11px 20px;
    border: 1px solid var(--bd-border);
    border-right: none;
    border-radius: var(--bd-radius) 0 0 var(--bd-radius);
    font-size: 0.88rem;
    outline: none;
    background: var(--bd-grey);
    color: var(--bd-text);
    transition: border-color var(--bd-transition), background var(--bd-transition);
}

.bd-search-box input::placeholder {
    color: var(--bd-text-muted);
}

.bd-search-box input:focus {
    border-color: var(--bd-cyan);
    background: var(--bd-grey-mid);
}

.bd-search-box button[type="submit"] {
    padding: 11px 22px;
    background: var(--bd-cyan);
    color: var(--bd-black);
    border-radius: 0 var(--bd-radius) var(--bd-radius) 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background var(--bd-transition);
}

.bd-search-box button[type="submit"]:hover {
    background: #00c8f0;
}

.bd-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bd-grey-mid);
    border: 1px solid var(--bd-border);
    border-radius: var(--bd-radius);
    z-index: 999;
    margin-top: 4px;
}

.bd-suggestion-item {
    padding: 10px 16px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background var(--bd-transition);
    color: var(--bd-text);
}

.bd-suggestion-item:hover {
    background: var(--bd-grey-light);
    color: var(--bd-cyan);
}

/* Header Actions */
.bd-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.bd-silver-wallet {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(192, 192, 192, 0.08);
    border: 1px solid var(--bd-border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.8rem;
    color: var(--bd-silver);
    font-weight: 500;
}

.bd-silver-wallet i {
    color: var(--bd-cyan);
}

.bd-header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    color: var(--bd-text-muted);
    gap: 2px;
    position: relative;
    transition: color var(--bd-transition);
    padding: 4px 6px;
}

.bd-header-action i {
    font-size: 1.2rem;
}

.bd-header-action:hover {
    color: var(--bd-cyan);
}

.bd-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bd-cyan);
    color: var(--bd-black);
    font-size: 0.65rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.bd-btn-login {
    display: flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--bd-silver-light);
    padding: 9px 18px;
    border-radius: var(--bd-radius);
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid var(--bd-border);
    transition: all var(--bd-transition);
}

.bd-btn-login:hover {
    border-color: var(--bd-cyan);
    color: var(--bd-cyan);
}

.bd-account-dropdown {
    position: relative;
}

.bd-header-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    color: var(--bd-text-muted);
    gap: 2px;
    cursor: pointer;
    transition: color var(--bd-transition);
}

.bd-header-link:hover {
    color: var(--bd-cyan);
}

.bd-header-link i {
    font-size: 1.2rem;
}

.bd-auth-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: var(--bd-grey-mid);
    border: 1px solid var(--bd-border);
    border-radius: var(--bd-radius);
    padding: 8px 0;
    display: none;
    z-index: 999;
    margin-top: 8px;
}

.bd-account-dropdown:hover .bd-auth-dropdown {
    display: block;
}

.bd-auth-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 0.88rem;
    color: var(--bd-text);
    transition: background var(--bd-transition);
}

.bd-auth-dropdown a:hover {
    background: var(--bd-grey-light);
    color: var(--bd-cyan);
}

.bd-auth-dropdown a i {
    width: 16px;
    color: var(--bd-cyan);
}

.bd-mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.bd-mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--bd-silver);
    border-radius: 2px;
    transition: var(--bd-transition);
}

/* ========================================
   NAVIGATION BAR
======================================== */
.bd-nav {
    background: var(--bd-navy-mid);
    border-bottom: 1px solid rgba(0, 180, 216, 0.2);
    position: relative;
    z-index: 900;
}

.bd-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.bd-nav-list>li {
    position: relative;
}

.bd-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 13px 11px;
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--bd-silver-light);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: color var(--bd-transition), background var(--bd-transition);
    position: relative;
    white-space: nowrap;
}

.bd-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--bd-cyan);
    transition: left var(--bd-transition), right var(--bd-transition);
}

.bd-nav-list>li:hover .bd-nav-link {
    color: var(--bd-cyan);
}

.bd-nav-list>li:hover .bd-nav-link::after {
    left: 10%;
    right: 10%;
}

.bd-nav-link i {
    font-size: 0.6rem;
    transition: transform var(--bd-transition);
}

.bd-nav-list>li:hover .bd-nav-link i {
    transform: rotate(180deg);
}

.bd-nav-new {
    color: var(--bd-cyan) !important;
}

.bd-nav-offers {
    color: var(--bd-gold) !important;
    border: 1px solid var(--bd-gold);
    border-radius: var(--bd-radius);
    padding: 7px 10px !important;
    margin: 4px 4px;
}

.bd-nav-offers:hover {
    background: var(--bd-gold) !important;
    color: var(--bd-black) !important;
}

/* Mega Dropdown */
.bd-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bd-grey-mid);
    border: 1px solid var(--bd-border);
    border-top: 2px solid var(--bd-cyan);
    border-radius: 0 0 var(--bd-radius) var(--bd-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding: 18px;
    z-index: 800;
    animation: bdDropFade 0.2s ease;
}

@keyframes bdDropFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bd-has-dropdown:hover .bd-dropdown {
    display: block;
}

.bd-mega-content {
    display: flex;
    gap: 20px;
    min-width: 580px;
}

.bd-mega-links {
    flex: 1;
}

.bd-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.bd-dropdown-grid a {
    padding: 9px 12px;
    font-size: 0.85rem;
    color: var(--bd-text);
    border-radius: var(--bd-radius);
    transition: all var(--bd-transition);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--bd-font-sans);
}

.bd-dropdown-grid a:hover {
    background: rgba(0, 180, 216, 0.1);
    color: var(--bd-cyan);
    padding-left: 16px;
}

.bd-mega-image {
    position: relative;
    width: 180px;
    flex-shrink: 0;
    border-radius: var(--bd-radius);
    overflow: hidden;
}

.bd-mega-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--bd-radius);
    filter: brightness(0.8);
    transition: filter var(--bd-transition);
}

.bd-mega-image:hover img {
    filter: brightness(1);
}

.bd-mega-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 12px;
    color: var(--bd-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Mobile */
.bd-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1100;
}

.bd-mobile-overlay.active {
    display: block;
}

.bd-mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bd-black-mid);
    z-index: 1200;
    overflow-y: auto;
    transition: left 0.3s ease;
    border-right: 1px solid var(--bd-border);
}

.bd-mobile-drawer.active {
    left: 0;
}

.bd-mobile-header {
    background: var(--bd-navy-mid);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--bd-border);
}

.bd-mobile-logo {
    color: var(--bd-cyan);
    font-family: var(--bd-font-serif);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bd-mobile-close {
    color: var(--bd-silver);
    font-size: 1.2rem;
    padding: 4px;
}

.bd-mobile-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 0.9rem;
    color: var(--bd-text);
    border-bottom: 1px solid var(--bd-border);
    transition: background var(--bd-transition);
}

.bd-mobile-menu li a:hover {
    background: rgba(0, 180, 216, 0.08);
    color: var(--bd-cyan);
}

.bd-mobile-menu li a i {
    color: var(--bd-cyan);
    width: 18px;
}

.bd-mobile-footer {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--bd-border);
}

.bd-mobile-footer a {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    font-size: 0.75rem;
    color: var(--bd-text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.bd-mobile-footer a i {
    font-size: 1rem;
    color: var(--bd-cyan);
}

/* ========================================
   HERO SLIDER
======================================== */
.bd-hero {
    position: relative;
    overflow: hidden;
    background: var(--bd-navy-mid);
    min-height: 560px;
}

.bd-hero-slider {
    position: relative;
}

.bd-hero-slide {
    display: none;
    position: relative;
    min-height: 560px;
    align-items: center;
}

.bd-hero-slide.active {
    display: flex;
    animation: bdHeroFade 0.8s ease;
}

@keyframes bdHeroFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.bd-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bd-black) 0%, var(--bd-navy-mid) 50%, var(--bd-black-mid) 100%);
}

.bd-hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(192, 192, 192, 0.05) 0%, transparent 40%);
}

.bd-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
    width: 100%;
}



.bd-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bd-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bd-hero-eyebrow::before,
.bd-hero-eyebrow::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--bd-cyan);
}

.bd-hero-title {
    font-family: var(--bd-font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--bd-white);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.bd-hero-title .highlight {
    background: linear-gradient(135deg, var(--bd-cyan), var(--bd-silver));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bd-hero-desc {
    font-size: 1rem;
    color: var(--bd-text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
}

.bd-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bd-cyan);
    color: var(--bd-black);
    padding: 13px 30px;
    border-radius: var(--bd-radius);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all var(--bd-transition);
}

.bd-btn-primary:hover {
    background: #00c8f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
    color: var(--bd-black);
}

.bd-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--bd-silver-light);
    padding: 13px 30px;
    border-radius: var(--bd-radius);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: 1px solid var(--bd-silver-dark);
    transition: all var(--bd-transition);
}

.bd-btn-outline:hover {
    border-color: var(--bd-cyan);
    color: var(--bd-cyan);
}

.bd-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bd-hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(192, 192, 192, 0.05));
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.bd-hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-hero-badge-float {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--bd-navy-mid);
    border: 1px solid var(--bd-border);
    border-radius: 8px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bd-hero-badge-float i {
    font-size: 1.5rem;
    color: var(--bd-cyan);
}

.bd-hero-badge-float strong {
    display: block;
    font-size: 0.95rem;
    color: var(--bd-white);
}

.bd-hero-badge-float span {
    font-size: 0.75rem;
    color: var(--bd-text-muted);
}

.bd-hero-controls {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.bd-hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bd-silver-dark);
    cursor: pointer;
    transition: all var(--bd-transition);
}

.bd-hero-dot.active {
    width: 20px;
    border-radius: 3px;
    background: var(--bd-cyan);
}

/* ========================================
   CATEGORY SECTION
======================================== */
.bd-cats {
    background: var(--bd-black);
    padding: 60px 0;
}

.bd-cats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.bd-cat-item {
    text-align: center;
    cursor: pointer;
}

.bd-cat-img-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 12px;
    background: var(--bd-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bd-border);
    overflow: hidden;
    transition: all var(--bd-transition);
}

.bd-cat-item:hover .bd-cat-img-wrap {
    border-color: var(--bd-cyan);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.3);
}

.bd-cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter var(--bd-transition);
}

.bd-cat-item:hover img {
    filter: grayscale(0);
}

.bd-cat-name {
    font-size: 0.82rem;
    color: var(--bd-text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--bd-transition);
}

.bd-cat-item:hover .bd-cat-name {
    color: var(--bd-cyan);
}

/* ========================================
   FEATURED PRODUCTS (Collections)
======================================== */
.bd-featured {
    background: var(--bd-black-light);
    padding: 70px 0;
}

.bd-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bd-product-card {
    background: var(--bd-grey);
    border: 1px solid var(--bd-border);
    border-radius: var(--bd-radius);
    overflow: hidden;
    transition: all var(--bd-transition);
    cursor: pointer;
}

.bd-product-card:hover {
    border-color: rgba(0, 180, 216, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.bd-product-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bd-grey-mid);
}

.bd-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--bd-transition);
}

.bd-product-card:hover .bd-product-img img {
    transform: scale(1.05);
}

.bd-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--bd-cyan);
    color: var(--bd-black);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bd-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bd-silver);
    font-size: 0.9rem;
    transition: all var(--bd-transition);
    backdrop-filter: blur(4px);
}

.bd-wishlist-btn:hover,
.bd-wishlist-btn.active {
    color: #ff4d6d;
    background: rgba(255, 77, 109, 0.1);
}

.bd-product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 30px 12px 14px;
    display: flex;
    gap: 8px;
    transform: translateY(100%);
    transition: transform var(--bd-transition);
}

.bd-product-card:hover .bd-product-actions {
    transform: translateY(0);
}

.bd-btn-cart {
    flex: 1;
    background: var(--bd-cyan);
    color: var(--bd-black);
    border-radius: var(--bd-radius);
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background var(--bd-transition);
}

.bd-btn-cart:hover {
    background: #00c8f0;
}

.bd-product-info {
    padding: 15px;
}

.bd-product-name {
    font-size: 0.92rem;
    color: var(--bd-silver-light);
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.4;
    font-family: var(--bd-font-sans);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bd-product-price {
    font-size: 1.1rem;
    color: var(--bd-cyan);
    font-weight: 700;
}

.bd-product-price-orig {
    font-size: 0.82rem;
    color: var(--bd-text-muted);
    text-decoration: line-through;
    margin-left: 6px;
}

/* ========================================
   PROMO BAND
======================================== */
.bd-promo-band {
    background: linear-gradient(135deg, var(--bd-navy) 0%, var(--bd-blue) 50%, var(--bd-navy) 100%);
    padding: 50px 0;
    border-top: 1px solid rgba(0, 180, 216, 0.2);
    border-bottom: 1px solid rgba(0, 180, 216, 0.2);
}

.bd-promo-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.bd-promo-text h2 {
    font-family: var(--bd-font-serif);
    font-size: 2.2rem;
    color: var(--bd-white);
    margin-bottom: 10px;
}

.bd-promo-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.bd-promo-divider {
    width: 1px;
    height: 80px;
    background: rgba(0, 180, 216, 0.3);
}

/* ========================================
   DARK FEATURES STRIP
======================================== */
.bd-features-strip {
    background: var(--bd-navy-mid);
    padding: 35px 0;
    border-bottom: 1px solid var(--bd-border);
}

.bd-features-row {
    display: flex;
    justify-content: center;
    gap: 0;
}

.bd-feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 30px;
    border-right: 1px solid var(--bd-border);
}

.bd-feature-item:last-child {
    border-right: none;
}

.bd-feature-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bd-cyan);
    font-size: 1.1rem;
}

.bd-feature-text strong {
    display: block;
    font-size: 0.92rem;
    color: var(--bd-silver-light);
    font-weight: 600;
    margin-bottom: 2px;
}

.bd-feature-text span {
    font-size: 0.78rem;
    color: var(--bd-text-muted);
}

/* ========================================
   COLLECTION BANNER
======================================== */
.bd-colls {
    background: var(--bd-black);
    padding: 70px 0;
}

.bd-colls-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bd-coll-card {
    position: relative;
    border-radius: var(--bd-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    border: 1px solid var(--bd-border);
}

.bd-coll-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.7);
}

.bd-coll-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.bd-coll-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.bd-coll-label {
    font-size: 0.75rem;
    color: var(--bd-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bd-coll-title {
    font-family: var(--bd-font-serif);
    font-size: 2rem;
    color: var(--bd-white);
    margin-bottom: 15px;
}

.bd-coll-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bd-white);
    font-size: 0.82rem;
    font-weight: 600;
    border-bottom: 1px solid var(--bd-cyan);
    padding-bottom: 2px;
    transition: color var(--bd-transition);
}

.bd-coll-btn:hover {
    color: var(--bd-cyan);
}

/* ========================================
   FOOTER
======================================== */
.bd-footer {
    background: var(--bd-black-mid);
    border-top: 1px solid var(--bd-border);
}

.bd-footer-top {
    padding: 60px 0 40px;
}

.bd-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 2fr;
    gap: 40px;
}

.bd-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.bd-footer-logo i {
    font-size: 1.2rem;
    color: var(--bd-cyan);
}

.bd-footer-logo span {
    font-family: var(--bd-font-serif);
    font-size: 1.2rem;
    color: var(--bd-white);
    font-weight: 600;
}

.bd-footer-about p {
    font-size: 0.88rem;
    color: var(--bd-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.bd-social-icons {
    display: flex;
    gap: 10px;
}

.bd-social-icons a {
    width: 36px;
    height: 36px;
    background: var(--bd-grey);
    border: 1px solid var(--bd-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bd-text-muted);
    font-size: 0.85rem;
    transition: all var(--bd-transition);
}

.bd-social-icons a:hover {
    background: var(--bd-cyan);
    color: var(--bd-black);
    border-color: var(--bd-cyan);
}

.bd-footer-col h4 {
    font-family: var(--bd-font-sans);
    font-size: 0.85rem;
    color: var(--bd-silver-light);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bd-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bd-footer-links li a {
    font-size: 0.88rem;
    color: var(--bd-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--bd-transition);
}

.bd-footer-links li a:hover {
    color: var(--bd-cyan);
}

.bd-footer-links li a i {
    font-size: 0.6rem;
    color: var(--bd-cyan);
}

.bd-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--bd-text-muted);
    margin-bottom: 10px;
}

.bd-contact-info p i {
    color: var(--bd-cyan);
    margin-top: 3px;
    flex-shrink: 0;
}

.bd-newsletter-form {
    display: flex;
    margin-top: 12px;
}

.bd-newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    background: var(--bd-grey);
    border: 1px solid var(--bd-border);
    border-right: none;
    border-radius: var(--bd-radius) 0 0 var(--bd-radius);
    color: var(--bd-text);
    font-size: 0.85rem;
    outline: none;
}

.bd-newsletter-form input::placeholder {
    color: var(--bd-text-muted);
}

.bd-newsletter-form button {
    padding: 10px 16px;
    background: var(--bd-cyan);
    color: var(--bd-black);
    border-radius: 0 var(--bd-radius) var(--bd-radius) 0;
    transition: background var(--bd-transition);
}

.bd-newsletter-form button:hover {
    background: #00c8f0;
}

.bd-footer-assurance {
    background: var(--bd-grey);
    border-top: 1px solid var(--bd-border);
    padding: 25px 0;
}

.bd-assurance-row {
    display: flex;
    justify-content: center;
    gap: 0;
}

.bd-assurance-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 25px;
    border-right: 1px solid var(--bd-border);
}

.bd-assurance-item:last-child {
    border-right: none;
}

.bd-assurance-item i {
    font-size: 1.4rem;
    color: var(--bd-cyan);
    flex-shrink: 0;
}

.bd-assurance-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--bd-silver-light);
    font-weight: 700;
    margin-bottom: 2px;
    font-family: var(--bd-font-sans);
}

.bd-assurance-item span {
    font-size: 0.78rem;
    color: var(--bd-text-muted);
}

.bd-footer-bottom {
    background: var(--bd-black);
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid var(--bd-border);
}

.bd-footer-bottom p {
    font-size: 0.82rem;
    color: var(--bd-text-muted);
}

/* ========================================
   PRODUCT LISTING (jewellery.php)
======================================== */
.bd-listing-page {
    background: var(--bd-black);
    min-height: 80vh;
    padding: 30px 0;
}

.bd-listing-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

.bd-filter-sidebar {
    background: var(--bd-grey);
    border: 1px solid var(--bd-border);
    border-radius: var(--bd-radius);
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.bd-filter-title {
    font-size: 0.8rem;
    color: var(--bd-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bd-border);
    font-family: var(--bd-font-sans);
}

.bd-filter-group {
    margin-bottom: 25px;
}

.bd-filter-group h5 {
    font-size: 0.82rem;
    color: var(--bd-silver-light);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--bd-font-sans);
}

.bd-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    cursor: pointer;
}

.bd-filter-option input[type="checkbox"] {
    accent-color: var(--bd-cyan);
}

.bd-filter-option label {
    font-size: 0.88rem;
    color: var(--bd-text-muted);
    cursor: pointer;
    transition: color var(--bd-transition);
}

.bd-filter-option:hover label {
    color: var(--bd-cyan);
}

/* ========================================
   PAGE GENERAL
======================================== */
.bd-page-hero {
    background: linear-gradient(135deg, var(--bd-navy) 0%, var(--bd-black-light) 100%);
    padding: 50px 0;
    border-bottom: 1px solid var(--bd-border);
    text-align: center;
}

.bd-page-hero h1 {
    font-size: 2.5rem;
    color: var(--bd-white);
    margin-bottom: 10px;
}

.bd-breadcrumb {
    font-size: 0.85rem;
    color: var(--bd-text-muted);
}

.bd-breadcrumb a {
    color: var(--bd-cyan);
}

.bd-breadcrumb a:hover {
    text-decoration: underline;
}

.bd-page-content {
    background: var(--bd-black);
    padding: 60px 0;
    min-height: 60vh;
}

/* ==================== STATIC PAGE STYLES ==================== */
.page-header {
    background: #F8F8F8;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 5px;
}

.page-content {
    padding-bottom: 80px;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-container p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.content-container h2 {
    margin: 30px 0 20px;
    font-size: 1.8rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-box {
    background: #F9F9F9;
    padding: 30px;
    border-radius: 8px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Guides Styles */
.guide-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.guide-nav-link {
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.guide-nav-link:hover,
.guide-nav-link.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}


