:root {
    --bg: #050608;
    --bg-soft: #0a0c10;
    --panel: rgba(10, 12, 16, 0.78);
    --panel-solid: #111319;
    --line: rgba(255, 255, 255, 0.08);
    --text: #f4f3f1;
    --muted: #b6b9c2;
    --accent: #ff3131;
    --accent-strong: #ff4d2d;
    --accent-soft: rgba(255, 49, 49, 0.12);
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    --radius-lg: 28px;
    --radius-md: 20px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Barlow", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(255, 49, 49, 0.12), transparent 24%),
        radial-gradient(circle at left center, rgba(255, 49, 49, 0.08), transparent 26%),
        linear-gradient(180deg, #07080b 0%, #040507 100%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.site-shell {
    min-height: 100vh;
    position: relative;
    overflow: clip;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.section {
    padding: 2rem 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(4, 5, 7, 0.78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-mark {
    display: flex;
    align-items: center;
}

.brand-mark img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.site-nav {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-nav a {
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    color: #d8dbe1;
    font-weight: 500;
    /* border: 1px solid transparent; */
    transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    /* border-color: rgba(255, 49, 49, 0.35); */
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 220px;
    padding: 0.55rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 10, 14, 0.96);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.lang-switch button {
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 999px;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
}

.lang-switch .is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-height: 60px;
    padding: 0.95rem 1.7rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 18px 40px rgba(255, 49, 49, 0.22);
}

.btn-secondary {
    color: #fff;
    border-color: rgba(255, 91, 91, 0.58);
    background: rgba(0, 0, 0, 0.28);
}

.header-cta {
    min-width: 164px;
}

.hero-cta {
    min-width: 282px;
}

.btn-play {
    min-width: 198px;
    justify-content: flex-start;
    cursor: pointer;
}

.video-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.video-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.video-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 3, 5, 0.84);
    backdrop-filter: blur(8px);
}

.video-modal {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(14, 16, 20, 0.97), rgba(8, 10, 14, 0.98));
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.42);
    overflow: hidden;
}

.video-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-head h2 {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.video-close {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 1.55rem;
    cursor: pointer;
}

.video-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.video-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.play-icon {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
}

.play-icon-svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    transition: 0.25s ease;
}

.hero {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 2.5rem;
    background-image: var(--bta-hero-desktop, url("../images/hero-new.png"));
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 6, 8, 0.98) 0%,
        rgba(5, 6, 8, 0.92) 12%,
        rgba(5, 6, 8, 0.72) 24%,
        rgba(5, 6, 8, 0.38) 36%,
        rgba(5, 6, 8, 0.12) 46%,
        rgba(5, 6, 8, 0) 56%
    );
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 820px);
    gap: 1.5rem;
    align-items: center;
    min-height: 820px;
}

.hero-copy {
    padding: 3.55rem 0 2.4rem;
    max-width: 840px;
}

.eyebrow {
    display: none;
    margin: 0 0 1.35rem;
    color: #e8e9ed;
    letter-spacing: 0.52em;
    text-transform: uppercase;
    font-size: 0.92rem;
    font-weight: 500;
}

.hero h1,
.section-head h2,
.about-strip h2,
.site-footer h2 {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
    /* letter-spacing: 0.02em; */
}

.hero h1 {
    font-size: 6rem;
    max-width: 18ch;
    line-height: 0.9;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
}

.hero-line {
    display: block;
    white-space: nowrap;
}

.hero-accent {
    color: var(--accent);
}

.hero-message {
    margin-top: 1.55rem;
    padding-left: 1.55rem;
    border-left: 4px solid var(--accent);
}

.hero-lead {
    margin: 0 0 0.55rem;
    font-size: clamp(1.5rem, 1.8vw, 2rem);
    font-weight: 700;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.hero-lead span {
    color: var(--accent);
}

.hero-subtitle {
    margin: 0;
    font-size: 1.2rem;
    color: #f3c4b8;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr 1fr 1fr;
    gap: 1rem;
    margin-top: 2.7rem;
    max-width: 880px;
}

.stat-card,
.offer-card,
.quote-card,
.about-points article {
    background: linear-gradient(180deg, rgba(17, 19, 25, 0.92), rgba(10, 12, 16, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.05rem;
    padding: 1.3rem 1.2rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(2px);
}

.stat-icon,
.offer-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--accent);
    font-size: 1.6rem;
    background: var(--accent-soft);
    border: 1px solid rgba(255, 49, 49, 0.2);
}

.stat-icon {
    background: transparent;
    border: 0;
    padding: 0;
}

.stat-icon svg {
    width: 50px;
    height: 50px;
    overflow: visible;
}

.stat-icon svg,
.stat-icon svg * {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-fill {
    fill: var(--accent);
    stroke: none;
}

.stat-card strong {
    display: block;
    margin-bottom: 0.18rem;
    font-size: 1.28rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.stat-card span {
    color: var(--muted);
    display: block;
    font-size: 0.84rem;
    line-height: 1.35;
    font-weight: 500;
    white-space: nowrap;
}

.offer-showcase {
    margin-top: 1.45rem;
    padding-bottom: 0;
}

.offer-heading-wrap {
    position: relative;
    margin-bottom: 1.1rem;
}

.offer-heading-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-heading {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 0;
    padding-right: 1rem;
    background: #07080b;
    color: #f4f0ea;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    font-size: 0.86rem;
    font-weight: 700;
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.85rem;
}

.offer-mini-card {
    position: relative;
    min-height: 132px;
    padding: 1.25rem 0.8rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(19, 21, 27, 0.96), rgba(10, 12, 16, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    text-align: center;
}

.offer-mini-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
}

.offer-mini-card:focus-visible {
    outline: 2px solid rgba(255, 49, 49, 0.75);
    outline-offset: 2px;
}

.offer-mini-card::after {
    content: "";
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0;
    height: 4px;
    border-radius: 999px;
    background: transparent;
}

.offer-mini-card.is-active::after {
    background: linear-gradient(90deg, #ff3131, #ff4d2d);
}

.offer-mini-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
}

.offer-mini-icon svg {
    width: 52px;
    height: 52px;
}

.offer-mini-icon svg,
.offer-mini-icon svg * {
    fill: none;
    stroke: #f4f4f4;
}



.offer-mini-card h3 {
    margin: 0;
    font-size: clamp(0.78rem, 0.86vw, 0.94rem);
    line-height: 1.2;
    font-weight: 600;
    color: #f2f3f5;
    text-align: center;
    white-space: normal;
    overflow-wrap: normal;
}

.offer-mini-card:nth-child(-n + 4) .offer-mini-icon svg,
.offer-mini-card:nth-child(-n + 4) .offer-mini-icon svg * {
    fill: #f4f4f4;
    stroke: none;
}

.offer-mini-card.is-active .offer-mini-icon svg,
.offer-mini-card.is-active .offer-mini-icon svg * {
    stroke: var(--accent);
}

.offer-mini-card.is-active:nth-child(-n + 4) .offer-mini-icon svg,
.offer-mini-card.is-active:nth-child(-n + 4) .offer-mini-icon svg * {
    fill: var(--accent);
    stroke: none;
}

.offer-mini-card:nth-child(2) .offer-mini-icon svg,
.offer-mini-card:nth-child(3) .offer-mini-icon svg {
    width: 60px;
    height: 60px;
}






@media (max-width: 1180px) {
    .header-row {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: inline-block;
        justify-self: end;
    }

    .site-nav,
    .header-actions {
        display: none;
    }

    .site-nav.is-open {
        display: grid;
        grid-column: 1 / -1;
        justify-self: stretch;
        border-radius: 24px;
        padding: 1rem;
        margin-top: 0.5rem;
    }

    .site-nav.is-open a {
        text-align: center;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        display: flex;
        width: 100%;
    }

    .nav-caret {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
    }

    .header-actions.is-open {
        display: flex;
        grid-column: 1 / -1;
        justify-content: space-between;
    }

    .hero {
        background-position: 68% center;
    }

    .hero-grid {
        min-height: 720px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offer-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .hero {
        padding-top: 1.5rem;
        background-image: var(--bta-hero-mobile, url("../images/hero-mobile-new.png"));
        background-size: contain;
        background-position: center top;
    }

    .about-page .hero {
        background-image: var(--bta-about-hero, url("../images/hero-mobile-new.png"));
        background-size: contain;
        background-position: center top;
    }

    .hero-grid {
        min-height: 620px;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding-top: 1.6rem;
    }

    .brand-mark img {
        width: 80px;
        height: 80px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8.5vw, 3.4rem);
        max-width: 12ch;
    }

    .hero-line {
        white-space: normal;
    }

    .hero-message {
        padding-left: 1rem;
    }

    .hero-lead {
        font-size: clamp(1.2rem, 5vw, 1.55rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions,
    .header-actions.is-open {
        flex-direction: column;
        align-items: stretch;
    }

    .stats-grid,
    .offer-cards {
        grid-template-columns: 1fr;
    }
}

.about-page .hero {
    background-image: var(--bta-about-hero, url("../images/hero-new.png"));
    background-size: contain;
    background-position: center right;
}

.about-page .hero::before {
    background: linear-gradient(
        90deg,
        rgba(5, 6, 8, 0.98) 0%,
        rgba(5, 6, 8, 0.9) 18%,
        rgba(5, 6, 8, 0.58) 34%,
        rgba(5, 6, 8, 0.16) 48%,
        rgba(5, 6, 8, 0) 58%
    );
}

.about-kicker,
.section-kicker {
    margin: 0 0 1rem;
    color: #f2f0ea;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    font-size: 0.82rem;
    font-weight: 700;
}

.about-hero-title {
    font-size: clamp(3rem, 5vw, 5.1rem);
    max-width: 10.2ch;
}

.about-intro {
    margin-top: 1.5rem;
    padding-left: 1.3rem;
    border-left: 4px solid var(--accent);
    max-width: 38rem;
}

.about-intro p {
    margin: 0 0 0.8rem;
    color: #efefef;
    font-size: 1.12rem;
    line-height: 1.7;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-intro-strong {
    font-weight: 700;
}

.about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 690px;
}

.about-feature {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.about-feature-first {
    position: relative;
    background-image: url("../images/about-section1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-feature-first::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 6, 8, 0.76) 0%,
        rgba(5, 6, 8, 0.58) 24%,
        rgba(5, 6, 8, 0.32) 50%,
        rgba(5, 6, 8, 0.58) 100%
    );
    pointer-events: none;
}

.about-feature-first .container {
    position: relative;
    z-index: 1;
}

.about-split {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.about-split-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.about-feature-second {
    position: relative;
    background-image: url("../images/about-section1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-feature-second::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 6, 8, 0) 0%,
        rgba(5, 6, 8, 0.4) 50%,
        rgba(5, 6, 8, 0.36) 76%,
        rgba(5, 6, 8, 0.52) 100%
    );
    pointer-events: none;
}

.about-feature-second .container {
    position: relative;
    z-index: 1;
}

.about-copy h2 {
    margin: 0 0 1rem;
    font-family: "Teko", sans-serif;
    font-size: clamp(2.8rem, 4vw, 4.4rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.about-copy h2 span,
.about-copy p span {
    color: var(--accent);
}

.about-copy p {
    margin: 0 0 1rem;
    color: #f0f0f0;
    font-size: 1.08rem;
    line-height: 1.85;
}

.about-image {
    position: relative;
    min-height: 540px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(19, 21, 27, 0.96), rgba(10, 12, 16, 0.92));
}

.about-photo {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    display: block;
}

.about-image::after {
    content: "";
    position: absolute;
    right: 0;
    width: 34%;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.about-image::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 3px;
    height: 34%;
    background: linear-gradient(180deg, transparent, var(--accent));
}

.about-corner {
    position: absolute;
    pointer-events: none;
}

.about-corner-top-h {
    inset: 0 auto auto 0;
    width: 34%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.about-corner-top-v {
    inset: 0 auto auto 0;
    width: 3px;
    height: 34%;
    background: linear-gradient(180deg, var(--accent), transparent);
}

.about-image-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.48);
    font-size: 1rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 49, 49, 0.12), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 42%);
}

.about-image-first {
    background: linear-gradient(180deg, rgba(19, 21, 27, 0.96), rgba(10, 12, 16, 0.92));
}

.about-image-first .about-image-placeholder {
    background: transparent;
    color: transparent;
}

.about-image-second {
    background: linear-gradient(180deg, rgba(19, 21, 27, 0.96), rgba(10, 12, 16, 0.92));
}

.about-list {
    margin-top: 1.5rem;
}

.about-list-title {
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.about-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.about-list li {
    position: relative;
    padding-left: 1.5rem;
    color: #f0f0f0;
    font-weight: 500;
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.about-cta {
    margin-top: 1.75rem;
    min-width: 180px;
}

@media (max-width: 1180px) {
    .about-split,
    .about-split-reverse {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .about-page .hero {
        background-image: var(--bta-about-hero, url("../images/hero-mobile.webp"));
        background-size: cover;
        background-position: center top;
    }

    .about-page .hero::before {
        background: linear-gradient(
            90deg,
            rgba(5, 6, 8, 0.98) 0%,
            rgba(5, 6, 8, 0.92) 12%,
            rgba(5, 6, 8, 0.72) 24%,
            rgba(5, 6, 8, 0.38) 36%,
            rgba(5, 6, 8, 0.12) 46%,
            rgba(5, 6, 8, 0) 56%
        );
    }

    .about-hero-title {
        font-size: clamp(2.6rem, 10vw, 3.8rem);
        max-width: 10ch;
    }

    .about-intro {
        padding-left: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .about-image {
        min-height: 420px;
    }
}

.booking-page {
    background:
        radial-gradient(circle at top right, rgba(255, 49, 49, 0.12), transparent 24%),
        linear-gradient(180deg, #06070a 0%, #040507 100%);
}

.plans-page {
    background:
        radial-gradient(circle at top right, rgba(255, 49, 49, 0.12), transparent 24%),
        linear-gradient(180deg, #06070a 0%, #040507 100%);
}

.booking-showcase {
    position: relative;
    padding-top: 1.6rem;
    padding-bottom: 3rem;
    background-image: url("../images/hero-new.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.booking-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 7, 10, 0.72), rgba(6, 7, 10, 0.88)),
        radial-gradient(circle at right center, rgba(255, 49, 49, 0.08), transparent 28%);
    pointer-events: none;
}

.booking-shell {
    position: relative;
    z-index: 1;
}

.booking-head {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-head h1 {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 0.95;
    text-transform: capitalize;
}

.booking-head p {
    margin: 0.5rem 0 0;
    color: #dfdfdf;
    font-size: 1.25rem;
}

.booking-grid {
    display: block;
}

.booking-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.booking-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 86, 86, 0.48);
    background: linear-gradient(180deg, rgba(28, 30, 35, 0.98), rgba(16, 17, 21, 0.95));
    box-shadow: 0 0 0 1px rgba(255, 49, 49, 0.18), 0 18px 42px rgba(0, 0, 0, 0.34);
}

.booking-card::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff3131, #ff4d2d);
}

.booking-card-media {
    min-height: 138px;
    display: grid;
    place-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 49, 49, 0.14), transparent 20%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 45%),
        linear-gradient(180deg, rgba(27, 29, 34, 0.9), rgba(14, 15, 19, 0.96));
}

.booking-card-media img {
    width: 100%;
    height: 100%;
    min-height: 138px;
    object-fit: cover;
}

.booking-card-media span {
    padding: 1rem;
}

.booking-card-body {
    padding: 1rem 0.95rem 1.35rem;
}

.booking-card h2 {
    margin: 0 0 1rem;
    min-height: 3.2rem;
    font-family: "Teko", sans-serif;
    font-size: 1.7rem;
    line-height: 0.95;
    text-transform: uppercase;
}

.booking-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.95rem;
}

.booking-meta-time {
    text-align: center;
}

.booking-meta-time strong {
    display: block;
    font-size: 1.45rem;
    line-height: 1;
}

.booking-card-cta {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    margin-bottom: 0.65rem;
}

.booking-link {
    display: block;
    text-align: center;
    color: #d9d9d9;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.booking-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 920px;
    margin: 1.5rem auto 0;
}

.pricing-section {
    position: relative;
    padding-top: 2.2rem;
    padding-bottom: 4.5rem;
    background:
        radial-gradient(circle at top right, rgba(255, 49, 49, 0.08), transparent 24%),
        linear-gradient(180deg, #050608 0%, #040507 100%);
}

.pricing-head {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 2.4rem;
}

.pricing-head h1,
.pricing-head h2 {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-size: clamp(3.2rem, 5vw, 5.4rem);
    line-height: 0.94;
    text-transform: none;
}

.pricing-head p {
    margin: 0.6rem 0 0;
    color: #f0f0f0;
    font-size: clamp(1.15rem, 2vw, 1.85rem);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.pricing-card {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 530px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(6, 7, 10, 0.92);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.pricing-card-top {
    display: grid;
    justify-items: center;
    align-content: start;
    text-align: center;
    padding: 2.2rem 2rem 1.9rem;
}

.pricing-card h3 {
    margin: 0;
    font-size: 1.9rem;
    font-weight: 500;
}

.pricing-currency {
    margin-top: 0.7rem;
    color: #f5f5f5;
    font-size: 1.45rem;
    letter-spacing: 0.12em;
}

.pricing-amount {
    margin-top: 0.55rem;
    font-family: "Teko", sans-serif;
    font-size: clamp(4.5rem, 6vw, 6.7rem);
    line-height: 0.9;
    letter-spacing: 0.04em;
}

.pricing-cycle,
.pricing-validity {
    color: #ffffff;
    font-size: 1rem;
}

.pricing-cycle {
    margin-top: 1rem;
}

.pricing-validity {
    margin-top: 0.35rem;
}

.pricing-cta {
    width: 100%;
    min-width: 0;
    margin-top: 1.6rem;
}

.pricing-card-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.9rem 2rem 2.1rem;
    text-align: center;
}

.pricing-card-bottom p {
    margin: 0;
    color: #f5f5f5;
    font-size: 1.28rem;
}

.pricing-card-bottom p + p {
    margin-top: 1rem;
}

@media (max-width: 1180px) {
    .booking-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .booking-cards,
    .booking-stats {
        grid-template-columns: 1fr;
    }

    .booking-card h2 {
        min-height: 0;
    }

    .pricing-card {
        min-height: 0;
    }

    .pricing-card-top,
    .pricing-card-bottom {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }
}

.service-booking-page {
    background:
        radial-gradient(circle at top right, rgba(255, 49, 49, 0.12), transparent 24%),
        linear-gradient(180deg, #050608 0%, #040507 100%);
}

.service-scheduler {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 4.5rem;
    background:
        linear-gradient(180deg, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0.98)),
        url("../images/about-section1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 2.4rem;
    color: #f6f6f6;
    font-size: 1.02rem;
}

.service-back-link span:first-child {
    font-size: 1.5rem;
    line-height: 1;
}

.service-scheduler-head {
    max-width: 860px;
    margin-bottom: 2.25rem;
}

.service-eyebrow {
    margin: 0 0 0.8rem;
    color: #ff9d74;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.service-scheduler-head h1 {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 0.94;
}

.service-scheduler-head p:last-child {
    margin: 0.9rem 0 0;
    max-width: 720px;
    color: #e8e8e8;
    font-size: 1.3rem;
}

.service-scheduler-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: 1.4rem;
    align-items: start;
}

.service-panel {
    position: relative;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(10, 12, 16, 0.78);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
}

.service-panel::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff3131, rgba(255, 49, 49, 0));
    opacity: 0.95;
}

.service-panel h2 {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-size: 2.25rem;
    line-height: 0.95;
}

.service-panel-top,
.service-availability-head {
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-timezone {
    margin-top: 0.55rem;
    color: #ffb08b;
    font-size: 0.98rem;
}

.service-calendar-shell {
    display: grid;
    gap: 1rem;
}

.service-calendar-header {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.service-calendar-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.service-calendar-month {
    font-size: 1.45rem;
    font-weight: 600;
}

.service-calendar-weekdays,
.service-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
}

.service-calendar-weekdays span {
    color: #c88d60;
    text-align: center;
    font-size: 0.95rem;
}

.service-day,
.service-calendar-days .is-empty {
    min-height: 44px;
}

.service-day {
    border: 0;
    color: #fff;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-day:hover {
    background: rgba(255, 255, 255, 0.06);
}

.service-day.is-selected {
    color: #fff;
    background: linear-gradient(135deg, #ff3131, #ff4d2d);
}

.service-availability-head p {
    margin: 0;
}

.service-availability-title,
#serviceAvailabilityTitle {
    font-size: 1.22rem;
    font-weight: 600;
}

.service-availability-empty {
    margin-top: 0.45rem !important;
    color: #f0f0f0;
    font-size: 1.45rem;
    font-weight: 700;
}

.service-check-availability {
    width: 100%;
    min-width: 0;
    margin-top: 2rem;
}

.service-details-card {
    padding: 1.1rem 0 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0.9rem 0 1.2rem;
}

.service-details-card h3 {
    margin: 0 0 1rem;
    font-size: 1.38rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.service-details-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    color: #ffb08b;
    background: transparent;
    cursor: pointer;
}

.service-details-body {
    padding-top: 1rem;
}

.service-details-body p {
    margin: 0;
    color: #d5d8df;
    line-height: 1.7;
}

.service-details-list {
    margin: 1rem 0 0;
    padding-left: 1.15rem;
    color: #f4f4f4;
}

.service-details-list li + li {
    margin-top: 0.55rem;
}

.service-next-btn {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 0;
    color: #111;
    font-weight: 600;
    background: #a9a9a9;
    cursor: pointer;
    transition: background 0.2s ease;
}

.service-next-btn:hover {
    background: #bdbdbd;
}

.service-login-note {
    margin: 1rem 0 0;
    color: #d19a72;
    font-size: 0.98rem;
}

.service-login-note a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

@media (max-width: 1180px) {
    .service-scheduler-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .service-scheduler {
        padding-top: 1.2rem;
    }

    .service-panel {
        padding: 1.15rem;
        border-radius: 18px;
    }

    .service-panel h2 {
        font-size: 1.95rem;
    }

    .service-scheduler-head p:last-child {
        font-size: 1.08rem;
    }
}

.shop-page {
    background:
        radial-gradient(circle at top right, rgba(255, 49, 49, 0.14), transparent 22%),
        linear-gradient(180deg, #050608 0%, #040507 100%);
}

.shop-hero {
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-image: var(--bta-shop-hero-desktop, url("../images/hero-new.png"));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 760px) {
    .shop-hero {
        background-image: var(--bta-shop-hero-mobile, url("../images/hero-mobile-new.png"));
    }
}

.shop-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 6, 8, 0.92) 0%,
        rgba(5, 6, 8, 0.76) 36%,
        rgba(5, 6, 8, 0.46) 62%,
        rgba(5, 6, 8, 0.82) 100%
    );
    pointer-events: none;
}

.shop-hero-shell {
    position: relative;
    z-index: 1;
    min-height: 260px;
    display: flex;
    align-items: end;
}

.shop-hero-copy {
    max-width: 42rem;
}

.shop-hero-copy h1 {
    margin: 0 0 0.85rem;
    font-family: "Teko", sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.shop-hero-copy p:last-child {
    margin: 0;
    color: #e2e2e2;
    font-size: 1.08rem;
    line-height: 1.8;
}

.shop-section {
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 1.4rem;
    align-items: start;
}

.shop-filter-card,
.shop-main {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(15, 17, 21, 0.94), rgba(8, 10, 14, 0.96));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

.shop-filter-card {
    padding: 1.25rem;
}

.shop-filter-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

.shop-filter-head h2 {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
}

.shop-reset {
    border: 0;
    background: transparent;
    color: var(--accent);
    font-weight: 700;
    cursor: pointer;
}

.shop-filter-group + .shop-filter-group {
    margin-top: 1.3rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.shop-filter-group h3 {
    margin: 0 0 0.8rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shop-filter-note {
    margin: 0 0 0.8rem;
    color: #d3d3d3;
    font-size: 0.95rem;
}

.price-inputs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.price-inputs label span {
    display: block;
    margin-bottom: 0.35rem;
    color: #dbdbdb;
    font-size: 0.88rem;
}

.price-inputs input {
    width: 100%;
    min-height: 48px;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.shop-check-grid,
.shop-filter-group {
    display: grid;
    gap: 0.65rem;
}

.shop-filter-apply {
    margin-top: 0.75rem;
}

.shop-check {
    display: flex;
    gap: 0.65rem;
    align-items: start;
    color: #efefef;
    cursor: pointer;
}

.shop-check input {
    margin-top: 0.15rem;
    accent-color: var(--accent);
}

.shop-main {
    padding: 1.2rem;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

.shop-toolbar-main {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.shop-results {
    margin: 0;
    color: #e6e6e6;
    font-weight: 600;
}

.shop-filter-toggle {
    display: none;
    min-height: 52px;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.sort-dropdown {
    position: relative;
}

.sort-trigger {
    min-width: 220px;
    min-height: 52px;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    text-align: left;
    cursor: pointer;
}

.sort-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    min-width: 220px;
    padding: 0.55rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 10, 14, 0.98);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 50;
}

.sort-dropdown.is-open .sort-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-menu button {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: pointer;
}

.sort-menu button:hover,
.sort-menu a:hover,
.sort-menu button.is-active {
    background: rgba(255, 255, 255, 0.07);
}

.sort-menu a {
    display: block;
    padding: 0.8rem 0.95rem;
    color: #fff;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem 1.2rem;
}

.shop-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: transparent;
    cursor: pointer;
}

.shop-card-media {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding: 0;
    padding-top: 100%;
    background: transparent;
    min-height: 0;
}

.shop-card-media-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    color: #111;
    font-weight: 800;
    padding: 1rem;
    overflow: hidden;
}

.shop-card-media-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.22s ease;
}

.shop-card:hover .shop-card-media-inner img {
    transform: scale(1.08);
}

.shop-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.35rem 0;
}

.shop-card-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    color: #f4f4f4;
    line-height: 1.4;
    text-align: center;
}

.shop-card-price {
    margin: 0;
    color: #ff9f3d;
    font-size: 1.02rem;
    font-weight: 700;
    text-align: center;
}

.shop-card-divider {
    width: 28px;
    height: 2px;
    margin: 0.35rem auto 0.5rem;
    background: rgba(255, 255, 255, 0.9);
}

.shop-card-price-ar {
    margin: 0;
    color: #ff9f3d;
    font-size: 1.02rem;
    text-align: center;
}

.shop-card-link {
    color: inherit;
}

.shop-card:hover .shop-card-title {
    color: #fff;
}

.cart-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 52px;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    cursor: pointer;
}

.cart-trigger-count {
    display: inline-grid;
    place-items: center;
    min-width: 28px;
    height: 28px;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    font-size: 0.9rem;
    font-weight: 800;
}

.shop-card-actions .btn,
.product-add-cart {
    min-height: 50px;
    font-size: 0.96rem;
}

@media (max-width: 1180px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .shop-sidebar {
        display: none;
    }

    .shop-sidebar.is-open {
        display: block;
    }

    .shop-filter-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-toolbar-main {
        justify-content: space-between;
    }

    .sort-trigger {
        width: 100%;
        min-width: 0;
    }

    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .price-inputs {
        grid-template-columns: 1fr;
    }
}

.product-page {
    background:
        radial-gradient(circle at top right, rgba(255, 49, 49, 0.12), transparent 24%),
        linear-gradient(180deg, #050608 0%, #040507 100%);
}

.product-detail {
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    background-image:
        linear-gradient(180deg, rgba(5, 6, 8, 0.56), rgba(5, 6, 8, 0.72)),
        url("../images/about-section1.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.product-shell {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(10, 12, 16, 0.74), rgba(7, 8, 11, 0.84));
    backdrop-filter: blur(6px);
    padding: 1.3rem;
}

.product-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    color: #f0f0f0;
}

.product-breadcrumbs a {
    color: #f0f0f0;
}

.product-breadcrumbs span {
    color: #8d8d8d;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 2rem;
    align-items: start;
}

.product-media-frame {
    border: 1px solid rgba(255, 159, 61, 0.45);
    background: rgba(255, 255, 255, 0.98);
    min-height: 500px;
    overflow: hidden;
}

.product-media {
    min-height: 500px;
    display: grid;
    place-items: center;
    color: #111;
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    padding: 2rem;
}

.product-media img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: contain;
    transition: transform 0.18s ease, transform-origin 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
    .product-media-frame:hover .product-media img {
        transform: scale(1.08);
    }

    .woo-product-gallery.is-zooming .product-media img {
        transform: scale(1.45);
    }
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(72px, 84px));
    gap: 0.7rem;
    margin-top: 0.9rem;
}

.product-gallery-thumbs button {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.98);
    cursor: pointer;
    padding: 0.3rem;
}

.product-gallery-thumbs button.is-active {
    border-color: var(--accent);
}

.product-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-pagination {
    display: flex;
    justify-content: flex-end;
    gap: 0.7rem;
    align-items: center;
    margin-bottom: 1.4rem;
}

.product-pagination button {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.product-pagination a,
.product-pagination span {
    color: #fff;
    font-size: 1rem;
}

.product-info h1 {
    margin: 0 0 1rem;
    font-size: 2.4rem;
    font-weight: 500;
}

.product-price {
    margin: 0 0 1rem;
    color: #fff;
    font-size: 2rem;
}

.product-description {
    margin: 0 0 1.5rem;
    color: #dfdfdf;
    line-height: 1.8;
}

.product-qty-wrap label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.product-qty-wrap label span {
    color: var(--accent);
}

.product-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 1.8rem;
}

.product-qty-control .quantity {
    display: inline-flex;
}

form.cart .quantity {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    margin: 0 0 1rem;
}

.woocommerce-cart-form .quantity {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    margin: 0;
}

.product-qty-control button,
.product-qty-control input,
form.cart .quantity button,
form.cart .quantity input,
.woocommerce-cart-form .quantity button,
.woocommerce-cart-form .quantity input {
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
}

.product-variations-wrap form.cart .quantity button,
.wc-qty-step {
    cursor: pointer;
}

.product-variations-wrap form.cart .quantity button:hover,
.wc-qty-step:hover {
    background: rgba(255, 49, 49, 0.18);
}

.product-qty-control input {
    width: 56px;
}

form.cart .quantity input {
    width: 56px;
}

.woocommerce-cart-form .quantity input {
    width: 56px;
}

.product-add-cart {
    width: 100%;
    min-height: 58px;
    margin-bottom: 1.75rem;
}

.product-variations-wrap form.cart {
    margin-top: 1.25rem;
}

.product-variations-wrap .variations {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.product-variations-wrap .variations th,
.product-variations-wrap .variations td {
    display: block;
    padding: 0 0 0.75rem;
    text-align: left;
}

.product-variations-wrap select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: #11151b;
    color: #fff;
    padding: 0 0.9rem;
}

.product-variations-wrap select option {
    color: #111;
    background: #fff;
}

.product-variations-wrap label {
    color: #fff;
    font-weight: 700;
}

.product-variations-wrap .reset_variations {
    display: inline-block;
    margin-top: 0.4rem;
    color: var(--accent);
}

.product-variations-wrap .single_variation {
    margin-bottom: 1rem;
    color: #fff;
}

.product-variations-wrap .woocommerce-variation-add-to-cart,
.product-variations-wrap form.cart:not(.variations_form) {
    display: grid;
    gap: 0.85rem;
}

.product-variations-wrap .woocommerce-variation-price,
.product-variations-wrap .woocommerce-variation-availability {
    color: #fff;
    font-weight: 700;
}

.product-variations-wrap .single_add_to_cart_button,
.product-variations-wrap .button.single_add_to_cart_button {
    width: 100%;
    min-height: 58px;
    margin-bottom: 1.75rem;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 18px 40px rgba(255, 49, 49, 0.22);
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
}

.product-variations-wrap .single_add_to_cart_button.disabled,
.product-variations-wrap .single_add_to_cart_button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.product-share {
    display: flex;
    gap: 1rem;
}

.product-share a {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #fff;
}

.product-share svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.product-share a:nth-child(1) {
    color: #1877f2;
}

.product-share a:nth-child(2) {
    color: #e60023;
}

.product-share a:nth-child(3) {
    color: #25d366;
}

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

    .product-media-frame,
    .product-media {
        min-height: 420px;
    }
}

.contact-page {
    background:
        radial-gradient(circle at top right, rgba(255, 49, 49, 0.08), transparent 20%),
        linear-gradient(180deg, #040507 0%, #020304 100%);
}

.contact-hero {
    padding-top: 2.25rem;
    padding-bottom: 1rem;
}

.contact-hero-shell {
    max-width: 1100px;
    text-align: center;
}

.contact-kicker {
    margin: 0 0 1rem;
    font-family: "Teko", sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.9;
    text-transform: capitalize;
    text-align: center;
}

.contact-hero-shell h1 {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-size: clamp(2.7rem, 4.2vw, 4.1rem);
    line-height: 0.95;
    text-align: center;
    white-space: nowrap;
}

.contact-form-section {
    padding-top: 1.2rem;
    padding-bottom: 3rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    gap: 2.5rem;
    align-items: start;
}

.contact-copy {
    max-width: 650px;
}

.contact-lead {
    margin: 0 0 1.4rem;
    max-width: none;
    font-size: clamp(1.8rem, 2.2vw, 2.6rem);
    line-height: 1.12;
    color: #f7f4ef;
    white-space: nowrap;
}

.contact-copy p {
    margin: 0 0 1.35rem;
    color: #f0f0f0;
    font-size: 1.02rem;
    line-height: 1.9;
}

.contact-copy a {
    color: #fff;
}

.contact-info-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.8rem;
}

.contact-info-card {
    padding: 1.15rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(17, 19, 25, 0.92), rgba(10, 12, 16, 0.92));
}

.contact-info-card h2 {
    margin: 0 0 0.45rem;
    font-family: "Teko", sans-serif;
    font-size: 2rem;
    line-height: 0.95;
}

.contact-info-card p,
.contact-info-card a {
    margin: 0;
    color: #f0f0f0;
    font-size: 1rem;
}

.contact-form-shell {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(17, 19, 25, 0.92), rgba(10, 12, 16, 0.94));
    overflow: visible;
}

.contact-form {
    display: grid;
    gap: 1.15rem;
}

.contact-form label {
    display: grid;
    gap: 0.5rem;
}

.contact-form label span {
    color: #fff;
    font-family: "Teko", sans-serif;
    font-size: 2rem;
    line-height: 0.95;
}

.contact-name-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 1rem;
    border: 0;
    border-radius: 0 22px 22px 0;
    background: #f3f3f3;
    color: #111;
    font: inherit;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1.1rem;
}

.contact-code select {
    appearance: none;
}

.contact-code {
    position: relative;
}

.contact-code.is-enhanced select {
    display: none;
}

.country-code-control {
    position: relative;
}

.country-code-toggle {
    position: relative;
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 2rem 0.9rem 1rem;
    border: 0;
    border-radius: 0 22px 22px 0;
    background: #f3f3f3;
    color: #111;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.country-code-toggle::after {
    content: "";
    position: absolute;
    right: 0.9rem;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: translateY(-65%) rotate(45deg);
}

.country-code-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 16px 16px 0;
    background: #f3f3f3;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.country-code-control.is-open .country-code-menu {
    display: block;
}

.country-code-option {
    display: block;
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 0;
    background: transparent;
    color: #111;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.country-code-option:hover,
.country-code-option.is-selected {
    background: rgba(255, 49, 49, 0.12);
}

.contact-submit {
    justify-self: center;
    min-width: 200px;
    min-height: 58px;
    border: 2px solid #fff;
    box-shadow: none;
}

.contact-email {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    align-items: center;
    margin: 0.4rem 0 0;
    font-size: 1.1rem;
}

.contact-email a {
    color: #fff;
}

.contact-email-icon {
    color: #d0d0d0;
}

.contact-terms {
    margin: 0;
    text-align: center;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.5;
}

@media (max-width: 760px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-lead {
        max-width: 100%;
        font-size: clamp(1.8rem, 8vw, 2.6rem);
        white-space: normal;
    }

    .contact-hero-shell h1 {
        white-space: normal;
    }

    .contact-row {
        grid-template-columns: 1fr;
    }

    .contact-name-row {
        grid-template-columns: 1fr;
    }

    .contact-form label span {
        font-size: 1.6rem;
    }
}

/* WooCommerce Notices */
.woocommerce-notices-wrapper {
    position: relative;
    z-index: 90;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    width: min(560px, calc(100vw - 32px));
    margin: 1rem auto;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 56, 56, 0.58);
    border-left: 4px solid var(--accent);
    border-radius: 18px;
    background: rgba(10, 12, 16, 0.96);
    color: #fff;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.44), 0 14px 42px rgba(255, 49, 49, 0.16);
    list-style: none;
}

.woocommerce-message {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 99999;
    transform: translate(-50%, -50%);
}

.woocommerce-message.is-hiding {
    opacity: 0;
    transform: translate(-50%, -48%);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.woocommerce-message .button,
.woocommerce-message a,
.woocommerce-info .button,
.woocommerce-info a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin: 0.6rem 0.8rem 0 0;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff3434, #ff4a38);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.woocommerce-error {
    border-color: rgba(255, 120, 120, 0.6);
    background: rgba(32, 8, 10, 0.96);
}

/* WooCommerce Buttons */
.bta-commerce-button,
.bta-cart-page .button,
.bta-cart-page button.button,
.bta-cart-page .checkout-button,
.bta-checkout-page .button,
.bta-checkout-page button.button,
.bta-checkout-page #place_order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.85rem 1.45rem;
    border: 1px solid rgba(255, 70, 70, 0.9);
    border-radius: 999px;
    background: linear-gradient(135deg, #ff3434, #ff4a38);
    color: #fff;
    font: inherit;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(255, 56, 56, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bta-commerce-button:hover,
.bta-cart-page .button:hover,
.bta-cart-page .checkout-button:hover,
.bta-checkout-page .button:hover,
.bta-checkout-page #place_order:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ff4a4a, #ff5a44);
    color: #fff;
    box-shadow: 0 20px 52px rgba(255, 56, 56, 0.34);
}

.bta-commerce-button-small {
    min-height: 50px;
    padding-inline: 1.25rem;
}

.bta-commerce-button-outline,
.bta-cart-page button[name="update_cart"] {
    background: rgba(255, 49, 49, 0.08);
    box-shadow: none;
}

.bta-cart-page button[disabled],
.bta-checkout-page button[disabled] {
    opacity: 0.52;
    cursor: not-allowed;
}

/* WooCommerce Form Fields */
.bta-cart-page input[type="text"],
.bta-checkout-page input[type="text"],
.bta-checkout-page input[type="email"],
.bta-checkout-page input[type="tel"],
.bta-checkout-page input[type="number"],
.bta-checkout-page input[type="password"],
.bta-checkout-page textarea,
.bta-checkout-page select,
.bta-checkout-page .woocommerce form .form-row input.input-text,
.bta-checkout-page .woocommerce form .form-row textarea {
    width: 100%;
    min-height: 52px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(15, 17, 22, 0.95);
    color: #fff;
    font: inherit;
    margin-top: 12px;
    box-shadow: none;
}

.bta-cart-page input::placeholder,
.bta-checkout-page input::placeholder,
.bta-checkout-page textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.bta-cart-page input:focus,
.bta-checkout-page input:focus,
.bta-checkout-page textarea:focus,
.bta-checkout-page select:focus,
.bta-checkout-page .woocommerce form .form-row input.input-text:focus,
.bta-checkout-page .woocommerce form .form-row textarea:focus {
    border-color: rgba(255, 56, 56, 0.86);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 56, 56, 0.12);
}

.bta-checkout-page label,
.bta-checkout-page .form-row label {
    color: #fff;
    font-weight: 700;
}

.bta-checkout-page .required {
    color: var(--accent);
}

.bta-checkout-page input[type="checkbox"],
.bta-checkout-page input[type="radio"],
.bta-cart-page input[type="checkbox"],
.bta-cart-page input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.select2-container--default .select2-selection--single {
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(15, 17, 22, 0.95);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
    line-height: 52px;
    padding-left: 1rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px;
}

.select2-dropdown {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #111318;
    color: #fff;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #090b0f;
    color: #fff;
}

.select2-results__option {
    color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
    background: var(--accent);
    color: #fff;
}

/* WooCommerce Cart - Black Tiger Arabia */
.bta-cart-shell,
.bta-checkout-shell {
    padding: 3rem 0 5rem;
    background:transparent;
}

.bta-cart-container,
.bta-checkout-container {
    max-width: 1180px;
}

.bta-commerce-head {
    margin-bottom: 1.8rem;
}

.bta-commerce-head h1 {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-size: clamp(3rem, 5vw, 4.6rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.bta-commerce-head p {
    margin: 0.7rem 0 0;
    color: #f0f0f0;
    font-size: 1.05rem;
}

.bta-commerce-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    margin-top: 0.75rem;
    color: var(--muted);
}

.bta-commerce-breadcrumb a {
    color: #fff;
}

.bta-commerce-breadcrumb strong {
    color: var(--accent);
}

.bta-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    gap: 1.6rem;
    align-items: start;
}

.bta-cart-card,
.bta-checkout-card,
.bta-checkout-benefits {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(12, 14, 19, 0.88), rgba(7, 8, 11, 0.9));
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34);
}

.bta-cart-items-card {
    padding: 1.2rem;
}

.bta-cart-totals-card {
    position: sticky;
    top: 130px;
    padding: 1.25rem;
}

.bta-cart-table {
    width: 100%;
}

.bta-cart-row {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 110px 150px 120px;
    gap: 1rem;
    align-items: center;
}

.bta-cart-heading {
    padding: 0.7rem 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.bta-cart-item {
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bta-cart-product {
    display: grid;
    grid-template-columns: 32px 96px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
}

.bta-remove-item {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 49, 49, 0.13);
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
}

.bta-remove-item:hover {
    background: var(--accent);
}

.bta-cart-thumb {
    width: 96px;
    height: 96px;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
}

.bta-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bta-cart-product-copy h2 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
}

.bta-cart-meta,
.bta-cart-meta p,
.bta-cart-meta dl {
    margin: 0.25rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.bta-cart-price,
.bta-cart-subtotal,
.bta-cart-totals-card .amount,
.bta-review-order .amount {
    color: #ff9f3d;
    font-weight: 900;
}

.bta-cart-quantity .quantity {
    margin: 0;
}

.bta-cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    padding-top: 1.25rem;
}

.bta-coupon {
    display: flex;
    gap: 0.75rem;
    flex: 1 1 420px;
}

.bta-coupon input {
    max-width: 280px;
}

.bta-cart-totals-card .cart_totals {
    float: none;
    width: 100%;
}

.bta-cart-totals-card h2 {
    margin: 0 0 1rem;
    font-family: "Teko", sans-serif;
    font-size: 2.2rem;
    line-height: 0.95;
    text-transform: uppercase;
}

.bta-cart-totals-card table {
    width: 100%;
    border-collapse: collapse;
}

.bta-cart-totals-card th,
.bta-cart-totals-card td {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: left;
    vertical-align: top;
}

.bta-cart-totals-card td {
    text-align: right;
}

.bta-cart-totals-card .order-total th,
.bta-cart-totals-card .order-total td {
    font-size: 1.2rem;
}

.bta-cart-page .wc-proceed-to-checkout {
    padding: 1.25rem 0 0;
}

.bta-cart-page .wc-proceed-to-checkout a.checkout-button {
    width: 100%;
    min-height: 58px;
}

.bta-cart-page .shipping-calculator-button,
.bta-cart-page .woocommerce-shipping-destination {
    color: var(--muted);
}

/* WooCommerce Checkout - Black Tiger Arabia */
.bta-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.9fr);
    gap: 1.8rem;
    align-items: start;
}

.bta-checkout-sidebar {
    display: grid;
    gap: 1rem;
}

.bta-checkout-card {
    padding: 1.35rem;
}

.bta-order-review-card {
    position: sticky;
    top: 130px;
}

.bta-checkout-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.bta-section-dot {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border: 1px solid rgba(255, 56, 56, 0.8);
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0 34%, transparent 38%);
    box-shadow: 0 0 20px rgba(255, 49, 49, 0.28);
}

.bta-checkout-section-title h2,
.bta-checkout-page #ship-to-different-address {
    margin: 0;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.2;
}

.bta-checkout-page .woocommerce-billing-fields h3,
.bta-checkout-page .woocommerce-shipping-fields h3,
.bta-checkout-page .woocommerce-additional-fields h3 {
    margin: 1.2rem 0 0.9rem;
    font-family: "Teko", sans-serif;
    font-size: 2rem;
    line-height: 0.95;
    text-transform: uppercase;
}

.bta-checkout-page .form-row {
    margin: 0 0 1rem;
}

.bta-checkout-page .form-row-first,
.bta-checkout-page .form-row-last {
    width: calc(50% - 0.5rem);
}

.bta-checkout-page .form-row-first {
    float: left;
}

.bta-checkout-page .form-row-last {
    float: right;
}

.bta-checkout-page .form-row-wide {
    clear: both;
}

.bta-checkout-page .woocommerce-account-fields,
.bta-checkout-page .woocommerce-shipping-fields {
    clear: both;
}

.bta-review-order {
    width: 100%;
    border-collapse: collapse;
}

.bta-review-order th,
.bta-review-order td {
    padding: 0;
    border: 0;
}

.bta-review-item td {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
}

.bta-review-product {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
}

.bta-review-thumb {
    width: 72px;
    height: 72px;
    padding: 0.35rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
}

.bta-review-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bta-review-copy h3 {
    margin: 0 0 0.2rem;
    color: #fff;
    font-size: 0.98rem;
}

.bta-review-meta,
.bta-review-meta p,
.bta-review-meta dl,
.bta-review-qty {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.bta-review-order .product-total {
    width: 120px;
    padding-left: 1rem;
    text-align: right;
    white-space: nowrap;
}

.bta-review-totals th,
.bta-review-totals td {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: left;
    vertical-align: top;
}

.bta-review-totals td {
    text-align: right;
}

.bta-review-totals .order-total th,
.bta-review-totals .order-total td {
    padding-top: 1.15rem;
    font-size: 1.25rem;
    font-weight: 900;
}

.bta-review-totals .order-total .amount {
    color: var(--accent-strong);
}

.bta-checkout-page #payment {
    margin-top: 1.2rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.bta-checkout-page #payment ul.payment_methods {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
}

.bta-checkout-page #payment ul.payment_methods li {
    margin: 0 0 0.8rem;
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
}

.bta-checkout-page #payment div.payment_box {
    margin: 0.85rem 0 0;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.bta-checkout-page #payment iframe,
.bta-checkout-page #payment form,
.bta-checkout-page #payment .payment_box > * {
    max-width: 100%;
}

.bta-checkout-page .place-order {
    margin: 1rem 0 0;
    padding: 0;
}

.bta-checkout-page #place_order {
    width: 100%;
    min-height: 58px;
}

.bta-checkout-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    padding: 1rem;
}

.bta-checkout-benefits div {
    display: grid;
    gap: 0.25rem;
}

.bta-checkout-benefits span {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 56, 56, 0.7);
    border-radius: 50%;
    background: rgba(255, 49, 49, 0.12);
}

.bta-checkout-benefits strong {
    color: #fff;
}

.bta-checkout-benefits small {
    color: var(--muted);
}

.bta-checkout-page .woocommerce-privacy-policy-text,
.bta-checkout-page .woocommerce-terms-and-conditions-wrapper {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.bta-checkout-page .woocommerce-privacy-policy-text a,
.bta-checkout-page .woocommerce-terms-and-conditions-wrapper a,
.bta-checkout-page .showcoupon,
.bta-checkout-page .showlogin {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 49, 49, 0.55);
}

.bta-checkout-page .woocommerce-form-coupon-toggle,
.bta-checkout-page .woocommerce-form-login-toggle {
    margin-bottom: 1rem;
}

.bta-checkout-page form.checkout_coupon,
.bta-checkout-page form.login {
    display: grid;
    gap: 0.85rem;
    margin: 0 0 1.25rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(10, 12, 16, 0.78);
}

.bta-checkout-page form.checkout_coupon p,
.bta-checkout-page form.login p {
    margin: 0;
    color: var(--muted);
}

.site-header a,
.site-nav a,
.header-actions a {
    text-decoration: none;
}

@media (max-width: 1180px) {
    .bta-cart-layout,
    .bta-checkout-grid {
        grid-template-columns: 1fr;
    }

    .bta-cart-totals-card,
    .bta-order-review-card {
        position: static;
    }
}

@media (max-width: 860px) {
    .bta-cart-row {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .bta-cart-heading {
        display: none;
    }

    .bta-cart-price::before,
    .bta-cart-quantity::before,
    .bta-cart-subtotal::before {
        content: attr(data-title);
        display: block;
        margin-bottom: 0.35rem;
        color: var(--muted);
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .bta-cart-product {
        grid-template-columns: 32px 88px minmax(0, 1fr);
    }

    .bta-cart-thumb {
        width: 88px;
        height: 88px;
    }

    .bta-coupon {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bta-coupon input {
        max-width: none;
    }

    .bta-checkout-page .form-row-first,
    .bta-checkout-page .form-row-last {
        float: none;
        width: 100%;
    }
}

@media (max-width: 560px) {
    .bta-cart-shell,
    .bta-checkout-shell {
        padding-top: 2rem;
    }

    .bta-cart-items-card,
    .bta-cart-totals-card,
    .bta-checkout-card {
        padding: 1rem;
        border-radius: 18px;
    }

    .bta-review-product {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .bta-review-thumb {
        width: 58px;
        height: 58px;
    }

    .bta-review-order .product-total {
        width: auto;
        padding-left: 0.5rem;
        font-size: 0.9rem;
    }

    .bta-checkout-benefits {
        grid-template-columns: 1fr;
    }
}

/* WooCommerce Cart/Checkout Final Cleanup */
.single-product .woocommerce-message,
.single-product .woocommerce-info {
    display: none;
}

.bta-cart-page .woocommerce-message:has(.restore-item) {
    display: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    position: relative;
    inset: auto;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem;
    transform: none;
}

.woocommerce-message.is-hiding,
.woocommerce-info.is-hiding,
.woocommerce-error.is-hiding {
    opacity: 0;
    transform: translateY(-4px);
}

.bta-add-to-cart-actions {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0 1.4rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(8, 10, 14, 0.78);
}

.bta-add-to-cart-confirm {
    margin: 0;
    color: #fff;
    font-weight: 800;
}

.bta-add-to-cart-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.bta-add-to-cart-buttons .bta-commerce-button {
    min-height: 46px;
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
}

.bta-add-action-outline {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.bta-checkout-benefits {
    display: none;
}

.bta-checkout-page .blockUI.blockOverlay,
.bta-checkout-page .processing .blockUI.blockOverlay,
.bta-checkout-page #payment .blockUI.blockOverlay,
.bta-checkout-page .woocommerce-checkout-review-order .blockUI.blockOverlay {
    background: rgba(5, 6, 8, 0.55) !important;
    opacity: 1 !important;
    border-radius: inherit !important;
    backdrop-filter: blur(4px);
}

.bta-checkout-page #payment::before {
    content: "Payment Method";
    display: block;
    margin: 0 0 0.9rem;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
}

.bta-checkout-page #payment ul.payment_methods li[class*="myfatoorah"],
.bta-checkout-page #payment ul.payment_methods li.payment_method_myfatoorah_v2 {
    padding: 0;
    border: 0;
    background: transparent;
}

.bta-checkout-page #payment li[class*="myfatoorah"] > input[type="radio"],
.bta-checkout-page #payment li.payment_method_myfatoorah_v2 > input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bta-checkout-page #payment li[class*="myfatoorah"] > label,
.bta-checkout-page #payment li.payment_method_myfatoorah_v2 > label,
.bta-checkout-page #payment li[class*="myfatoorah"] > label img,
.bta-checkout-page #payment li.payment_method_myfatoorah_v2 > label img {
    display: none !important;
}

.bta-checkout-page #payment div.payment_box[class*="myfatoorah"],
.bta-checkout-page #payment div.payment_box.payment_method_myfatoorah_v2 {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

.bta-checkout-page #payment div.payment_box[class*="myfatoorah"] > p:first-of-type,
.bta-checkout-page #payment div.payment_box.payment_method_myfatoorah_v2 > p:first-of-type,
.bta-checkout-page .payment_method_myfatoorah_v2 .mf-grey-text,
.bta-checkout-page [class*="myfatoorah"] .mf-grey-text {
    display: none !important;
}

.bta-checkout-page .mf-payment-methods-container,
.bta-checkout-page [class*="myfatoorah"] iframe,
.bta-checkout-page [class*="myfatoorah"] form {
    width: 100% !important;
    max-width: 100% !important;
}

.bta-checkout-page #payment div.payment_box::before {
    display: none;
}

.bta-checkout-page #payment ul.payment_methods {
    padding-bottom: 0;
}

.bta-checkout-page .place-order {
    position: static !important;
    margin: 1rem 0 0 !important;
    padding: 0 !important;
}

.bta-checkout-page #place_order {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    margin: 0 !important;
}

.bta-cart-page .woocommerce-shipping-methods,
.bta-checkout-page .woocommerce-shipping-methods,
.bta-cart-page .woocommerce-shipping-methods ul,
.bta-checkout-page .woocommerce-shipping-methods ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.bta-cart-page .woocommerce-shipping-methods li,
.bta-checkout-page .woocommerce-shipping-methods li {
    list-style: none !important;
}

.bta-cart-page .woocommerce-shipping-methods li::before,
.bta-checkout-page .woocommerce-shipping-methods li::before {
    content: none !important;
}

@media (max-width: 760px) {
    .bta-add-to-cart-buttons {
        grid-template-columns: 1fr;
    }
}

/* WooCommerce Notice/Payment Final Overrides */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 1rem !important;
    transform: none !important;
}

.single-product .woocommerce-message,
.single-product .woocommerce-info,
.bta-cart-page .woocommerce-message:has(.restore-item) {
    display: none !important;
}

.bta-checkout-page .woocommerce-error,
.bta-checkout-page .woocommerce-info,
.bta-checkout-page .woocommerce-message {
    display: block;
}

.bta-checkout-benefits {
    display: none !important;
}

.bta-checkout-page #payment li[class*="myfatoorah"] > label,
.bta-checkout-page #payment li[class*="myfatoorah"] > label *,
.bta-checkout-page #payment li[id*="myfatoorah"] > label,
.bta-checkout-page #payment li[id*="myfatoorah"] > label *,
.bta-checkout-page #payment div.payment_box[class*="myfatoorah"] > p:first-of-type,
.bta-checkout-page #payment div.payment_box[class*="myfatoorah"] > h1:first-child,
.bta-checkout-page #payment div.payment_box[class*="myfatoorah"] > h2:first-child,
.bta-checkout-page #payment div.payment_box[class*="myfatoorah"] > h3:first-child,
.bta-checkout-page #payment div.payment_box[class*="myfatoorah"] > h4:first-child,
.bta-checkout-page #payment .payment_method_myfatoorah_v2 > p:first-of-type,
.bta-checkout-page #payment .payment_method_myfatoorah_v2 > h1:first-child,
.bta-checkout-page #payment .payment_method_myfatoorah_v2 > h2:first-child,
.bta-checkout-page #payment .payment_method_myfatoorah_v2 > h3:first-child,
.bta-checkout-page #payment .payment_method_myfatoorah_v2 > h4:first-child,
.bta-checkout-page .payment_method_myfatoorah_v2 .mf-grey-text,
.bta-checkout-page [class*="myfatoorah"] .mf-grey-text {
    display: none !important;
}

.bta-checkout-page #payment li[class*="myfatoorah"],
.bta-checkout-page #payment li[id*="myfatoorah"] {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.bta-checkout-page #payment div.payment_box[class*="myfatoorah"],
.bta-checkout-page #payment div.payment_box.payment_method_myfatoorah_v2 {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.bta-checkout-page .blockUI.blockOverlay,
.bta-checkout-page .processing .blockUI.blockOverlay,
.bta-checkout-page #payment .blockUI.blockOverlay,
.bta-checkout-page .woocommerce-checkout-review-order .blockUI.blockOverlay {
    background: rgba(5, 6, 8, 0.55) !important;
    opacity: 1 !important;
    backdrop-filter: blur(4px);
}

/* WooCommerce Cart/Checkout Polish */
.bta-cart-page main > .section,
.bta-checkout-page main > .section {
    padding-top: 0.75rem;
}

.bta-cart-page main > .section > .container > article > h1,
.bta-checkout-page main > .section > .container > article > h1 {
    display: none;
}

.bta-cart-shell,
.bta-checkout-shell {
    padding: 1rem 0 4rem;
    background: transparent;
}

.bta-commerce-head {
    margin-bottom: 1.35rem;
}

.bta-commerce-head h1 {
    font-size: clamp(3.5rem, 5.8vw, 5.6rem);
}

.bta-cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 380px);
    gap: 2rem;
}

.bta-checkout-grid,
.bta-checkout-pregrid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.9fr);
    gap: 1.8rem;
    align-items: start;
}

.bta-checkout-pregrid {
    margin-bottom: 1rem;
}

.bta-cart-card,
.bta-checkout-card,
.bta-checkout-benefits,
.bta-checkout-coupon-card {
    border-color: rgba(255, 255, 255, 0.09);
    background: rgba(8, 10, 14, 0.78);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.bta-cart-items-card,
.bta-cart-totals-card,
.bta-checkout-card {
    padding: 1.15rem;
}

.bta-cart-row {
    grid-template-columns: minmax(300px, 1fr) 105px 150px 110px;
    gap: 0.9rem;
}

.bta-cart-product {
    grid-template-columns: 30px 88px minmax(0, 1fr);
}

.bta-cart-thumb {
    width: 88px;
    height: 88px;
}

.bta-cart-price,
.bta-cart-subtotal,
.bta-cart-totals-card .amount,
.bta-review-order .amount {
    color: #fff;
}

.bta-cart-totals-card .order-total .amount,
.bta-review-totals .order-total .amount {
    color: var(--accent-strong);
}

.bta-cart-actions {
    align-items: center;
}

.bta-coupon {
    align-items: center;
    flex: 1 1 auto;
}

.bta-coupon input {
    max-width: 260px;
}

.bta-cart-totals-card th,
.bta-cart-totals-card td,
.bta-review-totals th,
.bta-review-totals td {
    padding: 0.82rem 0;
}

.bta-cart-page .woocommerce-shipping-methods,
.bta-checkout-page .woocommerce-shipping-methods {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bta-cart-page .woocommerce-shipping-methods li,
.bta-checkout-page .woocommerce-shipping-methods li {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bta-cart-page .woocommerce-shipping-methods li::marker,
.bta-checkout-page .woocommerce-shipping-methods li::marker {
    content: "";
}

.bta-cart-page .woocommerce-shipping-methods input,
.bta-checkout-page .woocommerce-shipping-methods input {
    margin-top: 0.15rem;
}

.bta-cart-page .woocommerce-shipping-methods label,
.bta-checkout-page .woocommerce-shipping-methods label {
    color: #fff;
    text-align: right;
}

.bta-cart-page .woocommerce-shipping-destination,
.bta-cart-page .woocommerce-shipping-calculator,
.bta-checkout-page .woocommerce-shipping-destination,
.bta-checkout-page .woocommerce-shipping-calculator {
    margin: 0.6rem 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
    line-height: 1.45;
    text-align: right;
}

.bta-cart-page .shipping-calculator-button,
.bta-checkout-page .shipping-calculator-button {
    display: inline-flex;
    margin-top: 0.45rem;
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 49, 49, 0.55);
}

.bta-checkout-coupon-card {
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
}

.bta-checkout-coupon-card .woocommerce-form-coupon-toggle {
    margin: 0;
}

.bta-checkout-coupon-card .woocommerce-info {
    position: static;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.bta-checkout-coupon-card .woocommerce-info .showcoupon {
    margin: 0 0 0 0.55rem;
}

.bta-checkout-coupon-card form.checkout_coupon {
    margin: 0.85rem 0 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.bta-checkout-coupon-card form.checkout_coupon .form-row {
    float: none;
    width: 100%;
    margin: 0 0 0.65rem;
}

.bta-review-item td {
    padding: 0.78rem 0;
}

.bta-review-product {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.75rem;
}

.bta-review-thumb {
    width: 64px;
    height: 64px;
}

.bta-review-copy h3 {
    font-size: 0.94rem;
}

.bta-review-order .product-total {
    width: 96px;
}

.bta-checkout-page #payment {
    margin-top: 0.95rem;
    padding-top: 0.95rem;
}

.bta-checkout-page #payment ul.payment_methods li {
    padding: 0.8rem;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.bta-checkout-page #payment div.payment_box {
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.045);
}

.bta-checkout-page .place-order {
    position: static;
    margin-top: 1rem;
}

.bta-checkout-page #place_order {
    position: static;
    width: 100%;
    min-height: 56px;
    margin: 0;
}

.bta-checkout-benefits {
    grid-template-columns: 1fr 1fr;
    padding: 0.9rem;
}

.bta-checkout-benefits span {
    width: 22px;
    height: 22px;
}

.bta-checkout-page input[type="text"],
.bta-checkout-page input[type="email"],
.bta-checkout-page input[type="tel"],
.bta-checkout-page input[type="number"],
.bta-checkout-page input[type="password"],
.bta-checkout-page textarea,
.bta-checkout-page select,
.bta-checkout-page .woocommerce form .form-row input.input-text,
.bta-checkout-page .woocommerce form .form-row textarea {
    min-height: 46px;
    padding: 0.72rem 0.9rem;
}

.select2-container--default .select2-selection--single {
    height: 46px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    position: fixed;
    top: 112px;
    right: 24px;
    left: auto;
    z-index: 9999;
    width: min(420px, calc(100vw - 32px));
    margin: 0;
    padding: 0.95rem 3rem 0.95rem 1rem;
    transform: none;
    border-radius: 16px;
}

.woocommerce-message.is-hiding,
.woocommerce-info.is-hiding,
.woocommerce-error.is-hiding {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.bta-notice-close {
    position: absolute;
    top: 0.55rem;
    right: 0.65rem;
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.bta-notice-close:hover {
    background: var(--accent);
}

@media (max-width: 1180px) {
    .bta-checkout-pregrid {
        grid-template-columns: 1fr;
    }

    .bta-checkout-pregrid > div:first-child {
        display: none;
    }
}

@media (max-width: 760px) {
    .woocommerce-message,
    .woocommerce-info,
    .woocommerce-error {
        top: 96px;
        right: 12px;
        width: calc(100vw - 24px);
    }

    .bta-cart-layout,
    .bta-checkout-grid {
        gap: 1rem;
    }

    .bta-checkout-benefits {
        grid-template-columns: 1fr;
    }
}

/* Final non-overlay overrides for cart/checkout rebuild */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 1rem !important;
    transform: none !important;
}

.single-product .woocommerce-message,
.single-product .woocommerce-info,
.bta-cart-page .woocommerce-message:has(.restore-item),
.bta-checkout-benefits {
    display: none !important;
}

.bta-checkout-page .blockUI.blockOverlay,
.bta-checkout-page .processing .blockUI.blockOverlay,
.bta-checkout-page #payment .blockUI.blockOverlay,
.bta-checkout-page .woocommerce-checkout-review-order .blockUI.blockOverlay {
    background: rgba(5, 6, 8, 0.55) !important;
    opacity: 1 !important;
    backdrop-filter: blur(4px);
}

.bta-checkout-page #payment li[class*="myfatoorah"] > label,
.bta-checkout-page #payment li[class*="myfatoorah"] > label *,
.bta-checkout-page #payment li[id*="myfatoorah"] > label,
.bta-checkout-page #payment li[id*="myfatoorah"] > label *,
.bta-checkout-page #payment div.payment_box[class*="myfatoorah"] > p:first-of-type,
.bta-checkout-page #payment div.payment_box[class*="myfatoorah"] > h1:first-child,
.bta-checkout-page #payment div.payment_box[class*="myfatoorah"] > h2:first-child,
.bta-checkout-page #payment div.payment_box[class*="myfatoorah"] > h3:first-child,
.bta-checkout-page #payment div.payment_box[class*="myfatoorah"] > h4:first-child,
.bta-checkout-page #payment .payment_method_myfatoorah_v2 > p:first-of-type,
.bta-checkout-page #payment .payment_method_myfatoorah_v2 > h1:first-child,
.bta-checkout-page #payment .payment_method_myfatoorah_v2 > h2:first-child,
.bta-checkout-page #payment .payment_method_myfatoorah_v2 > h3:first-child,
.bta-checkout-page #payment .payment_method_myfatoorah_v2 > h4:first-child,
.bta-checkout-page .payment_method_myfatoorah_v2 .mf-grey-text,
.bta-checkout-page [class*="myfatoorah"] .mf-grey-text {
    display: none !important;
}

.bta-checkout-page #payment li[class*="myfatoorah"],
.bta-checkout-page #payment li[id*="myfatoorah"],
.bta-checkout-page #payment div.payment_box[class*="myfatoorah"],
.bta-checkout-page #payment div.payment_box.payment_method_myfatoorah_v2 {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.bta-checkout-page #payment li[class*="myfatoorah"] > input[type="radio"],
.bta-checkout-page #payment li[id*="myfatoorah"] > input[type="radio"] {
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 0 0.75rem !important;
    accent-color: var(--accent);
}

/* Requested hard overrides */
.product-variations-wrap.is-added-to-cart form.cart {
    display: none !important;
}

.bta-add-to-cart-actions {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.bta-add-to-cart-buttons {
    grid-template-columns: 1fr !important;
}

.bta-add-to-cart-buttons .bta-commerce-button {
    width: 100%;
    min-height: 58px;
    font-size: 1rem;
}

.single-product .woocommerce-message,
.single-product .woocommerce-info,
.woocommerce-cart .woocommerce-message:has(.restore-item),
.woocommerce-cart .woocommerce-message:has(a[href*="undo"]),
.bta-cart-page .woocommerce-message:has(.restore-item),
.bta-cart-page .woocommerce-message:has(a[href*="undo"]) {
    display: none !important;
}

.bta-cart-shell,
.bta-checkout-shell,
.bta-cart-page main > .section,
.bta-checkout-page main > .section,
.bta-cart-page .entry-content,
.bta-checkout-page .entry-content {
    background: transparent !important;
    background-image: none !important;
}

.bta-checkout-page #payment,
.bta-checkout-page #payment ul.payment_methods,
.bta-checkout-page #payment ul.payment_methods li,
.bta-checkout-page #payment div.payment_box,
.bta-checkout-page #payment div.payment_box[class*="myfatoorah"],
.bta-checkout-page #payment div.payment_box.payment_method_myfatoorah_v2,
.bta-checkout-page #payment .payment_box > div,
.bta-checkout-page #payment .payment_box > section {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.bta-checkout-page #payment::before {
    content: "Payment Method";
}

.bta-checkout-page #payment ul.payment_methods > li > label,
.bta-checkout-page #payment ul.payment_methods > li > label *,
.bta-checkout-page #payment ul.payment_methods > li > label img {
    display: none !important;
}

.bta-checkout-page #payment div.payment_box > p:first-child,
.bta-checkout-page #payment div.payment_box > h1:first-child,
.bta-checkout-page #payment div.payment_box > h2:first-child,
.bta-checkout-page #payment div.payment_box > h3:first-child,
.bta-checkout-page #payment div.payment_box > h4:first-child {
    display: none !important;
}

.bta-checkout-page #payment [hidden] {
    display: none !important;
}

/* Hard stop WooCommerce notice popups on product/cart pages */
body.single-product .woocommerce-notices-wrapper .woocommerce-message,
body.single-product .woocommerce-notices-wrapper .woocommerce-info,
body.single-product .woocommerce-message,
body.single-product .woocommerce-info,
body.product-page .woocommerce-notices-wrapper .woocommerce-message,
body.product-page .woocommerce-notices-wrapper .woocommerce-info,
body.woocommerce-cart .woocommerce-message:has(.restore-item),
body.woocommerce-cart .woocommerce-message:has(a[href*="undo"]),
body.woocommerce-cart .woocommerce-message:has(a.restore-item),
body.bta-cart-page .woocommerce-message:has(.restore-item),
body.bta-cart-page .woocommerce-message:has(a[href*="undo"]),
body.bta-cart-page .woocommerce-message:has(a.restore-item) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.bta-hidden-coupon-form {
    display: none;
}

.bta-review-coupon-row td {
    padding: 0.9rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.bta-review-coupon {
    display: grid;
    gap: 0.65rem;
}

.bta-review-coupon label {
    color: #fff;
    font-weight: 800;
}

.bta-review-coupon-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: center;
}

.bta-review-coupon-controls input {
    min-height: 46px;
    margin-top: 0 !important;
}

.bta-review-coupon-controls .button {
    min-height: 46px;
    padding-inline: 1.15rem;
}

@media (max-width: 560px) {
    .bta-review-coupon-controls {
        grid-template-columns: 1fr;
    }
}

/* WooCommerce Cart/Checkout Mobile Stabilization */
@media (max-width: 900px) {
    body.bta-cart-page,
    body.bta-checkout-page,
    body.woocommerce-cart,
    body.woocommerce-checkout {
        overflow-x: hidden;
    }

    body.bta-cart-page main > .section,
    body.bta-checkout-page main > .section,
    body.woocommerce-cart main > .section,
    body.woocommerce-checkout main > .section {
        padding: 0 0 2.75rem !important;
    }

    body.bta-cart-page main > .section > .container,
    body.bta-checkout-page main > .section > .container,
    body.woocommerce-cart main > .section > .container,
    body.woocommerce-checkout main > .section > .container {
        width: 100% !important;
        max-width: none !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .bta-cart-shell,
    .bta-checkout-shell {
        width: 100% !important;
        padding: 1.5rem 0 3rem !important;
        background: transparent !important;
    }

    .bta-cart-container,
    .bta-checkout-container {
        width: min(calc(100% - 1.5rem), 1180px) !important;
        max-width: 1180px !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .bta-cart-layout,
    .bta-checkout-grid,
    .bta-checkout-pregrid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 1rem !important;
        align-items: stretch !important;
    }

    .bta-checkout-main,
    .bta-checkout-sidebar,
    .bta-cart-card,
    .bta-checkout-card,
    .bta-cart-items-card,
    .bta-cart-totals-card,
    .bta-order-review-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .bta-cart-totals-card,
    .bta-order-review-card {
        position: static !important;
        top: auto !important;
    }

    .bta-checkout-page .form-row-first,
    .bta-checkout-page .form-row-last {
        float: none !important;
        width: 100% !important;
    }

    .bta-checkout-page .form-row,
    .bta-checkout-page .form-row-wide {
        clear: both !important;
        width: 100% !important;
    }

    .bta-cart-page .woocommerce-message,
    .bta-cart-page .woocommerce-info,
    .bta-cart-page .woocommerce-error,
    .bta-checkout-page .woocommerce-message,
    .bta-checkout-page .woocommerce-info,
    .bta-checkout-page .woocommerce-error {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        width: 100% !important;
        margin: 0 0 1rem !important;
    }
}

@media (max-width: 640px) {
    .bta-commerce-head {
        margin-bottom: 1.25rem !important;
    }

    .bta-commerce-head h1 {
        font-size: clamp(3rem, 15vw, 4.3rem) !important;
        line-height: 0.9 !important;
    }

    .bta-commerce-head p,
    .bta-commerce-breadcrumb {
        font-size: 0.95rem !important;
    }

    .bta-cart-items-card,
    .bta-cart-totals-card,
    .bta-checkout-card {
        padding: 1rem !important;
        border-radius: 18px !important;
    }

    .bta-cart-heading {
        display: none !important;
    }

    .bta-cart-row {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.8rem !important;
    }

    .bta-cart-item {
        padding: 1rem 0 !important;
    }

    .bta-cart-product {
        grid-template-columns: 28px 76px minmax(0, 1fr) !important;
        gap: 0.7rem !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .bta-cart-thumb {
        width: 76px !important;
        height: 76px !important;
        border-radius: 14px !important;
    }

    .bta-cart-product-copy,
    .bta-cart-product-copy h2 {
        min-width: 0 !important;
    }

    .bta-cart-price,
    .bta-cart-quantity,
    .bta-cart-subtotal {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 1rem !important;
        width: 100% !important;
        text-align: right !important;
    }

    .bta-cart-price::before,
    .bta-cart-quantity::before,
    .bta-cart-subtotal::before {
        content: attr(data-title) !important;
        display: block !important;
        margin: 0 !important;
        color: rgba(255, 255, 255, 0.62) !important;
        font-size: 0.72rem !important;
        font-weight: 900 !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        text-align: left !important;
    }

    .bta-cart-quantity .quantity {
        margin-left: auto !important;
    }

    .bta-cart-actions,
    .bta-coupon {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.8rem !important;
        width: 100% !important;
    }

    .bta-coupon input,
    .bta-coupon button,
    .bta-cart-page button[name="update_cart"],
    .bta-cart-page .wc-proceed-to-checkout a.checkout-button {
        width: 100% !important;
        max-width: none !important;
    }

    .bta-cart-totals-card h2 {
        font-size: 2.4rem !important;
    }

    .bta-cart-totals-card th,
    .bta-cart-totals-card td,
    .bta-review-totals th,
    .bta-review-totals td {
        width: 50% !important;
        padding: 0.85rem 0 !important;
        font-size: 0.95rem !important;
    }

    .bta-cart-page .woocommerce-shipping-methods li,
    .bta-checkout-page .woocommerce-shipping-methods li {
        justify-content: flex-end !important;
        text-align: right !important;
    }

    .bta-checkout-section-title {
        gap: 0.55rem !important;
        margin-bottom: 0.95rem !important;
    }

    .bta-checkout-section-title h2,
    .bta-checkout-page #ship-to-different-address {
        font-size: 1rem !important;
    }

    .bta-checkout-page .woocommerce-billing-fields h3,
    .bta-checkout-page .woocommerce-shipping-fields h3,
    .bta-checkout-page .woocommerce-additional-fields h3 {
        font-size: 1.8rem !important;
    }

    .bta-cart-page input[type="text"],
    .bta-checkout-page input[type="text"],
    .bta-checkout-page input[type="email"],
    .bta-checkout-page input[type="tel"],
    .bta-checkout-page input[type="number"],
    .bta-checkout-page input[type="password"],
    .bta-checkout-page textarea,
    .bta-checkout-page select,
    .bta-checkout-page .woocommerce form .form-row input.input-text,
    .bta-checkout-page .woocommerce form .form-row textarea {
        min-height: 48px !important;
        padding: 0.72rem 0.85rem !important;
        margin-top: 0.4rem !important;
        font-size: 0.95rem !important;
    }

    .bta-checkout-page .woocommerce form .form-row label,
    .bta-checkout-page label {
        line-height: 1.25 !important;
    }

    .bta-review-order {
        width: 100% !important;
        table-layout: fixed !important;
    }

    .bta-review-item td {
        padding: 0.8rem 0 !important;
    }

    .bta-review-product {
        grid-template-columns: 58px minmax(0, 1fr) !important;
        gap: 0.7rem !important;
    }

    .bta-review-thumb {
        width: 58px !important;
        height: 58px !important;
        border-radius: 12px !important;
    }

    .bta-review-copy h3 {
        font-size: 0.9rem !important;
        line-height: 1.25 !important;
    }

    .bta-review-meta,
    .bta-review-qty {
        font-size: 0.78rem !important;
    }

    .bta-review-order .product-total {
        width: 96px !important;
        padding-left: 0.5rem !important;
        font-size: 0.84rem !important;
        white-space: normal !important;
    }

    .bta-review-coupon-row td {
        width: 100% !important;
    }

    .bta-review-coupon {
        gap: 0.7rem !important;
    }

    .bta-review-coupon label {
        text-align: left !important;
    }

    .bta-review-coupon-controls {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.65rem !important;
    }

    .bta-review-coupon-controls input,
    .bta-review-coupon-controls .button {
        width: 100% !important;
        max-width: none !important;
    }

    .bta-checkout-page #payment,
    .bta-checkout-page #payment ul.payment_methods,
    .bta-checkout-page #payment ul.payment_methods li,
    .bta-checkout-page #payment div.payment_box,
    .bta-checkout-page #payment div.payment_box[class*="myfatoorah"],
    .bta-checkout-page #payment div.payment_box.payment_method_myfatoorah_v2,
    .bta-checkout-page .mf-payment-methods-container,
    .bta-checkout-page [class*="myfatoorah"],
    .bta-checkout-page [id*="myfatoorah"] {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden !important;
    }

    .bta-checkout-page #payment iframe,
    .bta-checkout-page #payment form,
    .bta-checkout-page #payment .payment_box > * {
        max-width: 100% !important;
    }

    .bta-checkout-page .woocommerce-privacy-policy-text,
    .bta-checkout-page .woocommerce-terms-and-conditions-wrapper {
        font-size: 0.84rem !important;
        line-height: 1.55 !important;
    }

    .bta-checkout-page #place_order {
        width: 100% !important;
        min-height: 54px !important;
    }
}

/* WooCommerce Order Received - Black Tiger Arabia */
.bta-order-received-page main > .section {
    padding-top: 0.75rem;
}

.bta-order-received-page main > .section > .container > article > h1 {
    display: none;
}

.bta-thankyou-shell {
    padding: 1rem 0 5rem;
    background: transparent;
}

.bta-thankyou-container {
    max-width: 1180px;
}

.bta-thankyou-kicker {
    display: inline-flex;
    margin-bottom: 0.55rem;
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.bta-thankyou-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 1.6rem;
    align-items: start;
}

.bta-thankyou-main,
.bta-thankyou-sidebar {
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.bta-thankyou-sidebar {
    position: sticky;
    top: 130px;
}

.bta-thankyou-card {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(8, 10, 14, 0.78);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.bta-thankyou-card h2 {
    margin: 0;
    color: #fff;
    font-size: 1.18rem;
    line-height: 1.2;
}

.bta-thankyou-success {
    border-color: rgba(255, 56, 56, 0.28);
}

.bta-order-overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bta-order-overview li {
    min-width: 0;
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.bta-order-overview span,
.bta-thankyou-total-row span,
.bta-thankyou-item span,
.bta-thankyou-contact {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.86rem;
}

.bta-order-overview strong,
.bta-thankyou-total-row strong {
    display: block;
    margin-top: 0.3rem;
    color: #fff;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.bta-order-overview li:nth-child(3) strong,
.bta-thankyou-total-row.order_total strong,
.bta-thankyou-total-row.order-total strong {
    color: var(--accent-strong);
}

.bta-thankyou-items {
    display: grid;
    gap: 0.85rem;
}

.bta-thankyou-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bta-thankyou-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.bta-thankyou-thumb {
    width: 72px;
    height: 72px;
    padding: 0.35rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
}

.bta-thankyou-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bta-thankyou-item h3 {
    margin: 0 0 0.25rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.3;
}

.bta-thankyou-item strong {
    color: #fff;
    font-weight: 900;
    white-space: nowrap;
}

.bta-thankyou-item .wc-item-meta,
.bta-thankyou-item .wc-item-meta li {
    margin: 0.15rem 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.62);
    list-style: none;
    font-size: 0.82rem;
}

.bta-thankyou-address-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.bta-thankyou-card address {
    margin: 0;
    color: #fff;
    font-style: normal;
    line-height: 1.65;
}

.bta-thankyou-contact {
    margin: 0.7rem 0 0;
}

.bta-thankyou-total-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bta-thankyou-total-row:first-of-type {
    border-top: 0;
}

.bta-thankyou-total-row strong {
    margin-top: 0;
    text-align: right;
}

.bta-thankyou-next p,
.bta-thankyou-failed p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.bta-thankyou-actions {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.bta-thankyou-failed {
    max-width: 720px;
}

@media (max-width: 1020px) {
    .bta-thankyou-grid,
    .bta-order-overview,
    .bta-thankyou-address-grid {
        grid-template-columns: 1fr;
    }

    .bta-thankyou-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .bta-thankyou-shell {
        padding: 1.5rem 0 3rem;
    }

    .bta-thankyou-container {
        width: min(calc(100% - 1.5rem), 1180px);
    }

    .bta-thankyou-card {
        padding: 1rem;
        border-radius: 18px;
    }

    .bta-thankyou-item {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .bta-thankyou-item strong {
        grid-column: 2;
        white-space: normal;
    }

    .bta-thankyou-thumb {
        width: 58px;
        height: 58px;
    }
}
