/*-----------------------------------------------------------------------------------
Project Name: ESSB | Website: https://essbfootball.com
Author: Dileep Dilraj | Website: https://www.dileepdilraj.com
Description: Elite Soccer School Bangalore - Official Website
Designer & Developer: Dileep Dilraj
Version: 1.0
Last Update: Jan 2026
Copyright: © 2026 Dileep Dilraj. All Rights Reserved.
-----------------------------------------------------------------------------------*/
/* ================= RESET & PERFORMANCE ================= */
/* ScrollSmoother wrapper */
#smooth-wrapper {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#smooth-content {
    overflow: visible;
    width: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.no-scroll {
    overflow: hidden;
    height: 100%;
}

.essb-header,
.essb-hp-hero {
    contain: layout style paint;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================= FONTS ================= */
/* Heading font */
@font-face {
    font-family: "Alterwave";
    src: url("../font/Alterwave-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Alterwave";
    src: url("../font/Alterwave-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Alterwave";
    src: url("../font/Alterwave-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Body font */
@font-face {
    font-family: "Satoshi";
    src: url("../font/Satoshi-Regular.otf") format("opentype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("../font/Satoshi-Bold.otf") format("opentype");
    font-weight: 700;
    font-display: swap;
}

/* ================= VARIABLES ================= */
:root {
    --font-heading: "Alterwave", sans-serif;
    --font-body: "Satoshi", sans-serif;
    --fw-regular: 300;
    --fw-medium: 500;
    --fw-bold: 700;
    --color-text: #000;
    --color-border: #000;
    --color-bg: #fff;
    --color-light-bg: #f5f5f5;
}

/* ================= GLOBAL TYPOGRAPHY ================= */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: var(--fw-regular);
    color: var(--color-text);
}

h6,
p,
li,
a,
span,
button,
input {
    font-family: var(--font-body);
    font-weight: var(--fw-regular);
    color: var(--color-text);
}

a {
    text-decoration: none;
}

/* ================= CONTAINERS ================= */
.essb-container {
    width: min(1220px, 100%);
    margin: 0 auto;
    padding: 15px;
}

.essb-wrap {
    max-width: 1350px;
    margin-inline: auto;
    padding: 20px;
}

/* ================= HEADER ================= */
/* ===== Header base (common) ===== */
.essb-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;

    transform: translateY(0);
    transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    will-change: transform;
}

.essb-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.essb-logo img {
    height: 50px;
}

.essb-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.essb-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    padding: 6px 22px;
    margin: 0;
}

.essb-nav a {
    font-weight: var(--fw-regular);
    text-decoration: none;
}

/* Hide on scroll down */
.essb-header.is-hidden {
    transform: translateY(-110%);
}

/* ===== SOLID HEADER (Inner pages) ===== */
/* Always white + black */
.essb-header.essb-header--solid {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.essb-header.essb-header--solid .essb-nav a {
    color: #111;
}

.essb-header.essb-header--solid .essb-contact-btn {
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: #fff;
    color: #111;
}

.essb-header.essb-header--solid .essb-contact-btn img {
    filter: none;
}

/* ===== HOME HEADER (transparent at top) ===== */
.essb-header.essb-header-home {
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

/* TOP STATE (transparent + white text) */
.essb-header.essb-header-home.is-top {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}

.essb-header.essb-header-home.is-top .essb-nav a {
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 1); 
} 

.essb-header.essb-header-home.is-top .essb-contact-btn {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    transition: background 0.3s ease, color 0.3s ease;
}

.essb-header.essb-header-home.is-top .essb-contact-btn:hover {
    background: #fff;
    color: #111;
}

.essb-header.essb-header-home.is-top .essb-contact-btn img {
    filter: invert(1);
    transition: background 0.3s ease, color 0.3s ease;
}

.essb-header.essb-header-home.is-top .essb-contact-btn:hover img{
    filter: none;
}

/* SCROLLED STATE (white bg + black text) */
.essb-header.essb-header-home.is-scrolled {
    background: #fff;
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.essb-header.essb-header-home.is-scrolled .essb-nav a {
    color: #111;
    text-shadow: none;
    letter-spacing: normal;
}

.essb-header.essb-header-home.is-scrolled .essb-contact-btn {
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: #fff;
    color: #111;
}

.essb-header.essb-header-home.is-scrolled .essb-contact-btn img {
    filter: none;
}

/* Small devices tweaks */
@media (max-width: 576px) {
    .essb-header-inner {
        padding: 10px 12px;
    }

    .essb-logo img {
        height: 42px;
    }

    .essb-nav ul {
        gap: 14px;
        padding: 6px 10px;
    }

    .essb-header.essb-header--solid {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .essb-header {
        transition: none;
    }
}


/* Menu */
.essb-contact-btn,
.essb-menu-toggle {
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        color .25s ease;
}

.essb-contact-btn {
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    gap: 10px;
}

.essb-contact-btn:hover,
.essb-menu-toggle:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.essb-menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

/* ================= MOBILE NAV ================= */
@media (max-width: 991px) {
    .essb-nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        border: 1px solid var(--color-border);
        border-radius: 16px;
        padding: 15px;
        width: 200px;
        z-index: 9999;
    }

    .essb-nav ul {
        flex-direction: column;
        gap: 14px;
        padding: 0;
    }

    .essb-nav.active {
        display: block;
        animation: fadeDown 0.3s ease;
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .essb-contact-btn {
        display: none;
    }

    .essb-logo img {
        height: 44px;
    }
}

/* ===== Overlays & Menu (top→bottom drop) ===== */
.essb-menu,
.essb-menu2,
.essb-menu-style {
    position: fixed; 
    left: 0;
    width: 100%;
    height: 100%; 
    z-index: 1500;
    transform: translateX(100%);
    transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.essb-menu {
    background: #0f0f10;
}

.essb-menu2 {
    background: #4b4b4b;
}

.essb-menu-style {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essb-menu {
    transition-delay: 0s;
}

.essb-menu2 {
    transition-delay: .12s;
}

.essb-menu-style {
    transition-delay: .24s;
}

.essb-menu.show,
.essb-menu2.show,
.essb-menu-style.show {
    transform: translateX(0);
}

.essb-menu-style .menu-bg {
    position: absolute;
    width: 80%;
    max-width: 450px;
    align-items: center;
    opacity: 0;
    filter: blur(6px);
    transition: opacity .45s ease .3s, transform .6s ease .3s, filter .45s ease .3s;
    pointer-events: none;
}

.essb-menu-style .menu-bg {
    right: 20;
    bottom: 50;
    transform: translateY(20px) scale(.96) rotate(-4deg);
}

.essb-menu-style.show .menu-bg {
    opacity: .06;
    filter: blur(0);
    transform: translateY(0) scale(1) rotate(0);
}

.essb-menu-links {
    opacity: 0;
    transform: translateY(18px) scaleY(1.02);
    transition: opacity .4s ease .28s, transform .5s ease .28s;
    text-transform: uppercase;
}

.essb-menu-style.show .essb-menu-links {
    opacity: 1;
    transform: translateY(0) scaleY(1);
}

.essb-menu-links ul li {
    margin: 10px 0;
    padding-block: 10px;
}

.essb-menu-links ul li a {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw + 10px, 54px);
    font-weight: 300;
    color: var(--color-text);
    letter-spacing: .02em;
    transition: color .25s ease, transform .25s ease, opacity .25s ease;
    display: inline-block;
}

.essb-menu-links ul li a:hover {
    color: #555;
    transform: scale(1.1);
}

.hamburger-menu.essb-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    background: #fff;
    padding: 0;
}

.hamburger-menu.essb-menu-toggle img {
    width: 18px;
    height: 18px;
    display: block;
}

.hamburger-menu.essb-menu-toggle.active {
    border-color: #000;
    background: #fff;
}

@media (max-width: 576px) {
    .essb-header {
        box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
    }
}

/* ================= Page Header ================= */
.page-header {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Background image */
.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Dark gradient overlay */
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 70%, #FFF 100%);
    z-index: 2;
}

/* Content */
.page-header-content {
    position: relative;
    z-index: 3;
    padding-bottom: 60px;
}

/* Breadcrumb */
.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 10px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.breadcrumb-item.active {
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Breadcrumb 2*/ 
.breadcrumb-item-2 a {
    color: #000;
    text-decoration: none; 
    text-shadow: none !important;
}

.breadcrumb-item-2.active {
    color: #000;
    text-shadow: none !important;
}

.breadcrumb-item-2+.breadcrumb-item-2::before {
    color: rgba(0, 0, 0, 0.5);
}

.page-header-content-title{
    color: #000 !important;
    font-family: var(--font-body);
    margin-top: 20px;
    text-shadow: none !important;
}

/* Title */
.page-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 300;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .page-header {
        height: 300px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-header-content {
        padding-bottom: 50px;
    }
}

/* 🖥 Desktop & tablets (up to 1500px) */
@media (min-width: 768px) and (max-width: 1499px) {
    .page-header {
        background-size: contain;
    }
}

/* 🖥🖥 Large screens (1500px and above) */
@media (min-width: 1500px) {
    .page-header {
        background-size: cover;
    }
}

@media (max-width: 767px) {
    .page-header {
        height: 260px;
    }
}

/* =========================
   ESSB - Arenas Hero
   File: essb-arenas-hero.css
========================= */

.essb-arenasHero {
    margin-top: 120px;
    padding: 16px;
}

.essb-arenasHero__wrap {
    max-width: 1300px;
    margin: 0 auto;
}

.essb-arenasHero__card {
    background: #ffffff;
    padding: 100px 25px;
    text-align: center;
    box-shadow: 0 0 15px 0 #C7C7C7 inset;
    position: relative;
    overflow: hidden;
}

/* soft top glow like your design */
.essb-arenasHero__card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(1200px 220px at 50% -40px, rgba(0, 0, 0, 0.10), transparent 60%);
    opacity: 0.35;
}

/* Title + description */
.essb-arenasHero__title {
    position: relative;
    z-index: 2;
    margin: 0;
    padding-top: 12px;
    font-size: 44px;
    line-height: 1.12;
    font-weight: 700;
    font-family: var(--font-body);
    color: #0b0f19;
    letter-spacing: -0.4px;
}

.essb-arenasHero__desc {
    position: relative;
    z-index: 2;
    margin: 10px auto 0;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.55;
    color: #333b45;
}

/* Ground image */
.essb-arenasHero__ground {
    position: relative;
    z-index: 2;
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.essb-arenasHero__groundImg {
    width: min(680px, 92%);
    height: auto;
    display: block;
    transform: translateY(2px);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

/* Responsive */
@media (max-width: 768px) {
    .essb-arenasHero {
        margin-top: 80px;
    }

    .essb-arenasHero__card {
        padding: 60px 25px;
        box-shadow: 0 0 10px 0 #C7C7C7 inset;
    }

    .essb-arenasHero__crumbs {
        position: static;
        margin-bottom: 10px;
        text-align: left;
    }

    .essb-arenasHero__title {
        font-size: 30px;
        padding-top: 0;
    }

    .essb-arenasHero__desc {
        font-size: 14px;
        max-width: 520px;
    }
}


/* ================= CTA ================= */
.cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #000;
}

/* Responsive CTA Title */
@media (max-width: 992px) {
    .cta-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 30px;
        margin-bottom: 8px;
    }
}

.cta-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #6c757d;
    max-width: 600px;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 999px;
    background: #FFF;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.30) inset;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    background: #FFF;
    box-shadow: 0 0 12px 0 rgba(85, 85, 85, 0.6) inset;
}

/* CTA v2 — card layout */

.cta-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0px;
    margin: 0 auto;
    padding: 0 48px 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Ball clip wrapper — clips the ball but not the logo above */
.cta-ball-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

/* Single football ball */
.cta-ball {
    position: absolute;
    width: 220px;
    height: 220px;
    object-fit: contain;
    left: calc(50% - 110px);
    bottom: -220px;
    transform-origin: center center;
    opacity: 0;
    pointer-events: none;
    animation: ballSpin 8s linear infinite;
    transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease;
}

.cta-card:hover .cta-ball {
    bottom: -80px;
    opacity: 0.3;
}

.cta-card {
    cursor: pointer;
}

@keyframes ballSpin {
    from { rotate: 0deg; }
    to   { rotate: 360deg; }
}

/* Content sits above the ball wrap */
.cta-card > :not(.cta-ball-wrap) {
    position: relative;
    z-index: 1;
}

.cta-card-logo {
    width: 150px;
    display: block;
    margin: -46px auto 25px; 
}

.cta-section--v2 .cta-title { 
    margin-bottom: 16px;
}

.cta-section--v2 .cta-subtitle {
    margin-bottom: 32px;
}

@media (max-width: 576px) {
    .cta-card {
        padding: 0 24px 40px;
        border-radius: 16px;
    }

    .cta-card-logo {
        width: 140px;
        margin-top: -56px;
    }
}

/* ================= FOOTER ================= */
.essb-footer {
    position: relative;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    overflow: hidden;
}

.essb-footer-boy {
    position: absolute;
    right: 24px;
    bottom: 62px;
    width: 170px;
    max-width: 38vw;
    height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* Main grid */
.essb-footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 16px 90px;
    /* extra bottom space so boy/grass doesn’t clash */
    display: grid;
    grid-template-columns: 4fr 1fr 1fr 2fr;
    gap: 48px;
    position: relative;
    z-index: 2;
    /* keep content above boy overlay */
}

/* Footer brand */
.footer-brand img {
    max-width: 180px;
    margin-bottom: 12px;
    transition: transform 0.2s ease; 
}
.footer-brand img:hover {
      transform: scale(1.2); 
}

.footer-brand p {
    max-width: 320px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    border: 0.5px solid #c2c2c2;  
    border-radius: 30px;
    display: inline-flex;
    padding: 8px 10px;
    margin-top: 12px;
}

.footer-socials a { 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease; 
}

.footer-socials a img {
    width: 30px;
    height: 30px; 
    display: block;
    object-fit: contain;
    margin-bottom: 0;
}

.footer-socials a:hover {
    border-color: #000;
    transform: scale(1.2);
}

/* Footer links */
.footer-links h6,
.footer-contact h6 {
    font-weight: var(--fw-bold);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #9b9b9b;
    text-decoration: none;
}

.footer-links a:hover {
    color: #000;
}

/* Contact */
.footer-contact address {
    font-style: normal;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.contact-item img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item a {
    color: #9b9b9b;
    text-decoration: none;
    white-space: nowrap;
}

.contact-item a:hover {
    color: #000;
}

/* ================= FOOTER BASE (needed for overlay) ================= */
:root {
    --footer-max: 1300px;
    --footer-green: #10b041;
    --grass-h-desktop: 44px;
    --grass-h-tablet: 40px;
    --grass-h-mobile: 34px;
}

.essb-footer {
    position: relative;
    overflow: hidden;
}

/* Boy overlay (NEVER takes layout space) */
.essb-footer-boy {
    position: absolute !important;
    right: 24px;
    bottom: 62px;
    /* above green bar */
    width: 170px;
    height: auto;
    opacity: 0.35;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* ================= GRASS STRIP (IF YOU USE THIS SECTION) ================= */
/* Keep it if your footer has:
   <div class="essb-footer-ground"><img class="essb-footer-grass" .../></div>
*/
.essb-footer-ground {
    position: relative;
    z-index: 2;
    height: var(--grass-h-desktop);
    line-height: 0;
}

.essb-footer-grass {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================= FOOTER BOTTOM (GRASS + GREEN BAR) ================= */
.essb-footer-bottom {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 22px 16px 16px;
    /* content padding */
    overflow: hidden;
}

/* REAL grass strip (this is the key fix) */
.essb-footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--grass-h-desktop);
    background: url("../img/grass.svg") repeat-x bottom;
    background-size: auto 100%;
    z-index: 1;
    padding: 50px;
}

/* CONTENT WRAPPER */
.essb-footer-bottom-inner {
    max-width: var(--footer-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* Typography */
.essb-footer-bottom p,
.essb-footer-bottom span,
.footer-bottom-links a {
    font-size: 14px;
    color: #fff;
}

.essb-footer-bottom p {
    margin: 0;
    line-height: 1.4;
}

/* Links */
.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.footer-bottom-links a {
    color: #fff;
    padding: 0 12px;
    position: relative;
    text-decoration: none;
    line-height: 1.4;
}

.footer-bottom-links a:hover {
    opacity: 0.85;
}

.footer-bottom-links a:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -2px;
    color: #fff;
}

/* ================= RESPONSIVE FOOTER (YOUR MISSING PARTS INCLUDED) ================= */
@media (max-width: 991px) {

    /* your footer grid settings (kept) */
    .essb-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-bottom: 110px;
    }

    /* grass sizing for tablet */
    .essb-footer-ground {
        height: var(--grass-h-tablet);
    }

    /* bottom bar grass sizing for tablet */
    .essb-footer-bottom {
        background-size: 100% var(--grass-h-tablet), 100% 100%;
        padding: calc(var(--grass-h-tablet) + 16px) 16px 14px 16px;
    }

    /* boy responsive placement */
    .essb-footer-boy {
        right: 16px !important;
        bottom: 70px;
        width: 150px;
    }
}

@media (max-width: 576px) {

    /* your footer grid settings (kept) */
    .essb-footer-inner {
        grid-template-columns: 1fr;
        padding: 40px 16px 30px;
        gap: 32px;
    }

    /* grass sizing for mobile */
    .essb-footer-ground {
        height: var(--grass-h-mobile);
    }

    /* bottom bar stacks */
    .essb-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* bottom bar grass sizing for mobile */
    .essb-footer-bottom {
        background-size: 100% var(--grass-h-mobile), 100% 100%;
        padding: calc(var(--grass-h-mobile) + 14px) 16px 14px 16px;
    }

    .essb-footer-bottom::before {
        padding: 80px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .footer-bottom-links a {
        padding: 0 8px;
    }

    /* boy overlay (still absolute, no layout space) */
    .essb-footer-boy {
        position: absolute !important;
        right: 6px !important;
        bottom: 100px;
        width: 150px;
    }
}

/* ---------- CONTACT US PAGE ---------- */
.essb-contact {
    background: #ffffff;
    padding: 5rem 0;
    color: #111;
}

.essb-chip {
    display: none;
}

.essb-heading {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.essb-subtext {
    font-size: 1.05rem;
    color: #444;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.essb-contact-lines p {
    font-size: 1.05rem;
    gap: 0.75rem;
}

.essb-form-card {
    background: #fff;
    padding: 1.8rem;
    box-shadow: 0 0px 50px rgba(0, 0, 0, 0.10);
}

.essb-form-title {
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    color: #111;
    margin-bottom: 1rem;
}

.essb-input {
    width: 100%;
    background: #f1f1f1;
    border: 1px solid transparent;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    margin-top: 10px;
}

.essb-input:focus {
    outline: none;
    background: #ededed;
}

.essb-input::placeholder {
    color: #777;
}

.essb-input.error {
    border-color: red;
}

.essb-textarea {
    min-height: 140px;
    resize: none;
}

.essb-submit {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
}

.essb-submit:hover,
.essb-submit:focus,
.essb-submit:active {
    background: #000;
    color: #fff;
    outline: none;
}

.form-status {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* ---------- RESPONSIVE STYLES ---------- */
/* Tablets (≤ 991px) */
@media (max-width: 991px) {
    .essb-contact {
        padding: 3.5rem 0;
    }

    .essb-heading {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
        text-align: left;
    }

    .essb-subtext {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .essb-form-card {
        margin-top: 2rem;
        padding: 1.6rem;
    }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
    .essb-contact {
        padding: 3rem 1rem;
    }

    .essb-heading {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .essb-subtext {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .essb-contact-lines p {
        font-size: 0.95rem;
    }

    .essb-form-card {
        width: 100%;
        padding: 1.4rem;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    }

    .essb-form-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .essb-input {
        font-size: 0.95rem;
        padding: 0.85rem 0.9rem;
    }

    .essb-submit {
        padding: 0.95rem;
        font-size: 0.9rem;
    }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
    .essb-heading {
        font-size: 1.45rem;
    }

    .essb-subtext {
        font-size: 0.9rem;
    }

    .essb-input {
        padding: 0.8rem;
    }

    .essb-submit {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

/* ---------- SITEMAP PAGE ---------- */
.sitemap-section {
    padding: 4rem 0;
    background: #fff;
    color: #111;
}

.sitemap-block {
    margin-bottom: 2.5rem;
}

.sitemap-block .sitemap-title {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase !important;
    margin-bottom: 1.5rem;
}

.sitemap-block .sitemap-title-a {
    font-size: 1.2rem;
    font-weight: 400;
    font-family: var(--font-heading);
    text-transform: uppercase !important;
    margin-bottom: 1.5rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li a {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.6rem;
    text-decoration: none;
    display: inline-block;
}

.sitemap-list li a:hover {
    color: #000;
}

.sitemap-divider {
    border: none;
    border-top: 1px solid #111;
    margin: 2.5rem 0;
}

/* ---------- RESPONSIVE TWEAKS ---------- */
@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.1rem;
    }

    .sitemap-list li {
        font-size: 0.9rem;
    }

    .sitemap-divider {
        margin: 2rem 0;
    }
}

@media (max-width: 576px) {
    .sitemap-section {
        padding: 3rem 1rem;
    }

    .sitemap-title {
        margin-bottom: 1rem;
    }

    .sitemap-list li {
        margin-bottom: 0.5rem;
    }
}

/* ---------- TNC PAGE ---------- */
.essb-tnc-container {
    background-color: #ffffff;
    color: #000000;
    padding: 3rem 1rem;
    border-radius: 8px;
}

.essb-tnc-back-btn {
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    background: #252525;
    padding: 12px 18px;
    border: none;
    text-decoration: none;
    margin-bottom: 2rem;
}

.essb-tnc-back-icon {
    margin-right: 8px;
}

.essb-tnc-back-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.essb-tnc-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5rem;
}

.essb-tnc-nav-col {
    flex: 0 0 220px;
    max-width: 220px;
}

.essb-tnc-content-col {
    flex: 1;
    padding-left: 1rem;
}

.essb-tnc-nav .nav-link {
    color: #555555;
    border-radius: 0;
    text-align: left;
    transition: all 0.2s ease-in-out;
    border-left: 2px solid #dcdcdc;
    font-weight: 500;
    padding: 10px 15px;
}

.essb-tnc-nav .nav-link:hover {
    background-color: #f5f5f5;
    color: #000000;
    border-radius: 0px 5px 5px 0px;
    cursor: pointer;
}

.essb-tnc-nav .nav-link.active {
    background: none;
    color: #000000;
    border-left: 3px solid #000000;
}

.essb-tnc-pane {
    padding: 2rem;
    border-radius: 10px;
    background-color: #f5f5f5;
    margin-bottom: 1rem;
    animation: 0.5s ease-in-out 0s 1 fadeIn;
}

.essb-tnc-list {
    padding-left: 1.2rem;
}

.essb-tnc-date {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #666666;
    font-size: 0.9rem;
}

.essb-tnc-pane h2 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-body);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 767px) {
    .essb-tnc-row {
        flex-direction: column;
    }

    .essb-tnc-content-col {
        padding-left: 0;
    }

    .essb-tnc-nav-col {
        flex: 0 0 120px;
    }

    .essb-tnc-back-btn {
        margin-bottom: 1rem;
    }
}

/* ---------- Refund Policy PAGE ---------- */
.policy-section {
    background-color: #ffffff;
}

.policy-content {
    max-width: 1200px;
}

.policy-main-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.policy-content h4 {
    margin-top: 32px;
    margin-bottom: 10px;
    font-weight: 300;
    text-transform: capitalize;
    font-family: var(--font-body);
    font-size: 18px;
}

.policy-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.policy-content ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.policy-content ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* ---------- SUPPORT CENTER PAGE ---------- */
.faq-section .nav-tabs {
    max-width: 1400px;
    margin: auto;
    border-bottom: 1px solid #cdcdcd;
}

.faq-tabs .nav-link {
    color: #000;
    border: none;
    font-weight: 500;
}

.faq-tabs .nav-link.active {
    border-bottom: 2px solid #000;
}

.faq-accordion {
    max-width: 1400px;
    margin: auto;
}

.faq-item {
    background: #f6f6f6;
    margin-bottom: 14px;
    padding: 18px 20px;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-answer {
    display: none;
    margin-top: 12px;
    font-size: 14px;
    color: #333;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ---------- ESSB GALLERY SECTION ---------- */
.essb-gallery-1__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: auto auto;
    gap: 20px;
    margin-top: 50px;
}

/* BASE BOX */
.essb-gallery-1__box {
    background: #eaeaea;
    overflow: hidden;
}

/* SMALL BOXES */
.essb-gallery-1__small {
    height: 300px;
}

/* WIDE BOX */
.essb-gallery-1__wide {
    grid-column: 1 / span 2;
    height: 200px;
}

/* LARGE VIDEO */
.essb-gallery-1__large {
    grid-column: 3;
    grid-row: 1 / span 2;
    height: 520px;
    position: relative;
}

/* ===============================
   VIDEO PLAY BUTTON
================================ */
.essb-gallery-1__video .essb-gallery-1__play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
}

.essb-gallery-1__video .essb-gallery-1__play-btn::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    z-index: -1;
}

/* ===============================
   RESPONSIVE
================================ */
/* Tablet */
@media (max-width: 992px) {
    .essb-gallery-1__grid {
        grid-template-columns: 1fr 1fr;
    }

    .essb-gallery-1__large {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 320px;
    }

    .essb-gallery-1__wide {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .essb-gallery-1__grid {
        grid-template-columns: 1fr;
    }

    .essb-gallery-1__small,
    .essb-gallery-1__wide,
    .essb-gallery-1__large {
        grid-column: auto;
        height: 220px;
    }
}

/* CONTENT ROW */
.essb-content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin: 100px 0;
}

/* TEXT */
.essb-text-content {
    max-width: 580px;
}

.essb-section-heading {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 18px;
}

.essb-section-text {
    line-height: 1.7;
    color: #555;
    font-size: 16px;
}

/* BUTTON */
.essb-btn-primary {
    margin-top: 28px;
    padding: 14px 34px;
    border-radius: 30px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.essb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.essb-floating-images {
    flex-shrink: 0;
    max-width: 480px;
}

.essb-gallery-image {
    width: 100%;
    height: auto;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .essb-content-row {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .essb-content-row {
        flex-direction: column;
        text-align: center;
        margin: 70px 0;
    }

    .essb-text-content {
        max-width: 100%;
    }

    .essb-floating-images {
        max-width: 480px;
        margin-top: 40px;
    }
}

/* GRID */
.essb-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.essb-testimonial-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 18px;
    text-align: center;
}

/* CARD */
.essb-testimonial-card {
    background: #fff;
    padding: 26px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* HEADER */
.essb-testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.essb-testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.essb-testimonial-user img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    background: #333;
}

.essb-testimonial-user h4 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    font-family: var(--font-body);
}

.essb-testimonial-user span {
    font-size: 13px;
    color: #777;
}

/* PLATFORM ICON */
.essb-testimonial-platform {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.essb-platform-google {
    color: #4285f4;
}

.essb-platform-star {
    color: #00c853;
}

.essb-platform-x {
    color: #111;
}

/* DIVIDER */
.essb-testimonial-card hr {
    margin: 18px 0;
    border: none;
    border-top: 1px solid #333;
}

/* TEXT */
.essb-testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .essb-testimonials {
        grid-template-columns: 1fr;
    }
}

/* ================================
   ESSB GALLERY 2
================================ */
.essb-gallery-2 {
    margin-top: 34px;
}

.essb-gallery-2__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* LEFT */
.essb-gallery-2__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* RIGHT */
.essb-gallery-2__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.essb-gallery-2__right-bottom {
    display: flex;
    gap: 24px;
}

/* ===============================
   IMAGE BASE
================================ */
.essb-gallery-2__img {
    width: 100%;
    background: #eaeaea;
}

.essb-gallery-2__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===============================
   DESKTOP – RESPONSIVE & FLEXIBLE
================================ */
.essb-gallery-2__img--left-top {
    aspect-ratio: 57 / 32;
}

.essb-gallery-2__img--left-bottom {
    aspect-ratio: 19 / 8;
}

.essb-gallery-2__img--right-top {
    aspect-ratio: 14 / 5;
}

.essb-gallery-2__img--right-bottom-left,
.essb-gallery-2__img--right-bottom-right {
    aspect-ratio: 3 / 4;
}

/* ===============================
   MOBILE – ALL SQUARE
================================ */
@media (max-width: 768px) {
    .essb-gallery-2__grid {
        grid-template-columns: 1fr;
    }

    .essb-gallery-2__right-bottom {
        flex-direction: column;
    }

    .essb-gallery-2__img {
        aspect-ratio: 1 / 1;
    }
}

/* ---------- BLOGS LIST PAGE ---------- */
.essb-blog-list {
    max-width: 1350px;
    margin: auto;
    padding: 40px 20px;
}

.essb-blog-list__card {
    border: 2px solid #efefef;
    padding: 25px;
}

.essb-blog-list__image {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.essb-blog-list__card--featured .essb-blog-list__image {
    aspect-ratio: 4 / 3;
}

.essb-blog-list__title {
    padding-top: 20px;
    margin: 0 0 8px;
    font-weight: 300;
}

.essb-blog-list__desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.essb-blog-list__btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 14px;
    font-size: 14px;
    text-decoration: none;
}

/* ===============================
   FEATURED CARD – DESKTOP
================================ */
.essb-blog-list__card--featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

/* Desktop order: TEXT first, IMAGE second */
.essb-blog-list__content {
    order: 1;
}

.essb-blog-list__image {
    order: 2;
    aspect-ratio: 16 / 9;
    background: #e0e0e0;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
    .essb-blog-list__card--featured {
        grid-template-columns: 1fr;
    }

    /* Mobile order: IMAGE first, TEXT second */
    .essb-blog-list__image {
        order: 1;
    }

    .essb-blog-list__content {
        order: 2;
    }
}

/* ===============================
   GRID BLOGS
================================ */
.essb-blog-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===============================
   RESPONSIVE
================================ */
/* Tablet */
@media (max-width: 992px) {
    .essb-blog-list__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .essb-blog-list__card--featured {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .essb-blog-list__card--featured {
        display: block;
    }

    .essb-blog-list__grid {
        grid-template-columns: 1fr;
    }

    /* All cards same size on mobile */
    .essb-blog-list__card {
        display: block;
    }

    .essb-blog-list__image {
        aspect-ratio: 16 / 9;
    }
}

/* ---------- BLOGS DETAILS PAGE ---------- */
.essb-blog-d-section {
    padding: 46px 0 70px;
    background: #fff;
    color: #111;
    margin-top: 80px;
}

.essb-blog-d-container {
    width: min(1300px, calc(100% - 72px));
    margin: 0 auto;
}

/* Breadcrumb */
.essb-blog-d-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #9a9a9a;
    margin-bottom: 18px;
}

.essb-blog-d-breadcrumb a {
    color: #9a9a9a;
    text-decoration: none;
}

.essb-blog-d-breadcrumb a:hover {
    text-decoration: underline;
}

.essb-blog-d-crumbsep {
    opacity: 0.9;
}

.essb-blog-d-crumbcurrent {
    color: #111;
    font-weight: 500;
}

/* Header */
.essb-blog-d-header {
    margin-bottom: 18px;
}

.essb-blog-d-title {
    font-size: 37px;
    /* was 34px */
    line-height: 1.18;
    /* slightly relaxed */
    font-weight: 300;
    margin: 0 0 14px;
}

.essb-blog-d-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    /* was 10px */
}

.essb-blog-d-avatar {
    width: 38px;
    /* was 34px */
    height: 38px;
    border-radius: 50%;
    background: #e6e6e6;
    overflow: hidden;
    flex: 0 0 auto;
}

.essb-blog-d-avatar__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.essb-blog-d-metatext {
    display: grid;
    gap: 3px;
    /* was 2px */
}

.essb-blog-d-author {
    font-size: 16px;
    /* was 13px */
    font-weight: 500;
    color: #111;
}

.essb-blog-d-submeta {
    font-size: 15px;
    /* was 12px */
    color: #9a9a9a;
    display: flex;
    align-items: center;
    gap: 10px;
    /* was 8px */
}

.essb-blog-d-dot {
    opacity: 0.9;
}


/* Hero */
.essb-blog-d-hero {
    width: 100%;
    height: auto;
    margin: 18px 0 26px;
    background: #e9e9e9;
    overflow: hidden;
}

.essb-blog-d-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills hero without distortion */
    object-position: center;
    display: block;
}


/* Content typography */
.essb-blog-d-content {
    font-size: 16px;
    /* was 14px */
    line-height: 1.85;
    color: #4a4a4a;
}

.essb-blog-d-content h2 {
    font-size: 18px;
    /* was 16px */
    font-weight: 800;
    color: #111;
    margin: 0 0 14px;
    font-family: var(--font-body) !important;
}

.essb-blog-d-content h3 {
    font-size: 17px;
    /* was 15px */
    font-weight: 800;
    color: #111;
    margin: 22px 0 14px;
    font-family: var(--font-body) !important;
}

.essb-blog-d-content h4 {
    font-size: 16px;
    /* was 14px */
    font-weight: 800;
    color: #111;
    margin: 18px 0 12px;
    font-family: var(--font-body) !important;
}

.essb-blog-d-content p {
    margin: 0 0 16px;
}

.essb-blog-d-content ul {
    margin: 12px 0 18px 22px;
    padding: 0;
}

.essb-blog-d-content li {
    margin: 8px 0;
}

/* Quote block */
.essb-blog-d-quote {
    background: #efefef;
    margin: 22px 0;
    padding: 22px 24px;
    text-align: center;
    color: #111;
    font-weight: 500;
    font-size: 14px;
    /* was 13px */
}

/* Inline image */
.essb-blog-d-inlineimg {
    width: 100%;
    height: 240px;
    background: #e9e9e9;
    margin: 20px 0 26px;
}

@media (max-width: 720px) {
    .essb-blog-d-content {
        font-size: 17px;
    }
}



/* ---------- OUR COACHES PAGE ---------- */
.essb-Coaches-title {
    font-weight: 300;
    letter-spacing: 1px;
    color: #222;
}

.essb-Coaches-viewport {
    overflow: hidden;
    width: 100%;
    outline: none;
    padding: 10px 0;
}

.essb-Coaches-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    transform: translateX(0);
}

.essb-Coaches-track.is-animating {
    will-change: transform;
}

.essb-Coaches-card {
    flex: 0 0 auto;  
    text-align: center; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.essb-Coaches-img {
    width: 100%;  
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
 
.essb-Coaches-meta {
    background: #E8E8E8;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: start;
}

.essb-Coaches-role {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: #333;
    margin: 0;
}

.essb-Coaches-name {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    margin: 0;
}

.essb-Coaches-card:hover,
.essb-Coaches-card:focus-within {
    border-color: #d9b24a;
}

.essb-Coaches-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    background-clip: padding-box;
}

.essb-Coaches-arrow:hover {
    transform: translateY(-50%) scale(1.2);
    border: 1px solid #d9b24a;
}

.essb-Coaches-arrow:active {
    transform: translateY(-50%) scale(1);
}

.essb-Coaches-arrow-left {
    left: -22px;
}

.essb-Coaches-arrow-right {
    right: -22px;
}

.essb-Coaches-arrow-icon {
    display: inline-block;
    font-size: 28px;
    color: var(--accent, #d9b24a);
    line-height: 1;
    font-weight: 700;
    user-select: none;
}

.essb-Coaches-arrow:focus {
    outline: 3px solid rgba(211, 158, 0, 0.18);
}

@media (max-width: 1199px) {
    .essb-Coaches-card {
        width: 200px;
    }
}

@media (max-width: 767px) {
    .essb-Coaches-track {
        gap: 10px;
    }

    .essb-Coaches-card {
        width: 160px;
        margin: 0;
    }

    .essb-Coaches-meta {
        padding: 10px 8px;
    }

    .essb-Coaches-role {
        font-size: 0.82rem;
        letter-spacing: 0.3px;
    }

    .essb-Coaches-name {
        font-size: 0.78rem;
    }

    .essb-Coaches-arrow-left {
        left: 6px;
    }

    .essb-Coaches-arrow-right {
        right: 6px;
    }
}

/* ---------- ABOUT US PAGE ---------- */
.essb-about-section {
    padding: 56px 0;
    background: #fff;
    color: #111;
}

.essb-about-container {
    width: min(1300px, calc(100% - 48px));
    margin: 0 auto;
}

.essb-about-card {
    border: 1px solid #e6e6e6;
    background: #fff;
    padding: 34px;
}

.essb-about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 34px;
    align-items: start;
}

.essb-about-media {
    background: #e9e9e9;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 380px;
    position: relative;
    cursor: pointer;
    outline: none;
}

.essb-about-media:focus {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.essb-about-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    display: grid;
    place-items: center;
}

.essb-about-play-triangle {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #111;
    transform: translateX(2px);
}

.essb-about-title {
    margin: 0 0 14px;
    font-size: 44px;
    letter-spacing: 1px;
    font-weight: 300;
}

.essb-about-text {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.55;
    color: #2b2b2b;
}

.essb-about-text:last-child {
    margin-bottom: 0;
}

.essb-about-stats {
    margin-top: 26px;
    border: 1px solid #e6e6e6;
    background: #fff;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.essb-about-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.essb-about-stat-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essb-about-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.essb-about-stat-body {
    min-width: 0;
}

.essb-about-stat-value {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.05;
    color: #111;
    white-space: nowrap;
}

.essb-about-stat-label {
    margin-top: 4px;
    font-size: 14px;
    color: #6b6b6b;
}

.essb-about-divider {
    width: 1px;
    height: 44px;
    background: #e0e0e0;
}

/* Mobile: icon hidden via d-none, so center value+label as a column */
@media (max-width: 767px) {
    .essb-about-section {
        padding-bottom: 0;
    }

    .essb-about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .essb-about-divider {
        width: 60px;
        height: 1px;
    }

    .essb-about-stat {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .essb-about-stat-value {
        font-size: 26px;
    }

    .essb-about-stat-label {
        font-size: 11px;
    }

    .essb-about-text {
        font-size: 15px;
    }
}

/* Responsive */
@media (max-width: 980px) {
    .essb-about-grid {
        grid-template-columns: 360px 1fr;
        gap: 26px;
    }

    .essb-about-title {
        font-size: 38px;
    }
}

@media (max-width: 820px) {
    .essb-about-card {
        padding: 20px 16px;
    }

    .essb-about-grid {
        grid-template-columns: 1fr;
    }

    .essb-about-media {
        max-width: 520px;
        margin: 0 auto;
    }

    .essb-about-title {
        font-size: 34px;
        text-align: left;
    }
}

@media (max-width: 700px) {
    .essb-about-container {
        width: min(1100px, calc(100% - 28px));
    }

    .essb-about-title {
        font-size: 30px;
    }

    .essb-about-stat-value {
        font-size: 30px;
    }
}

.essb-choose-section {
    padding: 54px 0 70px;
    background: #fff;
    color: #111;
}

.essb-choose-container {
    width: min(1300px, calc(100% - 64px));
    margin: 0 auto;
}

.essb-choose-title {
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 0 22px;
}

.essb-choose-title--spaced {
    margin-top: 56px;
}

.essb-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.essb-choose-card {
    background: #fff;
    border: 1px solid #ededed;
    padding: 18px;
}

.essb-choose-thumb {
    width: 100%;
    height: 150px;
    margin-bottom: 16px;
    overflow: hidden;
    background: transparent;
    /* remove grey */
}

.essb-choose-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* fills nicely */
    object-position: center;
}


.essb-choose-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.essb-choose-card-title {
    margin: 0;
    font-size: 24px;
    font-weight: 300;
}

.essb-choose-card-desc {
    margin: 0;
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.4;
}

.essb-awards-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #ededed;
    background: #fff;
}

.essb-awards-card {
    border-right: 1px solid #ededed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.essb-awards-card:last-child {
    border-right: none;
}

.essb-awards-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 46px 18px 18px;
}

.essb-awards-img {
    width: 120px;
    height: auto;
    max-width: 100%;
    display: block;
}

.essb-awards-meta {
    padding: 18px 18px 22px;
}

.essb-awards-season {
    font-size: 12px;
    letter-spacing: 1px;
    color: #8a8a8a;
    margin-bottom: 8px;
}

.essb-awards-name {
    font-size: 26px;
    font-weight: 600;
    color: #111;
}

@media (max-width: 1100px) {
    .essb-choose-title {
        font-size: 38px;
    }

    .essb-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .essb-awards-wrap {
        grid-template-columns: repeat(3, 1fr);
    }

    .essb-awards-card:nth-child(3) {
        border-right: none;
    }
}

@media (max-width: 700px) {
    .essb-choose-container {
        width: min(1200px, calc(100% - 28px));
    }

    .essb-choose-title {
        font-size: 30px;
    }

    .essb-choose-grid {
        grid-template-columns: 1fr;
    }

    .essb-choose-thumb {
        height: 225px;
    }

    .essb-awards-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .essb-awards-card {
        min-height: 320px;
    }

    .essb-awards-card:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 420px) {
    .essb-awards-wrap {
        grid-template-columns: 1fr;
    }

    .essb-awards-card {
        border-right: none;
    }
}

/* ---------- ESSB Store PAGE ---------- */
.essb-shop-section {
    padding: 54px 0;
    background: #fff;
}

.essb-shop-container {
    width: min(1300px, calc(100% - 64px));
    margin: 0 auto;
}

.essb-shop-card {
    background: #f2f2f2;
    padding: 54px 56px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.essb-shop-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.essb-shop-img img {
    width: min(280px, 80%);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.08));
}

.essb-shop-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 26px;
}

.essb-shop-name {
    margin: 0 0 10px;
    font-size: 40px;
    letter-spacing: 0.5px;
    font-weight: 300;
    color: #111;
}

.essb-shop-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.essb-shop-price-new {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.essb-shop-price-old {
    font-size: 20px;
    color: #e02020;
    text-decoration: line-through;
    font-weight: 500;
}

.essb-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    min-width: 180px;
}

.essb-shop-btn:hover {
    opacity: 0.9;
}

@media (max-width: 900px) {
    .essb-shop-card {
        padding: 44px 34px;
        min-height: 480px;
    }

    .essb-shop-name {
        font-size: 34px;
    }

    .essb-shop-btn {
        font-size: 20px;
        min-width: 200px;
    }
}

@media (max-width: 680px) {
    .essb-shop-container {
        width: min(1200px, calc(100% - 28px));
    }

    .essb-shop-card {
        padding: 34px 22px;
        min-height: 520px;
    }

    .essb-shop-img img {
        width: min(360px, 60%);
    }

    .essb-shop-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .essb-shop-name {
        font-size: 30px;
    }

    .essb-shop-btn {
        width: 100%;
        min-width: 0;
        padding: 16px 22px;
        font-size: 20px;
    }
}

.essb-store-section {
    padding: 60px 0 80px;
    background: #fff;
    color: #111;
}

.essb-store-container {
    width: min(1300px, calc(100%));
    margin: 0 auto;
}

.essb-store-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.essb-store-title {
    margin: 0;
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 1px;
}

.essb-store-nav {
    display: flex;
    gap: 10px;
}

.essb-store-navbtn {
    width: 58px;
    height: 52px;
    border: 1px solid #e6e6e6;
    background: #e9e9e9;
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    display: grid;
    place-items: center;
}

.essb-store-navbtn:hover {
    filter: brightness(0.98);
}

.essb-store-viewport {
    overflow: hidden;
    width: 100%;
}

.essb-store-track {
    display: flex;
    gap: 28px;
    align-items: stretch;
    transform: translateX(0);
    transition: transform 700ms cubic-bezier(.22, .9, .32, 1);
}

.essb-store-card {
    position: relative;
    flex: 0 0 auto;
    width: 360px;
    border: 1px solid #111;
    background: #fff;
}

.essb-store-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #e5391e;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.6px;
    padding: 8px 12px;
}

.essb-store-img {
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 22px;
}

.essb-store-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.essb-store-bottom {
    border-top: 1px solid #111;
    padding: 18px 18px 16px;
}

.essb-store-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.essb-store-name {
    font-size: 26px;
    font-weight: 400;
}

.essb-store-price {
    font-size: 26px;
    font-weight: 400;
}

.essb-store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.essb-store-btn:hover {
    opacity: 0.92;
}

@media (max-width: 1100px) {
    .essb-store-title {
        font-size: 44px;
    }

    .essb-store-track {
        gap: 28px;
    }

    .essb-store-card {
        width: 320px;
    }

    .essb-store-img {
        height: 380px;
    }
}

@media (max-width: 820px) {
    .essb-store-container {
        width: min(1200px, calc(100% - 28px));
    }

    .essb-store-title {
        font-size: 34px;
    }

    .essb-store-navbtn {
        width: 52px;
        height: 48px;
    }

    .essb-store-card {
        width: 280px;
    }

    .essb-store-img {
        height: 340px;
    }

    .essb-store-name,
    .essb-store-price {
        font-size: 22px;
    }

    .essb-store-btn {
        height: 52px;
        font-size: 18px;
    }
}

@media (max-width: 520px) {
    .essb-store-head {
        align-items: flex-start;
    }

    .essb-store-title {
        font-size: 30px;
    }

    .essb-store-card {
        width: 260px;
    }

    .essb-store-img {
        height: 320px;
    }
}

.essb-shop-hero-wrap {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    overflow: hidden;
}

.essb-shop-hero-left,
.essb-shop-hero-right {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.essb-shop-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.essb-shop-hero-gloves {
    position: relative;
    z-index: 2;
    width: min(520px, 80%);
    height: auto;
    display: block;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

.essb-shop-hero-content {
    position: relative;
    z-index: 3;
    padding: 54px 52px;
    max-width: 560px;
}

.essb-shop-hero-title {
    margin: 0 0 34px;
    font-size: 58px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 1px;
    color: #111;
}

.essb-shop-hero-sub {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.essb-shop-hero-kicker {
    font-size: 18px;
    color: #333;
}

.essb-shop-hero-product {
    font-size: 30px;
    font-weight: 400;
    color: #111;
}

.essb-shop-hero-btn {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 0 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    width: fit-content;
}

.essb-shop-hero-btn:hover {
    opacity: 0.92;
}

.essb-shop-hero-keeper {
    position: absolute;
    right: 44px;
    bottom: 18px;
    width: min(360px, 42%);
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.14));
    pointer-events: none;
}

/* ====== Responsive ====== */
@media (max-width: 1100px) {
    .essb-shop-hero-wrap {
        min-height: 380px;
    }

    .essb-shop-hero-left,
    .essb-shop-hero-right {
        min-height: 380px;
    }

    .essb-shop-hero-content {
        padding: 44px 36px;
    }

    .essb-shop-hero-title {
        font-size: 56px;
    }

    .essb-shop-hero-product {
        font-size: 34px;
    }

    .essb-shop-hero-keeper {
        right: 26px;
        width: min(320px, 44%);
    }
}

@media (max-width: 900px) {
    .essb-shop-hero-wrap {
        grid-template-columns: 1fr;
    }

    .essb-shop-hero-left {
        min-height: 340px;
    }

    .essb-shop-hero-right {
        min-height: 420px;
    }

    .essb-shop-hero-gloves {
        width: min(520px, 86%);
        top: 50%;
    }

    .essb-shop-hero-content {
        max-width: none;
        padding: 40px 28px 140px;
    }

    .essb-shop-hero-keeper {
        right: 20px;
        bottom: 10px;
        width: min(320px, 56%);
    }
}

@media (max-width: 520px) {
    .essb-shop-hero-wrap {
        width: min(1280px, calc(100% - 20px));
    }

    .essb-shop-hero-left {
        min-height: 280px;
    }

    .essb-shop-hero-right {
        min-height: 420px;
    }

    .essb-shop-hero-title {
        font-size: 42px;
    }

    .essb-shop-hero-product {
        font-size: 26px;
    }

    .essb-shop-hero-btn {
        height: 52px;
        padding: 0 26px;
        font-size: 18px;
    }

    .essb-shop-hero-keeper {
        right: 12px;
        width: min(260px, 62%);
    }
}

/* ---------- ESSB PRODUCT DETAILS PAGE ---------- */
/* Page base */
.essb-shop-p-page {
    width: min(1300px, calc(100% - 44px));
    margin: 0 auto;
    margin-top: 80px;
    padding: 28px 18px 60px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #111;
}

.essb-shop-p-breadcrumb {
    font-size: 14px;
    color: #8a8a8a;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.essb-shop-p-breadcrumb a {
    color: #8a8a8a;
    text-decoration: none;
}

.essb-shop-p-breadcrumb a:hover {
    text-decoration: underline;
}

.essb-shop-p-bc-active {
    color: #111;
}

/* Top layout */
.essb-shop-p-top {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: start;
}

/* Gallery */
/* =========================
   Gallery (fixed)
   ========================= */
.essb-shop-p-gallery {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 20px;
    align-items: start;
}

.essb-shop-p-thumbs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.essb-shop-p-thumb {
    width: 96px;
    height: 96px;
    border: 1px solid #2a2a2a;
    background: #fff;
    padding: 10px;
    cursor: pointer;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.essb-shop-p-thumb img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    display: block;
}

.essb-shop-p-thumb.is-active {
    border-color: #111 !important;
    outline: 2px solid #111 !important;
}

.essb-shop-p-mainimgwrap {
    width: 100%;
    min-height: 520px;
    display: grid;
    place-items: center;
    overflow: hidden;
    /* prevents giant image overflow */
}

.essb-shop-p-mainimg {
    max-width: 520px;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    display: block;
}

/* =========================
   Mobile / Tablet
   ========================= */
@media (max-width: 980px) {
    .essb-shop-p-gallery {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .essb-shop-p-mainimgwrap {
        order: 1;
        min-height: 340px;
        max-height: 420px;
    }

    .essb-shop-p-mainimg {
        max-width: 100%;
        max-height: 420px;
    }

    .essb-shop-p-thumbs {
        order: 2;
        flex-direction: row;
        gap: 12px;
        /* smooth horizontal strip */
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 6px 2px 10px;
        /* hide “ugly” scrollbar space */
        scrollbar-width: none;
        /* Firefox */
    }

    .essb-shop-p-thumbs::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .essb-shop-p-thumb {
        width: 86px;
        height: 86px;
        scroll-snap-align: start;
    }
}

/* Extra small phones */
@media (max-width: 420px) {
    .essb-shop-p-mainimgwrap {
        min-height: 300px;
        max-height: 360px;
    }

    .essb-shop-p-thumb {
        width: 78px;
        height: 78px;
        padding: 8px;
    }
}

/* Info */
.essb-shop-p-info {
    padding-top: 8px;
}

.essb-shop-p-title {
    font-size: 56px;
    line-height: 1.03;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
    font-weight: 300;
    /* requested */
    text-transform: uppercase;
}

.essb-shop-p-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 14px;
}

.essb-shop-p-price-now {
    font-size: 24px;
    font-weight: 700;
}

.essb-shop-p-price-old {
    font-size: 18px;
    color: #d50000;
    text-decoration: line-through;
}

.essb-shop-p-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin: 0 0 14px;
    max-width: 420px;
}

.essb-shop-p-meta {
    display: grid;
    gap: 8px;
    margin: 12px 0 18px;
}

.essb-shop-p-meta-row {
    font-size: 13px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.essb-shop-p-meta-k {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.essb-shop-p-meta-v {
    color: #555;
}

.essb-shop-p-buybtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 22px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.3px;
    border: 1px solid #111;
    transition: transform .12s ease, background .12s ease;
}

.essb-shop-p-buybtn:hover {
    transform: translateY(-1px);
    background: #000;
}

/* Tabs */
.essb-shop-p-tabs {
    margin-top: 42px;
}

.essb-shop-p-tabbar {
    display: flex;
    gap: 26px;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.essb-shop-p-tabbar::-webkit-scrollbar {
    display: none;
}

.essb-shop-p-tab {
    background: none;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    font-size: 18px;
    color: #9a9a9a;
    font-weight: 500;
    position: relative;
}

.essb-shop-p-tab.is-active {
    color: #111;
}

.essb-shop-p-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 120px;
    max-width: 100%;
    height: 2px;
    background: #111;
}

.essb-shop-p-tabpanes {
    padding-top: 18px;
}

.essb-shop-p-pane {
    display: none;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

.essb-shop-p-pane.is-active {
    display: block;
}

.essb-shop-p-bullets {
    margin: 0;
    padding-left: 18px;
}

.essb-shop-p-bullets li {
    margin: 8px 0;
}

.essb-shop-p-review {
    border: 1px solid #ededed;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.essb-shop-p-review-name {
    font-weight: 700;
    margin-bottom: 6px;
}

.essb-shop-p-review-text {
    color: #444;
}

/* Responsive */
@media (max-width: 980px) {
    .essb-shop-p-top {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .essb-shop-p-gallery {
        grid-template-columns: 1fr;
    }

    .essb-shop-p-thumbs {
        flex-direction: row;
        order: 2;
        overflow: auto;
        padding-bottom: 6px;
    }

    .essb-shop-p-thumb {
        flex: 0 0 auto;
    }

    .essb-shop-p-mainimgwrap {
        order: 1;
        min-height: 320px;
    }

    .essb-shop-p-title {
        font-size: 44px;
    }
}

@media (max-width: 520px) {
    .essb-shop-p-title {
        font-size: 36px;
    }

    .essb-shop-p-tabbar {
        gap: 14px;
        overflow: auto;
    }

    .essb-shop-p-tab {
        font-size: 16px;
        white-space: nowrap;
    }

    .essb-shop-p-tab.is-active::after {
        width: 90px;
    }
}

/* =========================
   ESSB Store CTA (Promo Video)
   ========================= */
.essb-shop-cta {
    width: 100%;
    padding: 0;
}

.essb-shop-cta-wrap {
    position: relative;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
    border-radius: 0;
}

/* Background image */
.essb-shop-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

/* Overlay */
.essb-shop-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.45) 45%,
            rgba(0, 0, 0, 0.25) 100%);
}

/* Content row */
.essb-shop-cta-content {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 56px 64px;
}

/* Title */
.essb-shop-cta-title {
    margin: 0;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 0.95;
    text-transform: uppercase;
    font-size: clamp(32px, 4vw, 64px);
    max-width: 520px;
}

/* Play link */
.essb-shop-cta-play {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to flex-start */
    text-decoration: none;
    outline: none;
}

/* Circle */
.essb-shop-cta-play-circle {
    width: 92px;
    height: 92px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: grid;
    place-items: center;
    backdrop-filter: blur(6px);
    transition: transform 0.15s ease, background 0.15s ease;
}

/* Triangle */
.essb-shop-cta-play-tri {
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    transform: translateX(2px);
}

/* Hover / focus */
.essb-shop-cta-play:hover .essb-shop-cta-play-circle {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.22);
}

.essb-shop-cta-play:focus-visible .essb-shop-cta-play-circle {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px) {
    .essb-shop-cta-content {
        padding: 44px 28px;
    }

    .essb-shop-cta-title {
        max-width: 420px;
    }

    .essb-shop-cta-play-circle {
        width: 78px;
        height: 78px;
    }

    .essb-shop-cta-play-tri {
        border-left-width: 16px;
        border-top-width: 11px;
        border-bottom-width: 11px;
    }
}

@media (max-width: 640px) {

    .essb-shop-cta-wrap,
    .essb-shop-cta-content {
        min-height: 260px;
    }

    .essb-shop-cta-content {
        padding: 34px 18px;
        align-items: flex-end;
    }

    .essb-shop-cta-title {
        font-size: clamp(34px, 7vw, 52px);
        line-height: 0.98;
    }

    .essb-shop-cta-play-circle {
        width: 68px;
        height: 68px;
    }
}

/* ---------- AWARDS PAGE (Adjusted to match screenshot) ---------- */
.essb-ach-section {
    padding: 56px 0 80px;
    background: #fff;
    color: #111;
}

.essb-ach-container {
    width: min(1300px, calc(100% - 48px));
    margin: 0 auto;
}

/* Layout wrapper */
.essb-ach-awards {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 22px;
}

/* Card */
.essb-ach-award {
    background: #fff;
    /* screenshot looks white */
    padding: 0;
    /* remove grey padding look */
    display: block;
    text-align: center;
    min-height: unset;
}

/* Image wrapper */
.essb-ach-award-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f2f2f2;
    /* subtle frame like screenshot */
}

/* Wide banner */
.essb-ach-award--wide .essb-ach-award-img {
    aspect-ratio: 16 / 5;
    /* wide banner feel */
}

/* Bottom images */
.essb-ach-awards-grid {
    display: grid;
    gap: 26px;
}

.essb-ach-awards-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Make images cover nicely like screenshot */
.essb-ach-award-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Overlay title on banner */
.essb-ach-award-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
    display: flex;
    justify-content: center;
}

.essb-ach-award-overlay span {
    color: #fff;
    font-size: clamp(18px, 2.2vw, 34px);
    font-weight: 500;
    letter-spacing: 0.4px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .essb-ach-awards-grid--2 {
        grid-template-columns: 1fr;
    }

    .essb-ach-award--wide .essb-ach-award-img {
        aspect-ratio: 16 / 7;
    }
}

.essb-ach-gallery {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 18px;
    align-items: center;
    margin-top: 8px;
}

.essb-ach-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #e6e6e6;
    background: #efefef;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    display: grid;
    place-items: center;
}

.essb-ach-viewport {
    overflow: hidden;
    width: 100%;
}

.essb-ach-track {
    display: flex;
    gap: 26px;
    transform: translateX(0);
    transition: transform 700ms cubic-bezier(.22, .9, .32, 1);
}

.essb-ach-track {
    display: flex;
    gap: 16px;
    /* optional spacing */
}

.essb-ach-slide {
    flex: 0 0 auto;
    width: 320px;
    height: 220px;
    overflow: hidden;
}

/* make slide content a proper image */
.essb-ach-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* fills like background-cover */
    object-position: center;
}


@media (max-width: 980px) {
    .essb-ach-title {
        font-size: 36px;
    }

    .essb-ach-awards-grid {
        gap: 18px;
    }

    .essb-ach-slide {
        width: 280px;
        height: 200px;
    }
}

@media (max-width: 760px) {
    .essb-ach-container {
        width: min(1100px, calc(100% - 28px));
    }

    .essb-ach-awards-grid {
        grid-template-columns: 1fr;
    }

    .essb-ach-award {
        min-height: 160px;
    }

    .essb-ach-title {
        font-size: 30px;
        margin-top: 26px;
    }

    .essb-ach-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px 0;
    }

    .essb-ach-cell--year {
        text-align: left;
        color: #6b6b6b;
    }

    .essb-ach-gallery {
        grid-template-columns: 40px 1fr 40px;
        gap: 12px;
    }

    .essb-ach-track {
        gap: 16px;
    }

    .essb-ach-slide {
        width: 240px;
        height: 180px;
    }
}

/* ---------- SPONSORSHIPS PAGE ---------- */
.essb-sponsor-section {
    padding: 56px 0 80px;
    background: #fff;
    color: #111;
}

.essb-sponsor-container {
    width: min(1300px, calc(100% - 56px));
    margin: 0 auto;
}

.essb-sponsor-title {
    margin: 0 0 18px;
    font-size: 30px;
    font-weight: 300;
    color: #111;
}

.essb-sponsor-emoji {
    font-size: 20px;
}

.essb-sponsor-p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.65;
    color: #222;
}

.essb-sponsor-h {
    margin: 18px 0 10px;
    font-size: 20px;
    font-weight: 300;
    color: #111;
}

.essb-sponsor-list {
    margin: 0 0 14px 18px;
    padding: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #222;
}

.essb-sponsor-list li {
    margin: 3px 0;
}

.essb-sponsor-list--plain {
    list-style: disc;
}

.essb-sponsor-strong {
    margin: 18px 0 18px;
    font-size: 15px;
    font-weight: 400;
    color: #111;
}

.essb-sponsor-visuals {
    display: flex;
    align-items: flex-end;
    gap: 32px;
    padding: 10px 0 22px;
    flex-wrap: wrap;
}

.essb-sponsor-visual {
    width: 160px;
    height: auto;
    display: block;
    object-fit: contain;
}

.essb-sponsor-gallery {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 16px;
    align-items: center;
    margin-top: 8px;
}

.essb-sponsor-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #e6e6e6;
    background: #efefef;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    display: grid;
    place-items: center;
}

.essb-sponsor-viewport {
    overflow: hidden;
    width: 100%;
    cursor: grab;
}

.essb-sponsor-viewport:active {
    cursor: grabbing;
}

.essb-sponsor-track {
    display: flex;
    gap: 22px;
    transform: translateX(0);
    transition: transform 700ms cubic-bezier(.22, .9, .32, 1);
}

.essb-sponsor-slide {
    flex: 0 0 auto;
    width: 310px;
    height: 210px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.essb-sponsor-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.essb-sponsor-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.essb-sponsor-slide:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .essb-sponsor-container {
        width: min(1080px, calc(100% - 28px));
    }

    .essb-sponsor-visuals {
        gap: 18px;
    }

    .essb-sponsor-visual {
        width: 140px;
    }

    .essb-sponsor-slide {
        width: 270px;
        height: 190px;
    }
}

@media (max-width: 650px) {
    .essb-sponsor-title {
        font-size: 22px;
    }

    .essb-sponsor-visuals {
        justify-content: center;
        gap: 16px;
    }

    .essb-sponsor-visual {
        width: 120px;
    }

    .essb-sponsor-gallery {
        grid-template-columns: 40px 1fr 40px;
        gap: 12px;
    }

    .essb-sponsor-track {
        gap: 14px;
    }

    .essb-sponsor-slide {
        width: 240px;
        height: 180px;
    }
}

/* ---------- ARENAS LIST PAGE ---------- */
.essb-arenas-section {
    padding: 42px 0 70px;
    background: #fff;
    color: #111;
}

.essb-arenas-container {
    width: min(1300px, calc(100% - 56px));
    margin: 0 auto;
}

.essb-arenas-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 22px;
}

.essb-arenas-filter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.essb-arenas-filterlabel {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.essb-arenas-filter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.essb-arenas-page-description {
    color: #fff;
}

/* "Centers In" text */
.essb-arenas-filterlabel {
    font-size: 28px;
    /* reduced */
    font-weight: 700;
    line-height: 1;
    margin: 0;
    color: #111;
}

/* select wrapper */
.essb-arenas-selectwrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid #7D7D7D;
}

/* dropdown */
.essb-arenas-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 135px;
    /* requested width */
    background: #efefef;
    border: none;
    padding: 10px 52px 10px 18px;
    font-size: 24px;
    /* reduced font */
    font-weight: 500;
    line-height: 1.1;
    color: #111;
    cursor: pointer;
}

/* caret */
.essb-arenas-caret {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 24px;
    color: #111;
}

/* Mobile */
@media (max-width: 600px) {
    .essb-arenas-filterlabel {
        font-size: 22px;
    }

    .essb-arenas-select {
        width: 220px;
        font-size: 20px;
        padding: 10px 44px 10px 14px;
    }

    .essb-arenas-caret {
        font-size: 14px;
    }
}

.essb-arenas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 40px;
}

.essb-arenas-card,
.essb-arenas-soon {
    border: 1px solid #e6e6e6;
    background: #fff;
}

.essb-arenas-media {
    background: #fff;
    padding: 18px 18px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
}

.essb-arenas-media img {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
    object-fit: contain;
    opacity: 0.95;
}

.essb-arenas-meta {
    background: #e9e9e9;
    padding: 18px 18px 16px;
}

.essb-arenas-name {
    margin: 0 0 6px;
    font-size: 24px!important;
    font-weight: 300!important;
}

.essb-arenas-loc {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #222;
    font-size: 14px;
}

.essb-arenas-pin {
    font-size: 14px;
    line-height: 1;
}

.essb-arenas-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    border: 1px solid #222;
    background: transparent;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.essb-arenas-btn:hover {
    background: #111;
    color: #fff;
}

.essb-arenas-soon {
    background: #e9e9e9;
    min-height: 365px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.essb-arenas-sooninner {
    text-align: center;
    max-width: 320px;
}

.essb-arenas-soontitle {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 300;
}

.essb-arenas-soonloc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #222;
}

.essb-arenas-card.is-hidden,
.essb-arenas-soon.is-hidden {
    display: none;
}

@media (max-width: 1100px) {
    .essb-arenas-grid {
        gap: 22px 22px;
    }

    .essb-arenas-name {
        font-size: 22px;
    }
}

@media (max-width: 900px) {
    .essb-arenas-container {
        width: min(1120px, calc(100% - 28px));
    }

    .essb-arenas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .essb-arenas-media {
        min-height: 200px;
    }

    .essb-arenas-soon {
        min-height: 330px;
    }
}

@media (max-width: 560px) {
    .essb-arenas-filterlabel {
        font-size: 16px;
    }

    .essb-arenas-select {
        font-size: 15px;
        padding: 10px 40px 10px 12px;
    }

    .essb-arenas-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .essb-arenas-name {
        font-size: 22px;
    }

    .essb-arenas-media {
        min-height: 190px;
    }

    .essb-arenas-soon {
        min-height: 280px;
    }
}


/* Arena detail page header — desktop offset only */
.arena-page-header {
    margin-top: -50px;
}

@media (max-width: 991px) {
    .arena-page-header {
        margin-top: 0;
    }
}


/* Arenas Page New Layout */
.essb-arenas-top-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 30px;
    flex-wrap: wrap;
}

.essb-arenas-tabs {
    display: flex;
    align-items: center;
    gap: 15px;
}

.essb-arenas-tab-label {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.essb-arenas-dropdown-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.essb-arenas-select {
    appearance: none;
    -webkit-appearance: none;
    padding: 12px 50px 12px 20px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #ddd;
    border-radius: 0;
    background: #fff;
    color: #333;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 200px;
}

.essb-arenas-select:hover {
    border-color: #000;
}

.essb-arenas-select:focus {
    border-color: #000;
}

.essb-arenas-caret {
    position: absolute;
    right: 15px;
    pointer-events: none;
    color: #333;
    font-size: 14px;
}

.essb-arenas-search-container {
    flex: 0 1 420px;
}

.essb-arenas-search-box {
    position: relative;
    width: 100%;
}

.essb-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#arenaSearch {
    width: 100%;
    padding: 13px 20px 13px 52px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
    background: #fff;
    color: #333;
}

#arenaSearch::placeholder {
    color: #999;
}

#arenaSearch:focus {
    border-color: #000;
}

.essb-arenas-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.essb-arenas-grid.active {
    display: grid;
}

/* Card Overhaul */
.essb-arenas-section .essb-arenas-card {
    height: 540px; 
    display: flex;
    flex-direction: column;
    border-radius: 0; /* Zero border radius */
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6e6e6;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.essb-arenas-section .essb-arenas-card:hover {
    transform: scale(1.05); /* Updated scaling */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 10;
    position: relative;
}

.essb-arenas-section .essb-arenas-media {
    flex: 0 0 60%;
    height: 60%;
    padding: 0 !important;
    min-height: auto !important;
    display: block;
    overflow: hidden;
    position: relative;
}

.essb-arenas-section .essb-arenas-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: none !important;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.essb-arenas-section .essb-arenas-card:hover .essb-arenas-media img {
    transform: scale(1.08);
}

.essb-arenas-section .essb-arenas-meta {
    flex: 0 0 40%;
    height: 40%;
    background: #fafafa !important;
    padding: 24px !important;
    display: flex;
    flex-direction: column;
}

.essb-arenas-section .essb-arenas-name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.3;
}

.essb-arenas-section .essb-arenas-loc {
    margin-bottom: 20px;
    align-items: flex-start;
    flex-grow: 1; 
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.essb-arenas-section .essb-arenas-loc img {
    margin-top: 2px;
}

.essb-arenas-section .essb-arenas-btn {
    margin-top: auto; 
    background-color: #000 !important; /* Default black background */
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important; /* Zero radius */
    font-weight: 600 !important;
    height: 44px !important;
    transition: background-color 0.4s ease, transform 0.2s ease !important;
}

.essb-arenas-section .essb-arenas-btn:hover {
    background-color: #fff !important;
    color: #000 !important;
    border: 1px solid #000 !important;
}

.highlight {
    background: #e3f2fd;
    color: #0d47a1;
    padding: 0 2px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .essb-arenas-top-layout {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .essb-arenas-tabs {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .essb-arenas-select {
        min-width: 160px;
        padding: 10px 40px 10px 15px;
        font-size: 15px;
    }
    .essb-arenas-search-container {
        width: 100%;
        flex: 1 1 100%;
        max-width: none;
    }
}


/* ---------- ARENA DETAILS PAGE ---------- */
.essb-arena-d-section {
    background: #fff;
    padding: 0px 12px 70px;
}

.essb-arena-d-container {
    width: min(1300px, 100%);
    margin: 0 auto;
}

.essb-arena-d-top {
    margin-bottom: 26px;
}

.essb-arena-d-gallery {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.essb-arena-d-main {
    background: #f3f3f3;
    border: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 270px;
    overflow: hidden;
}

.essb-arena-d-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.essb-arena-d-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.essb-arena-d-thumb {
    border: 1px solid #ececec;
    background: #f3f3f3;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    min-height: 126px;
    display: block; /* Added for <a> support */
}

.essb-arena-d-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.essb-arena-d-thumb--overlay .essb-arena-d-seeall {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: #111;
    color: #fff;
    font-size: 12px;
    padding: 8px 10px;
    letter-spacing: .3px;
}

.essb-arena-d-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 26px;
    align-items: start;
}

.essb-arena-d-card {
    background: #fff;
    border: 1px solid #efefef;
    padding: 18px 18px;
    margin-bottom: 18px;
}

.essb-arena-d-cardtitle {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 14px;
    color: #111;
}

.essb-arena-d-p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #333;
}

.essb-arena-d-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
}

.essb-arena-d-ovitem {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.essb-arena-d-ovitem--full {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
}

.essb-arena-d-ovicon {
    font-size: 18px;
    border: 1px solid #ccc;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.essb-arena-d-ovlabel {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.essb-arena-d-ovvalue {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.essb-arena-d-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border: 1px solid #111;
    height: 44px;
    padding: 0 16px;
    font-size: 13px;
    letter-spacing: .4px;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}

.essb-arena-d-btn:hover {
    transform: translateY(-1px);
    background: #000;
}

.essb-arena-d-btn--sm {
    height: 40px;
    font-size: 12px;
    padding: 0 14px;
}

.essb-arena-d-btn--full {
    width: 100%;
}

.essb-arena-d-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.essb-arena-d-chip {
    background: #efefef;
    border: 1px solid #e5e5e5;
    padding: 10px 14px;
    font-size: 12px;
    color: #111;
    font-weight: 400;
}

.essb-arena-d-list {
    margin: 0;
    padding-left: 16px;
    color: #222;
    font-size: 13px;
    line-height: 1.85;
}

.essb-arena-d-video {
    background: #e9e9e9;
    border: 1px solid #efefef;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essb-arena-d-play {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: none;
    background: #bdbdbd;
    color: #111;
    font-size: 18px;
    cursor: pointer;
}

.essb-arena-d-right {
    position: relative;
}

.essb-arena-d-stickywrap {
    position: sticky;
    top: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.essb-arena-d-formcard,
.essb-arena-d-infocard {
    border: 1px solid #efefef;
    background: #fff;
    padding: 18px;
}

.essb-arena-d-formtitle {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #111;
}

.essb-arena-d-formsub {
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.essb-arena-d-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.essb-arena-d-input {
    height: 44px;
    border: 1px solid #efefef;
    background: #f7f7f7;
    padding: 0 12px;
    font-size: 13px;
    outline: none;
}

.essb-arena-d-input:focus {
    background: #fff;
    border-color: #cfcfcf;
}

.essb-arena-d-textarea {
    height: auto;
    padding: 10px 12px;
    resize: vertical;
}

.essb-arena-d-support {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 12px 0 12px;
}

.essb-arena-d-avatar {
    width: 44px;
    height: 44px;
    background: #282828;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essb-arena-d-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 🔑 fills the box perfectly */
    display: block;
    transform: scaleX(-1);
}

.essb-arena-d-supportname {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.essb-arena-d-supportphone {
    font-size: 12px;
    color: #444;
}

/* Modal box for slider */
.essb-arena-d-modalbox--slider {
    width: min(1100px, 94%);
    margin: 24px auto;
    padding: 14px;
}

/* Header actions */
.essb-arena-d-modalactions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.essb-arena-d-modalcount {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    background: #f4f4f4;
    border: 1px solid #e9e9e9;
    padding: 6px 10px;
}

/* Slider layout */
.essb-arena-d-slider {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr 54px;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 14px;
}

/* Image stage */
.essb-arena-d-sliderstage {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* 80% of screen image */
.essb-arena-d-sliderimg {
    width: auto;
    height: auto;
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    background: #f3f3f3;
    border: 1px solid #efefef;
}

/* Arrow buttons */
.essb-arena-d-sliderbtn {
    width: 54px;
    height: 54px;
    border: 1px solid #e5e5e5;
    background: #fff;
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.essb-arena-d-sliderbtn:hover {
    background: #f2f2f2;
}

.essb-arena-d-sliderbtn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

/* Thumbnail row (optional) */
.essb-arena-d-thumbrow {
    display: flex;
    gap: 10px;
    overflow: auto;
    padding: 10px 8px 4px;
    border-top: 1px solid #efefef;
}

.essb-arena-d-thumbmini {
    border: 2px solid transparent;
    padding: 0;
    background: transparent;
    cursor: pointer;
    flex: 0 0 auto;
}

.essb-arena-d-thumbmini img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    display: block;
    border: 1px solid #eee;
    background: #f3f3f3;
}

.essb-arena-d-thumbmini.is-active {
    border-color: #111;
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .essb-arena-d-slider {
        grid-template-columns: 44px 1fr 44px;
        gap: 8px;
    }

    .essb-arena-d-sliderbtn {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .essb-arena-d-sliderimg {
        max-width: 92vw;
        max-height: 72vh;
    }
}

/* Modal */
.essb-arena-d-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

/* Ensure Fancybox is always on top of EVERYTHING including header and text is white */
.fancybox__container {
    z-index: 100000 !important;
    --fancybox-color: #fff !important;
    --fancybox-accent-color: #fff !important;
}

.fancybox__infobar,
.fancybox__caption,
.fancybox__toolbar,
.fancybox__nav,
.fancybox__button {
    color: #fff !important;
}

.fancybox__button svg {
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}

.essb-arena-d-modal.is-open {
    display: block;
}

.essb-arena-d-modalbackdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.essb-arena-d-modalbox {
    position: relative;
    width: min(980px, 92%);
    margin: 40px auto;
    background: #fff;
    border: 1px solid #eee;
    padding: 14px;
}

.essb-arena-d-modaltop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 14px;
}

.essb-arena-d-modaltitle {
    font-weight: 800;
    font-size: 14px;
}

.essb-arena-d-modalclose {
    border: 1px solid #ddd;
    background: #fff;
    width: 40px;
    height: 36px;
    cursor: pointer;
}

.essb-arena-d-modalgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 10px;
}

.essb-arena-d-modalgrid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f2f2f2;
    border: 1px solid #eee;
}

/* Mobile bottom callback */
.essb-arena-d-mobilebar {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .essb-arena-d-gallery {
        grid-template-columns: 1fr;
    }

    .essb-arena-d-grid {
        grid-template-columns: 1fr;
    }

    .essb-arena-d-stickywrap {
        position: static;
    }

    /* Hide desktop callback card; use bottom bar instead */
    #essbCallbackCard {
        display: none;
    }

    .essb-arena-d-mobilebar {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9998;
        background: #fff;
        border-top: 1px solid #eaeaea;
    }

    .essb-arena-d-mobilebarbtn {
        width: 100%;
        height: 54px;
        border: none;
        background: #111;
        color: #fff;
        font-weight: 800;
        letter-spacing: .5px;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
    }

    .essb-arena-d-mobilepanel {
        display: none;
        padding: 12px;
        background: #fff;
    }

    .essb-arena-d-mobilepanel.is-open {
        display: block;
    }

    .essb-arena-d-mobilecaret {
        display: inline-block;
        transform: translateY(-1px);
    }

    .essb-arena-d-modalgrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .essb-arena-d-thumbs {
        gap: 12px;
    }

    .essb-arena-d-thumb {
        min-height: 110px;
    }
}

/* ---------- MARKETING PAGE ---------- */
.essb-marketing-featured-img img {
    width: 100%;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .essb-marketing-featured-img img {
        margin-top: 0px;
    }
}

.essb-mkt-section {
    padding: 70px 0 80px;
    background: #fff;
    color: #111;
}

.essb-mkt-container {
    width: min(1300px, calc(100% - 60px));
    margin: 0 auto;
}

.essb-mkt-title {
    text-align: center;
    font-size: 58px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0 0 28px;
    text-transform: uppercase;
}

.essb-mkt-copy {
    max-width: 1300px;
    margin: 0 auto 46px;
    font-size: 18px;
    line-height: 1.75;
    color: #1f1f1f;
}

.essb-mkt-copy p {
    margin: 0 0 18px;
}

.essb-mkt-subtitle {
    text-align: center;
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: 300;
    margin: 52px 0 26px;
    text-transform: uppercase;
}

.essb-mkt-agegrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 14px;
}

.essb-mkt-agecard {
    border: 1px solid #e4e4e4;
    background: #fff;
    padding: 18px 18px 16px;
    min-height: 110px;
    width: auto;
}

.essb-mkt-agehead {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.essb-mkt-agedesc {
    margin: 0;
    font-size: 16px;
    color: #2a2a2a;
    line-height: 1.4;
}

.essb-mkt-arenaswrap {
    margin-top: 64px;
}

.essb-mkt-arenashead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.essb-mkt-arenastitle {
    margin: 0;
    font-size: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}

.essb-mkt-arenaslight {
    font-weight: 300;
    font-family: var(--font-heading);
    color: #111;
}

.essb-mkt-arenasbold {
    font-weight: 400 !important;
    color: #111;
    padding-inline: 10px;
    font-family: var(--font-heading);
}

.essb-mkt-arenaslight-desc {
    color: #a2a2a2;
    font-size: 18px;
}

.essb-mkt-nav {
    display: flex;
    gap: 14px;
}

.essb-mkt-navbtn {
    width: 44px;
    height: 44px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #111;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.12s ease, background 0.12s ease;
}

.essb-mkt-navbtn:hover {
    background: #e6e6e6;
    transform: translateY(-1px);
}

.essb-mkt-viewport {
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100%;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.essb-mkt-viewport::-webkit-scrollbar {
    display: none;
}

.essb-mkt-track {
    display: flex;
    gap: 26px;
    will-change: scroll-position;
}

.essb-mkt-arena {
    flex: 0 0 auto;
    width: 360px;
    border: 1px solid #e4e4e4;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.essb-mkt-arenaimg {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.essb-mkt-arenaimg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.essb-mkt-arena:hover .essb-mkt-arenaimg img {
    transform: scale(1.08);
}

.essb-mkt-seeall {
    display: block;
    margin-top: 24px;
    text-align: right;
    font-size: 15px;
    font-weight: 600;
    color: #00296F;
    text-decoration: underline;
    letter-spacing: 0.3px;
}

.essb-mkt-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e53935;
    color: #fff;
    font-size: 14px;
    padding: 8px 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.essb-mkt-arenameta {
    background: #f5f5f5;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.essb-mkt-arenaname {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 300;
}

.essb-mkt-arenaloc {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 15px;
    color: #222;
    margin-bottom: 16px;
}

.essb-mkt-arenabtn {
    display: flex;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    border: 1px solid #111;
    text-decoration: none;
    text-transform: uppercase;
    color: #111;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.4px;
    background: transparent;
    transition: background 0.8s, color 0.4s;
}

.essb-mkt-arenabtn:hover {
    background: #111;
    color: #fff;
}

.essb-mkt-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.essb-mkt-ctaBtn {
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.essb-mkt-ctaBtn:hover {
    filter: brightness(0.92);
}

@media (max-width: 1100px) {
    .essb-mkt-title {
        font-size: 44px;
    }

    .essb-mkt-agegrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .essb-mkt-arenastitle {
        font-size: 32px;
    }

    .essb-mkt-arena {
        width: 330px;
    }
}

@media (max-width: 720px) {
    .essb-mkt-container {
        width: min(1180px, calc(100% - 26px));
    }

    .essb-mkt-title {
        font-size: 34px;
    }

    .essb-mkt-copy {
        font-size: 16px;
    }

    .essb-mkt-subtitle {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .essb-mkt-agegrid {
        grid-template-columns: 1fr;
    }

    .essb-mkt-arenashead {
        align-items: flex-start;
    }

    .essb-mkt-navbtn {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .essb-mkt-track {
        gap: 16px;
    }

    .essb-mkt-arena {
        width: 78vw;
        max-width: 360px;
    }

    .essb-mkt-arenaname {
        font-size: 26px;
    }
}

/* ---------- OUR PROGRAMS PAGE ---------- */
.essb-programs-section {
    padding: 50px 0 70px;
    background: #fff;
    color: #111;
    margin-top: 80px;
}

.essb-programs-container {
    width: min(1300px, calc(100% - 44px));
    margin: 0 auto;
}

.essb-programs-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 10px;
}

.essb-programs-bcLink {
    color: #8a8a8a;
    text-decoration: none;
}

.essb-programs-bcLink:hover {
    text-decoration: underline;
}

.essb-programs-bcSep {
    color: #b0b0b0;
}

.essb-programs-bcCurrent {
    color: #111;
}

.essb-programs-title {
    text-align: center;
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 0.2px;
    margin: 0 0 26px;
}

.essb-programs-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 28px;
}

.essb-programs-pyramid {
    width: min(420px, 92%);
    height: auto;
    display: block;
    margin: 0 auto;
}

.essb-programs-levels {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.essb-programs-level {
    background: #f1f1f1;
    padding: 18px 20px;
}

.essb-programs-levelTitle {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 300;
}

.essb-programs-levelText {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #2a2a2a;
    max-width: 980px;
}

.essb-programs-note {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #5a5a5a;
}

@media (max-width: 768px) {
    .essb-programs-container {
        width: min(1100px, calc(100% - 24px));
    }

    .essb-programs-title {
        font-size: 34px;
    }

    .essb-programs-pyramid {
        width: min(300px, 90%);
    }

    .essb-programs-level {
        padding: 16px 16px;
    }

    .essb-programs-levelTitle {
        font-size: 18px;
    }

    .essb-programs-levelText {
        font-size: 13.5px;
    }
}

/* ---------- OUR PACKAGES PAGE ---------- */
.essb-packages-section {
    padding: 52px 0 70px;
    background: #fff;
    color: #111;
    margin-top: 80px;
}

.essb-packages-container {
    width: min(1300px, calc(100% - 44px));
    margin: 0 auto;
}

.essb-packages-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 10px;
}

.essb-packages-bcLink {
    color: #8a8a8a;
    text-decoration: none;
}

.essb-packages-bcLink:hover {
    text-decoration: underline;
}

.essb-packages-bcSep {
    color: #bdbdbd;
}

.essb-packages-bcCurrent {
    color: #111;
}

.essb-packages-title {
    text-align: center;
    font-size: 52px;
    font-weight: 300;
    margin: 0 0 34px;
    letter-spacing: 0.2px;
}

.essb-packages-grid-box {
    background-color: #FAFAFA;
    border: 1px solid #ededed;
    padding: 20px;
}

/* Grid like screenshot */
.essb-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 26px;
}

/* Card style like screenshot */
.essb-packages-card {
    border: 1px solid #e9e9e9;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    /* more like screenshot */
}

/* top section has divider line */
.essb-packages-cardTop {
    position: relative;
    padding: 28px 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    /* pushes priceRow to bottom */
    border-bottom: 1px solid #ededed;
    min-height: 185px;
}

.essb-packages-star {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 22px;
    height: 22px;
    pointer-events: none;
}

.essb-packages-star img {
    width: 100%;
    height: 100%;
    display: block;
}

.essb-packages-monthNum {
    font-size: 84px;
    font-weight: 700;
    line-height: 1;
}

.essb-packages-monthLbl {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Simple bottom-to-top gradient text */
.essb-packages-monthNum,
.essb-packages-monthLbl {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* GOLD */
.essb-packages-monthNum--gold,
.essb-packages-monthLbl--gold {
    background-image: linear-gradient(to top, #b07a14 0%, #f0c35a 100%);
}

/* GREEN */
.essb-packages-monthNum--green,
.essb-packages-monthLbl--green {
    background-image: linear-gradient(to top, #0f7b62 0%, #33e0b5 100%);
}

/* PURPLE */
.essb-packages-monthNum--purple,
.essb-packages-monthLbl--purple {
    background-image: linear-gradient(to top, #4a3aa8 0%, #a59cff 100%);
}

/* GRAY */
.essb-packages-monthNum--gray,
.essb-packages-monthLbl--gray {
    background-image: linear-gradient(to top, #6b7280 0%, #d1d5db 100%);
}

/* Blue */
.essb-packages-monthNum--blue,
.essb-packages-monthLbl--blue {
    background-image: linear-gradient(to top, #1e40af 0%, #60a5fa 100%);
}

/* Fallback if gradient text not supported */
@supports not (-webkit-background-clip: text) {

    .essb-packages-monthNum--gold,
    .essb-packages-monthLbl--gold {
        color: #f0c35a;
    }

    .essb-packages-monthNum--green,
    .essb-packages-monthLbl--green {
        color: #33e0b5;
    }

    .essb-packages-monthNum--purple,
    .essb-packages-monthLbl--purple {
        color: #a59cff;
    }

    .essb-packages-monthNum--gray,
    .essb-packages-monthLbl--gray {
        color: #9aa0a6;
    }

    .essb-packages-monthNum--blue,
    .essb-packages-monthLbl--blue {
        color: #2f6bff;
    }
}

/* bottom strip like screenshot (white, clean, center) */
.essb-packages-priceRow {
    background: #fff;
    /* screenshot is not grey */
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essb-packages-price {
    font-size: 26px;
    font-weight: 600;
    color: #111;
}

.essb-packages-priceSub {
    font-size: 0.9em;
    opacity: 0.85;
    font-weight: 500;
}

/* Includes box */
.essb-packages-box {
    margin-top: 18px;
}

.essb-packages-boxTitle {
    margin: 0 0 14px;
    font-size: 36px;
    /* closer to screenshot */
    font-weight: 300;
    letter-spacing: 0.2px;
}

.essb-packages-list {
    margin: 0;
    padding-left: 18px;
    color: #222;
    line-height: 1.9;
    font-size: 18px;
    /* closer to screenshot */
}

/* =========================
   Responsive (like screenshot)
   ========================= */

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .essb-packages-grid-box {
        padding: 10px;
    }

    .essb-packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .essb-packages-monthNum {
        font-size: 76px;
    }

    .essb-packages-monthLbl {
        font-size: 20px;
    }
}

/* Mobile: STILL 2 columns (2x2 grid like screenshot) */
@media (max-width: 560px) {
    .essb-packages-grid-box {
        padding: 10px;
    }

    .essb-packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .essb-packages-card {
        min-height: 230px;
    }

    .essb-packages-cardTop {
        min-height: 160px;
        padding: 22px 14px 18px;
        gap: 8px;
    }

    .essb-packages-monthNum {
        font-size: 62px;
    }

    .essb-packages-monthLbl {
        font-size: 16px;
        letter-spacing: 0.8px;
    }

    .essb-packages-price {
        font-size: 20px;
    }

    .essb-packages-boxTitle {
        font-size: 32px;
    }

    .essb-packages-list {
        font-size: 16px;
    }
}

/* Very small phones: 1 column (optional safety) */
@media (max-width: 375px) {
    .essb-packages-grid-box {
        padding: 10px;
    }

    .essb-packages-grid {
        grid-template-columns: 1fr;
    }
}

/* Make the single PT card take full width inside its column */
.essb-packages-grid--single {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

/* Optional: keep both sides same "top alignment" feel */
@media (min-width: 992px) {
    .essb-packages-grid-box .essb-packages-card {
        height: 100%;
    }
}

/* Your blue theme (if not already) */
.essb-packages-monthNum--blue,
.essb-packages-monthLbl--blue {
    color: #2f6bff;
}


/* ---------- HOME PAGE ---------- */
.essb-home-hero {
    margin-top: 0;
}

/* Hero wrapper */
.essb-home-hero-wrap {
    position: relative;
    width: 100%;
    min-height: 850px;
    overflow: hidden;
}

/* Background video/image */
.essb-home-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

/* Slight dark overlay to improve contrast */
.essb-home-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
}

/* Bottom white fade */
.essb-home-hero-fade {
    position: absolute; 
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 90%);
    z-index: 2;
    pointer-events: none;
}

/* Center content – FIXED */
.essb-home-hero-content {
    position: absolute;
    inset: 0;
    /* fill entire hero */
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* TRUE vertical centering */
    text-align: center;
    padding: 0 18px;
}

/* Title */
.essb-home-hero-title {
    margin: 0 0 18px;
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.05;
    font-size: clamp(40px, 6vw, 88px);
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

/* CTA button */
.essb-home-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 26px;
    background: #fff;
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.25);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.essb-home-hero-btn:hover {
    transform: translateY(-1px);
}

.essb-home-hero-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
}

.essb-home-hero-btn:active {
    transform: translateY(0px);
}

/* =========================
   Responsive tweaks
   ========================= */

@media (max-width: 900px) {
    .essb-home-hero {
        margin-top: 0;
    }

    .essb-home-hero-topbar {
        height: 80px;
    }

    .essb-home-hero-wrap,
    .essb-home-hero-content {
        min-height: 820px;
        margin-top: -80px;
    }

    .essb-home-hero-fade {
        height: 140px;
    }
}

@media (max-width: 560px) {
    .essb-home-hero-topbar {
        height: 64px;
    }

    .essb-home-hero-wrap,
    .essb-home-hero-content {
        min-height: 90vh;
        margin-top: -70px;
    }

    .essb-home-hero-btn {
        height: 42px;
        padding: 0 20px;
        font-size: 12px;
    }
}

.essb-home-info {
    width: 100%;
    background: #fff;
    padding: 54px 0 70px;
}

.essb-home-info-container {
    width: min(1300px, calc(100%));
    margin: 0 auto;
}

.essb-home-info-block {
    width: 100%;
}

/* =========================
   TOP: PROGRAMS & TRAININGS
   ========================= */
.essb-home-info-title {
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 32px;
    color: #111;
}

.essb-home-info-programs-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 34px;
    align-items: center;
}

.essb-home-info-pyramid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.essb-home-info-pyramid-img {
    width: min(320px, 100%);
    height: auto;
    display: block;
}

.essb-home-info-agegrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.essb-home-info-agecard:last-child {
    grid-column: 1 / -1;
}

.essb-home-info-agecard {
    border: 2px solid #e6e6e6;
    background: #fff;
    padding: 18px 18px 16px;
    min-height: 112px;
}

.essb-home-info-agehead {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    color: #111;
    margin-bottom: 10px;
}

.essb-home-info-agesub {
    font-size: 15px;
    color: #222;
    line-height: 1.5;
}

/* =========================
   BOTTOM: OUR PACKAGES
   ========================= */
.essb-home-info-packages {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.essb-home-info-packtitle {
    margin: 0 0 14px;
    font-size: 32px;
    line-height: 1;
    font-weight: 300;
    text-transform: uppercase;
    color: #111;
}

.essb-home-info-packdesc {
    margin: 0 0 32px;
    max-width: 560px;
    font-size: 18px;
    line-height: 1.65;
    color: #222;
}

.essb-home-packflags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 36px;
}

.essb-home-packflags img {
    width: 100%;
    height: auto;
    display: block;
}

.essb-home-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 20px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid #111;
    transition: transform .12s ease, opacity .12s ease;
}

.essb-home-info-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.essb-home-info-btn:active {
    transform: translateY(0px);
}


/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px) {
    .essb-home-info-programs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .essb-home-info-agegrid {
        grid-template-columns: 1fr;
    }

    .essb-home-info-packdesc {
        max-width: 100%;
        font-size: 15px;
    }

    .essb-home-info-btn {
        font-size: 11px;
    }
}

@media (max-width: 520px) {
    .essb-home-info-container {
        width: min(1180px, calc(100% - 28px));
    }

    .essb-home-info-agehead {
        font-size: 24px;
    }

    .essb-home-packflags {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.essb-home-desc {
    width: 100%;
    background: #fff;
}

.essb-home-desc-container {
    width: min(1300px, calc(100%));
    margin: 0 auto;
    padding: 56px 0 52px;
}

.essb-home-desc-container--notop {
    padding-top: 0;
}

/* shared title */
.essb-home-desc-title {
    margin: 0 0 18px;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 32px;
    color: #111;
}
 

/* =========================
   OUR SERVICES (3 cards)
   ========================= */
.essb-home-desc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.essb-home-desc-scard {
    position: relative;
    border: 2px solid #e5e5e5;
    background: #fff;
    height: 170px;
    overflow: hidden;
    display: flex;
}

.essb-home-desc-scard-body {
    padding: 25px;
    width: 58%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.essb-home-desc-scard-h {
    margin: 0;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
    color: #111;
}

.essb-home-desc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: max-content;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    border: 1px solid transparent;
}

.essb-home-desc-btn:hover {
    background: #fff;
    color: #111;
    border-color: #111;
    transform: scale(1.05);
}

.essb-home-desc-scard:hover .essb-home-desc-scard-shape img {
    transform: scale(1.15);
}

.essb-home-desc-scard-shape {
    position: absolute;
    right: -44px;
    top: -24px;
    width: 185px;
    height: 165px;
    transform: rotate(10deg);
    pointer-events: none;
}

.essb-home-desc-scard-shape img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================
   TESTIMONIALS CAROUSEL
   ========================= */
.essb-home-desc-testimonials { 
    overflow: hidden;
}

.essb-home-desc-trow {
    display: flex;
    gap: 22px;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.essb-home-desc-trow::-webkit-scrollbar {
    display: none;
}

/* CARD BASE */
.essb-home-desc-tcard {
    flex: 0 0 auto;
    width: 360px;
    height: 400px;
    background: #f6f6f6;
    display: flex;
    flex-direction: column;
}

/* TEXT CARD */
.essb-home-desc-tcard--text {
    padding: 22px 22px 18px;
}

/* VIDEO CARD */
.essb-home-desc-tcard--video {
    background: #1a1a1a;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* TEXT */
.essb-home-desc-ttext {
    font-size: 15px;
    line-height: 1.65;
    color: #333;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    line-clamp: 10;
    -webkit-box-orient: vertical;
    padding-bottom: 16px;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 14px;
}

/* META */
.essb-home-desc-tmeta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

/* AVATAR */
.essb-home-desc-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    background: #ddd;
}

.essb-home-desc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* NAME */
.essb-home-desc-person-name {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.essb-home-desc-person-sub {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

/* INLINE VIDEO PLAYER */
.essb-home-desc-tvideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.essb-home-desc-toverlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.essb-home-desc-tcard--video:hover .essb-home-desc-toverlay {
    background: rgba(0, 0, 0, 0.28);
}

.essb-home-desc-tvtitle {
    position: absolute;
    left: 24px;
    bottom: 20px;
    color: #fff;
    font-size: 25px;
    font-family: var(--font-heading);
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.essb-home-desc-tcard--video.is-playing .essb-home-desc-tvtitle {
    display: none;
}

.essb-home-desc-tplay {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s;
}

.essb-home-desc-tplay:hover {
    background: rgba(255, 255, 255, 0.35);
}

.essb-home-desc-tplay img {
    width: 14px;
    height: 14px;
}

@media (max-width: 640px) {
    .essb-home-desc-testimonials.essb-home-desc-container {
        padding-top: 100px; 
    }

    .essb-home-desc-tcard {
        width: 260px;
        height: 350px;
    }

    .essb-home-desc-tcard--video {
        height: 350px;
    }

    .essb-home-desc-ttext {
        flex: 1;
    font-size: 12px;
        -webkit-line-clamp: 7;
        line-clamp: 7;
    }

    .essb-home-desc-tmeta {
        margin-top: 0px;
    }
}

/* =========================
   BIG CTA STRIP
   ========================= */
.essb-home-desc-cta {
    width: 100%;
    padding: 220px 0;
    margin-top: 68px;
    position: relative;
    overflow: hidden;
}

.essb-home-desc-cta-bg {
    position: absolute;
    inset: -25%;
    background-image: url('../img/highlight-cta-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.essb-home-desc-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    pointer-events: none;
}

.essb-home-desc-cta-inner {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.essb-home-desc-cta-logo {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 18px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.essb-home-desc-cta-logo:hover {
    transform: scale(1.05);
}

.essb-home-desc-cta-title {
    margin: 0 0 10px;
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    transition: text-shadow 0.4s ease;
    cursor: default;
}

.essb-home-desc-cta-title:hover {
    text-shadow: 0 0 18px rgba(255,255,255,0.95), 0 0 45px rgba(255,255,255,0.55), 0 0 80px rgba(255,255,255,0.25);
}

.essb-home-desc-cta-sub {
    margin: 0 0 22px;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    transition: text-shadow 0.4s ease;
    cursor: default;
}

.essb-home-desc-cta-sub:hover {
    text-shadow: 0 0 18px rgba(255,255,255,0.95), 0 0 45px rgba(255,255,255,0.55), 0 0 80px rgba(255,255,255,0.25);
}

.essb-home-desc-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 36px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid #fff;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.essb-home-desc-cta-btn:hover {
    background: #fff;
    color: #111;
    transform: scale(1.04);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px) {
    .essb-home-desc-services-grid {
        grid-template-columns: 1fr;
    }

    .essb-home-desc-scard {
        min-height: 148px;
        height: auto;
    }

    .essb-home-desc-trow {
        grid-template-columns: 1fr;
    }

    .essb-home-desc-scrollbar {
        display: none;
    }

    .essb-home-desc-cta {
        padding: 160px 0;
    }

    .essb-home-desc-cta-title {
        font-size: 38px;
    }
}

@media (max-width: 520px) {
    .essb-home-desc-container {
        width: min(1180px, calc(100% - 28px));
    }

    .essb-home-desc-scard-body {
        width: 72%;
        padding: 20px;
    }

    .essb-home-desc-scard-h {
        font-size: 20px;
    }
.essb-home-desc-cta-logo {
    width: 120px; 
}
    .essb-home-desc-cta-title {
    font-size: 26px !important;
    }
.essb-home-desc-cta-sub { 
    font-size: 16px; 
}
.essb-home-desc-cta-btn { 
    height: 40px;
    padding: 0 20px; 
    font-size: 12px; 
}
}

.essb-home-blogs { 
    padding: 80px 0;
}

.essb-home-blogs-wrap {
    width: min(1300px, calc(100%));
    margin: 0 auto;
}

.essb-home-blogs-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.essb-home-blogs-top .essb-home-desc-title {
    text-align: left;
    margin: 0;
    font-size: 32px !important;
    flex: 1;
    min-width: 0;
}

.essb-home-blogs-title {
    margin: 0;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #111;
    text-transform: uppercase;
}

.essb-home-blogs-nav {
    display: inline-flex;
    gap: 14px;
}

.essb-home-blogs-navbtn {
    width: 44px;
    height: 44px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #111;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 26px;
    line-height: 1;
    transition: transform 0.12s ease, background 0.12s ease;
}

.essb-home-blogs-navbtn:hover {
    background: #e6e6e6; 
    transform: translateY(-1px);
}

.essb-home-blogs-row {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.essb-home-blogs-row {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.essb-home-blogs-row::-webkit-scrollbar {
    display: none;
}

/* BLOG CARD */
.essb-home-blogs-card {
    flex: 0 0 auto;
    width: calc((100% - 44px) / 2.5);
    border: 1px solid #e4e4e4;
    background: #fff;
    display: grid;
    grid-template-rows: 260px 1fr;
}

.essb-home-blogs-img { 
    overflow: hidden;
}

.essb-home-blogs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.essb-home-blogs-card:hover .essb-home-blogs-img img {
    transform: scale(1.08);
}

.essb-home-blogs-body { 
    padding: 14px 14px 14px;
    display: flex;
    flex-direction: column;
}

.essb-home-blogs-meta {
    font-size: 12px;
    color: #222;
    margin-bottom: 6px;
}

.essb-home-blogs-h {
    font-size: 24px;
    font-weight: 300;
    font-family: var(--font-heading);
    line-height: 1.2;
    margin: 0 0 8px;
    color: #111;
    text-decoration: none;
    display: block;
}

.essb-home-blogs-h:hover {
    color: #3b3b3b; 
}

.essb-home-blogs-desc {
    font-size: 13px;
    color: #222;
    line-height: 1.5;
    margin-bottom: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.essb-home-blogs-btn {
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid #e4e4e4;
    background: transparent;
    color: #111;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
    margin-top: auto;
}

.essb-home-blogs-btn:hover {
    background: #000;
    color: #fff;
}

/* VIDEO CARD (WIDE) */
.essb-home-blogs-video {
    flex: 0 0 auto;
    width: calc((100% - 44px) / 2.5);
    min-height: 300px;
    border: 1px solid #e4e4e4;
    background: #111;
    position: relative;
    overflow: hidden;
}

.essb-home-blogs-videoLink {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.essb-home-blogs-videoTitle {
    position: absolute;
    left: 22px;
    bottom: 52px;
    font-size: 26px;
    font-weight: 300;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.85);
    right: 22px;
}

.essb-home-blogs-play {
    position: absolute;
    right: 56px;
    bottom: 44px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    display: grid;
    place-items: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.essb-home-blogs-play:hover {
    background: rgba(0, 0, 0, 0.7);
}

.essb-home-blogs-play img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

/* Inline video player */
.essb-home-blogs-videoplayer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* YouTube thumbnail (lite embed) */
.essb-home-blogs-ytthumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* YouTube iframe (loaded on click) */
.essb-home-blogs-ytframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.essb-home-blogs-videooverlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.essb-home-blogs-video:hover .essb-home-blogs-videooverlay {
    background: rgba(0, 0, 0, 0.28);
}

.essb-home-blogs-video.is-playing .essb-home-blogs-videoTitle {
    display: none;
}

/* Drag cursor */
.essb-home-blogs-row {
    cursor: grab;
}

.essb-home-blogs-row.is-dragging {
    cursor: grabbing;
    user-select: none;
}
.essb-home-desc-title--spaced {
        margin-top: 60px;
    }
/* RESPONSIVE */
@media (max-width: 980px) {
    .essb-home-blogs-wrap {
        width: min(1180px, calc(100% - 28px));
    }

    .essb-home-blogs-card {
        grid-template-rows: 180px 1fr;
    }

    .essb-home-blogs-h {
        font-size: 20px;
    }

    .essb-home-blogs-video {
        min-height: 260px;
    }

    .essb-home-blogs-videoTitle {
        font-size: 22px;
        left: 16px;
        bottom: 18px;
        right: 16px;
    }

    .essb-home-blogs-play {
        right: 18px;
        bottom: 18px;
    }
}

@media (max-width: 768px) {
    .essb-home-blogs-card {
        width: calc(100% - 44px);
        grid-template-rows: 200px 1fr;
    }

    .essb-home-blogs-video {
        width: calc(100% - 44px);
        min-height: 280px;
    }

    .essb-home-desc-title--spaced {
        margin-top: 0px;
    }

    .essb-home-blogs-nav {
        flex-shrink: 0;
    }

    /* mobile: center title, full-width top bar */
    .essb-home-blogs-top {
        justify-content: center;
    }

    .essb-home-blogs-top .essb-home-desc-title {
        text-align: center;
    }

    /* bottom nav row */
    .essb-home-blogs-nav--mobile {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 18px;
    }
}

@media (max-width: 520px) {
    .essb-home-blogs-navbtn {
        width: 38px;
        height: 38px;
    }

    .essb-home-blogs-card {
        width: calc(100% - 44px);
        grid-template-rows: 180px 1fr;
    }

    .essb-home-blogs-h {
        font-size: 18px;
    }

    .essb-home-blogs-video {
        width: calc(100% - 44px);
        min-height: 240px;
    }

    .essb-home-blogs-videoTitle {
        font-size: 20px;
    }
}

.essb-faqs {
    background: #f5f5f5;
    padding: 80px 0 90px;
}

.essb-faqs-wrap {
    width: min(1300px, calc(100% - 72px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 60px;
    align-items: start;
}

/* Left column */
.essb-faqs-left {
    position: sticky;
    top: 40px;
}

.essb-faqs-heading {
    margin: 0 0 16px;
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.15;
    color: #111;
}

.essb-faqs-sub {
    margin: 0 0 24px;
    font-size: 16px;
    color: #777;
}

.essb-faqs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
    /* desktop: keep in left column */
    grid-column: 1;
}

.essb-faqs-btn:hover {
    background: #fff;
    border: 1px solid #111;
    transform: translateY(-2px);
    color: #111;
}

.essb-faqs-box {
    border: 1px solid #e2e2e2;
}

/* Each row */
.essb-faqs-item {
    border-top: 1px solid #e2e2e2;
    background: #f6f6f6;
}

.essb-faqs-item:first-child {
    border-top: 0;
}

/* When open -> white background to stand out from section */
.essb-faqs-item[open] {
    background: #fff;
}

/* Remove default marker */
.essb-faqs-item summary {
    list-style: none;
}

.essb-faqs-item summary::-webkit-details-marker {
    display: none;
}

/* Question row */
.essb-faqs-q {
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 40px;
    align-items: center;
    gap: 12px;
    padding: 22px 24px;
    font-size: 20px;
    font-weight: 500;
    color: #111;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

/* Answer text */
.essb-faqs-a {
    padding: 0 24px 22px;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.55;
    color: #838383;
    max-width: 1100px;
}

/* Chevron icon (CSS-drawn) */
.essb-faqs-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    justify-self: end;
    position: relative;
}

.essb-faqs-icon::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid #111;
    border-bottom: 3px solid #111;
    transform: rotate(45deg);
    /* down */
    transition: transform 0.16s ease;
}

/* open = up arrow */
.essb-faqs-item[open] .essb-faqs-icon::before {
    transform: rotate(-135deg);
}

/* Responsive */
@media (max-width: 900px) {
    .essb-faqs-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
        width: min(1180px, calc(100% - 28px));
    }

    .essb-faqs-left {
        position: static;
        text-align: center;
    }

    .essb-faqs-heading {
        margin-bottom: 8px;
    }

    .essb-faqs-sub {
        margin-bottom: 0;
    }

    .essb-faqs-btn {
        grid-column: 1;
        margin: 0 auto;
        display: flex;
    }

    .essb-faqs-q {
        font-size: 16px;
        font-weight: 300;
        padding: 18px 16px;
        grid-template-columns: 1fr 34px;
    }

    .essb-faqs-a {
        padding: 0 16px 18px;
        font-size: 15px;
    }

    .essb-faqs-icon {
        width: 28px;
        height: 28px;
    }
}
/* =========================
   Base (your existing)
========================= */
.essb-gallery-1__grid {
    display: grid;
    gap: 16px;
}

/* keep your current desktop grid rules exactly as you have them
   (columns + spans for small/wide/large etc.) */

/* Your existing box + img rules */
.essb-gallery-1__box {
    position: relative;
    overflow: hidden;
    /* optional */
}

.essb-gallery-1__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Keep play button centered */
.essb-gallery-1__play-btn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

/* =========================
   Mobile only (do NOT affect desktop)
   - Make items stack nicely
   - Let height be based on image ratio
========================= */
@media (max-width: 767px) {

    /* Switch to single column on mobile */
    .essb-gallery-1__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Remove desktop spans on mobile so nothing breaks */
    .essb-gallery-1__small,
    .essb-gallery-1__wide,
    .essb-gallery-1__large {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    /* IMPORTANT:
     On mobile, don't force boxes to match a grid row height.
     Use aspect-ratio so the height is consistent & responsive.
     You can tweak ratios if you want different feels.
  */
    .essb-gallery-1__box {
        height: auto;
        aspect-ratio: 4 / 3;
        /* default for all tiles */
    }

    /* Optional: make video tile a bit more "banner" style */
    .essb-gallery-1__video {
        aspect-ratio: 4 / 4;
    }

    /* Since box height is driven by aspect-ratio,
     image should fill it */
    .essb-gallery-1__img {
        height: 100%;
    }
}

/* =========================
   ESSB GALLERY 2 - Desktop layout
   (keeps your 2-column structure)
========================= */
.essb-gallery-2__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.essb-gallery-2__left,
.essb-gallery-2__right {
    display: grid;
    gap: 16px;
}

/* Right bottom split into 2 tiles */
.essb-gallery-2__right-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Boxes */
.essb-gallery-2__box {
    position: relative;
    overflow: hidden;
}

/* Make desktop heights consistent (feel free to tweak) */
.essb-gallery-2__left-top {
    min-height: 220px;
}

.essb-gallery-2__left-bottom {
    min-height: 220px;
}

.essb-gallery-2__right-top {
    min-height: 280px;
}

.essb-gallery-2__right-bottom-left {
    min-height: 200px;
}

.essb-gallery-2__right-bottom-right {
    min-height: 200px;
}

/* Images fill tiles */
.essb-gallery-2__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Play button centered */
.essb-gallery-2__play-btn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

/* =========================
   Mobile responsiveness
   - Do NOT change desktop grid
   - Stack into 1 column
   - Auto height using aspect-ratio
========================= */
@media (max-width: 767px) {

    .essb-gallery-2__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .essb-gallery-2__left,
    .essb-gallery-2__right {
        gap: 12px;
    }

    .essb-gallery-2__right-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Let tiles size naturally (no forced min-heights) */
    .essb-gallery-2__left-top,
    .essb-gallery-2__left-bottom,
    .essb-gallery-2__right-top,
    .essb-gallery-2__right-bottom-left,
    .essb-gallery-2__right-bottom-right {
        min-height: auto;
        height: auto;
        aspect-ratio: 4 / 3;
        /* consistent tile height on mobile */
    }

    /* Video tile can be wider */
    .essb-gallery-2__video {
        aspect-ratio: 4 / 4;
    }

    .essb-gallery-2__img {
        height: 100%;
    }
}

/* Hand/grab cursor on desktop */
#essbAchViewport {
    cursor: grab;
}

#essbAchViewport:active {
    cursor: grabbing;
}

/* Make drag feel clean */
#essbAchViewport,
#essbAchViewport * {
    user-select: none;
    -webkit-user-select: none;
}

/* Ensure the cursor is NOT a pointer over images */
#essbAchTrack .essb-ach-slide img {
    cursor: inherit !important;
    -webkit-user-drag: none;
    pointer-events: none;
    /* lets dragging work even when starting on the image */
}


/* Thumbnail styling (keeps same box) */
.essb-yt-thumb {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essb-yt-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .35), rgba(0, 0, 0, .10));
    pointer-events: none;
}

/* ✅ smaller button + centered */
.essb-yt-thumb .essb-about-play {
    position: relative;
    z-index: 2;

    width: 56px;
    /* reduced */
    height: 56px;
    /* reduced */
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(2px);
}

/* optional: slightly smaller triangle too */
.essb-yt-thumb .essb-about-play-triangle {
    display: block;
    width: 0;
    height: 0;
    border-left: 14px solid #fff;
    /* reduced */
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 3px;
}
/* =========================
   VIDEO MODAL
   ========================= */
.essb-vmodal-dialog {
    height: min(90vh, 820px);
    width: auto;
    max-width: none;
}

.essb-vmodal-content {
    background: #000;
    border: none;
    border-radius: 0;
    height: 100%;
    aspect-ratio: 9 / 16;
    position: relative;
    overflow: visible;
}

.essb-vmodal-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.essb-vmodal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.85;
    transition: opacity 0.15s;
    z-index: 10;
}

.essb-vmodal-close:hover {
    opacity: 1;
}
