/* ══════════════════════════════════════════════
   BLING GIRL - CUSTOM HOMEPAGE & ARCHIVE STYLES
   Child Theme: WoodMart Child
   ══════════════════════════════════════════════ */

/* ═══ CSS CUSTOM PROPERTIES ═══ */
:root {
    --bg-gold: #d7ca49;
    --bg-gold-light: #e8dd6a;
    --bg-gold-dark: #bfb33a;
    --bg-purple: #903087;
    --bg-purple-light: #a84da0;
    --bg-purple-dark: #6e2568;
    --bg-purple-deep: #4a1a45;
    --bg-white: #ffffff;
    --bg-off-white: #faf9f6;
    --bg-light-gray: #f5f3f0;
    --bg-gray: #8a8a8a;
    --bg-dark: #1a1a2e;
    --bg-dark-purple: #16082e;
    --bg-gradient-primary: linear-gradient(135deg, var(--bg-purple) 0%, var(--bg-purple-dark) 50%, var(--bg-purple-deep) 100%);
    --bg-gradient-gold: linear-gradient(135deg, var(--bg-gold) 0%, var(--bg-gold-light) 100%);
    --bg-gradient-hero: linear-gradient(135deg, rgba(144, 48, 135, 0.95) 0%, rgba(74, 26, 69, 0.9) 50%, rgba(26, 26, 46, 0.95) 100%);
    --bg-shadow-sm: 0 2px 10px rgba(144, 48, 135, 0.08);
    --bg-shadow-md: 0 8px 30px rgba(144, 48, 135, 0.12);
    --bg-shadow-lg: 0 20px 60px rgba(144, 48, 135, 0.15);
    --bg-shadow-gold: 0 8px 30px rgba(215, 202, 73, 0.3);
    --bg-radius-sm: 8px;
    --bg-radius-md: 16px;
    --bg-radius-lg: 24px;
    --bg-radius-xl: 32px;
    --bg-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══ SELECTION ═══ */
::selection {
    background: var(--bg-purple);
    color: var(--bg-gold);
}

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark-purple); }
::-webkit-scrollbar-thumb { background: var(--bg-gold); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--bg-gold-light); }

/* ═══ UTILITY CLASSES ═══ */
.bg-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.bg-gold { color: var(--bg-gold-dark) !important; }
.bg-purple { color: var(--bg-purple) !important; }

/* ═══ SECTION COMMONS ═══ */
.bg-section-header { text-align: center; margin-bottom: 64px; }

.bg-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bg-purple);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.bg-section-tag::before,
.bg-section-tag::after {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--bg-gold);
}

.bg-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.bg-section-desc {
    font-size: 1.05rem;
    color: var(--bg-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ═══ BUTTONS ═══ */
.bg-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-gradient-gold);
    color: var(--bg-purple-dark);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--bg-transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--bg-shadow-gold);
    text-decoration: none;
}
.bg-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(215, 202, 73, 0.45);
    color: var(--bg-purple-dark);
}

.bg-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--bg-white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255,255,255,0.25);
    transition: var(--bg-transition);
    cursor: pointer;
    text-decoration: none;
}
.bg-btn-secondary:hover {
    border-color: var(--bg-gold);
    color: var(--bg-gold);
    transform: translateY(-3px);
}

.bg-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    color: var(--bg-purple-dark);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--bg-transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.bg-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.2);
    color: var(--bg-purple-dark);
}

.bg-btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--bg-gold);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(215, 202, 73, 0.4);
    transition: var(--bg-transition);
    cursor: pointer;
    text-decoration: none;
}
.bg-btn-outline-gold:hover {
    background: var(--bg-gold);
    color: var(--bg-purple-dark);
    transform: translateY(-3px);
}

/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.bg-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark-purple);
    margin-top: -80px;
    padding-top: 80px;
}

.bg-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.bg-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.bg-hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-gradient-hero);
    z-index: 2;
}

.bg-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
}

.bg-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--bg-gold);
    border-radius: 50%;
    opacity: 0;
    animation: bgParticleFloat 8s infinite;
}

@keyframes bgParticleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.bg-hero-content {
    position: relative;
    z-index: 5;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.bg-hero-text { padding-top: 80px; }

.bg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(215, 202, 73, 0.12);
    border: 1px solid rgba(215, 202, 73, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--bg-gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.bg-hero-badge i { font-size: 0.7rem; }

.bg-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.bg-hero-title .bg-highlight {
    background: var(--bg-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bg-hero-title .bg-script {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    color: var(--bg-gold);
    -webkit-text-fill-color: var(--bg-gold);
}

.bg-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

.bg-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.bg-hero-stats { display: flex; gap: 48px; }

.bg-stat-item { text-align: left; }
.bg-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bg-gold);
    line-height: 1;
}
.bg-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero Visual */
.bg-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.bg-hero-image-wrapper {
    position: relative;
    width: 480px;
    height: 580px;
}

.bg-hero-image-main {
    position: absolute;
    width: 380px;
    height: 480px;
    top: 50px;
    left: 50px;
    border-radius: var(--bg-radius-lg);
    overflow: hidden;
    box-shadow: var(--bg-shadow-lg);
    z-index: 2;
}
.bg-hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.bg-hero-image-main:hover img { transform: scale(1.05); }

.bg-hero-image-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 0;
    right: 0;
    border-radius: var(--bg-radius-lg);
    overflow: hidden;
    box-shadow: var(--bg-shadow-md);
    border: 3px solid rgba(215, 202, 73, 0.3);
    z-index: 3;
    animation: bgFloatSoft 4s ease-in-out infinite;
}
.bg-hero-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-hero-decor-circle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid rgba(215, 202, 73, 0.2);
    z-index: 1;
    animation: bgFloatSoft 5s ease-in-out infinite reverse;
}

.bg-hero-decor-dots {
    position: absolute;
    bottom: 40px;
    right: 10px;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 8px);
    gap: 10px;
}
.bg-hero-decor-dots span {
    width: 8px;
    height: 8px;
    background: rgba(215, 202, 73, 0.25);
    border-radius: 50%;
}

@keyframes bgFloatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Scroll Indicator */
.bg-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bgScrollBounce 2s ease-in-out infinite;
}
.bg-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.bg-mouse-dot {
    width: 3px;
    height: 8px;
    background: var(--bg-gold);
    border-radius: 3px;
    animation: bgScrollDot 2s ease-in-out infinite;
}
@keyframes bgScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes bgScrollDot {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* ══════════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════════ */
.bg-marquee-strip {
    background: var(--bg-gradient-gold);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}
.bg-marquee-content {
    display: flex;
    gap: 60px;
    animation: bgMarqueeScroll 30s linear infinite;
    white-space: nowrap;
}
.bg-marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bg-purple-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-shrink: 0;
}
.bg-marquee-item i { color: var(--bg-purple); font-size: 0.7rem; }
@keyframes bgMarqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.bg-about {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.bg-about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(144, 48, 135, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.bg-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.bg-about-images { position: relative; }
.bg-about-img-main {
    width: 100%;
    max-width: 450px;
    border-radius: var(--bg-radius-lg);
    overflow: hidden;
    box-shadow: var(--bg-shadow-lg);
}
.bg-about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.bg-about-img-main:hover img { transform: scale(1.04); }

.bg-about-img-float {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-radius: var(--bg-radius-md);
    overflow: hidden;
    box-shadow: var(--bg-shadow-md);
    border: 4px solid var(--bg-white);
}
.bg-about-img-float img { width: 100%; height: 100%; object-fit: cover; }

.bg-about-experience-badge {
    position: absolute;
    top: -20px;
    right: 60px;
    background: var(--bg-gradient-primary);
    color: var(--bg-white);
    padding: 20px 24px;
    border-radius: var(--bg-radius-md);
    text-align: center;
    box-shadow: var(--bg-shadow-md);
    z-index: 3;
}
.bg-about-experience-badge .bg-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-gold);
    line-height: 1;
}
.bg-about-experience-badge .bg-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 4px;
}

.bg-about-content .bg-section-tag { justify-content: flex-start; }
.bg-about-content .bg-section-title { text-align: left; }

.bg-about-text {
    color: var(--bg-gray);
    line-height: 1.9;
    margin-bottom: 32px;
    font-size: 0.98rem;
}

.bg-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}
.bg-about-feature { display: flex; align-items: center; gap: 12px; }
.bg-about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(144, 48, 135, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-purple);
    font-size: 1rem;
}
.bg-about-feature span { font-size: 0.88rem; font-weight: 500; color: var(--bg-dark); }

/* ══════════════════════════════════════════════
   PRODUCTS SECTION
══════════════════════════════════════════════ */
.bg-products {
    background: var(--bg-off-white);
    position: relative;
    padding: 100px 0;
}
.bg-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.bg-product-card {
    background: var(--bg-white);
    border-radius: var(--bg-radius-lg);
    overflow: hidden;
    box-shadow: var(--bg-shadow-sm);
    transition: var(--bg-transition);
    position: relative;
}
.bg-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--bg-shadow-lg);
}
.bg-product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.bg-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.bg-product-card:hover .bg-product-image img { transform: scale(1.08); }

.bg-product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--bg-gradient-primary);
    color: var(--bg-gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.bg-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 8, 46, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    z-index: 1;
}
.bg-product-card:hover .bg-product-overlay { opacity: 1; }

.bg-product-overlay-btn {
    background: var(--bg-gradient-gold);
    color: var(--bg-purple-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: var(--bg-transition);
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
}

.bg-product-info { padding: 24px; }
.bg-product-category {
    font-size: 0.75rem;
    color: var(--bg-purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
}
.bg-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 8px;
}
.bg-product-desc {
    font-size: 0.85rem;
    color: var(--bg-gray);
    line-height: 1.6;
}

.bg-product-footer {
    padding: 0 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bg-product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg-purple);
}
.bg-product-moq {
    font-size: 0.72rem;
    color: var(--bg-purple);
    background: rgba(144, 48, 135, 0.08);
    padding: 5px 14px;
    border-radius: 50px;
    font-weight: 500;
}

.bg-products-cta {
    text-align: center;
    margin-top: 48px;
}

/* ══════════════════════════════════════════════
   FEATURES / WHY CHOOSE US
══════════════════════════════════════════════ */
.bg-features {
    background: var(--bg-dark-purple);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.bg-features::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(215, 202, 73, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.bg-features::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(144, 48, 135, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.bg-features .bg-section-tag { color: var(--bg-gold); }
.bg-features .bg-section-title { color: var(--bg-white); }
.bg-features .bg-section-desc { color: rgba(255,255,255,0.5); }

.bg-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.bg-feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--bg-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--bg-transition);
    position: relative;
    overflow: hidden;
}
.bg-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--bg-gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.bg-feature-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(215, 202, 73, 0.2);
    transform: translateY(-8px);
}
.bg-feature-card:hover::before { transform: scaleX(1); }

.bg-feature-icon {
    width: 70px; height: 70px;
    background: rgba(215, 202, 73, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: var(--bg-gold);
    transition: var(--bg-transition);
}
.bg-feature-card:hover .bg-feature-icon {
    background: var(--bg-gradient-gold);
    color: var(--bg-purple-dark);
    transform: scale(1.1);
}
.bg-feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--bg-white);
    margin-bottom: 12px;
}
.bg-feature-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   CATEGORIES
══════════════════════════════════════════════ */
.bg-categories {
    background: var(--bg-white);
    padding: 100px 0;
}
.bg-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 170px));
    justify-content: center;
    gap: 24px;
}
.bg-category-card {
    text-align: center;
    padding: 30px 16px;
    border-radius: var(--bg-radius-lg);
    border: 1px solid rgba(144, 48, 135, 0.08);
    transition: var(--bg-transition);
    cursor: pointer;
    background: var(--bg-off-white);
    text-decoration: none;
    display: block;
}
.bg-category-card:hover {
    border-color: var(--bg-gold);
    box-shadow: var(--bg-shadow-gold);
    transform: translateY(-8px);
    background: var(--bg-white);
}
.bg-category-icon {
    width: 64px; height: 64px;
    background: rgba(144, 48, 135, 0.07);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--bg-purple);
    transition: var(--bg-transition);
}
.bg-category-card:hover .bg-category-icon {
    background: var(--bg-gradient-primary);
    color: var(--bg-gold);
}
.bg-category-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--bg-dark); }
.bg-category-card p { font-size: 0.72rem; color: var(--bg-gray); margin-top: 4px; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.bg-testimonials {
    background: var(--bg-off-white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.bg-testimonials-slider-wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}
.bg-testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bg-testimonial-slide {
    min-width: calc(100% / 3);
    padding: 0 12px;
    box-sizing: border-box;
}
.bg-testimonial-card {
    background: var(--bg-white);
    border-radius: var(--bg-radius-lg);
    padding: 32px;
    box-shadow: var(--bg-shadow-sm);
    transition: var(--bg-transition);
    position: relative;
    text-align: left;
    border: 1px solid rgba(144, 48, 135, 0.06);
    height: 100%;
}
.bg-testimonial-card:hover {
    box-shadow: var(--bg-shadow-md);
    transform: translateY(-4px);
}
.bg-testimonial-quote {
    font-size: 3rem;
    color: var(--bg-gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 16px;
}
.bg-testimonial-stars {
    color: var(--bg-gold);
    margin-bottom: 16px;
    font-size: 0.85rem;
}
.bg-testimonial-text {
    font-size: 0.95rem;
    color: var(--bg-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.bg-testimonial-author { display: flex; align-items: center; gap: 14px; }
.bg-testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--bg-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-gold);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.bg-testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--bg-dark); }
.bg-testimonial-role { font-size: 0.78rem; color: var(--bg-gray); }

/* Slider Controls */
.bg-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}
.bg-slider-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(144, 48, 135, 0.15);
    background: var(--bg-white);
    color: var(--bg-purple);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--bg-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-slider-btn:hover {
    background: var(--bg-purple);
    color: var(--bg-gold);
    border-color: var(--bg-purple);
    transform: scale(1.1);
}
.bg-slider-dots { display: flex; gap: 10px; }
.bg-slider-dot {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
    border-radius: 10px;
    background: rgba(144, 48, 135, 0.15);
    cursor: pointer;
    transition: var(--bg-transition);
    border: none;
    flex: 0 0 auto;
}
.bg-slider-dot.active {
    background: var(--bg-purple);
    transform: scale(1.2);
    width: 28px !important;
    height: 10px !important;
    min-width: 28px !important;
    min-height: 10px !important;
    border-radius: 10px;
}

/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
.bg-cta-banner {
    background: var(--bg-gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.bg-cta-banner::before {
    content: '';
    position: absolute;
    top: 0; right: -50px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(215, 202, 73, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.bg-cta-content { text-align: center; position: relative; z-index: 2; }
.bg-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--bg-white);
    margin-bottom: 16px;
}
.bg-cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.bg-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   INQUIRY SECTION
══════════════════════════════════════════════ */
.bg-inquiry {
    background: var(--bg-white);
    position: relative;
    padding: 100px 0;
}
.bg-inquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.bg-inquiry-info {
    padding: 40px;
    background: var(--bg-gradient-primary);
    border-radius: var(--bg-radius-xl);
    color: var(--bg-white);
    position: sticky;
    top: 120px;
}
.bg-inquiry-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.bg-inquiry-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 30px;
}
.bg-inquiry-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.bg-inquiry-contact-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(215, 202, 73, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-gold);
}
.bg-inquiry-contact-item span { font-size: 0.9rem; opacity: 0.9; }
.bg-inquiry-socials {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.bg-inquiry-socials a {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--bg-transition);
    text-decoration: none;
}
.bg-inquiry-socials a:hover { background: var(--bg-gold); color: var(--bg-purple-dark); }

.bg-inquiry-form {
    background: var(--bg-off-white);
    border-radius: var(--bg-radius-xl);
    padding: 48px;
}
.bg-inquiry-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--bg-dark);
    margin-bottom: 8px;
}
.bg-inquiry-form > p {
    font-size: 0.88rem;
    color: var(--bg-gray);
    margin-bottom: 32px;
}

.bg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.bg-form-group { margin-bottom: 20px; }
.bg-form-group.bg-full { grid-column: 1 / -1; }
.bg-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.bg-form-group label .bg-required { color: var(--bg-purple); }
.bg-form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(144, 48, 135, 0.12);
    border-radius: var(--bg-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--bg-dark);
    background: var(--bg-white);
    transition: var(--bg-transition);
    outline: none;
}
.bg-form-control:focus {
    border-color: var(--bg-purple);
    box-shadow: 0 0 0 4px rgba(144, 48, 135, 0.08);
}
.bg-form-control::placeholder { color: #c0c0c0; }
select.bg-form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23903087' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 01.753 1.659l-4.796 5.48a1 1 0 01-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 14px) center;
    padding-right: 40px;
}
textarea.bg-form-control { resize: vertical; min-height: 120px; }
.bg-form-submit {
    background: var(--bg-gradient-primary);
    color: var(--bg-white);
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--bg-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--bg-shadow-md);
}
.bg-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--bg-shadow-lg);
}

/* ══════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════ */
.bg-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px; height: 50px;
    background: var(--bg-gradient-primary);
    border: 2px solid rgba(215, 202, 73, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-gold);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--bg-transition);
    box-shadow: var(--bg-shadow-md);
}
.bg-back-to-top.visible { opacity: 1; visibility: visible; }
.bg-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--bg-shadow-lg);
    background: var(--bg-gold);
    color: var(--bg-purple-dark);
}

/* ══════════════════════════════════════════════
   WOOCOMMERCE PRODUCT ARCHIVE OVERRIDES
   Uses the same .bg-product-card design as homepage
══════════════════════════════════════════════ */

/* ── Reset WooCommerce / WoodMart default product styles ── */
.woocommerce ul.products li.product.bg-wc-card,
.woocommerce-page ul.products li.product.bg-wc-card,
.woocommerce div.products .bg-wc-card,
.wd-products .bg-wc-card {
    background: transparent !important;
  
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    text-align: left !important;
    float: none !important;
    width: 100% !important;
}

/* ── Grid layout for WooCommerce product archive ── */
body.bg-custom-archive-cards.woocommerce.archive ul.products,
body.bg-custom-archive-cards.woocommerce.archive div.products,
body.bg-custom-archive-cards.woocommerce.archive .wd-products.products {
    display: grid !important;
    grid-template-columns: repeat(var(--wd-col-lg, 3), minmax(0, 1fr)) !important;
    gap: var(--wd-gap-lg, 30px) !important;
    margin: 0 !important;
    padding: 0 !important;
}
body.bg-custom-archive-cards.woocommerce.archive ul.products::before,
body.bg-custom-archive-cards.woocommerce.archive ul.products::after,
body.bg-custom-archive-cards.woocommerce.archive div.products::before,
body.bg-custom-archive-cards.woocommerce.archive div.products::after {
    display: none !important;
}
body.bg-custom-archive-cards.woocommerce.archive .wd-products.products.elements-list {
    grid-template-columns: 1fr !important;
}

/* ── BG Product Card inside WooCommerce ── */
.bg-wc-card.bg-product-card {
    background: var(--bg-white);
    border-radius: var(--bg-radius-lg);
    overflow: hidden;
    box-shadow: var(--bg-shadow-sm);
    transition: var(--bg-transition);
    position: relative;
}
.bg-wc-card.bg-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--bg-shadow-lg);
}

/* Image area */
.bg-wc-card .bg-product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.bg-wc-card .bg-product-image a {
    display: block;
    height: 100%;
}
.bg-wc-card .bg-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s ease !important;
    border-radius: 0 !important;
    margin: 0 !important;
}
.bg-wc-card:hover .bg-product-image img {
    transform: scale(1.08) !important;
}

/* Badge */
.bg-wc-card .bg-product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--bg-gradient-primary);
    color: var(--bg-gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    line-height: 1.4;
}
.bg-wc-card .bg-badge-outofstock {
    background: linear-gradient(135deg, #555 0%, #333 100%);
    color: #fff;
    left: auto;
    right: 16px;
}

/* Hover overlay with Add to Cart */
.bg-wc-card .bg-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 8, 46, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    z-index: 1;
}
.bg-wc-card:hover .bg-product-overlay {
    opacity: 1;
}
.bg-wc-card .bg-product-overlay .button,
.bg-wc-card .bg-product-overlay .add_to_cart_button,
.bg-wc-card .bg-product-overlay a.added_to_cart,
.bg-wc-card .bg-product-overlay .bg-product-overlay-btn,
.bg-wc-card .bg-product-overlay button.bg-qty-trigger {
    background: var(--bg-gradient-gold) !important;
    color: var(--bg-purple-dark) !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px !important;
    transition: var(--bg-transition) !important;
    border: none !important;
    cursor: pointer !important;
    width: 100% !important;
    text-align: center !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    min-height: 46px !important;
    box-sizing: border-box !important;
    font-family: 'Poppins', sans-serif !important;
}
.bg-wc-card .bg-product-overlay .button:hover,
.bg-wc-card .bg-product-overlay .add_to_cart_button:hover,
.bg-wc-card .bg-product-overlay button.bg-qty-trigger:hover {
    box-shadow: var(--bg-shadow-gold) !important;
    transform: translateY(-2px) !important;
}
/* WC loading spinner on add to cart */
.bg-wc-card .bg-product-overlay .button.loading::after {
    border-color: var(--bg-purple-dark) transparent transparent !important;
}

/* Product Info area */
.bg-wc-card .bg-product-info-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}
.bg-wc-card .bg-product-info {
    padding: 24px 24px 12px;
}
.bg-wc-card .bg-product-category {
    font-size: 0.73rem;
    color: var(--bg-purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bg-wc-card .bg-product-name {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: var(--bg-dark) !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    padding: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bg-wc-card .bg-product-desc {
    font-size: 0.85rem;
    color: var(--bg-gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Footer */
.bg-wc-card .bg-product-footer {
    padding: 0 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bg-wc-card .bg-product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg-purple);
}
.bg-wc-card .bg-product-price ins {
    color: var(--bg-purple);
    font-weight: 700;
    text-decoration: none;
}
.bg-wc-card .bg-product-price del {
    color: var(--bg-gray);
    opacity: 0.6;
    font-size: 0.9rem;
    margin-right: 6px;
}
.bg-wc-card .bg-product-price .woocommerce-Price-amount {
    font-family: 'Playfair Display', serif;
    color: inherit;
}

/* Star rating inside card */
.bg-wc-card .star-rating {
    font-size: 0.8rem !important;
    margin: 0 !important;
}
.bg-wc-card .star-rating span::before {
    color: var(--bg-gold) !important;
}
.bg-wc-card .star-rating::before {
    color: rgba(215, 202, 73, 0.3) !important;
}

/* ── WooCommerce Archive Grid Responsive ── */
@media (max-width: 1024px) {
    body.bg-custom-archive-cards.woocommerce.archive ul.products,
    body.bg-custom-archive-cards.woocommerce.archive div.products,
    body.bg-custom-archive-cards.woocommerce.archive .wd-products.products {
        grid-template-columns: repeat(var(--wd-col-md, 2), minmax(0, 1fr)) !important;
        gap: var(--wd-gap-md, 24px) !important;
    }
    body.bg-custom-archive-cards.woocommerce.archive .wd-products.products.elements-list {
        grid-template-columns: 1fr !important;
    }
    .bg-wc-card .bg-product-image {
        height: 260px;
    }
}
@media (max-width: 768px) {
    body.bg-custom-archive-cards.woocommerce.archive ul.products,
    body.bg-custom-archive-cards.woocommerce.archive div.products,
    body.bg-custom-archive-cards.woocommerce.archive .wd-products.products {
        grid-template-columns: repeat(var(--wd-col-sm, 2), minmax(0, 1fr)) !important;
        gap: var(--wd-gap-sm, 16px) !important;
    }
    body.bg-custom-archive-cards.woocommerce.archive .wd-products.products.elements-list {
        grid-template-columns: 1fr !important;
    }
    .bg-wc-card .bg-product-image {
        height: 220px;
    }
    .bg-wc-card .bg-product-info {
        padding: 16px 16px 8px;
    }
    .bg-wc-card .bg-product-name {
        font-size: 1rem !important;
    }
    .bg-wc-card .bg-product-footer {
        padding: 0 16px 16px;
    }
    .bg-wc-card .bg-product-desc {
        display: none;
    }
}
@media (max-width: 480px) {
    body.bg-custom-archive-cards.woocommerce.archive ul.products,
    body.bg-custom-archive-cards.woocommerce.archive div.products,
    body.bg-custom-archive-cards.woocommerce.archive .wd-products.products {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .bg-wc-card .bg-product-image {
        height: 280px;
    }
    .bg-wc-card .bg-product-info {
        padding: 20px 20px 10px;
    }
    .bg-wc-card .bg-product-desc {
        display: block;
    }
}

/* ── Hide WoodMart's default product elements inside bg-wc-card ── */
.bg-wc-card .wd-product,
.bg-wc-card .product-wrapper,
.bg-wc-card .wd-buttons,
.bg-wc-card .wd-quick-shop,
.bg-wc-card .wd-compare-btn,
.bg-wc-card .wd-wishlist-btn,
.bg-wc-card .wd-quick-view-btn,
.bg-wc-card .wrapp-product-price,
.bg-wc-card .woodmart-hover-btns,
.bg-wc-card .wd-product-grid-content,
.bg-wc-card .woodmart-product-cats,
.bg-wc-card .fade-in-block {
    display: none !important;
}

/* Sale badge global */
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
    display: none !important; /* Using custom .bg-product-badge instead */
}

/* Star rating global */
.woocommerce .star-rating span::before { color: var(--bg-gold) !important; }
.woocommerce .star-rating::before { color: rgba(215, 202, 73, 0.3) !important; }

/* ═══ Shop page header ═══ */
.woocommerce .woocommerce-products-header {
    text-align: center;
    margin-bottom: 40px;
}
.woocommerce .woocommerce-products-header__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--bg-dark);
}

/* ═══ Single Product Page ═══ */
.woocommerce div.product .product_title {
    font-family: 'Playfair Display', serif;
    color: var(--bg-dark);
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-family: 'Playfair Display', serif;
    color: var(--bg-purple) !important;
    font-size: 1.5rem !important;
}
.woocommerce div.product .single_add_to_cart_button {
    background: var(--bg-gradient-primary) !important;
    color: var(--bg-gold) !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 14px 36px !important;
    transition: var(--bg-transition) !important;
}
.woocommerce div.product .single_add_to_cart_button:hover {
    background: var(--bg-gradient-gold) !important;
    color: var(--bg-purple-dark) !important;
    box-shadow: var(--bg-shadow-gold) !important;
}

/* WooCommerce tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--bg-purple) !important;
    border-bottom-color: var(--bg-purple) !important;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .bg-hero-content { grid-template-columns: 1fr; text-align: center; }
    .bg-hero-text { padding-top: 120px; }
    .bg-hero-desc { margin: 0 auto 40px; }
    .bg-hero-buttons { justify-content: center; }
    .bg-hero-stats { justify-content: center; }
    .bg-hero-visual { display: none; }
    .bg-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .bg-products-grid { grid-template-columns: repeat(2, 1fr); }
    .bg-features-grid { grid-template-columns: repeat(2, 1fr); }
    .bg-categories-grid { grid-template-columns: repeat(auto-fit, minmax(170px, 170px)); }
    .bg-testimonial-slide { min-width: calc(100% / 2); }
    .bg-slider-btn { width: 42px; height: 42px; }
    .bg-inquiry-wrapper { grid-template-columns: 1fr; }
    .bg-inquiry-info { position: static; }
}

@media (max-width: 768px) {
    .bg-hero-title { font-size: 2.5rem; }
    .bg-section-title { font-size: 2rem; }
    .bg-products-grid { grid-template-columns: 1fr; }
    .bg-features-grid { grid-template-columns: 1fr; }
    .bg-categories-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 170px)); }
    .bg-form-row { grid-template-columns: 1fr; }
    .bg-testimonial-slide { min-width: 100%; }
    .bg-inquiry-form { padding: 30px 20px; }
    .bg-cta-content h2 { font-size: 2rem; }
    .bg-about, .bg-products, .bg-features, .bg-categories, .bg-testimonials, .bg-inquiry { padding: 70px 0; }
}

@media (max-width: 480px) {
    .bg-hero-title { font-size: 2rem; }
    .bg-hero-stats { flex-direction: column; gap: 20px; align-items: center; }
    .bg-categories-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 160px)); }
    .bg-hero-badge { font-size: 0.7rem; }
}

/* ═══ Hide WoodMart default page title on homepage ═══ */
.home .wd-page-title,
.home .page-title,
.home .page-title-default,
.page-template-front-page .wd-page-title,
.page-template-front-page .page-title,
.page-template-front-page .page-title-default,
.bg-homepage .wd-page-title,
.bg-homepage .page-title-default {
    display: none !important;
}

/* ═══ WoodMart Homepage Full-Width Override ═══ */
.bg-homepage .wd-content-layout.container,
.bg-homepage main.wd-content-layout,
.bg-homepage .content-layout-wrapper.container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide WoodMart top bar on homepage - now styled instead */
/* .bg-homepage .whb-top-bar { display: none !important; } */

/* Fix WoodMart header overlap for hero */
.page-template-front-page .wd-content-area,
.home .wd-content-area,
.bg-homepage .wd-content-area {
    padding-top: 0 !important;
}

/* ═══ WPForms Styling inside Inquiry Section ═══ */
.bg-inquiry-form .wpforms-container {
    margin: 0 !important;
    padding: 0 !important;
}
.bg-inquiry-form .wpforms-form .wpforms-field-label {
    color: var(--bg-dark) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    margin-bottom: 6px !important;
}
.bg-inquiry-form .wpforms-form input,
.bg-inquiry-form .wpforms-form select,
.bg-inquiry-form .wpforms-form textarea {
    background: var(--bg-white) !important;
    border: 2px solid #e8e0f5 !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    color: var(--bg-dark) !important;
}
.bg-inquiry-form .wpforms-form input:focus,
.bg-inquiry-form .wpforms-form select:focus,
.bg-inquiry-form .wpforms-form textarea:focus {
    border-color: var(--bg-gold) !important;
    box-shadow: 0 0 0 4px rgba(215, 202, 73, 0.15) !important;
    outline: none !important;
}
.bg-inquiry-form .wpforms-form textarea {
    min-height: 120px !important;
    resize: vertical !important;
}
.bg-inquiry-form .wpforms-form .wpforms-submit-container {
    margin-top: 10px !important;
}
.bg-inquiry-form .wpforms-form button[type="submit"],
.bg-inquiry-form .wpforms-form .wpforms-submit {
    background: var(--bg-gradient-gold) !important;
    color: var(--bg-dark) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}
.bg-inquiry-form .wpforms-form button[type="submit"]:hover,
.bg-inquiry-form .wpforms-form .wpforms-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(215, 202, 73, 0.4) !important;
}
.bg-inquiry-form .wpforms-confirmation-container-full {
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(22,163,74,0.1)) !important;
    border: 2px solid #22c55e !important;
    border-radius: 16px !important;
    padding: 30px !important;
}

/* ══════════════════════════════════════════════
   FOOTER SECTION
══════════════════════════════════════════════ */
.bg-footer {
    background: linear-gradient(135deg, #1a0a2e 0%, #0d0519 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
}
.bg-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient-gold);
}
.bg-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bg-footer-brand .bg-footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}
.bg-footer-brand .bg-footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--bg-gold);
    margin-bottom: 20px;
}
.bg-footer-brand p {
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}
.bg-footer-socials {
    display: flex;
    gap: 12px;
}
.bg-footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}
.bg-footer-socials a:hover {
    background: var(--bg-gold);
    color: var(--bg-dark);
    border-color: var(--bg-gold);
    transform: translateY(-3px);
}
.bg-footer-col h4 {
    color: var(--bg-white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.bg-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--bg-gold);
}
.bg-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bg-footer-col ul li {
    margin-bottom: 12px;
}
.bg-footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.bg-footer-col ul li a:hover {
    color: var(--bg-gold);
    padding-left: 6px;
}
.bg-footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}
.bg-footer-contact-item i {
    color: var(--bg-gold);
    min-width: 20px;
    margin-top: 4px;
}
.bg-footer-contact-item span {
    line-height: 1.6;
    font-size: 0.95rem;
}
.bg-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 0.9rem;
}
.bg-footer-bottom p {
    margin: 0;
}
.bg-footer-bottom-links {
    display: flex;
    gap: 20px;
}
.bg-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}
.bg-footer-bottom-links a:hover {
    color: var(--bg-gold);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .bg-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
@media (max-width: 600px) {
    .bg-footer {
        padding: 60px 0 0;
    }
    .bg-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .bg-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ═══ Hide WoodMart default footer globally (use custom .bg-footer sitewide) ═══ */
.wd-prefooter,
.wd-footer,
.wd-footer-area,
.wd-copyrights {
    display: none !important;
}

/* ══════════════════════════════════════════════
   WOOCOMMERCE ARCHIVE CUSTOM STYLING (Bling Girl)
══════════════════════════════════════════════ */
.post-type-archive-product .wd-page-title,
.tax-product_cat .wd-page-title {
    background: var(--bg-gradient-primary) !important;
    padding: 60px 0 !important;
}
.post-type-archive-product .wd-page-title .entry-title,
.tax-product_cat .wd-page-title .entry-title {
    font-family: 'Playfair Display', serif !important;
    color: var(--bg-white) !important;
}
.post-type-archive-product .wd-page-title .wd-breadcrumbs a,
.tax-product_cat .wd-page-title .wd-breadcrumbs a {
    color: var(--bg-gold) !important;
}

/* ═══════════════════════════════════════════
   ABOUT US PAGE STYLES (bgab- prefix)
   ═══════════════════════════════════════════ */

/* About Hero */
.bgab-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.bgab-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.bgab-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bgab-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.92), rgba(144, 48, 135, 0.75));
    z-index: 1;
}
.bgab-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 80px 20px 60px;
    max-width: 700px;
}
.bgab-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}
.bgab-breadcrumb a {
    color: var(--bg-gold) !important;
    text-decoration: none;
}
.bgab-breadcrumb a:hover {
    text-decoration: underline;
}
.bgab-breadcrumb i {
    font-size: 10px;
}
.bgab-hero-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 52px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.15;
}
.bgab-gold {
    background: var(--bg-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bgab-hero-desc {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

/* ── Our Story ── */
.bgab-story {
    padding: 100px 0 80px;
    background: #fff;
}
.bgab-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.bgab-story-images {
    position: relative;
}
.bgab-story-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(144, 48, 135, 0.15);
}
.bgab-story-img-main img {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.bgab-story-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.bgab-story-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bgab-story-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--bg-gradient-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(215, 202, 73, 0.35);
    animation: bgab-pulse 2.5s ease-in-out infinite;
}
@keyframes bgab-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.bgab-badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: #1a0a2e;
    line-height: 1;
}
.bgab-badge-text {
    font-size: 11px;
    font-weight: 600;
    color: #2d1050;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.bgab-story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* ── Stats ── */
.bgab-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1050 50%, #903087 100%);
}
.bgab-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.bgab-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
}
.bgab-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}
.bgab-stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #1a0a2e;
}
.bgab-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.bgab-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ── Mission & Vision ── */
.bgab-mission {
    padding: 100px 0;
    background: #faf8fc;
}
.bgab-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.bgab-section-desc {
    max-width: 650px;
    margin: 15px auto 0;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}
.bgab-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.bgab-mission-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 35px rgba(26, 10, 46, 0.06);
    border: 1px solid rgba(144, 48, 135, 0.08);
    transition: all 0.3s ease;
}
.bgab-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(144, 48, 135, 0.12);
    border-color: rgba(144, 48, 135, 0.2);
}
.bgab-mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(144, 48, 135, 0.1), rgba(215, 202, 73, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--bg-purple);
}
.bgab-mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #1a0a2e;
    margin-bottom: 12px;
}
.bgab-mission-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ── What We Offer ── */
.bgab-offer {
    padding: 100px 0;
    background: #fff;
}
.bgab-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.bgab-offer-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 35px rgba(26, 10, 46, 0.06);
    border: 1px solid rgba(144, 48, 135, 0.08);
    transition: all 0.4s ease;
}
.bgab-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(144, 48, 135, 0.12);
}
.bgab-offer-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.bgab-offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.bgab-offer-card:hover .bgab-offer-img img {
    transform: scale(1.08);
}
.bgab-offer-icon-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1a0a2e;
    box-shadow: 0 4px 15px rgba(215, 202, 73, 0.4);
}
.bgab-offer-info {
    padding: 25px;
}
.bgab-offer-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #1a0a2e;
    margin: 0 0 10px;
}
.bgab-offer-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ── Why Choose Us ── */
.bgab-why {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf8fc, #f5f0fa);
}
.bgab-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.bgab-why-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(26, 10, 46, 0.05);
    border: 1px solid rgba(144, 48, 135, 0.06);
    transition: all 0.3s ease;
}
.bgab-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 45px rgba(144, 48, 135, 0.1);
    border-color: rgba(144, 48, 135, 0.15);
}
.bgab-why-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    background: var(--bg-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}
.bgab-why-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #1a0a2e;
    margin: 0 0 8px;
}
.bgab-why-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ── Team / Who We Are ── */
.bgab-team {
    padding: 100px 0;
    background: #fff;
}
.bgab-team-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.bgab-team-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}
.bgab-team-highlights {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}
.bgab-team-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
}
.bgab-team-highlight i {
    color: var(--bg-gold);
    font-size: 18px;
}
.bgab-team-image {
    position: relative;
}
.bgab-team-image img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(144, 48, 135, 0.15);
}
.bgab-team-decor {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 3px solid var(--bg-gold);
    z-index: -1;
    opacity: 0.3;
}

/* ── About Testimonials ── */
.bgab-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a2e, #2d1050);
}
.bgab-testimonials .bg-section-tag span {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(215, 202, 73, 0.3);
}
.bgab-testimonials .bg-section-title {
    color: #fff;
}
.bgab-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.bgab-testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.bgab-testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}
.bgab-testimonial-quote {
    font-size: 28px;
    color: var(--bg-gold);
    margin-bottom: 12px;
}
.bgab-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
    color: var(--bg-gold);
    font-size: 14px;
}
.bgab-testimonial-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.bgab-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bgab-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a0a2e;
    font-size: 16px;
}
.bgab-testimonial-author strong {
    display: block;
    color: #fff;
    font-size: 15px;
}
.bgab-testimonial-author span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 2px;
}

/* ── About CTA ── */
.bgab-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(215, 202, 73, 0.08), rgba(144, 48, 135, 0.06));
}
.bgab-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.bgab-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #1a0a2e;
    margin-bottom: 15px;
}
.bgab-cta-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
}
.bgab-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.bgab-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid var(--bg-purple);
    color: var(--bg-purple) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.bgab-btn-outline:hover {
    background: var(--bg-purple);
    color: #fff !important;
}

/* ── About Page WoodMart Overrides ── */
.page-template-page-about .wd-page-title,
.page-template-page-about .page-title-default {
    display: none !important;
}
.page-template-page-about .wd-content-layout.container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.page-template-page-about .site-content {
    padding-top: 0 !important;
}
.page-template-page-about .main-page-wrapper {
    padding-top: 0 !important;
}

/* ── Responsive: About Us ── */
@media (max-width: 992px) {
    .bgab-hero-title { font-size: 38px; }
    .bgab-story-grid { grid-template-columns: 1fr; gap: 50px; }
    .bgab-story-img-float { right: 10px; bottom: -15px; width: 150px; height: 150px; }
    .bgab-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .bgab-mission-grid { grid-template-columns: 1fr; }
    .bgab-offer-grid { grid-template-columns: repeat(2, 1fr); }
    .bgab-why-grid { grid-template-columns: 1fr; }
    .bgab-team-wrapper { grid-template-columns: 1fr; }
    .bgab-testimonials-grid { grid-template-columns: 1fr; }
    .bgab-cta-content h2 { font-size: 32px; }
}
@media (max-width: 576px) {
    .bgab-hero { min-height: 350px; }
    .bgab-hero-title { font-size: 30px; }
    .bgab-hero-desc { font-size: 15px; }
    .bgab-stats-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .bgab-stat-card { padding: 25px 15px; }
    .bgab-stat-number { font-size: 32px; }
    .bgab-offer-grid { grid-template-columns: 1fr; }
    .bgab-why-card { flex-direction: column; gap: 10px; }
    .bgab-why-number { font-size: 36px; }
    .bgab-cta-content h2 { font-size: 26px; }
    .bgab-cta-buttons { flex-direction: column; align-items: center; }
    .bgab-story-badge { width: 90px; height: 90px; top: -10px; left: -10px; }
    .bgab-badge-number { font-size: 24px; }
    .bgab-badge-text { font-size: 9px; }
}

/* ═══════════════════════════════════════════
   CONTACT US PAGE STYLES (bgc- prefix)
   ═══════════════════════════════════════════ */

/* Contact Hero — reuses bgab-hero structure */
.bgc-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.bgc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.bgc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bgc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.92), rgba(144, 48, 135, 0.75));
    z-index: 1;
}
.bgc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 80px 20px 60px;
    max-width: 700px;
}

/* ── Contact Info Cards ── */
.bgc-info {
    padding: 80px 0;
    background: #fff;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}
.bgc-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.bgc-info-card {
    text-align: center;
    padding: 40px 25px 35px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(26, 10, 46, 0.07);
    border: 1px solid rgba(144, 48, 135, 0.08);
    transition: all 0.3s ease;
}
.bgc-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(144, 48, 135, 0.12);
    border-color: rgba(144, 48, 135, 0.2);
}
.bgc-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(144, 48, 135, 0.1), rgba(215, 202, 73, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--bg-purple);
    transition: all 0.3s ease;
}
.bgc-info-card:hover .bgc-info-icon {
    background: var(--bg-gradient-gold);
    color: #1a0a2e;
}
.bgc-info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #1a0a2e;
    margin: 0 0 10px;
}
.bgc-info-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 6px;
}
.bgc-info-card a {
    color: var(--bg-purple) !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: color 0.3s ease;
}
.bgc-info-card a:hover {
    color: var(--bg-gold) !important;
}
.bgc-info-note {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

/* ── Contact Form + Map Section ── */
.bgc-form-section {
    padding: 80px 0 100px;
    background: #faf8fc;
}
.bgc-form-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}
.bgc-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 8px 40px rgba(26, 10, 46, 0.06);
    border: 1px solid rgba(144, 48, 135, 0.06);
}
.bgc-form-intro {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}
/* WPForms inside contact page */
.bgc-form-wrap .wpforms-container {
    margin: 0 !important;
    padding: 0 !important;
}
.bgc-form-wrap .wpforms-field-label {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    color: #333 !important;
    font-weight: 500 !important;
}
.bgc-form-wrap .wpforms-field input,
.bgc-form-wrap .wpforms-field textarea,
.bgc-form-wrap .wpforms-field select {
    border: 2px solid #e8e0f0 !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    transition: border-color 0.3s ease !important;
    background: #faf8fc !important;
}
.bgc-form-wrap .wpforms-field input:focus,
.bgc-form-wrap .wpforms-field textarea:focus,
.bgc-form-wrap .wpforms-field select:focus {
    border-color: var(--bg-purple) !important;
    box-shadow: 0 0 0 4px rgba(144, 48, 135, 0.08) !important;
    outline: none !important;
}
.bgc-form-wrap .wpforms-submit-container button {
    width: 100% !important;
    background: var(--bg-gradient-gold) !important;
    color: #1a0a2e !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}
.bgc-form-wrap .wpforms-submit-container button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(215, 202, 73, 0.4) !important;
}

/* ── Map Side ── */
.bgc-map-wrap {
    position: sticky;
    top: 100px;
}
.bgc-map-container {
    margin: 25px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 10, 46, 0.08);
}
.bgc-map-container iframe {
    display: block;
}
.bgc-map-details {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}
.bgc-map-detail {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(26, 10, 46, 0.04);
    border: 1px solid rgba(144, 48, 135, 0.06);
}
.bgc-map-detail i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(144, 48, 135, 0.1), rgba(215, 202, 73, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-purple);
    font-size: 18px;
    flex-shrink: 0;
}
.bgc-map-detail strong {
    display: block;
    font-size: 15px;
    color: #1a0a2e;
    margin-bottom: 3px;
}
.bgc-map-detail span {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

/* ── FAQ ── */
.bgc-faq {
    padding: 100px 0;
    background: #fff;
}
.bgc-faq-grid {
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.bgc-faq-item {
    background: #faf8fc;
    border-radius: 16px;
    border: 1px solid rgba(144, 48, 135, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}
.bgc-faq-item.active {
    background: #fff;
    box-shadow: 0 8px 35px rgba(144, 48, 135, 0.08);
    border-color: rgba(144, 48, 135, 0.15);
}
.bgc-faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 15px;
    text-align: left;
}
.bgc-faq-toggle:hover {
    background: rgba(144, 48, 135, 0.02);
}
.bgc-faq-q {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #1a0a2e;
    font-family: 'Poppins', sans-serif;
}
.bgc-faq-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-gradient-gold);
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a0a2e;
    flex-shrink: 0;
}
.bgc-faq-toggle i {
    color: var(--bg-purple);
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.bgc-faq-item.active .bgc-faq-toggle i {
    transform: rotate(180deg);
}
.bgc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 25px;
}
.bgc-faq-item.active .bgc-faq-answer {
    max-height: 300px;
    padding: 0 25px 22px;
}
.bgc-faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    padding-left: 50px;
}

/* ── Social Connect ── */
.bgc-social {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0a2e, #2d1050);
}
.bgc-social-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}
.bgc-social-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 12px;
}
.bgc-social-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 35px;
}
.bgc-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.bgc-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
}
.bgc-social-link:hover {
    transform: translateY(-3px);
}
.bgc-social-link i {
    font-size: 18px;
}
.bgc-social-facebook { background: rgba(24, 119, 242, 0.2); }
.bgc-social-facebook:hover { background: rgba(24, 119, 242, 0.5); }
.bgc-social-instagram { background: rgba(225, 48, 108, 0.2); }
.bgc-social-instagram:hover { background: rgba(225, 48, 108, 0.5); }
.bgc-social-whatsapp { background: rgba(37, 211, 102, 0.2); }
.bgc-social-whatsapp:hover { background: rgba(37, 211, 102, 0.5); }
.bgc-social-tiktok { background: rgba(255, 255, 255, 0.1); }
.bgc-social-tiktok:hover { background: rgba(255, 255, 255, 0.25); }
.bgc-social-twitter { background: rgba(29, 161, 242, 0.2); }
.bgc-social-twitter:hover { background: rgba(29, 161, 242, 0.5); }

/* ── Contact Page WoodMart Overrides ── */
.page-template-page-contact .wd-page-title,
.page-template-page-contact .page-title-default {
    display: none !important;
}
.page-template-page-contact .wd-content-layout.container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.page-template-page-contact .site-content {
    padding-top: 0 !important;
}
.page-template-page-contact .main-page-wrapper {
    padding-top: 0 !important;
}

/* ── Responsive: Contact Page ── */
@media (max-width: 992px) {
    .bgc-info-grid { grid-template-columns: repeat(2, 1fr); }
    .bgc-form-grid { grid-template-columns: 1fr; }
    .bgc-map-wrap { position: static; }
    .bgc-social-content h2 { font-size: 28px; }
}
@media (max-width: 576px) {
    .bgc-hero { min-height: 350px; }
    .bgc-info { margin-top: -20px; }
    .bgc-info-grid { grid-template-columns: 1fr; }
    .bgc-info-card { padding: 30px 20px; }
    .bgc-form-wrap { padding: 30px 22px; }
    .bgc-faq-q { font-size: 14px; }
    .bgc-faq-answer p { padding-left: 0; }
    .bgc-social-icons { flex-direction: column; align-items: center; }
    .bgc-social-link { width: 100%; justify-content: center; }
    .bgc-social-content h2 { font-size: 24px; }
}
