:root {
    --bahe-bg-dark: #0a0a0a;
    --bahe-bg-card: #151515;
    --bahe-bg-lighter: #1a1a1a;
    --bahe-accent-gold: #3aa0d8;   /* celeste principal */
    --bahe-accent-hover: #6bbce8;  /* celeste más claro (hover) */
    --bahe-accent-copper: #2c7fb8; /* celeste más profundo */
    --bahe-text-main: #f2f2f2;
    --bahe-text-muted: #a0a0a0;

    --bahe-font-heading: 'Inter', sans-serif;
    --bahe-font-body: 'Inter', sans-serif;

    --bahe-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bahe-body .bahe-btn-nav:hover::after,
.com-virtuemart.view-productdetails .vm-product-media-container .item-gallery .desk .d2,
.com-virtuemart.view-productdetails .vm-product-media-container .item-gallery .product-gallery-nav[data-direction=prev],
.com-virtuemart.view-productdetails .vm-product-media-container .item-gallery .product-gallery-nav[data-direction=next],
.quantity-box,
.back-to-category,
.addtocart-area .product-fields .product-fields-title-wrapper,
.productdetails .item-description,
#ProOPC .cart-summary .proopc-qty-input,
#ProOPC tr.shipping-row,
#ProOPC tr.payment-row,
#ProOPC tr.cart-sub-total,
#ProOPC .proopc-column3 .proopc-shipments,
.item-gallery .thumbnails-quantity {
    display: none !important;
}

.block-mini-cart .mini-cart-title .count-item .simple-handbag::before {
    color: var(--bahe-accent-gold);
}

body .body-innerwrapper {
    background-color: var(--bahe-bg-dark);
}

#ProOPC .cart-page-title {
    color: var(--bahe-accent-gold);
}

.alert {
    background: var(--bahe-bg-card);
    color: var(--bahe-accent-gold);
}

.alert-warning {
    border-color: var(--bahe-accent-copper);
}

.close {
    color: var(--bahe-accent-gold);
}

#ProOPC .cart-page-title span {
    color: var(--bahe-accent-copper);
}

/* Base Styles & Resets within our scope */
.bahe-body {
    margin: 0;
    padding: 0;
    background-color: var(--bahe-bg-dark);
    color: var(--bahe-text-main);
    font-family: var(--bahe-font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.bahe-body * {
    box-sizing: border-box;
}

/* Typography */
.bahe-body h1,
.bahe-body h2,
.bahe-body h3,
.bahe-body h4 {
    font-family: var(--bahe-font-heading);
    margin-top: 0;
    font-weight: 600;
}

.bahe-body a {
    text-decoration: none;
    color: var(--bahe-accent-gold);
    transition: var(--bahe-transition);
}

.bahe-body a:hover,
.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li:hover > a {
    color: var(--bahe-accent-hover);
    font-weight: 600;
}

/* Layout Utilities */
.bahe-container,
header#sp-header .row {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bahe-section {
    padding: 100px 0;
}

.bahe-text-center {
    text-align: center;
}

.bahe-mb-5 {
    margin-bottom: 3rem;
}

.bahe-divider {
    width: 60px;
    height: 2px;
    background-color: var(--bahe-accent-gold);
    margin: 20px auto 40px;
}

.bahe-divider-left {
    margin: 20px 0 30px 0;
}

/* Buttons */
.bahe-body .bahe-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--bahe-font-body), serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--bahe-transition);
    border-radius: 0;
}

.bahe-body .bahe-btn-primary {
    background-color: var(--bahe-accent-gold) !important;
    color: var(--bahe-text-main) !important;
}

.bahe-body .bahe-btn-primary:hover {
    background-color: var(--bahe-accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2) !important;
    color: var(--bahe-text-muted);
}

.bahe-body .bahe-btn-nav {
    border: 1px solid var(--bahe-accent-gold);
    color: var(--bahe-accent-gold);
    padding: 10px 24px;
    font-size: 13px;
}

.bahe-body .bahe-btn-nav:hover {
    background-color: var(--bahe-accent-gold);
}

.bahe-body .bahe-btn-nav:hover a {
    color: var(--bahe-text-main);
}

.bahe-body .bahe-btn-nav a,
.bahe-body .bahe-btn-nav:hover a {
    line-height: normal;
}

/* 1. Hero Section */
.bahe-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.bahe-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bahe-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bahe-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.bahe-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.bahe-hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.bahe-hero-title span {
    color: var(--bahe-accent-gold);
}

.bahe-hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: var(--bahe-text-main);
    text-transform: uppercase;
}

/* Navbar */
#sp-header.bahe-navbar {
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--bahe-transition);
    background: transparent;
    height: 70px !important;
}

#sp-header.menu-fixed.bahe-navbar {
    background: rgba(10, 10, 10, 0.95);
    padding: 10px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    top: 0;
}

#sp-logo .logo h1 img {
    max-height: 110px;
}

#sp-header.menu-fixed.bahe-navbar #sp-logo .logo h1 img {
    max-height: 60px;
    padding-left: 20px;
    position: relative;
    top: -5px;
}

.bahe-navbar-container,
header#sp-header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bahe-logo {
    height: 50px;
    transition: var(--bahe-transition);
}

.bahe-navbar.bahe-scrolled .bahe-logo {
    height: 40px;
}

.sp-megamenu-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
}

.bahe-nav-links,
.sp-megamenu-wrapper .sp-megamenu-parent {
    display: flex;
    align-items: center;
    gap: 30px;
}

.bahe-nav-link,
.sp-megamenu-parent > li > a {
    color: var(--bahe-accent-gold);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 52px;
}

.bahe-nav-link:hover {
    color: var(--bahe-accent-gold);
}

/* 2. Intro Section */
.bahe-intro {
    background-color: var(--bahe-bg-dark);
}

.bahe-section-title,
.bahe-section-title  h2 {
    font-size: 40px;
    color: var(--bahe-accent-gold);
}

.bahe-lead-text {
    font-size: 23px;
    font-family: var(--bahe-font-heading);
    color: #fff;
    max-width: 800px;
    margin: 0 auto 20px;
}

.bahe-text {
    font-size: 18px;
    color: var(--bahe-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* 3. Slider */
.bahe-slider-section {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    position: relative;
}

.bahe-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bahe-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.bahe-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.bahe-slide-active {
    opacity: 1;
    z-index: 2;
}

.bahe-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.bahe-slider-btn {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 1px solid var(--bahe-accent-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--bahe-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bahe-slider-btn:hover {
    background: var(--bahe-accent-gold);
    color: #000;
}

/* 5. Audience Section */
.bahe-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bahe-audience .bahe-text {
    margin: 0;
}

.bahe-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bahe-list li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    background: var(--bahe-bg-card);
    padding: 15px 20px;
    border-radius: 4px;
    border-left: 3px solid transparent;
    transition: var(--bahe-transition);
}

.bahe-list li:hover {
    border-left-color: var(--bahe-accent-gold);
    transform: translateX(10px);
    background: var(--bahe-bg-lighter);
}

.bahe-icon {
    color: var(--bahe-accent-gold);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* 6. Features Grid */
.bahe-features-bg {
    background-color: var(--bahe-bg-card);
}

.bahe-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.bahe-feature-card {
    background: var(--bahe-bg-dark);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--bahe-transition);
    position: relative;
    overflow: hidden;
}

.bahe-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bahe-accent-gold), var(--bahe-accent-copper));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.bahe-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.2);
}

.bahe-feature-card:hover::before {
    transform: scaleX(1);
}

.bahe-feature-icon {
    font-size: 48px;
    color: var(--bahe-accent-gold);
    margin-bottom: 20px;
}

.bahe-feature-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 21px;
}

.bahe-feature-card p {
    color: var(--bahe-text-muted);
    font-size: 16px;
}

/* 4. Tickets Section */
.bahe-ticket-section {
    background: linear-gradient(to bottom, var(--bahe-bg-dark), var(--bahe-bg-card));
    position: relative;
}

.bahe-ticket-header {
    text-align: center;
    margin-bottom: 50px;
}

.bahe-urgency-banner {
    display: inline-flex;
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--bahe-accent-gold);
    color: var(--bahe-accent-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bahe-pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #ff3b30;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    animation: bahe-pulse 1.5s infinite;
}

@keyframes bahe-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 59, 48, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

.bahe-ticket-container {
    background: #fff;
    /* White background to match the external site's likely light theme, or keep dark if legacy supports it */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px;
}

.bahe-legacy-iframe {
    width: 100%;
    min-height: 800px;
    border: none;
    border-radius: 8px;
    background: #fff;
}

/* 7. Brand Marquee */
.bahe-brand-section {
    padding: 60px 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.bahe-brand-title {
    text-align: center;
    color: var(--bahe-text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.bahe-brand-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Fading edges */
.bahe-brand-marquee::before,
.bahe-brand-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.bahe-brand-marquee::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
}

.bahe-brand-marquee::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

.bahe-brand-track {
    display: flex;
    width: max-content;
    animation: bahe-scroll 30s linear infinite;
}

.bahe-brand-track img {
    height: 80px;
    object-fit: contain;
    margin: 0 40px;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--bahe-transition);
}

.bahe-brand-track img:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes bahe-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 8. Gallery Grid */
.bahe-gallery-section {
    background-color: var(--bahe-bg-dark);
}

.bahe-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bahe-gallery-item {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
}

.bahe-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bahe-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bahe-gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.bahe-gallery-item:hover img {
    transform: scale(1.1);
}

.bahe-gallery-item:hover .bahe-gallery-overlay {
    opacity: 1;
}

.bahe-gallery-item:hover .bahe-gallery-overlay span {
    transform: translateY(0);
}

/* 9. Footer */
.bahe-footer {
    background-color: #050505;
    padding-top: 80px;
    border-top: 2px solid var(--bahe-accent-gold);
}

.bahe-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.bahe-footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.bahe-footer-text {
    color: var(--bahe-text-muted);
    font-size: 18px;
    margin-bottom: 30px !important;
}

.bahe-contact-info p {
    margin-bottom: 5px;
    color: #fff;
}

.bahe-email-link {
    font-size: 24px;
    font-family: var(--bahe-font-heading), sans-serif;
    color: var(--bahe-accent-gold);
}

.bahe-footer-image {
    text-align: right;
}

.bahe-footer-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
}

.bahe-footer-bottom {
    background: #000;
    padding: 20px 0;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

/* Animations */
.bahe-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bahe-fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.bahe-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .bahe-hero-title {
        font-size: 3rem;
    }

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

    .bahe-grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bahe-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bahe-footer-image {
        text-align: center;
        margin-top: 30px;
    }

    .bahe-footer-text {
        margin: 0 auto 30px;
    }
}

@media (max-width: 768px) {
    .bahe-hero-title {
        font-size: 2.2rem;
    }

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

    .bahe-nav-links {
        display: none;
        /* In a full build, add a hamburger menu here, but keeping it simple for now or using CSS to stack */
    }

    /* Simple mobile nav fallback */
    .bahe-nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        padding: 20px;
        gap: 15px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--bahe-transition);
        z-index: -1;
    }

    .bahe-navbar.mobile-open .bahe-nav-links {
        transform: translateY(0);
        opacity: 1;
    }

    /* Since no hamburger was required specifically, just hiding links and showing CTA on very small screens, or we just let flex wrap */
    .bahe-nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: transparent;
        padding: 0;
        transform: none;
        opacity: 1;
        gap: 15px;
    }

    .bahe-nav-link {
        display: none;
    }

    /* Hide text links on very small screens, keep CTA */
    .bahe-btn-nav {
        font-size: 0.7rem;
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .bahe-grid-4 {
        grid-template-columns: 1fr;
    }

    .bahe-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.vm-product-details-container .product-fields .form-check.btn-vm-customfield {
    width: 100%;
}

.btn-vm-customfield .form-check-label, .btn-vm-customfield .form-check-vm.form-check label, .form-check-vm.form-check .btn-vm-customfield label {
    width: 100%;
    height: 50px;
}

.btn-vm-customfield .form-check-label-text {
    width: 95%;
    height: initial;
}

.bahe-section.bahe-ticket-section {
    padding-bottom: 0;
}

.com-virtuemart.view-category #sp-main-body,
.com-virtuemart.view-productdetails #sp-main-body {
    background-color: var(--bahe-bg-card);
    margin: 0;
    padding: 0 0 50px 0;
}

.com-virtuemart.view-productdetails .vm-product-container {
    margin: 0;
    border: none;
    background: transparent;
}

.com-virtuemart.view-productdetails .vm-product-media-container .item-gallery {
    border-bottom: none;
}

.productdetails .payments {
    border-top: 1px solid var(--bahe-accent-gold);
}

.com-virtuemart.view-productdetails .vm-product-details-container {
    border-left: 1px solid var(--bahe-accent-gold);
}

.btn-vm-customfield .form-check-label, .btn-vm-customfield .form-check-vm.form-check label, .form-check-vm.form-check .btn-vm-customfield label {
    border: 2px solid var(--bahe-accent-gold);
}

.btn-vm-customfield .form-check-input:checked+.form-check-label {
    border-color: var(--bahe-accent-hover);
}

.productdetails  .quantity-box {
    border: 1px solid var(--bahe-accent-gold);
}

.com-virtuemart.view-productdetails .vm-product-media-container .item-gallery .desk .d1 {
    width: 100%;
    height: 530px;
}

.com-virtuemart.view-productdetails .vm-product-media-container .item-gallery .desk .d1 img {
    max-height: 100%;
    max-width: 100%;
    border-radius: 10px;
}

.productdetails .quantity-box .quantity-controls {
    color: var(--bahe-text-main);
}

.productdetails .quantity-box .quantity-controls:hover {
    background-color: #ebebeb;
    color: var(--bahe-text-muted);
}

.vm-product-details-container .addtocart-bar span.addtocart-button .addtocart-button {
    border: 1px solid var(--bahe-accent-gold);
    color: var(--bahe-accent-gold);
}

.vm-product-details-container h1 {
    color: var(--bahe-accent-gold);
}

#sppb-addon-40ffef26-3616-4cf9-b2b5-9e16ef68962c .sppb-addon-header .sppb-addon-title {
    color: var(--bahe-accent-gold);
}

.vm-product-details-container .product-price .PricesalesPrice {
    color: var(--bahe-text-main);
}


.productdetails .vm-product-details-container .product-field-display .vm-cmv-label {
    color: var(--bahe-text-main);
    font-size: 18px;
    margin: 0 0 10px;
}

.btn-vm-customfield .form-check-input:checked+.form-check-label .form-check-label-text:not(.is-color-btn) {
    color: var(--bahe-text-main);
    background-color: var(--bahe-accent-copper);
    border: none;
}

.ba-gallery-items .ba-image {
    cursor: pointer;
}

#sppb-addon-afae0a46-3521-44f0-a0fe-4bda5fbd10bc .sppb-addon-single-image-container img,
#sppb-addon-de226695-03f0-4b60-9456-07dc4f9898bb .sppb-addon-single-image-container img,
#sppb-addon-54e4ca61-0826-4b6f-b72f-52b556800c6a .sppb-addon-single-image-container img {
    filter: brightness(0) invert(1);
}

#sp-footer {
    padding: 0;
    border-top: 1px solid var(--bahe-accent-gold);
}

#sp-main-body,
.com-sppagebuilder #sp-main-body {
    margin-top: 200px;
}

#ProOPC table.cart-summary.proopc-table-striped tr td {
    border-color: transparent;
}

#ProOPC .proopc-column3 .proopc-payments {
    margin-top: 0;
}

.sp-menu-item.home-custom .fa.fa-home {
    font-weight: 400;
}

.sp-megamenu-parent>li::after {
    background: var(--bahe-accent-gold);
}

.sp-module .block-mini-cart .mini-cart-content {
    border-color: var(--bahe-accent-gold);
}

.mini-cart-content .show_cart a {
    background: var(--bahe-accent-gold);
}

.mini-cart-content .show_cart a {
    background: var(--bahe-accent-gold);
    color: var(--bahe-text-main);
}

.sp-module .block-mini-cart:hover .mini-cart-title .simple-handbag:before,
.mini-cart-content .show_cart a, .mini-cart-content .show_cart a:before {
    color: var(--bahe-text-main);
}

.sp-module .block-mini-cart .mini-cart-content:before {
    color:  var(--bahe-accent-gold);
}

.sp-page-builder .page-content #section-id-cf7a6c13-2b50-43ab-b490-adf46920663e,
.sp-page-builder .page-content #location,
.sp-page-builder .page-content #speakers {
  padding-top: 0;
}

.footer-copyright {
    color: var(--bahe-text-main);
}

.productdetails .top-item-description {
    display: block;
    padding: 10px 0;
}

.productdetails .top-item-description ul {
    margin-bottom: 0;
    padding-inline-start: 30px;
}

.paymentResponseHtml .vmshipment_name,
.paymentResponseHtml .vmpayment_name {
    color: var(--bahe-text-main);
}

#sppb-addon-17b03948-f578-4eb8-b8ee-d67b28351fd0 #btn-17b03948-f578-4eb8-b8ee-d67b28351fd0.sppb-btn-custom,
#sppb-addon-12bb95c6-e942-4e9c-b6b8-69bb88d17629 #btn-12bb95c6-e942-4e9c-b6b8-69bb88d17629.sppb-btn-custom,
#sppb-addon-7b8b2d96-e8f6-4f95-8ef2-a75a9249061d #btn-7b8b2d96-e8f6-4f95-8ef2-a75a9249061d.sppb-btn-custom {
    border-color: var(--bahe-accent-copper);
}
