:root {
    --navy: #0b1728;
    --navy-2: #13233a;
    --lime: #c9ff35;
    --lime-dark: #9ad400;
    --bg: #ffffff;
    --card: #ffffff;
    --text: #202631;
    --muted: #6b7280;
    --line: #e5e8ec;
    --danger: #e5484d;
    --shadow: 0 18px 45px rgba(11, 23, 40, .10);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    /* font-family: Inter, Arial, Helvetica, sans-serif; */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    text-decoration: none;
}

body button,
body input,
body select {
    font: inherit;
}

button {
    cursor: pointer;
}

body .container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 78px 0;
}

.section.compact {
    padding: 54px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.eyebrow {
    margin: 0 0 8px;
    color: #547400;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    line-height: 1.1;
    letter-spacing: -.025em;
}

/* h1,
h2,
.display {
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    font-stretch: condensed;
} */

h2 {
    margin-bottom: 8px;
    font-size: clamp(34px, 4vw, 56px);
}

.section-head p {
    margin: 0;
    max-width: 680px;
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.text-link:hover {
    color: #547400;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 850;
    transition: .2s ease;
}

.btn-primary {
    background: var(--lime);
    color: var(--navy);
}

.btn-primary:hover {
    background: #d7ff68;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: #fff;
}

.btn-dark:hover {
    background: var(--navy-2);
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--navy);
    border-color: rgba(255, 255, 255, .25);
    margin-top: auto;
}

.btn-outline {
    border-color: var(--line);
    background: #fff;
}

.btn-outline:hover {
    border-color: var(--navy);
}

/* Top bars */
.promo-bar {
    background: var(--navy);
    color: #fff;
    font-size: 13px;
}

.promo-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    overflow: hidden;
    white-space: nowrap;
}

.promo-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.promo-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

body .header-main {
    min-height: 86px;
    display: grid;
    grid-template-columns: 210px 1fr auto;
    gap: 24px;
    align-items: center;
}

body .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 30px;
    font-weight: 1000;
    letter-spacing: -.04em;
    color: var(--navy);
    text-decoration: none !important;
}

body .logo-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--navy);
    color: var(--lime);
    font-weight: 1000;
    box-shadow: inset 0 0 0 2px rgba(201, 255, 53, .22);
    line-height: 1;
}

.search-form {
    position: relative;
    margin: 0;
}

.search-form input {
    width: 100%;
    height: 50px;
    padding: 0 54px 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f7f8fa;
    outline: none;
}

.search-form input:focus {
    border-color: var(--navy);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(11, 23, 40, .06);
}

.search-form button {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 58px;
    height: 38px;
    border: 0;
    border-radius: 24px;
    background: var(--navy);
    color: #fff;
    font-size: 32px;
    line-height: 0;
}

.header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.icon-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 750;
}

.icon-btn:hover {
    border-color: var(--navy);
}

body .cart-count {
    min-width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    position: static;
}

.main-nav {
    border-top: 1px solid #f0f1f3;
}

.nav-row {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 850;
}

.nav-link:hover {
    color: #547400;
}

.nav-item {
    position: relative;
}

.mega-menu {
    position: absolute;
    left: 0;
    top: 52px;
    width: 760px;
    padding: 26px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow);
}

.nav-item:hover .mega-menu {
    display: grid;
}

.mega-menu h4 {
    margin-bottom: 10px;
    font-size: 14px;
}

.mega-menu a {
    display: block;
    padding: 5px 0;
    color: var(--muted);
    font-size: 13px;
}

.mega-menu a:hover {
    color: var(--navy);
    transform: translateX(2px);
}

.mobile-toggle {
    display: none;
}


/* Prominent contact channels */
.contact-ribbon {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.contact-ribbon-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.contact-ribbon-copy {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 850;
}

.contact-ribbon-copy span:first-child {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #eef3e0;
    color: #547400;
}

.quick-contact-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-contact-pill {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    transition: .2s ease;
}

.quick-contact-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(11, 23, 40, .12);
}

.quick-contact-pill.whatsapp {
    background: #25d366;
    color: #071a10;
}

.quick-contact-pill.email {
    background: var(--navy);
    color: #fff;
}

.quick-contact-pill small {
    font-size: 11px;
    font-weight: 750;
    opacity: .72;
}

.support-action {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 13px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    line-height: 1.05;
}

.support-action .support-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 1000;
}

.support-action strong {
    display: block;
    font-size: 12px;
    color: var(--navy);
}

.support-action small {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    color: var(--muted);
}

.support-action.whatsapp .support-icon {
    background: #25d366;
    color: #071a10;
}

.support-action.email .support-icon {
    background: var(--navy);
    color: var(--lime);
}

.support-action:hover {
    border-color: var(--navy);
    transform: translateY(-1px);
}

.hero-contact-row {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.hero-contact-row>strong {
    color: #fff;
}

.hero-contact-link {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 850;
}

.hero-contact-link.whatsapp {
    background: #25d366;
    color: #071a10;
    border-color: #25d366;
}

.contact-card.primary-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #1fbf59, #29df73);
    color: #071a10;
    border: 0;
    box-shadow: 0 16px 36px rgba(37, 211, 102, .22);
}

.contact-card.primary-contact .contact-icon {
    margin: 0;
    background: rgba(255, 255, 255, .9);
    color: #0d7a38;
}

.contact-card.primary-contact h3 {
    margin: 0 0 5px;
    font-size: 23px;
}

.contact-card.primary-contact p {
    margin: 0;
    color: rgba(7, 26, 16, .78);
}

.contact-card.primary-contact .btn {
    white-space: nowrap;
}

.contact-card.email-highlight {
    border: 2px solid var(--navy);
    background: #fff;
}

.contact-card.email-highlight a {
    display: inline-block;
    margin-top: 2px;
    font-size: 17px;
    color: var(--navy);
}

.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 92px;
    z-index: 1900;
    display: grid;
    gap: 10px;
}

.floating-contact a {
    min-width: 152px;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 13px;
    border-radius: 15px;
    box-shadow: 0 14px 34px rgba(11, 23, 40, .20);
    font-weight: 900;
    transition: .2s ease;
}

.floating-contact a:hover {
    transform: translateX(-4px);
}

.floating-contact .fc-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .9);
    font-size: 17px;
}

.floating-contact .fc-copy {
    line-height: 1.05;
}

.floating-contact .fc-copy small {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    font-weight: 750;
    opacity: .72;
}

.floating-contact .fc-whatsapp {
    background: #25d366;
    color: #071a10;
}

.floating-contact .fc-email {
    background: var(--navy);
    color: #fff;
}

.mobile-contact-bar {
    display: none;
}

/* Hero */
.hero {
    padding: 24px 0 0;
}

.hero-shell {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(130deg, #07111f 0%, #132942 58%, #223b55 100%);
    color: #fff;
    box-shadow: var(--shadow);
}

.hero-slide {
    display: none;
    min-height: 560px;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
}

.hero-slide.active {
    display: grid;
}

.hero-copy {
    padding: 68px;
    position: relative;
    z-index: 2;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(201, 255, 53, .12);
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero h1,
.hero .display {
    margin: 22px 0 18px;
    max-width: 760px;
    font-size: clamp(28px, 6.4vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.hero p {
    max-width: 620px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-art {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: var(--lime);
    filter: blur(4px);
    opacity: .13;
    right: 10%;
    top: 12%;
}

.hero-card {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(4deg);
    width: min(410px, 80%);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 28px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.jersey-svg {
    width: 100%;
    max-height: 390px;
    filter: drop-shadow(0 28px 30px rgba(0, 0, 0, .32));
}

.hero-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.hero-price strong {
    font-size: 22px;
}

.hero-price span {
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
}

.slider-dots {
    position: absolute;
    left: 68px;
    bottom: 28px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.slider-dot {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, .28);
}

.slider-dot.active {
    background: var(--lime);
}

/* Grids */
.category-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

.category-card {
    min-height: 132px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    transition: .2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.category-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #eef3e0;
    font-size: 24px;
}

.category-card strong {
    font-size: 14px;
}

.category-card small {
    color: var(--muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.team-card {
    min-height: 145px;
    padding: 18px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: .2s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.team-card:after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 18px solid rgba(255, 255, 255, .08);
    right: -30px;
    bottom: -40px;
}

.team-code {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(8px);
    font-weight: 950;
    color: white;
}

.team-card h3 {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 12px;
    margin: 0;
    font-size: 18px;
    z-index: 2;
    color: white;
}

.t1 {
    background: linear-gradient(135deg, #7d001b, #e20a3e);
}

.t2 {
    background: linear-gradient(135deg, #7d0024, #174c95);
}

.t3 {
    background: linear-gradient(135deg, #8f0000, #1d1d1d);
}

.t4 {
    background: linear-gradient(135deg, #c20b2f, #f4d640);
    color: #1b1b1b;
}

.t5 {
    background: linear-gradient(135deg, #004f2d, #0b9a62);
}

.t6 {
    background: linear-gradient(135deg, #1e55a5, #f8f8f8);
    color: #13233a;
}

.t7 {
    background: linear-gradient(135deg, #162750, #d5b300);
}

.t8 {
    background: linear-gradient(135deg, #7a1313, #0b3f74);
}

.t9 {
    background: linear-gradient(135deg, #008847, #f5cd00);
    color: #102a1d;
}

.t10 {
    background: linear-gradient(135deg, #2765b0, #ffffff);
    color: #123;
}

.t11 {
    background: linear-gradient(135deg, #b31b34, #ffffff);
    color: #222;
}

.t12 {
    background: linear-gradient(135deg, #111, #d9c190);
}

/* Product cards */
.tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tab-btn {
    padding: 5px 25px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-weight: 800;
    color: var(--muted);
    transition: all .3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.league-card:not([data-league="premier"]) {
    display: none;
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    transition: .2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.product-media {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #f3f4f6, #fff);
    overflow: hidden;
}

.product-media .jersey-svg {
    width: 78%;
    transition: .25s ease;
}

.product-card:hover .product-media .jersey-svg {
    transform: scale(1.04) rotate(-1deg);
}

.badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.badge.lime {
    background: var(--lime);
    color: var(--navy);
}

.wish {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    border: 0;
    font-size: 18px;
}

.product-body {
    padding: 18px;
}

.product-type {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.product-card h3 {
    margin: 6px 0 10px;
    font-size: 17px;
    min-height: 38px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.price strong {
    font-size: 20px;
}

.price del {
    margin-left: 6px;
    color: #9ca3af;
    font-size: 12px;
}

.quick-add {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--lime);
    color: var(--navy);
    font-size: 22px;
    font-weight: 900;
}

.rating {
    margin-top: 10px;
    color: #e0a400;
    font-size: 12px;
}

.rating span {
    color: var(--muted);
}

/* Comparison */
.compare-shell {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 26px;
    padding: 34px;
    border-radius: 28px;
    background: var(--navy);
    color: #fff;
}

.compare-intro {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.compare-intro h2 {
    font-size: clamp(38px, 5vw, 68px);
    color: white;
}

.compare-intro p {
    color: rgba(255, 255, 255, .68);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.compare-card {
    padding: 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.compare-card.highlight {
    background: var(--lime);
    color: var(--navy);
}

.compare-card ul {
    padding-left: 18px;
    margin: 18px 0 24px;
}

.compare-card li {
    margin-bottom: 8px;
}

.compare-price {
    font-size: 28px;
    font-weight: 950;
}

/* Split content */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.story-card {
    min-height: 460px;
    padding: 44px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.story-card.dark {
    background: radial-gradient(circle at 70% 20%, #5b1a17, #141414 55%);
}

.story-card.light {
    background: linear-gradient(135deg, #f0f7df, #cfe7ff);
    color: var(--navy);
}

.story-card h2 {
    font-size: clamp(38px, 5vw, 66px);
    max-width: 560px;
}

.story-card p {
    max-width: 540px;
    color: rgba(255, 255, 255, .72);
}

.story-card.light p {
    color: #415064;
}

.year-chips {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.year-chips span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    font-size: 12px;
    font-weight: 850;
}

.story-card.light .year-chips span {
    background: rgba(255, 255, 255, .55);
    border-color: rgba(11, 23, 40, .08);
}

/* Steps, reviews, guides */
.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.step {
    position: relative;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
}

.step-num {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--navy);
    color: var(--lime);
    font-weight: 950;
}

.step h3 {
    margin: 18px 0 8px;
    font-size: 18px;
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.trust-item {
    padding: 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eef3e0;
    font-size: 22px;
}

.trust-item strong {
    display: block;
    font-size: 14px;
}

.trust-item span {
    color: var(--muted);
    font-size: 12px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-card {
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
}

.review-card .stars {
    color: #e0a400;
}

.review-card blockquote {
    margin: 16px 0;
    font-size: 16px;
}

.review-meta {
    color: var(--muted);
    font-size: 13px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.guide-card {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
}

.guide-cover {
    min-height: 180px;
    padding: 22px;
    display: flex;
    align-items: end;
    background: linear-gradient(135deg, #14253d, #2b496e);
    color: #fff;
}

.guide-cover:hover {
    text-decoration: none;
}

.guide-card:nth-child(2) .guide-cover {
    background: linear-gradient(135deg, #b31b34, #f2d86b);
}

.guide-card:nth-child(3) .guide-cover {
    background: linear-gradient(135deg, #0b6b51, #c9ff35);
    color: #0b1728;
}

.guide-card:nth-child(4) .guide-cover {
    background: linear-gradient(135deg, #49205b, #ffb5d8);
    color: #1f1430;
}

.guide-cover strong {
    font-size: 24px;
    line-height: 1.1;
    color: white;
}

.guide-body {
    padding: 20px;
}

.guide-body p {
    color: var(--muted);
    font-size: 14px;
}


/* Homepage size chart */
.size-shell {
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 38px rgba(11, 23, 40, .06);
}

.size-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.size-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-tab {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-weight: 850;
}

.size-tab.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.size-note {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.size-panel {
    display: none;
}

.size-panel.active {
    display: block;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.size-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: #fff;
}

.size-table th,
.size-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

.size-table th {
    background: var(--navy);
    color: #fff;
    font-size: 13px;
}

.size-table th:first-child,
.size-table td:first-child {
    text-align: left;
    font-weight: 900;
}

.size-table tr:last-child td {
    border-bottom: 0;
}

.size-help {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
}

.measure-card,
.size-cta {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #f8fafb;
}

.measure-card h3,
.size-cta h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.measure-card p,
.size-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.size-cta {
    background: #eef3e0;
}

/* Shopping process video */
.video-shell {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    padding: 28px;
    border-radius: 28px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow);
}

.video-frame {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, #172942, #07111f);
    border: 1px solid rgba(255, 255, 255, .12);
}

.video-frame video {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    background: #07111f;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 32px;
    text-align: center;
    pointer-events: none;
}

.video-placeholder-inner {
    max-width: 520px;
}

.play-ring {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--navy);
    font-size: 28px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .28);
}

.video-placeholder h3 {
    margin-bottom: 8px;
    font-size: 28px;
    color: white;
}

.video-placeholder p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
}

.video-copy {
    padding: 18px 12px;
}

.video-copy h2 {
    font-size: clamp(38px, 4vw, 58px);
    color: white;
}

.video-copy>p {
    color: rgba(255, 255, 255, .68);
}

.video-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.video-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .09);
}

.video-step b {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--lime);
    color: var(--navy);
}

.video-step strong {
    display: block;
    margin-bottom: 3px;
}

.video-step span {
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
}

/* Contact section */
.contact-shell {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 24px;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, #eef3e0, #eef6ff);
    border: 1px solid rgba(11, 23, 40, .08);
}

.contact-intro h2 {
    font-size: clamp(38px, 4vw, 56px);
}

.contact-intro p {
    color: #4b5563;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-card {
    padding: 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
}

.contact-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--navy);
    color: var(--lime);
    font-size: 20px;
}

.contact-card h3 {
    margin: 16px 0 6px;
    font-size: 19px;
}

.contact-card p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 13px;
}

.contact-card a {
    font-weight: 900;
    word-break: break-word;
}

.contact-card a:hover {
    color: #547400;
}

.contact-hours {
    margin-top: 16px;
    color: #4b5563;
    font-size: 13px;
}

.faq {
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: 0;
    background: transparent;
    text-align: left;
    font-weight: 900;
    font-size: 17px;
}

.faq-a {
    display: none;
    padding: 0 0 22px;
    color: var(--muted);
}

.faq-item.open .faq-a {
    display: block;
}

.seo-copy {
    padding: 34px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--line);
}

.seo-copy h2 {
    font-size: 34px;
}

.seo-copy h3 {
    margin-top: 28px;
    font-size: 22px;
}

.seo-copy p {
    color: #4b5563;
}

.seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.seo-links a {
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 800;
}

/* Footer */
.newsletter {
    padding: 46px 0;
    background: var(--lime);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.newsletter h2 {
    margin: 0;
    font-size: 42px;
    color: var(--navy);
}

.newsletter p {
    margin: 8px 0 0;
    color: #33421d;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    height: 52px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    outline: none;
}

.site-footer {
    background: var(--navy);
    color: #fff;
}

.footer-main {
    padding: 62px 0 36px;
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 38px;
}

.footer-brand p {
    color: rgba(255, 255, 255, .64);
    max-width: 330px;
}

.footer-col h4 {
    margin-bottom: 14px;
    color: white;
}

.footer-col a {
    display: block;
    padding: 5px 0;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--lime);
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2000;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: .25s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .support-action.email {
        display: none;
    }

    .floating-contact a {
        min-width: 48px;
        width: 48px;
        justify-content: center;
        padding: 8px;
    }

    .floating-contact .fc-copy {
        display: none;
    }
}

@media (max-width: 1100px) {
    body .header-main {
        grid-template-columns: 170px 1fr auto;
    }

    .header-actions .label {
        display: none;
    }

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

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

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns: 1.4fr repeat(2, 1fr);
    }
}

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

    .contact-ribbon-inner {
        min-height: 62px;
        align-items: center;
    }

    .contact-ribbon-copy {
        display: none;
    }

    .quick-contact-actions {
        width: 100%;
    }

    .quick-contact-pill {
        flex: 1;
        min-width: 0;
        padding: 0 10px;
    }

    .support-action {
        display: none !important;
    }

    .floating-contact {
        display: none;
    }

    .mobile-contact-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2200;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .97);
        border-top: 1px solid var(--line);
        box-shadow: 0 -12px 30px rgba(11, 23, 40, .12);
    }

    .mobile-contact-bar a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 14px;
        font-size: 13px;
        font-weight: 900;
    }

    .mobile-contact-bar .mobile-whatsapp {
        background: #25d366;
        color: #071a10;
    }

    .mobile-contact-bar .mobile-email {
        background: var(--navy);
        color: #fff;
    }

    body {
        padding-bottom: 72px;
    }

    .contact-card.primary-contact {
        grid-template-columns: auto 1fr;
    }

    .contact-card.primary-contact .btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .promo-item:nth-child(n+3) {
        display: none;
    }

    body .header-main {
        min-height: 72px;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .search-form {
        grid-column: 1 / -1;
        order: 3;
        margin-bottom: 14px;
    }

    .header-actions .hide-mobile {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .nav-row {
        display: block;
        padding: 10px 0 18px;
    }

    .nav-link {
        width: 100%;
        height: auto;
        padding: 11px 0;
    }

    .mega-menu {
        position: static;
        width: 100%;
        display: none !important;
        box-shadow: none;
        border-radius: 14px;
        grid-template-columns: 1fr 1fr;
    }

    .hero-slide,
    .hero-slide.active {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 42px 28px 20px;
    }

    .hero-art {
        min-height: 360px;
    }

    .hero-card {
        width: 70%;
        right: 15%;
    }

    .slider-dots {
        left: 28px;
    }

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

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

    .product-media {
        min-height: 260px;
    }

    .compare-shell,
    .split,
    .newsletter-inner {
        grid-template-columns: 1fr;
    }

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

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

    .video-shell,
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .size-help {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 58px 0;
    }

    .section-head {
        display: block;
    }

    .section-head .text-link {
        margin-top: 12px;
    }

    .promo-inner {
        justify-content: flex-start;
        overflow-x: auto;
    }

    body .logo {
        font-size: 24px;
    }

    body .logo-mark {
        width: 38px;
        height: 38px;
    }

    .hero-shell,
    .hero-slide {
        min-height: 670px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-card {
        width: 82%;
        right: 9%;
    }

    .hero-art {
        min-height: 330px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .category-grid,
    .team-grid,
    .product-grid,
    .compare-grid,
    .steps,
    .trust-grid,
    .review-grid,
    .guide-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .size-shell,
    .video-shell,
    .contact-shell {
        padding: 22px;
    }

    .video-frame,
    .video-frame video {
        min-height: 300px;
    }

    .product-media {
        min-height: 230px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        min-height: 420px;
        padding: 28px;
    }

    .newsletter-form {
        display: grid;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: block;
    }
}

/* Custom style */
#header {position: sticky;top: 0;z-index: 10;background-color: white;}
.uk-nav-sub {padding-left: 0 !important;}
.uk-navbar-dropdown-nav .uk-nav-sub a:hover {color: black;}
.uk-navbar-dropdown {width:max-content;left:0 !important;top: 50px !important;box-shadow: none;border-radius: 0 0 20px 20px;}
.uk-navbar-dropdown-nav { display: grid;grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));width: 600px;gap: 24px;}
.uk-navbar-container:not(.uk-navbar-transparent) {background-color: #ffffff;}
.uk-navbar-nav>li>a {color: black;min-height: auto; height: 50px;font-weight: 700;text-wrap: nowrap;}
.uk-navbar-nav {overflow:scroll;}
.fa-brands.fa-whatsapp, .fa-regular.fa-envelope, .fa-solid.fa-cart-shopping {font-size: 18px;}