:root {
    --be-bg: #ffffff;

    /* Core dark tones (keep for text + headings) */
    --be-dark: #0f172a;
    --be-dark-soft: #1f2937;

    --be-text: #0f172a;
    --be-muted: #64748b;

    /* Light backgrounds */
    --be-light: #f8fafc;
    --be-border: #e5e7eb;

    /* Brand colour (keep this — it's your personality) */
    --be-primary: #111111;
    --be-primary-dark: #000000;

    /* Optional accent (can remove later if needed) */
    --be-accent: #ec4899;

    --be-radius: 18px;
    --be-container: 1240px;
    --be-shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
    --be-transition: all 0.25s ease;
}

/* ================================
   GLOBAL
================================ */
/* ================================
   CUSTOM 404 PAGE
================================ */

.be-404-page {
    background:
        radial-gradient(circle at 8% 18%, rgba(124, 58, 237, 0.09), transparent 24%),
        radial-gradient(circle at 96% 36%, rgba(124, 58, 237, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
    overflow: hidden;
}

.be-404-hero {
    position: relative;
    padding: 120px 0 90px;
}

.be-404-visual {
    position: relative;
    max-width: 820px;
    margin: 0 auto 82px;
    text-align: center;
}

.be-404-visual h1 {
    margin: 0;
    color: var(--be-dark);
    font-size: clamp(110px, 16vw, 210px);
    line-height: 0.85;
    font-weight: 950;
    letter-spacing: -0.08em;
    text-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.be-404-visual h2 {
    margin: 30px 0 0;
    color: var(--be-dark);
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.be-404-accent {
    display: block;
    width: 76px;
    height: 5px;
    margin: 28px auto;
    border-radius: 999px;
    background: linear-gradient(135deg, #6b2cff, #9b6cff);
}

.be-404-visual p {
    max-width: 620px;
    margin: 0 auto 34px;
    color: var(--be-muted);
    font-size: 18px;
    line-height: 1.75;
}

.be-404-main-btn,
.be-404-help__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 62px;
    padding: 0 34px;
    border-radius: 999px;
    background: #000000;
    color: #ffffff !important;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    transition: var(--be-transition);
}

.be-404-main-btn:hover,
.be-404-help__btn:hover {
    transform: translateY(-3px);
    background: var(--be-dark);
}

.be-404-main-btn span,
.be-404-help__btn span {
    font-size: 24px;
    line-height: 1;
}

.be-404-plane {
    position: absolute;
    right: -80px;
    top: 88px;
    color: #7c3aed;
    font-size: 64px;
    transform: rotate(-20deg);
    z-index: 2;
}

.be-404-line {
    position: absolute;
    left: -90px;
    right: -90px;
    bottom: 75px;
    height: 180px;
    border-bottom: 3px dashed rgba(124, 58, 237, 0.22);
    border-radius: 0 0 50% 50%;
    z-index: 0;
    pointer-events: none;
}

.be-404-visual>*:not(.be-404-line):not(.be-404-blob) {
    position: relative;
    z-index: 2;
}

.be-404-blob {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.06);
    filter: blur(10px);
    z-index: 0;
}

.be-404-blob--left {
    left: -220px;
    top: -60px;
}

.be-404-blob--right {
    right: -260px;
    top: 120px;
}

.be-404-popular {
    margin-bottom: 70px;
}

.be-404-popular h3 {
    margin: 0 0 28px;
    text-align: center;
    color: var(--be-dark);
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.be-404-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.be-404-card {
    min-height: 250px;
    padding: 34px 26px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(124, 58, 237, 0.14);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--be-transition);
}

.be-404-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.13);
    border-color: rgba(124, 58, 237, 0.35);
}

.be-404-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eee1ff;
    color: #7c3aed;
    font-size: 30px;
    font-weight: 900;
}

.be-404-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--be-dark);
    font-size: 20px;
    font-weight: 950;
}

.be-404-card p {
    margin: 0 auto 22px;
    color: var(--be-muted);
    font-size: 15px;
    line-height: 1.6;
}

.be-404-card em {
    color: #7c3aed;
    font-style: normal;
    font-size: 28px;
    font-weight: 900;
}

.be-404-help {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 36px 42px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(124, 58, 237, 0.10), rgba(255, 255, 255, 0.75));
    border: 1px solid rgba(124, 58, 237, 0.12);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.07);
}

.be-404-help__icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #000000;
    color: #8b5cf6;
    font-size: 40px;
    font-weight: 900;
}

.be-404-help h3 {
    margin: 0 0 8px;
    color: var(--be-dark);
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.be-404-help p {
    margin: 0;
    color: var(--be-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* ================================
   404 RESPONSIVE
================================ */

@media (max-width: 1100px) {
    .be-404-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .be-404-plane {
        right: 0;
    }
}

@media (max-width: 760px) {
    .be-404-hero {
        padding: 80px 0 60px;
    }

    .be-404-visual {
        margin-bottom: 55px;
    }

    .be-404-visual h1 {
        font-size: 110px;
    }

    .be-404-visual h2 {
        font-size: 34px;
    }

    .be-404-visual p {
        font-size: 16px;
    }

    .be-404-plane,
    .be-404-line,
    .be-404-blob {
        display: none;
    }

    .be-404-card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .be-404-help {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 22px;
    }

    .be-404-help__icon {
        margin: 0 auto;
    }

    .be-404-help__btn {
        width: 100%;
    }
}

.be-container {
    width: min(100% - 32px, var(--be-container));
    margin: 0 auto;
}

.be-site-main {
    min-height: 60vh;
}

.be-btn,
.be-btn-secondary,
.be-mega-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition: var(--be-transition);
}

.be-btn {
    background: black !important;
    color: white ! important
}

.be-btn:hover {
    background: #f3f4f6;
    color: var(--be-dark);
}

.be-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ================================
   HEADER + NAV
================================ */

.be-has-mega--services .be-mega-menu--services {
    width: min(900px, calc(100vw - 48px)) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    padding: 42px 46px !important;
}

.be-mega-grid--services {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 34px !important;
}

.be-mega-grid--services .be-mega-col {
    display: contents;
}

.be-mega-grid--services h4 {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.be-mega-grid--services h4 a {
    color: #111827;
    text-decoration: none;
}

.be-mega-grid--services a {
    display: block;
    text-decoration: none;
}

.be-mega-grid--services a strong {
    display: block;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}

.be-mega-grid--services a span {
    display: block;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.be-mega-grid--services a:hover strong {
    color: #6d28d9;
}

@media (max-width: 980px) {
    .be-has-mega--services .be-mega-menu--services {
        width: 100% !important;
        transform: none !important;
        padding: 14px !important;
    }

    .be-mega-grid--services {
        display: block !important;
    }

    .be-mega-grid--services h4,
    .be-mega-grid--services a span {
        display: none !important;
    }

    .be-mega-grid--services a {
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(15, 23, 42, .08);
    }

    .be-mega-grid--services a strong {
        margin: 0 !important;
        font-size: 16px !important;
    }
}

.be-header {
    top: 0;
    z-index: 9999;
    background: #ffffff;
    border-bottom: 1px solid var(--be-border);
}

.admin-bar .be-header {
    top: 32px;
}

.be-topbar {
    background: var(--be-dark);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.be-topbar__inner {
    min-height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* LEFT / RIGHT GROUPS */
.be-topbar__links {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* LINKS */
.be-topbar a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.be-topbar a:hover {
    color: #a78bfa;
    opacity: 1;
}

/* DIVIDER LINE */
.be-topbar__links span {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
}

.be-main-header {
    position: relative;
    background: #ffffff;
}

.be-navbar {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.be-logo img {
    width: 190px;
    height: auto;
    display: block;
}

.be-nav>ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.be-nav li {
    position: relative;
}

.be-nav a {
    color: var(--be-text);
    text-decoration: none;
    font-weight: 850;
    font-size: 15px;
    transition: var(--be-transition);
}

.be-nav a:hover {
    color: var(--be-primary);
}

.be-dropdown-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.be-dropdown-link::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    display: inline-block;
    margin-top: -2px;
}

.be-hero-slider {
    position: relative;
    overflow: hidden;
}

.be-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.be-hero-slide.active {
    opacity: 1;
    position: relative;
}

.be-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.be-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.be-hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.be-hero__inner {
    position: relative;
    z-index: 3;
    padding: 100px 0;
}

.be-hero__content {
    max-width: 600px;
    color: #fff;
}

.be-hero__content h1 {
    color: #fff;
}

.be-hero__content p {
    color: rgba(255, 255, 255, 0.85);
}

.be-hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.be-hero-dots span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.be-hero-dots span.active {
    background: #ffffff;
    transform: scale(1.2);
}

.be-has-mega:hover .be-dropdown-link::after,
.be-has-mega:focus-within .be-dropdown-link::after {
    transform: rotate(-135deg);
}

.be-nav-icon a {
    background: var(--be-primary);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 999px;
}

.be-nav-icon a:hover {
    background: var(--be-primary-dark);
    color: #ffffff;
}

.be-nav-icon span {
    margin-left: 6px;
    background: #ffffff;
    color: var(--be-primary);
    border-radius: 999px;
    padding: 2px 7px;
    font-size: 12px;
}

/* ================================
   MEGA MENU
================================ */

.be-has-mega {
    position: static !important;
}

.be-mega-menu {
    position: absolute;
    left: 50%;
    top: 100%;
    width: min(100% - 48px, 1240px);
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid var(--be-border);
    border-radius: 0 0 24px 24px;
    box-shadow: var(--be-shadow);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 99999;
}

.be-mega-menu::before {
    content: "";
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    height: 45px;
}

.be-has-mega:hover .be-mega-menu,
.be-has-mega:focus-within .be-mega-menu,
.be-mega-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.be-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr)) 340px;
    gap: 34px;
    align-items: stretch;
}

.be-mega-grid--small,
.be-mega-grid--clean {
    grid-template-columns: repeat(3, minmax(180px, 1fr)) 340px;
}

.be-mega-col h4 {
    /*margin: 0 0 16px;*/
    color: var(--be-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.be-mega-col h4 a {
    color: var(--be-primary) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.be-mega-col h4 a:hover {
    color: var(--be-primary-dark) !important;
}

.be-mega-col a {
    display: block;
    padding: 7px 0;
    color: var(--be-text);
    font-size: 15px;
    font-weight: 650;
}

.be-mega-col a:hover {
    color: var(--be-primary);
    transform: translateX(4px);
}

.be-mega-panel,
.be-mega-feature {
    background: linear-gradient(135deg, #111827, #4c1d95);
    color: #ffffff;
    border-radius: 22px;
    padding: 28px;
    max-width: 360px;
    min-height: 100%;
}

.be-mega-feature img {
    display: none;
}

.be-mega-panel span {
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c4b5fd;
    margin-bottom: 14px;
}

.be-mega-panel h3,
.be-mega-feature h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.05;
    color: #ffffff;
}

.be-mega-panel p,
.be-mega-feature p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.be-mega-btn {
    padding: 11px 18px !important;
    background: var(--be-primary);
    color: #ffffff !important;
    font-weight: 900 !important;
}

.be-mega-btn:hover {
    background: var(--be-primary-dark);
    color: #ffffff !important;
}

/* ================================
   MOBILE NAV
================================ */

.be-nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--be-border);
    border-radius: 14px;
    background: #ffffff;
    cursor: pointer;
    padding: 10px;
}

.be-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--be-dark);
    margin: 6px 0;
    transition: var(--be-transition);
}

/* ================================
   FOOTER
================================ */

.be-footer {
    position: relative;
    margin-top: 40px;
    padding: 58px 0 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(107, 44, 255, .22), transparent 42%),
        linear-gradient(180deg, #1b1230 0%, #07050c 100%);
    color: #f7f2ff;
    border-top: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
}

.be-footer__container {
    width: min(1250px, calc(100% - 48px));
    margin: 0 auto;
}

.be-footer__top {
    display: grid;
    grid-template-columns: 1.7fr .9fr 1fr;
    gap: 56px;
    padding-bottom: 34px;
    align-items: start;
}

.be-footer__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #a98cff;
}

.be-footer__brand h3 {
    margin: 0 0 22px;
    max-width: 600px;
    font-size: 30px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -.04em;
    color: #fff;
}

.be-footer__brand p {
    max-width: 600px;
    margin: 0;
    color: rgba(247, 242, 255, .74);
    font-size: 1rem;
    line-height: 1.8;
}

.be-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
    max-width: 620px;
}

.be-footer__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}

.be-footer__col h4 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
}

.be-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.be-footer__col li {
    margin-bottom: 13px;
    color: rgba(247, 242, 255, .72);
    line-height: 1.65;
}

.be-footer__col a {
    color: rgba(247, 242, 255, .72);
    text-decoration: none;
    transition: color .2s ease;
}

.be-footer__col a:hover {
    color: #fff;
}

.be-footer__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 26px;
}

.be-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: .22s ease;
}

.be-footer-btn:hover {
    transform: translateY(-2px);
}

.be-footer-btn--primary {
    background: linear-gradient(135deg, #6b2cff, #9b6cff);
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(107, 44, 255, .28);
}

.be-footer-btn--secondary {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, .18);
}

.be-footer-btn--secondary:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .3);
}

@media (max-width: 1100px) {
    .be-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }

    .be-footer__brand {
        grid-column: 1 / -1;
    }

    .be-footer__bottom {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .be-footer__links {
        justify-content: flex-start;
    }

    .be-footer__credit {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .be-footer {
        padding-top: 44px;
    }

    .be-footer__container {
        width: calc(100% - 24px);
    }

    .be-footer__top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .be-footer__brand h3 {
        font-size: 2rem;
    }

    .be-footer__actions,
    .be-footer-btn {
        width: 100%;
    }
}

/* ================================
   PRODUCT PAGE
================================ */

.be-product-page {
    padding: 48px 0 90px;
    background: #f5f6f8;
}

.be-product-breadcrumbs {
    margin-bottom: 24px;
    color: var(--be-muted);
    font-size: 14px;
    font-weight: 600;
}

.be-product-breadcrumbs a {
    color: var(--be-text);
    text-decoration: none;
    font-weight: 800;
}

.be-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 38px;
    align-items: start;
}

.be-gallery-card,
.be-product-main-card,
.be-info-card,
.be-help-card,
.be-proof-card {
    background: #ffffff;
    border: 1px solid var(--be-border);
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(17, 24, 39, 0.06);
}

.be-gallery-card {
    padding: 0;
    overflow: hidden;
}

.be-gallery-card .woocommerce-product-gallery {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

.be-gallery-card .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.be-gallery-card .woocommerce-product-gallery__image {
    background: #ffffff;
}

.be-gallery-card .woocommerce-product-gallery__image img {
    width: 100%;
    border-radius: 0;
}

.be-gallery-card .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 12px !important;
    margin: 0 !important;
    background: #ffffff;
}

.be-gallery-card .flex-control-thumbs li {
    width: 100% !important;
    float: none !important;
}

.be-gallery-card .flex-control-thumbs img {
    border-radius: 10px;
    border: 2px solid transparent;
    opacity: 1 !important;
}

.be-gallery-card .flex-control-thumbs img.flex-active {
    border-color: var(--be-dark);
}

.be-info-card,
.be-help-card,
.be-proof-card {
    margin-top: 18px;
    padding: 26px;
}

.be-info-card h3,
.be-help-card h3,
.be-proof-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: var(--be-text);
}

.be-product-description {
    color: #374151;
    line-height: 1.7;
}

.be-product-description ul {
    margin: 14px 0 0;
    padding-left: 22px;
}

.be-help-card {
    background: black;
    color: #ffffff;
}

.be-help-card h3 {
    color: #ffffff;
}

.be-help-card p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.9);
}

.be-help-card a {
    color: #ffffff;
    font-weight: 900;
    text-decoration: underline;
}

.be-proof-card {
    border-left: 6px solid #2563eb;
}

.be-proof-card p {
    margin: 0;
    color: #374151;
    line-height: 1.7;
}

.be-product-main-card {
    padding: 28px;
}

.be-product-brand,
.be-eyebrow {
    display: inline-block;
    color: var(--be-primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.be-product-main-card .product_title,
.be-product-summary h1.product_title,
.product_title.entry-title {
    margin: 0 0 12px;
    color: var(--be-text);
    font-size: clamp(34px, 4vw, 48px) !important;
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.be-product-main-card .price,
.be-product-summary .price,
.summary .price {
    margin: 0 0 22px;
    color: var(--be-primary) !important;
    font-size: 30px !important;
    font-weight: 800 !important;
}

.be-product-summary p,
.summary p,
.be-product-short {
    color: #6b7280;
    line-height: 1.7;
    font-size: 15px;
}

.be-product-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--be-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 22px;
}

.be-product-badges div {
    padding: 18px;
    text-align: center;
}

.be-product-badges div+div {
    border-left: 1px solid var(--be-border);
}

.be-product-badges strong {
    display: block;
    color: var(--be-text);
    margin-bottom: 6px;
}

.be-product-badges span {
    display: block;
    color: var(--be-muted);
    font-size: 13px;
}

.be-product-left {
    position: sticky;
    top: 150px;
    align-self: start;
}

.be-product-right {
    position: static;
}

.single-product div.product div.images,
.single-product div.product div.summary {
    float: none !important;
    width: auto !important;
}

.woocommerce-tabs,
#tab-description,
#tab-additional_information,
#tab-reviews,
.related.products,
.up-sells,
.upsells.products,
.be-product-tabs-wrap {
    display: none !important;
}

.woocommerce-variation-price {
    display: none !important;
}

/* ================================
   PRODUCT FORM + VARIATIONS
================================ */

.be-product-cart-area table.variations {
    width: 100%;
    margin: 0 0 22px;
}

.be-product-cart-area table.variations tr,
.be-product-cart-area table.variations th,
.be-product-cart-area table.variations td {
    display: block;
    padding: 0;
}

.be-product-cart-area table.variations tr {
    margin-bottom: 28px;
}

.be-product-cart-area table.variations label,
.bec-field label,
.variations label {
    display: block;
    margin-bottom: 10px;
    color: var(--be-text);
    font-size: 15px !important;
    font-weight: 800;
}

.be-product-cart-area table.variations select {
    display: none !important;
}

.be-variation-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.be-variation-btn {
    min-width: 76px;
    min-height: 56px;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    background: #ffffff;
    color: var(--be-text);
    font-size: 12px !important;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.be-variation-btn:hover,
.be-variation-btn.is-active {
    border-color: var(--be-dark);
    box-shadow: inset 0 0 0 2px var(--be-dark);
}

.be-colour-buttons .be-variation-btn {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    border-radius: 999px;
    background: var(--swatch-color);
    padding: 0;
}

.be-colour-buttons .be-variation-btn[aria-label="White"],
.be-colour-buttons .be-variation-btn[aria-label="white"] {
    background: #ffffff;
}

.be-colour-buttons .be-variation-btn.is-active {
    border-color: var(--be-dark);
    box-shadow: 0 0 0 4px #ffffff, 0 0 0 7px var(--be-dark);
}

.be-product-cart-area .reset_variations {
    display: inline-block;
    margin-top: 8px;
    color: var(--be-primary);
    font-weight: 800;
    text-decoration: none;
}

.be-product-cart-area .quantity {
    width: 80px;
    margin-right: 12px !important;
}

.be-product-cart-area .quantity input {
    width: 80px;
    min-height: 54px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    text-align: center;
    font-weight: 900;
}

.be-product-cart-area .single_add_to_cart_button {
    min-height: 54px;
    width: calc(100% - 96px);
    border-radius: 8px !important;
    background: var(--be-dark) !important;
    color: #ffffff !important;
    border: 0 !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.be-product-cart-area .single_add_to_cart_button:hover {
    background: var(--be-primary) !important;
}

/* ================================
   CUSTOMISER
================================ */

.be-product-cart-area .bec-customiser {
    margin: 22px 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.be-product-cart-area .bec-heading {
    margin-bottom: 18px;
    padding-top: 22px;
    border-top: 1px solid var(--be-border);
}

.bec-heading h3,
.be-product-info-card h3 {
    font-size: 30px !important;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--be-text);
}

.be-product-cart-area .bec-heading p {
    font-size: 15px;
}

.be-product-cart-area .bec-placement-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.be-product-cart-area .bec-placement-card {
    border: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.be-product-cart-area .bec-placement-card:hover {
    transform: none;
}

.be-product-cart-area .bec-placement-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff;
    border: 2px solid transparent;
    margin-bottom: 8px;
}

.be-product-cart-area .bec-placement-card span,
.bec-option-card span,
.bec-options-grid label span {
    display: block;
    font-size: 13px !important;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
}

.be-product-cart-area .bec-placement-card input:checked+img {
    border-color: var(--be-dark);
}

.be-product-cart-area .bec-placement-grid--included {
    display: grid !important;
    grid-template-columns: 160px !important;
    margin-top: 12px;
}

.be-product-cart-area .bec-placement-card--included {
    padding: 14px !important;
    border: 1px solid var(--be-border) !important;
    border-radius: 16px !important;
    background: #f8fafc !important;
}

.be-product-cart-area .bec-placement-card--included img {
    display: block !important;
    width: 100% !important;
    max-height: 120px !important;
    object-fit: contain !important;
    margin-bottom: 8px !important;
}

.be-product-cart-area .bec-placement-card--included span {
    color: var(--be-text);
    font-weight: 900;
}

.be-product-cart-area .bec-field select,
.be-product-cart-area .bec-field input[type="file"],
.be-product-cart-area .bec-field textarea,
.bec-customiser select,
.bec-customiser textarea,
.bec-customiser input[type="file"] {
    width: 100%;
    border-radius: 8px;
    font-size: 14px;
}

.bec-total-box {
    border-radius: 18px;
}

/* ================================
   CART PAGE
================================ */

.be-cart-page {
    background: #ffffff;
    padding: 70px 0 90px;
}

.be-cart-heading {
    margin-bottom: 34px;
}

.be-cart-heading span {
    display: block;
    color: var(--be-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.be-cart-heading h1 {
    margin: 0 0 10px;
    font-size: 54px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 850;
    color: var(--be-text);
}

.be-cart-heading p {
    margin: 0;
    color: var(--be-muted);
    font-size: 17px;
}

.be-cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 34px;
    align-items: start;
}

.be-cart-list {
    display: grid;
    gap: 18px;
}

.be-cart-product {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
    align-items: start;
    padding: 24px;
    border: 1px solid var(--be-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
}

.be-cart-product__image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 18px;
    background: #f8fafc;
}

.be-cart-product__details h2 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 850;
    color: var(--be-text);
}

.be-cart-product__details h2 a {
    color: inherit;
    text-decoration: none;
}

.be-cart-product__meta {
    display: grid;
    gap: 6px;
    color: var(--be-muted);
    font-size: 14px;
    line-height: 1.5;
}

.be-cart-product__meta dl,
.be-cart-product__meta dt,
.be-cart-product__meta dd {
    margin: 0;
}

.be-cart-product__meta dt {
    font-weight: 850;
    color: var(--be-text);
}

.be-cart-product__meta dd {
    margin-bottom: 6px;
}

.be-cart-product__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.be-cart-product__actions .quantity input {
    width: 78px;
    height: 46px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: #f8fafc;
    text-align: center;
    font-weight: 850;
}

.be-cart-remove {
    color: #ef4444;
    font-weight: 850;
    text-decoration: none;
}

.be-cart-product__price {
    font-size: 22px;
    font-weight: 900;
    color: var(--be-text);
    white-space: nowrap;
}

.be-cart-update-row {
    display: flex;
    justify-content: flex-end;
}

.be-cart-update-row .button {
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--be-primary) !important;
    color: #ffffff !important;
    padding: 14px 26px !important;
    font-weight: 900 !important;
    box-shadow: 0 14px 30px rgba(109, 40, 217, 0.22);
}

.be-cart-summary {
    position: sticky;
    top: 150px;
}

.be-cart-summary-card,
.be-cart-promise {
    background: #ffffff;
    border: 1px solid var(--be-border);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
}

.be-cart-summary-card {
    padding: 28px;
}

.be-cart-summary-card h2 {
    margin: 0 0 24px;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--be-text);
}

.be-summary-line,
.be-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--be-border);
}

.be-summary-line span,
.be-summary-total span {
    color: var(--be-muted);
    font-weight: 800;
}

.be-summary-line strong {
    color: var(--be-text);
    font-size: 20px;
}

.be-summary-total strong {
    color: var(--be-primary);
    font-size: 32px;
    font-weight: 900;
}

.be-summary-note {
    margin: 22px 0;
    padding: 16px;
    border-radius: 16px;
    background: #f5f3ff;
    color: var(--be-primary-dark);
    line-height: 1.6;
    font-size: 14px;
}

.be-cart-summary-card .checkout-button {
    width: 100%;
    min-height: 58px;
    border-radius: 999px !important;
    background: var(--be-primary) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 14px 35px rgba(109, 40, 217, 0.25);
}

.be-cart-summary-card .checkout-button:hover {
    background: var(--be-primary-dark) !important;
}

.be-cart-promise {
    margin-top: 16px;
    padding: 20px;
    border-left: 5px solid #16a34a;
}

.be-cart-promise p {
    margin: 0 0 10px;
    color: var(--be-text);
    font-weight: 850;
}

.be-cart-promise p:last-child {
    margin-bottom: 0;
}

.woocommerce-cart .widget-area,
.woocommerce-cart #sidebar,
.woocommerce-cart .et_pb_widget_area {
    display: none !important;
}

.woocommerce-cart #left-area {
    width: 100% !important;
    padding-right: 0 !important;
}

.woocommerce-cart #main-content .container:before,
.woocommerce-cart .entry-title {
    display: none !important;
}

/* ================================
   CATEGORY / SHOP PAGES
================================ */

.be-category-page {
    background: #f5f7fb;
    padding: 0 0 90px;
}

.be-category-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 32px;
    align-items: center;
    margin: 0 0 34px;
    padding: 60px;
    border-radius: 0 0 34px 34px;
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #ffffff;
    overflow: hidden;
}

.be-category-hero__content span,
.be-category-section-title span {
    display: inline-flex;
    margin-bottom: 14px;
    color: #c4b5fd;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.be-category-hero h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.be-category-hero p {
    max-width: 760px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.65;
}

.be-category-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.be-category-hero__panel {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    padding: 28px;
    backdrop-filter: blur(12px);
}

.be-category-hero__panel strong {
    display: block;
    font-size: 22px;
    margin-bottom: 16px;
    color: #ffffff;
}

.be-category-hero__panel ul {
    margin: 0;
    padding: 0;
}

.be-category-hero__panel li {
    position: relative;
    list-style: none;
    padding-left: 22px;
    /* 👈 tighter spacing */
    margin-bottom: 12px;
}

.be-category-hero__panel li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    /* 👈 aligns vertically with text */
    color: #ffffff;
    font-weight: 900;
    font-size: 14px;
}

.be-category-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.be-category-trust div,
.be-category-copy>div,
.be-category-toolbar,
.be-category-empty {
    background: #ffffff;
    border: 1px solid var(--be-border);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
}

.be-category-trust div {
    border-radius: 22px;
    padding: 22px;
}

.be-category-trust strong {
    display: block;
    color: var(--be-text);
    font-size: 16px;
    margin-bottom: 5px;
}

.be-category-trust span {
    color: var(--be-muted);
    font-size: 14px;
    line-height: 1.5;
}

.be-category-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    margin-bottom: 38px;
}

.be-category-copy>div {
    border-radius: 26px;
    padding: 30px;
}

.be-category-copy h2,
.be-category-copy h3 {
    margin: 0 0 12px;
    color: var(--be-text);
    font-weight: 950;
}

.be-category-copy h2 {
    font-size: 34px;
    letter-spacing: -0.04em;
}

.be-category-copy h3 {
    font-size: 24px;
}

.be-category-copy p {
    margin: 0;
    color: var(--be-muted);
    line-height: 1.75;
}

.be-category-copy a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--be-primary);
    font-weight: 900;
    text-decoration: none;
}

.be-category-section-title {
    margin-bottom: 20px;
}

.be-category-section-title span {
    color: var(--be-primary);
}

.be-category-section-title h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--be-text);
    font-weight: 950;
}

.be-category-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 18px 22px;
    border-radius: 22px;
}

.be-category-toolbar p {
    margin: 0;
    color: var(--be-muted);
    font-weight: 800;
}

.be-category-toolbar .woocommerce-ordering {
    margin: 0;
}

.be-category-toolbar select {
    min-height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 0 16px;
    font-weight: 800;
}

.be-category-products {
    width: 100% !important;
}

.be-category-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.be-category-products ul.products::before,
.be-category-products ul.products::after,
.be-category-products ul.products li.product::before {
    display: none !important;
    content: none !important;
}

.be-category-products ul.products li.product,
.be-category-products ul.products li.product.first,
.be-category-products ul.products li.product.last {
    float: none !important;
    clear: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 18px !important;
    box-sizing: border-box !important;
    list-style: none !important;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--be-border);
    border-radius: 30px;
    box-shadow: 0 18px 50px rgba(17, 24, 39, 0.07);
    transition: var(--be-transition);
}

.be-category-products ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 75px rgba(17, 24, 39, 0.12);
}

.be-category-products ul.products li.product a {
    text-decoration: none !important;
}

.be-category-products ul.products li.product img,
.be-category-products ul.products li.product a img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 220px !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 24px;
    background: #ffffff;
    margin: 0 !important;
}


.be-category-products .be-product-card__image {
    width: 100% !important;
    height: 260px !important;
    aspect-ratio: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 18px !important;
    overflow: hidden !important;
    background: #ffffff !important;
}

.be-category-products .be-product-card__image img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 220px !important;
    object-fit: contain !important;
}

.be-category-products ul.products li.product .woocommerce-loop-product__title {
    margin: 0 0 10px !important;
    padding: 0 !important;
    min-height: auto !important;
    color: var(--be-text);
    font-size: 26px !important;
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.be-category-products ul.products li.product .price {
    display: block;
    margin: 0 0 16px;
    color: var(--be-primary) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

.be-category-products ul.products li.product .button {
    width: 100%;
    min-height: 52px;
    margin-top: 14px !important;
    border-radius: 999px !important;
    background: var(--be-dark) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.be-category-products ul.products li.product .button:hover {
    background: var(--be-primary) !important;
}

.be-category-products nav.woocommerce-pagination {
    grid-column: 1 / -1 !important;
    margin-top: 34px !important;
}

.be-category-products .woocommerce-pagination ul {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    border: 0 !important;
}

.be-category-products .woocommerce-pagination li {
    border: 0 !important;
}

.be-category-products .woocommerce-pagination a,
.be-category-products .woocommerce-pagination span {
    min-width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: var(--be-text) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 900 !important;
    border: 1px solid var(--be-border) !important;
}

.be-category-products .woocommerce-pagination .current {
    background: var(--be-primary) !important;
    color: #ffffff !important;
}

.be-category-faq {
    margin-top: 54px;
    padding: 36px;
    border-radius: 30px;
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #ffffff;
}

.be-category-faq h2 {
    margin: 0 0 26px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.be-category-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.be-category-faq-grid div {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
}

.be-category-faq-grid h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 20px;
}

.be-category-faq-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.be-category-empty {
    padding: 36px;
    border-radius: 26px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
    .be-product-layout {
        grid-template-columns: 1fr;
    }

    .be-product-left,
    .be-product-right,
    .be-cart-summary {
        position: static;
    }

    .be-mega-grid,
    .be-mega-grid--small,
    .be-mega-grid--clean {
        grid-template-columns: repeat(2, 1fr);
    }

    .be-mega-panel,
    .be-mega-feature {
        grid-column: span 2;
        max-width: none;
    }
}

@media (max-width: 980px) {
    .admin-bar .be-header {
        top: 46px;
    }

    .be-topbar__inner {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }

    .be-navbar {
        position: relative;
        min-height: 76px;
    }

    .be-nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        margin: 0;
        z-index: 100001;
    }

    .be-nav-toggle span {
        margin: 0;
    }

    .be-nav-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .be-nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .be-nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .be-nav {
        display: none !important;
        position: absolute !important;
        top: calc(100% + 10px) !important;
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        max-height: calc(100vh - 160px) !important;
        overflow-y: auto !important;

        background: #ffffff !important;
        border: 1px solid var(--be-border) !important;
        border-radius: 22px !important;
        box-shadow: var(--be-shadow) !important;
        padding: 18px !important;
        z-index: 999999 !important;

        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .be-nav.is-open {
        display: block !important;
    }

    .be-nav>ul {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin: 0;
        padding: 0;
    }

    .be-nav li {
        width: 100%;
        position: relative;
    }

    .be-nav a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 16px;
        border-radius: 14px;
        font-size: 16px;
    }

    .be-dropdown-link {
        background: #f8fafc;
    }

    .be-dropdown-link::after {
        margin-left: auto;
        transform: rotate(45deg) !important;
    }

    .be-has-mega.is-open>.be-dropdown-link {
        background: #f5f3ff;
        color: var(--be-primary);
    }

    .be-has-mega.is-open>.be-dropdown-link::after {
        transform: rotate(-135deg) !important;
    }

    .be-mega-menu {
        display: none !important;
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        box-shadow: none !important;
        border: 0 !important;
        border-radius: 16px !important;
        padding: 14px !important;
        margin: 8px 0 12px !important;
        background: #f5f7fb !important;
    }

    .be-has-mega.is-open>.be-mega-menu {
        display: block !important;
    }

    .be-mega-menu::before,
    .be-mega-panel,
    .be-mega-feature {
        display: none !important;
    }

    .be-mega-grid,
    .be-mega-grid--small,
    .be-mega-grid--clean {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px;
        width: 100% !important;
    }

    .be-mega-col h4 {
        margin: 10px 0 6px;
    }

    .be-mega-col h4 a {
        padding: 0 !important;
        color: var(--be-primary) !important;
        font-size: 13px !important;
    }

    .be-mega-col>a {
        display: block !important;
        background: #ffffff;
        padding: 11px 14px;
        margin-bottom: 6px;
        border-radius: 12px;
        font-size: 15px;
        color: var(--be-text);
    }

    .be-nav-icon a {
        justify-content: center;
        background: var(--be-primary);
        color: #ffffff !important;
        margin-top: 10px;
    }

    .be-footer__top,
    .be-cart-grid,
    .be-category-hero,
    .be-category-copy {
        grid-template-columns: 1fr;
    }

    .be-category-hero {
        padding: 46px 26px;
    }

    .be-category-trust,
    .be-category-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .be-category-products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .be-category-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .product_title.entry-title {
        font-size: 34px !important;
    }

    .summary .price {
        font-size: 28px !important;
    }

    .bec-heading h3 {
        font-size: 24px !important;
    }
}

@media (max-width: 760px) {
    .be-product-page {
        padding: 30px 0 70px;
    }

    .be-product-main-card,
    .be-info-card,
    .be-help-card,
    .be-proof-card {
        padding: 20px;
    }

    .be-product-badges {
        grid-template-columns: 1fr;
    }

    .be-product-badges div+div {
        border-left: 0;
        border-top: 1px solid var(--be-border);
    }

    .be-product-cart-area .bec-placement-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .be-product-cart-area .quantity,
    .be-product-cart-area .quantity input,
    .be-product-cart-area .single_add_to_cart_button {
        width: 100%;
    }

    .be-product-cart-area .quantity {
        margin: 0 0 12px !important;
    }
}

@media (max-width: 640px) {
    .be-cart-product {
        grid-template-columns: 90px 1fr;
        padding: 18px;
    }

    .be-cart-product__price {
        grid-column: 1 / -1;
    }

    .be-cart-product__image img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 620px) {
    .be-container {
        width: min(100% - 24px, var(--be-container));
    }

    .be-logo img {
        width: 145px;
    }

    .be-topbar__inner {
        flex-direction: column;
        justify-content: center;
        padding: 10px 0;
        gap: 8px;
        text-align: center;
    }

    .be-topbar__links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .be-topbar__links span {
        display: none;
    }

    .be-footer__top,
    .be-category-trust,
    .be-category-products ul.products,
    .be-category-faq-grid {
        grid-template-columns: 1fr !important;
    }

    .be-footer h3,
    .be-category-copy h2,
    .be-category-section-title h2,
    .be-category-faq h2 {
        font-size: 30px;
    }

    .be-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .be-category-hero h1 {
        font-size: 42px;
    }
}

/* Grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.woocommerce ul.products li.product {
    width: auto !important;
    margin: 0 !important;
}

/* Card */
.be-product-card {
    list-style: none;
    height: 100%;
}

.be-product-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 18px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: 0.25s ease;
}

.be-product-card__link:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 65px rgba(15, 23, 42, 0.13);
}

/* Media */
.be-product-card__media {
    position: relative;
    height: 280px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.be-product-card__image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 18px;
    padding: 14px;
}

.be-product-card__image img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.10));
    transition: transform 0.3s ease;
}

.be-product-card__link:hover .be-product-card__image img {
    transform: scale(1.035);
}

/* Tag */
.be-product-card__tag {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

.be-product-card__tag span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    flex: 0 0 auto;
}

/* Content */
.be-product-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px 6px 4px;
}

/* Title */
.be-product-card__title {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: 22px;
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.055em;
}

/* Features */
.be-product-card__features {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    margin-top: 4px;
}

.be-product-card__features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border: 0;
    border-radius: 999px;
    background: #f3f6fb;
    white-space: nowrap;
}

.be-product-card__features span:first-child,
.be-product-card__features span:last-child {
    padding: 8px 11px;
}

/* Divider */
.be-product-card__divider {
    height: 1px;
    background: #e5e7eb;
    margin: 18px 0;
}

/* Price */
.be-product-card__price {
    color: #0f172a;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 16px;
}

/* Button */
.be-product-card__button {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    background: #0f172a;
    /* softer than pure black */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
    margin-top: auto;
    transition: 0.25s ease;
}

.be-product-card__link:hover .be-product-card__button {
    transform: translateY(-2px);
}

/* Remove completely (recommended) */
.be-product-card__link::after {
    display: none;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet → SINGLE COLUMN FIX */
@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .be-product-card__media {
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .be-product-card__link {
        padding: 14px;
        border-radius: 24px;
    }

    .be-product-card__media {
        height: 260px;
        border-radius: 20px;
    }

    .be-product-card__image img {
        max-height: 200px;
    }

    .be-product-card__content {
        padding: 22px 4px 4px;
    }

    .be-product-card__title {
        font-size: 20px;
    }

    .be-product-card__features {
        grid-template-columns: 1fr;
        gap: 8px;
        font-size: 14px;
    }

    .be-product-card__features span {
        border-right: 0;
        padding: 0;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .be-product-card__media {
        height: 230px;
    }

    .be-product-card__title {
        font-size: 22px;
    }

    .be-product-card__price {
        font-size: 22px;
    }

    .be-product-card__button {
        min-height: 52px;
        font-size: 15px;
    }
}


/* Homepage */
.be-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.be-site-main {
    background: #ffffff;
}

.be-hero {
    padding: 72px 0;
    background: linear-gradient(135deg, #f7f3ff 0%, #ffffff 52%, #f3ecff 100%);
}

/* FULL WIDTH HERO */
.be-hero--full {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background image */
.be-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.be-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay (for readability) */
.be-hero--full::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.45) 40%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

/* Content */
.be-hero__inner {
    position: relative;
    z-index: 3;
}

.be-hero__content {
    max-width: 600px;
    color: #ffffff;
}

/* Text tweaks for dark bg */
.be-hero__content h1 {
    color: #ffffff;
}

.be-hero__content p {
    color: rgba(255, 255, 255, 0.85);
}

/* Buttons (optional tweak) */
.be-btn--secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.be-eyebrow,
.be-section-heading span,
.be-cta span {
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6b2cff;
    margin-bottom: 14px;
}

.be-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: .95;
    margin: 0 0 22px;
    color: white;
    letter-spacing: -0.055em;
}

.be-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #5f596b;
    max-width: 620px;
}

.be-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.be-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
}

.be-btn--primary {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #fff;
    box-shadow: 0 14px 30px rgba(107, 44, 255, .22);
}

.be-btn--secondary {
    background: #fff;
    color: #17131f;
    border: 1px solid #e6deff;
}

.be-btn--light {
    background: #fff;
    color: #6b2cff;
}

.be-btn:hover {
    transform: translateY(-2px);
}

.be-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.be-trust-row span {
    background: #fff;
    border: 1px solid #eee7ff;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #352d45;
}

.be-hero__image img,
.be-featured-split__image img {
    width: 100%;
    display: block;
    border-radius: 32px;
    object-fit: cover;
    aspect-ratio: 4 / 4.5;
    box-shadow: 0 28px 70px rgba(34, 24, 58, .14);
}

.be-category-strip,
.be-product-carousel,
.be-how-it-works,
.be-featured-split,
.be-cta {
    padding: 72px 0;
}

.be-section-heading {
    margin-bottom: 32px;
    max-width: 720px;
}

.be-section-heading--split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.be-section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    margin: 0 0 12px;
    color: #17131f;
    letter-spacing: -0.045em;
}

.be-section-heading p {
    color: #6f6878;
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
}

.be-section-heading--split a {
    font-weight: 800;
    color: #6b2cff;
    text-decoration: none;
    white-space: nowrap;
}

.be-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.be-category-card {
    background: #fff;
    border: 1px solid #eeeaf5;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 18px 50px rgba(30, 22, 44, .07);
    transition: .2s ease;
}

.be-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(30, 22, 44, .11);
}

.be-category-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.be-category-card div {
    padding: 22px;
}

.be-category-card h3 {
    font-size: 22px;
    margin: 0 0 8px;
    color: #17131f;
}

.be-category-card p {
    margin: 0 0 14px;
    color: #6f6878;
    line-height: 1.55;
}

.be-category-card strong {
    color: #6b2cff;
}

.be-product-carousel--soft,
.be-how-it-works {
    background: #faf8ff;
}

.be-scroll-products .woocommerce ul.products {
    display: flex !important;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 18px;
    margin: 0 !important;
}

.be-scroll-products .woocommerce ul.products li.product {
    min-width: 360px;
    max-width: 260px;
    scroll-snap-align: start;
    margin: 0 !important;
    float: none !important;
}

.be-scroll-products .woocommerce ul.products::-webkit-scrollbar {
    height: 8px;
}

.be-scroll-products .woocommerce ul.products::-webkit-scrollbar-thumb {
    background: #d7c8ff;
    border-radius: 999px;
}

.be-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.be-step-card {
    background: #fff;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid #eeeaf5;
    box-shadow: 0 18px 50px rgba(30, 22, 44, .06);
}

.be-step-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #6b2cff;
    color: #fff;
    font-weight: 900;
    margin-bottom: 20px;
}

.be-step-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #17131f;
}

.be-step-card p {
    margin: 0;
    color: #6f6878;
    line-height: 1.6;
}

.be-featured-split__grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.be-featured-split__content h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    margin: 0 0 18px;
    color: #17131f;
    letter-spacing: -0.045em;
}

.be-featured-split__content p {
    color: #6f6878;
    font-size: 17px;
    line-height: 1.7;
}

.be-featured-split__content ul {
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.be-featured-split__content li {
    margin-bottom: 12px;
    font-weight: 700;
    color: #282131;
}

.be-featured-split__content li::before {
    content: "✓";
    color: #6b2cff;
    margin-right: 10px;
}

.be-cta__box {
    background: black;
    color: #fff;
    border-radius: 34px;
    padding: clamp(34px, 6vw, 70px);
    text-align: center;
    box-shadow: 0 28px 70px rgba(107, 44, 255, .24);
}

.be-cta span {
    color: #ddd0ff;
}

.be-cta h2 {
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1;
    margin: 0 auto 16px;
    max-width: 850px;
    letter-spacing: -0.045em;
    color: white;
}

.be-cta p {
    max-width: 620px;
    margin: 0 auto 28px;
    color: #eee8ff;
    font-size: 17px;
    line-height: 1.7;
}

@media (max-width: 900px) {

    .be-hero__grid,
    .be-featured-split__grid,
    .be-category-grid,
    .be-steps-grid {
        grid-template-columns: 1fr;
    }

    .be-section-heading--split {
        align-items: flex-start;
        flex-direction: column;
    }

    .be-hero {
        padding: 48px 0;
    }

    .be-category-strip,
    .be-product-carousel,
    .be-how-it-works,
    .be-featured-split,
    .be-cta {
        padding: 52px 0;
    }
}

.be-mega-grid--compact {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, minmax(180px, 1fr)) 320px !important;
}

.be-mega-grid--compact .be-mega-panel {
    min-height: 260px;
}

.be-has-mega .be-mega-menu {
    left: 50%;
    transform: translateX(-50%);
    width: min(1230px, calc(100vw - 48px));
}

.be-has-mega .be-mega-grid--compact {
    width: min(900px, calc(100vw - 48px));
}

.be-thankyou {
    max-width: 1120px;
    margin: 0 auto;
    padding: 50px 20px;
}

.be-thankyou__hero,
.be-thankyou__card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 26px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.be-thankyou__hero {
    text-align: center;
    padding: 54px 36px;
    margin-bottom: 28px;
}

.be-thankyou__icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
}

.be-thankyou h1 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.be-thankyou h2 {
    margin: 0 0 20px;
    color: #0f172a;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.be-thankyou h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.be-thankyou p,
.be-thankyou address {
    color: #475569;
    font-style: normal;
    line-height: 1.65;
}

.be-thankyou__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    margin-bottom: 24px;
}

.be-thankyou__grid--addresses {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
}

.be-thankyou__card {
    padding: 30px;
}

.be-thankyou__card--purple {
    background: #f5f3ff;
    border-color: #ddd6fe;
}

.be-thankyou__card--purple h2 {
    color: #5b21b6;
}

.be-thankyou__card--purple ol {
    margin: 0;
    padding-left: 20px;
    color: #334155;
    font-weight: 800;
}

.be-thankyou__card--purple li {
    margin-bottom: 10px;
}

.be-thankyou__summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.be-thankyou__summary div {
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
}

.be-thankyou__summary span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 5px;
}

.be-thankyou__summary strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    word-break: break-word;
}

.be-thankyou__section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.be-thankyou__section-heading span {
    color: #64748b;
    font-weight: 800;
}

.be-thankyou__item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding: 26px 0;
    border-top: 1px solid #e5e7eb;
}

.be-thankyou__item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.be-thankyou__item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 0;
}

.be-thankyou__item-meta span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
}

.be-thankyou__item-price {
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
    white-space: nowrap;
}

.be-thankyou__customisation {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    max-width: 680px;
}

.be-thankyou__customisation>strong {
    display: block;
    margin-bottom: 14px;
    color: #5b21b6;
    font-size: 16px;
    font-weight: 900;
}

.be-thankyou__custom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.be-thankyou__custom-grid p {
    margin: 0;
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.be-thankyou__custom-grid span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.be-thankyou__custom-grid strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
}

.be-thankyou a {
    color: #5b21b6;
    font-weight: 900;
}

.be-thankyou__button {
    display: inline-block;
    margin-top: 18px;
    padding: 14px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #fff !important;
    text-decoration: none;
    font-weight: 900;
}

.woocommerce-order-details,
.woocommerce-customer-details {
    display: none !important;
}

@media (max-width: 768px) {
    .be-thankyou {
        padding: 28px 14px;
    }

    .be-thankyou__hero {
        padding: 38px 22px;
    }

    .be-thankyou__grid,
    .be-thankyou__grid--addresses,
    .be-thankyou__custom-grid {
        grid-template-columns: 1fr;
    }

    .be-thankyou__card {
        padding: 22px;
    }

    .be-thankyou__item {
        grid-template-columns: 1fr;
    }

    .be-thankyou__item-price {
        font-size: 22px;
    }
}

.woocommerce-order-received .entry-title {
    display: none !important;
}

.woocommerce-order-received h1.entry-title.main_title {
    display: none !important;
}

.be-thankyou__summary-total strong,
.be-thankyou__summary-total strong span,
.be-thankyou__summary-total .woocommerce-Price-amount,
.be-thankyou__summary-total .woocommerce-Price-amount bdi {
    display: inline-flex !important;
    align-items: center;
    white-space: nowrap !important;
    gap: 0 !important;
}

/* Contact Us */

.be-contact-page {
    background: #f8fafc;
}

.be-contact-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.be-contact-hero {
    padding: 90px 0 40px;
    text-align: center;
}

.be-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #7c3aed;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.be-contact-hero h1,
.be-contact-faq h2 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.be-contact-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #64748b;
    font-size: 18px;
    line-height: 1.7;
}

.be-contact-section {
    padding: 40px 0 70px;
}

.be-contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}

.be-contact-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.be-contact-card h2 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.be-contact-card p {
    color: #64748b;
    line-height: 1.7;
}

.be-contact-info {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.be-contact-info span {
    display: block;
    margin-bottom: 6px;
    color: #7c3aed;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.be-contact-info strong {
    color: #0f172a;
    font-size: 16px;
    word-break: break-word;
}

.be-contact-note {
    margin-top: 22px;
    padding: 20px;
    border-radius: 22px;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
}

.be-contact-note h3 {
    margin: 0 0 8px;
    color: #5b21b6;
}

.be-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.be-contact-form p {
    margin: 0 0 18px;
}

.be-contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-weight: 900;
}

.be-contact-form input,
.be-contact-form textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 15px;
    padding: 15px 16px;
    outline: none;
}

.be-contact-form input:focus,
.be-contact-form textarea:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

.be-contact-form button {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.3);
}

.be-contact-success,
.be-contact-error {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 800;
}

.be-contact-success {
    background: #ecfdf5;
    color: #047857;
}

.be-contact-error {
    background: #fff7ed;
    color: #9a3412;
}

.be-contact-faq {
    padding: 70px 0 90px;
}

.be-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.be-faq-grid details {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.be-faq-grid summary {
    cursor: pointer;
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
}

.be-faq-grid p {
    margin: 14px 0 0;
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 900px) {

    .be-contact-layout,
    .be-faq-grid,
    .be-form-grid {
        grid-template-columns: 1fr;
    }

    .be-contact-hero {
        padding-top: 60px;
    }

    .be-contact-card {
        padding: 24px;
        border-radius: 24px;
    }
}

.be-footer__socials {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

/* Icon buttons */
.be-footer__socials a {
    width: 52px;
    height: 52px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #fff;
    text-decoration: none;

    transition: all 0.3s ease;
}

/* SVG size */
.be-footer__socials svg {
    width: 20px;
    height: 20px;
}

/* Hover = premium */
.be-footer__socials a:hover {
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    border-color: transparent;
    transform: translateY(-4px) scale(1.05);
}

.be-footer__socials a:hover {
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    border-color: transparent;
    transform: translateY(-4px) scale(1.05);

    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

.be-footer__socials a {
    animation: beSocialFloat 6s ease-in-out infinite;
}

.be-footer__socials a:nth-child(2) {
    animation-delay: 0.5s;
}

.be-footer__socials a:nth-child(3) {
    animation-delay: 1s;
}

.be-footer__socials a:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes beSocialFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

/* My Account page - safe styling only */
.woocommerce-account .entry-title {
    display: none;
}

.woocommerce-account .woocommerce {
    max-width: 1180px;
    margin: 70px auto 90px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.woocommerce-account .woocommerce::before {
    content: "My Account";
    grid-column: 1 / -1;
    display: block;
    color: #0f172a;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.06em;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: auto !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
    align-self: start;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0 0 8px !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 15px 18px;
    border-radius: 16px;
    color: #0f172a !important;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    background: #f8fafc;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #fff !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    min-width: 0;
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: #5b21b6;
    font-weight: 800;
}

.woocommerce-account .woocommerce table.shop_table {
    border: 1px solid #e5e7eb !important;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.woocommerce-account .woocommerce table.shop_table th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 900;
}

.woocommerce-account .woocommerce table.shop_table td,
.woocommerce-account .woocommerce table.shop_table th {
    padding: 16px !important;
}

@media (max-width: 900px) {
    .woocommerce-account .woocommerce {
        grid-template-columns: 1fr;
        margin: 44px auto 70px;
    }

    .woocommerce-account .woocommerce::before {
        font-size: 44px;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 24px;
    }
}

.be-faq-page {
    background: #f8fafc;
}

.be-faq-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.be-faq-hero {
    padding: 90px 0 40px;
}

.be-faq-hero__inner,
.be-faq-sidebar,
.be-faq-group {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.be-faq-hero__inner {
    padding: 56px;
    text-align: center;
}

.be-faq-hero h1 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: clamp(46px, 7vw, 86px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.07em;
}

.be-faq-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #64748b;
    font-size: 18px;
    line-height: 1.7;
}

.be-faq-section {
    padding: 40px 0 90px;
}

.be-faq-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 28px;
    align-items: start;
}

.be-faq-sidebar {
    position: sticky;
    top: 120px;
    padding: 24px;
}

.be-faq-sidebar h2,
.be-faq-group h2 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
}

.be-faq-nav {
    display: grid;
    gap: 8px;
}

.be-faq-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 900;
    text-decoration: none;
}

.be-faq-nav a:hover {
    background: #f5f3ff;
    color: #5b21b6;
}

.be-faq-help {
    margin-top: 22px;
    padding: 20px;
    border-radius: 22px;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
}

.be-faq-help h3 {
    margin: 0 0 8px;
    color: #5b21b6;
}

.be-faq-help p {
    color: #64748b;
    line-height: 1.6;
}

.be-faq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #ffffff !important;
    font-weight: 900;
    text-decoration: none;
}

.be-faq-content {
    display: grid;
    gap: 22px;
}

.be-faq-group {
    padding: 32px;
    scroll-margin-top: 130px;
}

.be-faq-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #7c3aed;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.be-faq-item {
    border-top: 1px solid #e5e7eb;
    padding: 18px 0;
}

.be-faq-item:last-child {
    padding-bottom: 0;
}

.be-faq-item summary {
    cursor: pointer;
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
    list-style: none;
}

.be-faq-item summary::-webkit-details-marker {
    display: none;
}

.be-faq-item summary::after {
    content: "+";
    float: right;
    color: #7c3aed;
    font-size: 24px;
    line-height: 1;
}

.be-faq-item[open] summary::after {
    content: "−";
}

.be-faq-item p {
    margin: 14px 0 0;
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .be-faq-hero {
        padding: 60px 0 30px;
    }

    .be-faq-hero__inner {
        padding: 34px 24px;
    }

    .be-faq-layout {
        grid-template-columns: 1fr;
    }

    .be-faq-sidebar {
        position: static;
    }

    .be-faq-group {
        padding: 24px;
    }
}

.be-track-page {
    background: #f8fafc;
}

.be-track-wrap {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
}

.be-track-hero {
    padding: 90px 0;
}

.be-track-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 34px;
    padding: 56px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.be-track-card h1 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: clamp(48px, 7vw, 86px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.07em;
}

.be-track-card>p {
    max-width: 620px;
    margin: 0 auto 34px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.7;
}

.be-track-form {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
}

.be-track-form p {
    margin-bottom: 18px;
}

.be-track-form label {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-weight: 900;
}

.be-track-form input {
    width: 100%;
    min-height: 56px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0 18px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
}

.be-track-form input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

.be-track-form button {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.be-track-error {
    max-width: 620px;
    margin: 0 auto 22px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-weight: 800;
}

.be-track-result {
    margin-top: 28px;
}

.be-track-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 34px;
}

.be-track-summary div {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 22px;
    text-align: left;
}

.be-track-summary span {
    display: block;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.be-track-summary strong {
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.be-track-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.be-track-step {
    position: relative;
    padding: 24px 18px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    text-align: center;
    opacity: .55;
}

.be-track-step.is-active {
    opacity: 1;
    background: #f5f3ff;
    border-color: #ddd6fe;
}

.be-track-step__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #64748b;
    font-size: 24px;
    font-weight: 900;
}

.be-track-step.is-active .be-track-step__icon {
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(91, 33, 182, .25);
}

.be-track-step strong {
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 900;
}

.be-track-step span {
    display: block;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.be-track-note {
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    border-radius: 26px;
    padding: 28px;
    color: #ffffff;
    text-align: left;
}

.be-track-note h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
}

.be-track-note p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    line-height: 1.7;
}

.be-track-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
}

.be-track-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #0f172a;
    font-weight: 900;
    text-decoration: none;
}

.be-track-actions a:first-child {
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #ffffff;
    border-color: transparent;
}

@media (max-width: 900px) {
    .be-track-card {
        padding: 34px 22px;
        border-radius: 26px;
    }

    .be-track-summary,
    .be-track-progress {
        grid-template-columns: 1fr;
    }

    .be-track-actions {
        flex-direction: column;
    }
}

.be-track-note--complete {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
}

.be-track-shipment {
    margin: 0 0 30px;
    padding: 26px;
    border-radius: 26px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.be-track-shipment h2 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: 28px;
    font-weight: 900;
}

.be-track-shipment__item {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.be-track-shipment__icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #fff;
    font-size: 24px;
}

.be-track-shipment__details span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.be-track-shipment__details strong {
    display: block;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.be-track-shipment__details p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 14px;
}

.be-track-shipment__item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #ffffff !important;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .be-track-shipment__item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .be-track-shipment__icon {
        margin: 0 auto;
    }
}

/* About us */
/* ABOUT PAGE */
.be-about-page {
    background: #f8fafc;
    overflow: hidden;
}

.be-about-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* Hero */
.be-about-hero {
    padding: 82px 0 56px;
    background:
        radial-gradient(circle at 80% 10%, rgba(139, 92, 246, .16), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.be-about-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.be-about-hero__copy,
.be-about-hero__visual,
.be-about-text-card,
.be-about-service,
.be-about-process__panel,
.be-about-why-card,
.be-about-benefits div,
.be-about-cta__inner {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.be-about-hero__copy {
    border-radius: 34px;
    padding: 54px;
}

.be-about-hero__copy h1 {
    margin: 0 0 20px;
    color: #0f172a;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.07em;
}

.be-about-hero__copy p {
    max-width: 620px;
    margin: 0;
    color: #64748b;
    font-size: 18px;
    line-height: 1.7;
}

.be-about-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.be-about-hero__buttons a,
.be-about-cta__inner a {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-decoration: none;
}

.be-about-hero__buttons a:first-child,
.be-about-cta__inner a {
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #ffffff !important;
}

.be-about-hero__buttons a:last-child {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e5e7eb;
}

.be-about-hero__visual {
    position: relative;
    border-radius: 34px;
    padding: 34px;
    background:
        radial-gradient(circle at 85% 12%, rgba(255, 255, 255, .22), transparent 28%),
        linear-gradient(135deg, #17153f, #6d28d9);
    color: #ffffff;
    display: grid;
    gap: 18px;
    align-content: center;
}

.be-about-visual-card--main {
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
}

.be-about-visual-card--main span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.be-about-visual-card--main strong {
    display: block;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.04em;
}

.be-about-visual-card--main p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .78);
}

.be-about-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.be-about-mini-grid div {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
}

.be-about-mini-grid strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

.be-about-mini-grid span {
    color: rgba(255, 255, 255, .82);
    font-weight: 800;
}

/* Intro */
.be-about-intro,
.be-about-services,
.be-about-process,
.be-about-why,
.be-about-cta {
    padding: 64px 0;
}

.be-about-intro__grid,
.be-about-why__grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 24px;
    align-items: start;
}

.be-about-section-title h2,
.be-about-process__panel h2,
.be-about-why-card h2,
.be-about-cta__inner h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(38px, 5vw, 62px);
    line-height: .96;
    font-weight: 900;
    letter-spacing: -.06em;
}

.be-about-text-card {
    border-radius: 30px;
    padding: 36px;
}

.be-about-text-card p {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

.be-about-text-card p:last-child {
    margin-bottom: 0;
}

.be-about-placeholder {
    padding: 18px;
    border-radius: 18px;
    background: #f5f3ff;
    color: #5b21b6 !important;
    font-weight: 800;
}

/* Services */
.be-about-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.be-about-service {
    border-radius: 28px;
    padding: 28px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.be-about-service:hover,
.be-about-benefits div:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 90px rgba(91, 33, 182, .14);
}

.be-about-service>span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #ffffff;
    font-weight: 900;
}

.be-about-service h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
}

.be-about-service p,
.be-about-process__panel p,
.be-about-benefits p,
.be-about-cta__inner p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

/* Process */
.be-about-process {
    background: #ffffff;
}

.be-about-process__panel {
    border-radius: 34px;
    padding: 42px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
    align-items: center;
}

.be-about-process__panel p {
    margin-top: 18px;
    font-size: 17px;
}

.be-about-steps {
    display: grid;
    gap: 14px;
}

.be-about-steps div {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.be-about-steps strong {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #111827 0%, #312e81 52%, #6d28d9 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.be-about-steps span {
    color: #0f172a;
    font-weight: 900;
}

/* Why */
.be-about-why-card {
    border-radius: 30px;
    padding: 36px;
    background: linear-gradient(135deg, #17153f, #6d28d9);
}

.be-about-why-card span {
    display: block;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .72);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.be-about-why-card h2 {
    color: #ffffff;
}

.be-about-benefits {
    display: grid;
    gap: 16px;
}

.be-about-benefits div {
    border-radius: 24px;
    padding: 26px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.be-about-benefits strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

/* CTA */
.be-about-cta__inner {
    border-radius: 34px;
    padding: 54px;
    text-align: center;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 255, 255, .18), transparent 26%),
        linear-gradient(135deg, #17153f, #6d28d9);
}

.be-about-cta__inner h2,
.be-about-cta__inner p {
    color: #ffffff;
}

.be-about-cta__inner p {
    margin: 16px auto 26px;
    max-width: 640px;
    opacity: .86;
}

.be-about-cta__inner a {
    background: #ffffff;
    color: #5b21b6 !important;
}

/* Reveal animation */
.be-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.be-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {

    .be-about-hero__grid,
    .be-about-intro__grid,
    .be-about-process__panel,
    .be-about-why__grid {
        grid-template-columns: 1fr;
    }

    .be-about-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .be-about-hero__copy {
        padding: 36px 28px;
    }
}

@media (max-width: 640px) {
    .be-about-hero {
        padding: 54px 0 36px;
    }

    .be-about-services__grid,
    .be-about-mini-grid {
        grid-template-columns: 1fr;
    }

    .be-about-hero__copy,
    .be-about-hero__visual,
    .be-about-text-card,
    .be-about-process__panel,
    .be-about-why-card,
    .be-about-cta__inner {
        border-radius: 26px;
        padding: 26px;
    }
}

.be-trust-slider {
    background: #f8fafc;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.be-trust-track {
    display: flex;
    width: max-content;
    animation: scrollTrust 25s linear infinite;
}

.be-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    white-space: nowrap;
}

.be-trust-item strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
}

.be-trust-item p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

.be-trust-icon {
    font-size: 18px;
    color: #7c3aed;
}

/* Animation */
@keyframes scrollTrust {
    0% {
        transform: translateX(0);
    }

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

.be-trust-slider:hover .be-trust-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .be-trust-item {
        padding: 14px 24px;
    }

    .be-trust-track {
        animation-duration: 18s;
    }
}

.be-review-slider-section {
    padding: 70px 0;
    background: #f8fafc;
    overflow: hidden;
}

.be-review-heading {
    text-align: center;
    margin-bottom: 34px;
}

.be-review-heading span {
    display: block;
    color: #7c3aed;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.be-review-heading h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
}

.be-review-slider {
    overflow: hidden;
    position: relative;
}

.be-review-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: beReviewScroll 35s linear infinite;
}

.be-review-slider:hover .be-review-track {
    animation-play-state: paused;
}

.be-review-card {
    width: 360px;
    min-height: 245px;
    background: #ffffff;
    border: 1px solid #e9d5ff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.be-stars {
    color: #7c3aed;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.be-review-card p {
    margin: 0 0 22px;
    color: #475569;
    font-size: 16px;
    line-height: 1.65;
}

.be-review-card strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    margin-bottom: 4px;
}

.be-review-card span {
    color: #64748b;
    font-size: 14px;
}

@keyframes beReviewScroll {
    from {
        transform: translateX(0);
    }

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

@media (max-width: 768px) {
    .be-review-slider-section {
        padding: 50px 0;
    }

    .be-review-card {
        width: 290px;
        padding: 24px;
    }

    .be-review-track {
        gap: 16px;
        animation-duration: 28s;
    }
}

.be-category-grid--featured {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.be-category-grid--featured .be-category-card {
    grid-column: span 2;
}

.be-category-grid--featured .be-category-card:nth-child(4),
.be-category-grid--featured .be-category-card:nth-child(5) {
    grid-column: span 3;
}

.be-category-grid--featured .be-category-card img {
    height: 300px;
    object-fit: cover;
}

.be-category-grid--featured .be-category-card:nth-child(4) img,
.be-category-grid--featured .be-category-card:nth-child(5) img {
    height: 330px;
}

@media (max-width: 1000px) {
    .be-category-grid--featured {
        grid-template-columns: repeat(2, 1fr);
    }

    .be-category-grid--featured .be-category-card,
    .be-category-grid--featured .be-category-card:nth-child(4),
    .be-category-grid--featured .be-category-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 650px) {
    .be-category-grid--featured {
        grid-template-columns: 1fr;
    }

    .be-category-grid--featured .be-category-card img,
    .be-category-grid--featured .be-category-card:nth-child(4) img,
    .be-category-grid--featured .be-category-card:nth-child(5) img {
        height: 240px;
    }
}

/* Shop filter layout */

.be-category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.be-category-layout--no-filters {
    grid-template-columns: 1fr;
}

.be-category-results {
    min-width: 0;
}

/* Sidebar */

.be-category-filters {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 18px;
    padding: 22px;
    position: sticky;
    top: 30px;
    height: fit-content;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.be-filter-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eeeeee;
}

.be-filter-heading h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    color: #111111;
}

.be-filter-heading a {
    font-size: 13px;
    color: #6f3fe3;
    text-decoration: none;
    font-weight: 600;
}

.be-filter-heading a:hover {
    text-decoration: underline;
}

/* Widgets */

.be-filter-widget,
.be-category-filters .widget {
    margin-bottom: 28px;
}

.be-filter-widget:last-child,
.be-category-filters .widget:last-child {
    margin-bottom: 0;
}

.be-filter-widget h4,
.be-category-filters .widget-title,
.be-category-filters h4,
.be-category-filters h2,
.be-category-filters .wp-block-heading {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.3;
    color: #111111;
    font-weight: 700;
}

/* Lists */

.be-category-filters ul,
.be-category-filters ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.be-category-filters li {
    margin: 0 0 9px;
    font-size: 14px;
    color: #666666;
}

.be-category-filters li:last-child {
    margin-bottom: 0;
}

.be-category-filters a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}

.be-category-filters a:hover {
    color: #6f3fe3;
}

/* Product category counts */

.be-category-filters .count {
    color: #888888;
    font-size: 13px;
}

/* Active filters */

.be-category-filters .widget_layered_nav_filters ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.be-category-filters .widget_layered_nav_filters li {
    margin: 0;
}

.be-category-filters .widget_layered_nav_filters a {
    display: inline-flex;
    align-items: center;
    background: #f3efff;
    color: #4f25b8;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

/* Price filter */

.woocommerce .be-category-filters .widget_price_filter .price_slider_wrapper {
    padding-top: 4px;
}

.woocommerce .be-category-filters .widget_price_filter .price_slider {
    margin-bottom: 22px;
}

.woocommerce .be-category-filters .widget_price_filter .ui-slider {
    height: 6px;
    background: #e7e1f8;
    border-radius: 999px;
}

.woocommerce .be-category-filters .widget_price_filter .ui-slider .ui-slider-range {
    background: #6f3fe3;
    border-radius: 999px;
}

.woocommerce .be-category-filters .widget_price_filter .ui-slider .ui-slider-handle {
    width: 16px;
    height: 16px;
    background: #6f3fe3;
    border: 3px solid #ffffff;
    border-radius: 50%;
    top: -5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.woocommerce .be-category-filters .widget_price_filter .price_slider_amount {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #666666;
}

.woocommerce .be-category-filters .widget_price_filter .button {
    order: 1;
    background: #6f3fe3;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.woocommerce .be-category-filters .widget_price_filter .button:hover {
    background: #5730b8;
    color: #ffffff;
}

.woocommerce .be-category-filters .widget_price_filter .price_label {
    order: 2;
    margin-left: auto;
}

/* Toolbar */

.be-category-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 14px;
}

.be-category-count p,
.be-category-toolbar p {
    margin: 0;
    color: #666666;
    font-size: 14px;
}

.be-category-ordering form,
.be-category-ordering .woocommerce-ordering {
    margin: 0;
}

.be-category-ordering select,
.woocommerce-ordering select {
    min-height: 42px;
    border: 1px solid #dddddd;
    border-radius: 999px;
    padding: 0 38px 0 16px;
    background-color: #ffffff;
    color: #333333;
    font-size: 14px;
}

/* Empty state */

.be-category-empty {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    padding: 36px;
    text-align: center;
}

.be-category-empty h2 {
    margin: 0 0 10px;
}

.be-category-empty p {
    margin: 0 0 20px;
    color: #666666;
}

/* Make products use available space nicely */

.be-category-products ul.products {
    margin-top: 0;
}

/* Mobile */

@media (max-width: 900px) {
    .be-category-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .be-category-filters {
        position: relative;
        top: auto;
    }

    .be-category-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .be-category-ordering select,
    .woocommerce-ordering select {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .be-category-filters {
        padding: 18px;
        border-radius: 14px;
    }

    .be-filter-heading h3 {
        font-size: 18px;
    }

    .woocommerce .be-category-filters .widget_price_filter .price_slider_amount {
        flex-direction: column;
        align-items: stretch;
    }

    .woocommerce .be-category-filters .widget_price_filter .button {
        width: 100%;
        text-align: center;
    }

    .woocommerce .be-category-filters .widget_price_filter .price_label {
        margin-left: 0;
        text-align: center;
    }
}

.colour-swatch {
    position: relative;
}

.colour-swatch::after {
    content: attr(data-colour-name);
    position: absolute;
    left: 50%;
    bottom: 115%;
    transform: translateX(-50%);
    background: #0b1020;
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 20;
}

.colour-swatch:hover::after,
.colour-swatch:focus::after,
.colour-swatch.is-active::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

.be-topbar a[href*="wa.me"] {
    color: #25D366;
    font-weight: 600;
}

.be-footer__payments {
    text-align: center;
    margin: 20px 0 12px;
}

.be-footer__payments span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.be-payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.be-payment-icons img {
    height: 30px;
    width: auto;
    padding: 6px 10px;
    border-radius: 6px;
    object-fit: contain;
}

.be-footer__.be-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding-top: 26px;
    margin-top: 28px;
}

/* === MAIN ROW (3 columns) === */
.be-footer__bottom-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 20px;
}

/* LEFT */
.be-footer__copyright {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

/* CENTER */
.be-footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.be-footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.be-footer__links a:hover {
    color: #fff;
}

/* RIGHT */
.be-footer__payments {
    text-align: right;
}

.be-footer__payments span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.be-payment-icons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.be-payment-icons img {
    height: 26px;
    padding: 4px 7px;
    border-radius: 6px;
}

/* === BOTTOM LINE === */
.be-footer__credit {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.be-footer__credit a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

/* === MOBILE === */
@media (max-width: 900px) {
    .be-footer__bottom-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .be-footer__copyright {
        text-align: center;
    }

    .be-footer__payments {
        text-align: center;
    }

    .be-payment-icons {
        justify-content: center;
    }
}

.be-policy-page {
    background: #f8fafc;
}

.be-policy-hero {
    padding: 76px 0 44px;
    background:
        radial-gradient(circle at 80% 10%, rgba(139, 92, 246, .16), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.be-policy-hero h1 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: clamp(44px, 6vw, 76px);
    line-height: .92;
    font-weight: 900;
    letter-spacing: -.06em;
}

.be-policy-hero p {
    max-width: 720px;
    margin: 0 0 12px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.7;
}

.be-policy-updated {
    font-weight: 800;
}

.be-policy-section {
    padding: 30px 0 90px;
}

.be-policy-card {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 54px);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.be-policy-card h2 {
    margin: 34px 0 12px;
    color: #0f172a;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 900;
}

.be-policy-card h2:first-child {
    margin-top: 0;
}

.be-policy-card p {
    margin: 0 0 16px;
    color: #475569;
    font-size: 16px;
    line-height: 1.75;
}

.be-policy-card a {
    color: #111111;
    font-weight: 800;
}

.be-services-page {
    background: #ffffff;
}

.be-services-hero {
    padding: 70px 0;
    background: #f8fafc;
}

.be-services-hero__grid,
.be-services-detail__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.be-services-detail__grid--reverse>div:first-child {
    order: 2;
}

.be-services-detail__grid--reverse>div:last-child {
    order: 1;
}

.be-services-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.be-eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    color: #7c3aed;
    display: inline-block;
    margin-bottom: 10px;
}

.be-services-hero p,
.be-services-copy p,
.be-section-heading p,
.be-services-detail p,
.be-faq-grid p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.be-services-hero p {
    max-width: 560px;
}

.be-services-hero__actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.be-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: #000;
    color: #fff !important;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    transition: .2s ease;
}

.be-btn--dark {
    background: #111827;
}

.be-btn:hover {
    transform: translateY(-2px);
}

.be-services-hero__image img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}

.be-services-intro,
.be-services-section,
.be-services-detail,
.be-services-why,
.be-services-seo,
.be-services-areas,
.be-services-faq,
.be-services-cta {
    padding: 70px 0;
}

.be-services-detail--light,
.be-services-why,
.be-services-areas,
.be-services-faq {
    background: #f8fafc;
}

.be-services-copy {
    max-width: 980px;
}

.be-services-copy h2,
.be-section-heading h2,
.be-services-detail h2,
.be-services-cta__box h2 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.03em;
}

.be-section-heading {
    max-width: 820px;
    margin-bottom: 38px;
}

.be-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.be-service-tile {
    padding: 24px;
    border-radius: 22px;
    background: #0b0614;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    transition: .2s ease;
}

.be-service-tile span {
    color: #a78bfa;
    font-weight: 900;
}

.be-service-tile h3 {
    color: #fff;
    font-size: 22px;
    margin: 18px 0 10px;
    line-height: 1.1;
}

.be-service-tile p {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    line-height: 1.6;
}

.be-service-tile strong {
    color: #fff;
    font-size: 14px;
}

.be-service-tile:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #111827, #5b21b6);
}

.be-text-link {
    display: inline-flex;
    margin-top: 14px;
    color: #111827;
    font-weight: 900;
    text-decoration: none;
}

.be-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #e5e7eb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}

.be-carousel__track {
    display: flex;
    transition: transform .35s ease;
}

.be-carousel__track img {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.be-carousel__controls {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
}

.be-carousel__controls button {
    pointer-events: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #111827;
    font-size: 28px;
    font-weight: 900;
    cursor: pointer;
}

.be-carousel__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.be-carousel__dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .6);
    cursor: pointer;
}

.be-carousel__dots button.is-active {
    background: #7c3aed;
}

.be-services-points,
.be-faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.be-services-points div,
.be-faq-grid div {
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.be-services-points h3,
.be-faq-grid h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.2;
}

.be-services-points p,
.be-faq-grid p {
    margin: 0;
    font-size: 14px;
}

.be-area-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.be-area-grid span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
}

.be-services-cta__box {
    padding: 50px;
    border-radius: 28px;
    background: linear-gradient(135deg, #111827, #4c1d95);
    color: #fff;
    text-align: center;
}

.be-services-cta__box h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 44px);
}

.be-services-cta__box p {
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 22px;
}

@media (max-width: 1100px) {

    .be-services-grid,
    .be-services-points,
    .be-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {

    .be-services-hero__grid,
    .be-services-detail__grid {
        grid-template-columns: 1fr;
    }

    .be-services-detail__grid--reverse>div:first-child,
    .be-services-detail__grid--reverse>div:last-child {
        order: initial;
    }

    .be-services-hero,
    .be-services-intro,
    .be-services-section,
    .be-services-detail,
    .be-services-why,
    .be-services-seo,
    .be-services-areas,
    .be-services-faq,
    .be-services-cta {
        padding: 52px 0;
    }

    .be-services-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .be-services-grid,
    .be-services-points,
    .be-faq-grid {
        grid-template-columns: 1fr;
    }

    .be-service-tile {
        min-height: 220px;
    }

    .be-carousel__track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        transform: none !important;
        -webkit-overflow-scrolling: touch;
    }

    .be-carousel__track img {
        scroll-snap-align: start;
    }

    .be-carousel__controls,
    .be-carousel__dots {
        display: none;
    }

    .be-services-cta__box {
        padding: 34px 22px;
    }
}

.be-service-page {
    background: #fff;
}

.be-service-hero,
.be-service-intro,
.be-service-cards-section,
.be-service-detail,
.be-service-process,
.be-service-gallery {
    padding: 70px 0;
}

.be-service-hero {
    background: #f8fafc;
}

.be-service-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.be-service-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.be-service-hero p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    max-width: 590px;
}

.be-service-detail--light,
.be-service-process,
.be-services-faq {
    background: #f8fafc;
}

.be-auto-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #e5e7eb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}

.be-auto-carousel__track {
    display: flex;
    transition: transform .45s ease;
}

.be-auto-carousel__track img {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.be-scroll-gallery {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
    -webkit-overflow-scrolling: touch;
}

.be-scroll-gallery img {
    flex: 0 0 360px;
    max-width: 80vw;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
    scroll-snap-align: start;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .12);
}

@media (max-width: 980px) {
    .be-service-hero__grid {
        grid-template-columns: 1fr;
    }

    .be-service-hero,
    .be-service-intro,
    .be-service-cards-section,
    .be-service-detail,
    .be-service-process,
    .be-service-gallery {
        padding: 52px 0;
    }

    .be-service-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
    }
}

.be-service-products {
    padding: 70px 0;
    background: #ffffff;
}

.be-product-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.be-product-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
}

.be-product-links a:hover {
    background: #111827;
    border-color: #111827;
    color: #ffffff;
    transform: translateY(-2px);
}

.be-service-cta {
    margin-top: 26px;
}

@media (max-width: 700px) {
    .be-product-links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .be-product-links a {
        justify-content: center;
    }
}

.be-service-products {
    padding: 90px 0;
    background: #ffffff;
}

.be-product-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}

.be-product-card {
    position: relative;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0f172a, #111827);
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
    transition: all .25s ease;
}

.be-product-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    right: -70px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(124, 58, 237, .35);
}

/* .be-product-card span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c4b5fd;
    margin-bottom: 40px;
    display: block;
} */

.be-product-card strong {
    font-size: 26px;
    line-height: 1.05;
    display: block;
    margin-bottom: 14px;
    color: #fff;
}

.be-product-card em {
    font-style: normal;
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    font-weight: 700;
}

.be-product-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #111827, #5b21b6);
}

@media (max-width: 1024px) {
    .be-product-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .be-product-card-grid {
        grid-template-columns: 1fr;
    }

    .be-product-card {
        padding: 22px;
    }

    .be-product-card strong {
        font-size: 22px;
    }
}

.be-mega-col .be-sub-link {
    padding-left: 16px;
    font-size: 0.95em;
    opacity: 0.85;
}

.be-floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.be-floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.be-floating-whatsapp svg {
    width: 30px;
    height: 30px;
    display: block;
}

@media (max-width: 768px) {
    .be-floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .be-floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

.be-product-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.be-product-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block;
}

.product-description-section ul {
    list-style: disc !important;
    padding-left: 22px;
    margin-bottom: 20px;
}

.product-description-section li {
    margin-bottom: 8px;
}

.product-description-section {
    margin-bottom: 24px;
}

.product-description-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.product-description-section ul {
    margin: 0;
    padding-left: 22px;
    list-style-type: disc;
}

.product-description-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #374151;
}

/* Equal height product cards */
.be-scroll-products ul.products li.product,
.be-product-card {
    height: 100% !important;
}

.be-scroll-products ul.products li.product .be-product-card__link,
.be-product-card__link {
    height: 100% !important;
    min-height: 640px !important;
    display: flex !important;
    flex-direction: column !important;
}

.be-product-card__media {
    flex: 0 0 auto !important;
}

.be-product-card__content {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
}

.be-product-card__features {
    margin-top: auto !important;
}

.be-product-card__divider {
    margin-top: 24px !important;
}

.be-product-card__button {
    margin-top: auto !important;
}

@media (max-width: 767px) {

    .be-service-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .be-service-cta .be-btn {
        width: 100%;
        text-align: center;
    }

}

@media (max-width: 980px) {
    .be-has-mega--services .be-mega-menu--services {
        width: 100% !important;
        max-width: 100% !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        padding: 8px !important;
        margin: 6px 0 10px !important;
        background: #f8fafc !important;
        border-radius: 14px !important;
        box-shadow: none !important;
        box-sizing: border-box !important;
    }

    .be-mega-grid--services,
    .be-mega-grid--services .be-mega-col {
        display: block !important;
        width: 100% !important;
    }

    .be-mega-grid--services {
        gap: 0 !important;
    }

    .be-mega-grid--services h4,
    .be-mega-grid--services a span {
        display: none !important;
    }

    .be-mega-grid--services a {
        display: block !important;
        padding: 10px 12px !important;
        margin: 0 0 6px !important;
        background: #fff !important;
        border: 0 !important;
        border-radius: 10px !important;
    }

    .be-mega-grid--services a strong {
        margin: 0 !important;
        font-size: 14px !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 980px) {
    .be-nav {
        padding: 12px !important;
    }

    .be-nav a {
        padding: 12px 14px !important;
    }
}

.be-summary-shipping-methods {
    text-align: right;
    font-size: 15px;
    line-height: 1.5;
}

.be-summary-shipping-methods ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.be-summary-shipping-methods li {
    margin: 0;
}

.be-summary-shipping-methods label {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    font-weight: 600;
    color: #0d1635;
}

.be-summary-shipping-methods .woocommerce-shipping-destination {
    margin-top: 12px;
    font-size: 14px;
    color: #6b7280;
}

.be-summary-shipping-methods .shipping-calculator-button {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
}