/* ============================================================
   Self-hosted Montserrat (replaces the Google Fonts request)
   ============================================================ */
@font-face{font-family:'Montserrat';font-style:normal;font-weight:400;font-display:swap;
  src:url('/fonts/montserrat-v31-latin-regular.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:italic;font-weight:400;font-display:swap;
  src:url('/fonts/montserrat-v31-latin-italic.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:600;font-display:swap;
  src:url('/fonts/montserrat-v31-latin-600.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:italic;font-weight:600;font-display:swap;
  src:url('/fonts/montserrat-v31-latin-600italic.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:700;font-display:swap;
  src:url('/fonts/montserrat-v31-latin-700.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:italic;font-weight:700;font-display:swap;
  src:url('/fonts/montserrat-v31-latin-700italic.woff2') format('woff2');}

/* Brand logo: external SVG applied as a mask so it still inherits the nav colour
   that scrollFunctionv2.js sets on .inact elements (via currentColor). */
.brand-logo{
  display:inline-block;
  width:3em;
  height:3em;
  vertical-align:middle;
  background-color:currentColor;
  -webkit-mask:url('/images/brandlogo.svg') no-repeat center / contain;
          mask:url('/images/brandlogo.svg') no-repeat center / contain;
  transition:background-color 1s;
}

/* Safety net: if mask isn't supported, render nothing rather than a solid block */
@supports not ((-webkit-mask: url('')) or (mask: url(''))){
  .brand-logo{background-color:transparent;}
}

/* Footer logo keeps its original 48px size and off-white watermark colour
   (the container supplies opacity:0.1). */
.footer-section-middle-brandLogo .brand-logo{
  width:48px;
  height:48px;
  background-color:var(--off-white);
}

/* Body text stack (used wherever Open Sans used to be declared) */
:root{
  --pmb-body-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* BASIC CSS RESET (Mimics some Bootstrap Reboot features) */
    *,
    *::before,
    *::after {
    box-sizing: border-box; /* Crucial for consistent sizing with padding/borders */
    }

    html {
    -webkit-text-size-adjust: 100%; /* Prevent font scaling on iOS */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Remove tap highlight on iOS */
    }

    body {
    margin: 0; /* Remove default body margin */
    font-family: var(--bs-body-font-family, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); /* Mimic Bootstrap's default font stack */
    font-size: var(--bs-body-font-size, 1rem); /* Default 16px font size */
    font-weight: var(--bs-body-font-weight, 400); /* Default font weight */
    line-height: var(--bs-body-line-height, 1.5); /* Default line height */
    color: var(--bs-body-color, #212529); /* Default text color (dark gray) */
    text-align: var(--bs-body-text-align, left);
    background-color: var(--bs-body-bg, #fff); /* Default background color (white) */
    /*-webkit-appearance: none;  For iOS form controls */
    }

    /* Remove default margins from common elements */
    h1, h2, h3, h4, h5, h6, p, ul, ol, dl {
    margin-top: 0;
    margin-bottom: 1rem; /* Bootstrap's default paragraph/heading margin */
    }

    ul, ol {
    padding-left: 2rem; /* Default list padding */
    }

    a {
    color: inherit; /* Inherit color unless specified otherwise */
    text-decoration: none; /* Remove underline by default */
    }

    a:hover {
    color: inherit; /* Keep color on hover unless specified */
    }

    /* Images and SVGs */
    img, svg {
    vertical-align: middle; /* Prevents tiny gaps below images */
    }

    /* Optional: Ensure inputs/buttons inherit font styles */
    input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    }
    .burger {
        display:none;
    }

    /* --- Global Variables (Optional but good for consistency) --- */
    /* These match Bootstrap 5's default spacing scale if 1rem = 16px */
    :root {
        --bs-spacer: 1rem; /* Base spacing unit (16px) */
        --bs-gutter-x: 1.5rem; /* For row horizontal padding negation */
        --bs-gutter-y: 0;

        /* Spacing values */
        --bs-spacing-0: 0;
        --bs-spacing-1: 0.25rem; /* 4px */
        --bs-spacing-2: 0.5rem;  /* 8px */
        --bs-spacing-3: 1rem;    /* 16px */
        --bs-spacing-4: 1.5rem;  /* 24px */
        --bs-spacing-5: 3rem;    /* 48px */
    }

    /* --- Container --- */
    .container {
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * 0.5); /* Half of gutter-x */
        padding-left: calc(var(--bs-gutter-x) * 0.5);  /* Half of gutter-x */
        margin-right: auto;
        margin-left: auto;
    }

    /* Bootstrap's default container max-widths */
    @media (min-width: 576px) {
        .container { max-width: 540px; }
    }
    @media (min-width: 768px) {
        .container { max-width: 720px; }
    }
    @media (min-width: 992px) {
        .container { max-width: 960px; }
    }
    @media (min-width: 1200px) {
        .container { max-width: 1140px; }
    }
    @media (min-width: 1400px) {
        .container { max-width: 1320px; }
    }


    /* --- Row --- */
    .row {
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(var(--bs-gutter-y) * -1); /* Often 0 unless specific .gy-* is used */
        margin-right: calc(var(--bs-gutter-x) * -0.5); /* Negative half of gutter-x */
        margin-left: calc(var(--bs-gutter-x) * -0.5);  /* Negative half of gutter-x */
    }

    .row > * { /* Direct children of .row are the columns */
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) * 0.5); /* Half of gutter-x */
        padding-left: calc(var(--bs-gutter-x) * 0.5);  /* Half of gutter-x */
        margin-top: var(--bs-gutter-y); /* Add vertical gutter if set */
    }


    /* --- Column Widths --- */
    .col-12 { width: 100%; }
    .col-6 { width: 50%; }

    @media (min-width: 768px) { /* md breakpoint (matches Bootstrap's default) */
        .col-md-4 { width: 33.333333%; }
        .col-md-2 { width: 16.666667%; }
        .col-md-auto {
            flex: 0 0 auto; /* Don't grow, don't shrink */
            width: auto;    /* Take width of content */
        }
    }


    /* --- Spacing Utilities (use !important to guarantee override) --- */
    .px-5 { padding-right: var(--bs-spacing-5) !important; padding-left: var(--bs-spacing-5) !important; }
    .py-5 { padding-top: var(--bs-spacing-5) !important; padding-bottom: var(--bs-spacing-5) !important; }
    .py-3 { padding-top: var(--bs-spacing-3) !important; padding-bottom: var(--bs-spacing-3) !important; }

    .my-0 { margin-top: var(--bs-spacing-0) !important; margin-bottom: var(--bs-spacing-0) !important; }
    .mb-3 { margin-bottom: var(--bs-spacing-3) !important; }
    .ms-0 { margin-left: var(--bs-spacing-0) !important; }
    .ms-3 { margin-left: var(--bs-spacing-3) !important; }
    .ms-auto { margin-left: auto !important; }


    /* --- Display Utilities --- */
    .d-flex { display: flex !important; }
    .align-items-center { align-items: center !important; }


    /* --- Nav Styling (for your social links) --- */
    .nav {
        display: flex;
        flex-wrap: wrap;
        padding-left: 0; /* Bootstrap removes default ul padding */
        margin-bottom: 0; /* Bootstrap removes default ul margin */
        list-style: none; /* Removes bullet points */
    }

    /* Bootstrap's .nav-link (your <a> elements) styles */
    .nav li a {
        display: block; /* Makes the entire link area clickable */
        padding: 0.5rem 1rem; /* Common nav-link padding. Adjust as needed. */
        color: inherit; /* Keep your icon colors consistent */
        text-decoration: none;
        
    }

    /* Your custom icon-link if it applies specific icon styles */
    .icon-link .icon-svg {
        width: 20px; /* Example, adjust to your needs */
        height: 20px; /* Example, adjust to your needs */
        background-color: currentColor; /* Allows SVG color to inherit from the parent 'a' */
    }

    .footer-section-middle-start-line,
    .footer-section-middle-end-line {
        /* Example: Define your lines if they are not just empty divs */
        flex-grow: 1; /* Allow lines to fill space */
        height: 1px; /* Or whatever thickness */
        background-color: #ccc; /* Or your line color */
    }

    .footer-section-bottom {
        /* If spacing or alignment isn't right here */
        justify-content: space-between; /* Common for copyright/terms in footer */
        align-items: center;
    }

    .footer-section-bottom p {
        /* Adjust specific paragraph styles */
        margin-bottom: 0; /* Override the general p margin-bottom if needed here */
    }

    /* .credit svg {
        margin-right: 0.25rem; 
    */
/* END OF BOOTSTRAP MIMIC */

.filterDiv {
    float: left;
    background-color: #F8F8F8;
    color: #000;
    width: 300px;
    height: 350px;
    line-height: 20px;
    text-align: center;
    margin: 10px;
}

.filterDivStack {
    float: left;
    background-color: #F8F8F8;
    color: #000;
    width: 160px;
    height: 185px;
    line-height: 10px;
    text-align: center;
    margin: 5px
}

.morebutton {
    margin: 1em auto;
    width: 80px;
    height: 80px;
    opacity: .4;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
    text-decoration: none
}

.morebutton:hover {
    opacity: .8;
    outline: 0
}

.morebutton:focus {
    outline: 0
}

body,
html {
    overflow: auto
}

.filterDiv:hover {
    background-color: #fff;
    transform: scale(1.1);
    transition: all 0.3s;
}

.show {
    display: block
}

.container {
    margin-top: 20px;
    overflow: hidden
}

.moveNameClass {
    color: #333745;
    font-size: 100%;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    line-height: 100%;
    margin: 0;
    font-weight: 700
}

.stackedMoveName {
    color: #333745;
    font-size: 82%;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    line-height: 100%;
    margin: 0;
    font-weight: 700
}

.moveDiffClass {
    color: #434343;
    font-size: 80%;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-style: italic;
    font-weight: 400;
    line-height: 100%;
    margin: 0
}

.stackedMoveDiff {
    color: #434343;
    font-size: 68%;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-style: italic;
    font-weight: 400;
    line-height: 100%;
    margin: 0
}

.moveImgClass {
    width: 280px;
    height: 280px;
    margin: 10px
}

.stackedMoveImg {
    width: 150px;
    height: 150px;
    margin: 5px
}

.fadein {
    -webkit-animation: fadein 3s;
    -moz-animation: fadein 3s;
    -ms-animation: fadein 3s;
    -o-animation: fadein 3s;
    animation: fadein 3s
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-ms-keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-o-keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

p {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif
}

h1 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 180%;
    margin-bottom: .2em
}

h2 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 110%
}

h4 {
    color: #333745;
    font-size: 100%;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    line-height: 100%;
    margin: 0
}

h5 {
    color: #434343;
    font-size: 80%;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-style: italic;
    font-weight: 400;
    line-height: 100%;
    margin: 0
}

a:link {
    color: #8458b3;
    text-decoration: none;
    font-weight: bolder
}

a:visited {
    color: #551A8B;
    text-decoration: none;
    font-weight: bolder
}

.desktopcolumn1 {
    width: 48%;
    float: left;
    padding-bottom: 20px;
    margin: auto
}

.btn {
    border: none;
    outline: 0;
    padding: 12px 16px;
    background-color: #fff;
    color: black;
    cursor: pointer;
    margin: 1px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    border-radius: 10px;
}

.btn:hover {
    background-color: #ddd;
    color: #000
}

.btn.active {
    background-color: #8458b3;
    color: #fff
}

.btn2 {
    border: none;
    outline: 0;
    padding: 12px 16px;
    background-color: #fff;
    color: black;
    cursor: pointer;
    margin: 1px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    border-radius: 10px;
}

.btn2:hover {
    background-color: #ddd;
    color: #000
}

.btn2.active2 {
    background-color: #8458b3;
    color: #fff
}

.btn3 {
    border: none;
    outline: 0;
    padding: 12px 16px;
    background-color: #fff;
    color: black;
    cursor: pointer;
    margin: 1px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    border-radius: 10px;
}

.btn3:hover {
    background-color: #ddd;
    color: #000
}

.btn3.active3 {
    background-color: #8458b3;
    color: #fff
}

.btn4 {
    border: none;
    outline: 0;
    padding: 12px 16px;
    background-color: #fff;
    color: black;
    cursor: pointer;
    margin: 1px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    border-radius: 10px;
}

.btn4:hover {
    background-color: #ddd;
    color: #000
}

.btn4.active4 {
    background-color: #8458b3;
    color: #fff
}

.btn5 {
    border: none;
    outline: 0;
    padding: 12px 16px;
    background-color: #fff;
    color: black;
    cursor: pointer;
    margin: 1px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    border-radius: 10px;
}

.btn5:hover {
    background-color: #ddd;
    color: #000
}

.btn5.active5 {
    background-color: #8458b3;
    color: #fff
}

.btn6 {
    border: none;
    outline: 0;
    padding: 12px 16px;
    background-color: #fff;
    color: black;
    cursor: pointer;
    margin: 1px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    border-radius: 10px;
}

.btn6:hover {
    background-color: #ddd;
    color: #000
}

.btn6.active6 {
    background-color: #8458b3;
    color: #fff
}

.btn7 {
    border: none;
    outline: 0;
    padding: 12px 16px;
    background-color: #fff;
    color: black;
    cursor: pointer;
    margin: 1px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    border-radius: 10px;
}

.btn7:hover {
    background-color: #ddd;
    color: #000
}

.btn7.active7 {
    background-color: #8458b3;
    color: #fff
}

.btn8 {
    border: none;
    outline: 0;
    padding: 12px 16px;
    background-color: #fff;
    color: black;
    cursor: pointer;
    margin: 1px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    border-radius: 10px;
}

.btn8:hover {
    background-color: #ddd;
    color: #000
}

.btn8.active8 {
    background-color: #8458b3;
    color: #fff
}

.show {
    display: block
}

body {
    background-color: #F8F8F8;
    margin: 0;
    min-height: 95%;
    overflow-x: hidden;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px
}

.mid-right {
    position: absolute;
    bottom: 50%;
    right: 4%;
    max-width: 50%
}

.mainimgcontainer {
    position: relative;
    text-align: right;
    background-color: #000;
    min-height: 300px
}

.maintenanceimgcontainer {
    text-align: left;
    vertical-align: middle;
    background-color: #000;
    min-height: 300px
}

.overallcontainer {
    position: relative;
    text-align: center;
    margin: 2% auto;
    width: 98%;
    justify-content: center;
    display: block
}

.listcontainer {
    justify-content: center;
    display: flex;
    flex-wrap: wrap
}

.titlebuttoncontainer {
    position: relative;
    text-align: center;
    margin: 2%;
    width: 96%;
    justify-content: center;
    display: flex
}

.topnav {
    overflow: hidden;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
}

/* .topnav .scroll {
    background-color: #00f;
    transition: all .5s
} */

.topnav a {
    float: left;
    display: block;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    font-family: 'Montserrat', Helvetica, sans-serif;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    fill:white;
}

@media screen and (max-width:1200px) {
    .topnav a {
    font-size: 14px;
    padding:14px 10px;
}
}


.topnav #login {
    font-size: 14px;
    padding: 14px 8px
}

#YT,
.topnav #IG {
    padding: 14px 8px
}

.topnav a:hover {
    background-color: #F8F8F8;
    color: #000 !important;
    cursor: pointer;
    fill:black;
}

.topnav svg:hover {
    background-color: #F8F8F8;
    color: #000 !important;
    cursor: pointer;
    fill:black;
}

#IG:hover,
#YT:hover {
    background-color: transparent
}

#navbarlogo a:hover {
    background-color: #000;
    color: #fff
}

.topnav a.act {
    background-color: #8458b3;
    color: #fff !important
}

.topnav input[type=text] {
    float: right;
    padding: 6px;
    border: none;
    margin-top: 8px;
    margin-right: 16px;
    font-size: 17px;
}

.titletext {
    color: #fff;
    font-size: 400%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

@media screen and (min-width:851px) {
    .navbar {
        display: none;
    }
    .burger {
        display: none;
    }
}

.loader {
    border: 12px solid #F8F8F8;
    border-top: 12px solid #8458b3;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 20px;
    animation: spin 2s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@media screen and (max-width:850px) {
    *, *:before, *:after 
{ box-sizing: border-box; }

.burger {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    display:block;
}
.burger label .menu {
    position: fixed;
    left: -100px;
    top: -100px;
    z-index: 100;
    width: 200px;
    height: 200px;
    background: #8458B3;
    border-radius: 50% 50% 50% 50%;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    box-shadow: 0 0 0 0 #8458B3, 0 0 0 0 #8458B3;
    cursor: pointer;
    
  }
  
  .burger label .hamburger {
    position: absolute;
    top: 135px;
    right: 50px;
    width: 30px;
    height: 2px;
    background: white;
    display: block;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }
  
  .burger label .hamburger:after, label .hamburger:before {
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: white;
  }
  
  .burger label .hamburger:before { top: -10px; }
  
  .burger label .hamburger:after { bottom: -10px; }
  
  .burger label input { display: none; }
  
  .burger label input:checked + .menu {
    box-shadow: 0 0 0 100vw #8458B3, 0 0 0 100vh #8458B3;
    border-radius: 0;
    
  }
  
  label input:checked + .menu .hamburger {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    
  }
  
  .burger label input:checked + .menu .hamburger:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    bottom: 0;
    
  }
  
  .burger label input:checked + .menu .hamburger:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
    
  }
  .burger label input:checked + .menu + ul { opacity: 1; }
  .burger label input:not(:checked) + .menu + ul li { opacity: 0;}
  .burger label input:not(:checked) + .menu + ul { opacity: 0; z-index:-20;}
  .burger label input:not(:checked) + .menu + ul + #mobilefront {display:none;}
  .burger label input::checked + .menu + ul + #mobilefront {display:none;}

  .burger label ul {
    z-index: 200;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    /*-webkit-transition: .25s 0s ease-in-out;
    transition: .25s 0s ease-in-out; */
    letter-spacing: 3px;
  font-weight: bolder;
  padding: 0px;
  width: 90vw;
  }
  
  .burger label a {
    margin-bottom: 1em;
    display: block;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 2.7vh;
  }
  
  .burger li {
    list-style: none;
    text-align: center;
  }
  
  .burger h1 {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
  }
  
    .topnav a {
        margin: 0;
        padding: 10px;
        font-size: 11px
    }
    

    .topnav {
        display: none
    }

    .titletext {
        font-size: 300%
    }

    div.burger ul li a {
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 3px;
        font-family: 'Montserrat', sans-serif
    }
    .burger label input:checked + .menu + ul li {
        -webkit-transition: all 250ms cubic-bezier(0, .995, .99, 1);
        -moz-transition: all 250ms cubic-bezier(0, .995, .99, 1);
        -ms-transition: all 250ms cubic-bezier(0, .995, .99, 1);
        -o-transition: all 250ms cubic-bezier(0, .995, .99, 1);
        transition: all 250ms cubic-bezier(0, .995, .99, 1)
    }

    .burger label input:checked + .menu + ul li:nth-of-type(1) {
        opacity: 1;
        transition-delay: 200ms;
    }

    .burger label input:checked + .menu + ul li:nth-of-type(2) {
        opacity: 1;
        transition-delay: 250ms;

    }
    .burger label input:checked + .menu + ul li:nth-of-type(3) {
        opacity: 1;
        transition-delay: 300ms;
    }
    .burger label input:checked + .menu + ul li:nth-of-type(4) {
        opacity: 1;
        transition-delay: 350ms;
    }
    .burger label input:checked + .menu + ul li:nth-of-type(5) {
        opacity: 1;
        transition-delay: 400ms;
    }
    .burger label input:checked + .menu + ul li:nth-of-type(6) {
        opacity: 1;
        transition-delay: 450ms;
    }
    .burger label input:checked + .menu + ul li:nth-of-type(7) {
        opacity: 1;
        transition-delay: 500ms;
    }
    .burger label input:checked + .menu + ul li:nth-of-type(8) {
        opacity: 1;
        transition-delay: 550ms;
    }
    .burger label input:checked + .menu + ul li:nth-of-type(9) {
        opacity: 1;
        transition-delay: 600ms;
    }
}

@media screen and (max-width:1000px) {

    .btn,
    .btn2,
    .btn3,
    .titlebuttoncontainer .btn {
        font-size: 13px;
        padding: 9px 12px
    }

    .desktopcolumn1 {
        width: 100%;
        float: flex;
        clear: both;
        margin: auto
    }
}

@media screen and (max-width:600px) {

    
.burger label .menu {
    position: fixed;
    left: -75px;
    top: -75px;
    width: 150px;
    height: 150px;
    
  }
  
  .burger label .hamburger {
    top: 105px;
    right: 30px;
  }


    .btn,
    .btn2,
    .btn3,
    .titlebuttoncontainer .btn {
        font-size: 12px;
        padding: 6px 8px
    }

    .cleartitle {
        clear: both;
        display: block;
        margin-top: 4px
    }

/*     .tooltip .tooltiptext {
        width: 100px;
        left: -120px;
        top: 20px
    } */

    .tooltip:active .tooltiptext,
    .tooltip:focus .tooltiptext,
    .tooltip:hover .tooltiptext {
        visibility: visible
    }
}

.tothetop {
    position: fixed;
    bottom: 5px;
    right: 5px;
    border-radius: 5px;
    padding: 5px;
    border: 0;
    background-color: #fff;
    color: #737373;
    z-index: 1000
}

.toparrow {
    position: fixed;
    font-size: 140%;
    bottom: 50%;
    right: 10px;
    border-radius: 50%;
    padding: 5px 10px;
    border: 0;
    border-color: transparent;
    background-color: #fff;
    color: #000;
    z-index: 16;
    margin-right: 3px
}

#top,
#top2 {
    opacity: 0;
    scroll-behavior: smooth;
    transition: all 1s
}
/* SIGN IN WITH GOOGLE BUTTON */
.gsi-material-button {
    /* -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-appearance: none; */
    background-color: #f2f2f2;
    background-image: none;
    border: none;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #1f1f1f;
    cursor: pointer;
    font-family: 'Roboto', arial, sans-serif;
    font-size: 14px;
    height: 40px;
    letter-spacing: 0.25px;
    outline: none;
    overflow: hidden;
    padding: 0 12px;
    position: relative;
    text-align: center;
    -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
    transition: background-color .218s, border-color .218s, box-shadow .218s;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
    max-width: 400px;
    min-width: min-content;
  }
  
  .gsi-material-button .gsi-material-button-icon {
    height: 20px;
    margin-right: 12px;
    min-width: 20px;
    width: 20px;
  }
  
  .gsi-material-button .gsi-material-button-content-wrapper {
    -webkit-align-items: center;
    align-items: center;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: space-between;
    position: relative;
    width: 100%;
  }
  
  .gsi-material-button .gsi-material-button-contents {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
  }
  
  .gsi-material-button .gsi-material-button-state {
    -webkit-transition: opacity .218s;
    transition: opacity .218s;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .gsi-material-button:disabled {
    cursor: default;
    background-color: #ffffff61;
  }
  
  .gsi-material-button:disabled .gsi-material-button-state {
    background-color: #1f1f1f1f;
  }
  
  .gsi-material-button:disabled .gsi-material-button-contents {
    opacity: 38%;
  }
  
  .gsi-material-button:disabled .gsi-material-button-icon {
    opacity: 38%;
  }
  
  .gsi-material-button:not(:disabled):active .gsi-material-button-state, 
  .gsi-material-button:not(:disabled):focus .gsi-material-button-state {
    background-color: #001d35;
    opacity: 12%;
  }
  
  .gsi-material-button:not(:disabled):hover {
    -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  }
  
  .gsi-material-button:not(:disabled):hover .gsi-material-button-state {
    background-color: #001d35;
    opacity: 8%;
  }
/*END OF SIGN IN WITH GOOGLE BUTTON*/

/* ALL FOOTER STYLES HERE */

    :root {
        --light-pmb-purple: #c2acd9;
        --off-white: #F8F8F8;
        --pmb-purble: #8458b3;
        /* --crimson-red: #a60311; */
        /* --deep-pmb-purple: #533770;  */
        --deep-pmb-purple: #422c59;
        --color-background-light: #F8F8F8;
      /* Soft Off-White */
      --color-text-dark: #333333;
      /* Dark Warm Gray for headings */
      --color-text-medium: #595959;
      /* Medium Warm Gray for body */
      --color-accent-primary: #8458B3;
      /* Your Medium Purple */
      --color-accent-light: #A38BBF;
      /* Lighter Purple/Lavender */
      --color-accent-very-light: #E6DCEF;
      /* Very Light Purple */
      --color-border-light: #D9D9D9;
      /* Light Gray for borders */
      --color-white: #FFFFFF;
      --color-shadow: rgba(0, 0, 0, 0.1);
      
    }


    footer {
        background: var(--deep-pmb-purple);
    }

    .footer-section-brandName {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--off-white);

        @media (max-width: 992px) {
            font-size:1.2rem;
        };
        @media (max-width: 768px) {
            font-size:2rem;
        };
    }

    .footer-section-brandSlogan {
        font-family: 'Montserrat';
        font-size: 0.875rem;
        font-weight: 500;
        font-style: italic;
        color: var(--off-white);
    }

    a.icon-link .icon-svg {
        background-color: var(--light-pmb-purple);
    }

    a.icon-link:hover .icon-svg {
        animation: Buzz0xERR0R 0.75s linear 1;
    }

    @keyframes Buzz0xERR0R {
        10% {
            transform: translateX(0.1875rem) rotate(2deg);
        }
        40% {
            transform: translateX(-0.1875rem) rotate(-2deg);
        }
            50% {
            transform: translateX(0.125rem) rotate(1deg);
        }
            60% {
            transform: translateX(-0.125rem) rotate(-1deg);
        }
            70% {
            transform: translateX(0.125rem) rotate(1deg);
        }
            80% {
            transform: translateX(-0.125rem) rotate(-1deg);
        }
            90% {
            transform: translateX(0.0625rem) rotate(0);
        }
            100% {
            transform: translateX(-0.0625rem) rotate(0deg);
        }
    }

    a.icon-link:focus .icon-svg {
        background-color: var(--pmb-purble);
    }

    .footer-section-top-column-one .column-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--off-white);
    }

    .footer-section-top-column-one {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 600;
    }

    .footer-section-top-column-one a {
        font-size: 0.875rem;
        text-decoration: none;
        color: var(--light-pmb-purple);
        position: relative;
    }

    .footer-section-top-column-one a::after {
        content: "";
        width: 0;
        height: 0.125rem;
        left: 0;
        bottom: 0;
        transition: width .4s ease;
        background: var(--light-pmb-purple);
        position: absolute;
    }

    .footer-section-top-column-one a:hover::after {
        width: 100%;
    }

    .footer-section-top-column-one a:focus {
        color: var(--pmb-purble);
    }

    .footer-section-top-column-two .column-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--off-white);
    }

    .footer-section-top-column-two {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 600;
    }

    .footer-section-top-column-two a {
        font-size: 0.875rem;
        text-decoration: none;
        color: var(--light-pmb-purple);
        position: relative;
    }

    .footer-section-top-column-two a::after {
        content: "";
        width: 0;
        height: 0.125rem;
        left: 0;
        bottom: 0;
        transition: width .4s ease;
        background: var(--light-pmb-purple);
        position: absolute;
    }

    .footer-section-top-column-two a:hover::after {
        width: 100%;
    }

    .footer-section-top-column-two a:focus {
        color: var(--pmb-purble);
    }

    .footer-section-top-column-three .column-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--off-white);
    }

    .footer-section-top-column-three {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 600;
    }

    .footer-section-top-column-three a {
        font-size: 0.875rem;
        text-decoration: none;
        color: var(--light-pmb-purple);
        position: relative;
    }

    .footer-section-top-column-three a::after {
        content: "";
        width: 0;
        height: 0.125rem;
        left: 0;
        bottom: 0;
        transition: width .4s ease;
        background: var(--light-pmb-purple);
        position: absolute;
    }

    .footer-section-top-column-three a:hover::after {
        width: 100%;
    }

    .footer-section-top-column-three a:focus {
        color: var(--pmb-purble);
    }

    .footer-section-top-column-four .column-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--off-white);
    }

    .footer-section-top-column-four {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 600;
    }

    .footer-section-top-column-four a {
        font-size: 0.875rem;
        text-decoration: none;
        color: var(--light-pmb-purple);
        position: relative;
    }

    .footer-section-top-column-four a::after {
        content: "";
        width: 0;
        height: 0.125rem;
        left: 0;
        bottom: 0;
        transition: width .4s ease;
        background: var(--light-pmb-purple);
        position: absolute;
    }

    .footer-section-top-column-four a:hover::after {
        width: 100%;
    }

    .footer-section-top-column-four a:focus {
        color: var(--pmb-purble);
    }

    .footer-section-middle-start-line {
        width: 100%;
        height: 0.063rem;
        margin-top: 1.75rem;
        margin-right: 1.75rem;
        opacity: 0.1;
        background: var(--off-white);
    }

    .footer-section-middle-brandLogo {
        opacity: 0.1;
        fill: var(--off-white);
    }

    .footer-section-middle-end-line {
        width: 100%;
        height: 0.063rem;
        margin-top: 1.75rem;
        margin-left: 1.75rem;
        opacity: 0.1;
        background: var(--off-white);
    }

    .footer-section-bottom {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.875rem;
        font-weight: 600;
    }

    .copyright {
        color: var(--off-white);
    }

    .copyright a {
        text-decoration: none;
        color: var(--light-pmb-purple);
        position: relative;
    }

    .copyright a::after {
        content: "";
        width: 0;
        height: 0.125rem;
        left: 0;
        bottom: 0;
        transition: width .4s ease;
        background: var(--light-pmb-purple);
        position: absolute;
    }

    .copyright a:hover::after {
        width: 100%;
    }

    .copyright a:focus {
        color: var(--pmb-purble);
    }

    .terms-and-conditions a {
        text-decoration: none;
        color: var(--light-pmb-purple);
        position: relative;
    }

    .terms-and-conditions a::after {
        content: "";
        width: 0;
        height: 0.125rem;
        left: 0;
        bottom: 0;
        transition: width .4s ease;
        background: var(--light-pmb-purple);
        position: absolute;
    }

    .terms-and-conditions a:hover::after {
        width: 100%;
    }

    .terms-and-conditions a:focus {
        color: var(--pmb-purble);
    }

    .privacy-policy a {
        text-decoration: none;
        color: var(--light-pmb-purple);
        position: relative;
    }

    .privacy-policy a::after {
        content: "";
        width: 0;
        height: 0.125rem;
        left: 0;
        bottom: 0;
        transition: width .4s ease;
        background: var(--light-pmb-purple);
        position: absolute;
    }

    .privacy-policy a:hover::after {
        width: 100%;
    }

    .privacy-policy a:focus {
        color: var(--pmb-purble);
    }

    .cookie-policy a {
        text-decoration: none;
        color: var(--light-pmb-purple);
        position: relative;
    }

    .cookie-policy a::after {
        content: "";
        width: 0;
        height: 0.125rem;
        left: 0;
        bottom: 0;
        transition: width .4s ease;
        background: var(--light-pmb-purple);
        position: absolute;
    }

    .cookie-policy a:hover::after {
        width: 100%;
    }

    .cookie-policy a:focus {
        color: var(--pmb-purble);
    }

    .credit {
        color: var(--off-white);
    }

    .credit a {
        text-decoration: none;
        color: var(--light-pmb-purple);
        position: relative;
    }

    .credit a::after {
        content: "";
        width: 0;
        height: 0.125rem;
        left: 0;
        bottom: 0;
        transition: width .4s ease;
        background: var(--light-pmb-purple);
        position: absolute;
    }

    .credit a:hover::after {
        width: 100%;
    }

    #heartbeat {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
        fill: var(--light-pmb-purple);
        animation: heartbeat .25s infinite alternate;
    }

    @keyframes heartbeat {
        to {
            transform: scale(1.2);
        }
    }



    /* Custom CSS for d-flex and align-items-center */
.d-flex {
    display: flex !important; 
}

.align-items-center {
    align-items: center !important; 
}

/* --- Grid System Replacements --- */
.container {
    width: 100%;
    padding-right: 1.5rem; /* Equivalent to px-3 or px-4, adjust as needed */
    padding-left: 1.5rem;  /* Equivalent to px-3 or px-4, adjust as needed */
    margin-right: auto;
    margin-left: auto;
    /* Responsive breakpoints (adjust these to your needs) */
    @media (min-width: 576px) {
        max-width: 540px;
    }
    @media (min-width: 768px) {
        max-width: 720px;
    }
    @media (min-width: 992px) {
        max-width: 960px;
    }
    @media (min-width: 1200px) {
        max-width: 1140px;
    }
    @media (min-width: 1400px) {
        max-width: 1320px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap; /* Allows columns to wrap to the next line */
    margin-right: -0.75rem; /* Compensate for column padding (equivalent to Bootstrap's .g-3 or .g-x-3) */
    margin-left: -0.75rem;  /* Compensate for column padding */
}

[class^="col-"], [class*=" col-"] {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 0.75rem; /* Standard column padding */
    padding-left: 0.75rem;  /* Standard column padding */
}

/* Column widths for specific breakpoints */
.col-12 { width: 100%; }
.col-6 { width: 50%; }

@media (min-width: 768px) { /* md breakpoint for col-md-* */
    .col-md-4 { width: 33.333333%; }
    .col-md-2 { width: 16.666667%; }
    .col-md-auto {
        flex: 0 0 auto; /* Don't grow, don't shrink */
        width: auto;    /* Take width of content */
    }
}

/* --- Spacing Utilities Replacements --- */
/* Padding */
.px-5 { padding-right: 3rem !important; padding-left: 3rem !important; } /* Bootstrap default for px-5 is 3rem */
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; } /* Bootstrap default for py-5 is 3rem */
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; } /* Bootstrap default for py-3 is 1rem */

/* Margins */
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 1rem !important; } /* Bootstrap default for mb-3 is 1rem */
.ms-0 { margin-left: 0 !important; }
.ms-3 { margin-left: 1rem !important; } /* Bootstrap default for ms-3 is 1rem */
.ms-auto { margin-left: auto !important; }

/* --- Display Utilities Replacement --- */
.d-flex {
    display: flex !important;
}

/* --- Basic Nav Styling --- */
.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

/* --- Updated/Added Nav Styling for your .nav list --- */

.nav {
    display: flex; /* Makes the ul a flex container */
    flex-wrap: wrap; /* Allows items to wrap */
    padding-left: 0 !important; /* Removes default ul padding */
    margin-bottom: 0 !important; /* Removes default ul margin */
    list-style: none; /* Removes bullet points */
}

.nav li { /* This targets your <li> elements inside .nav */
    /* If you had specific styles for .nav-item that you liked, add them here.
       Often, .nav-item itself doesn't add much visual style beyond potential margins.
       You are already using .ms-0 and .ms-3 for spacing, which is good. */
    margin-bottom: 0; /* Ensures no extra vertical margin from default li styles */
}

.nav li a { /* This targets your <a> elements (your .icon-link) inside .nav li */
    display: block; /* Makes the entire link area clickable */
    padding: 0.5rem 0.75rem; /* Standard Bootstrap nav-link padding; adjust as needed */
    color: inherit; /* Or specify your desired link color, e.g., #007bff; */
    text-decoration: none; /* Removes underline */
    background-color: transparent; /* Ensures no default background */
    border: 1px solid transparent; /* Often used for border-radius on focus/hover */
    border-radius: 0.25rem; /* Standard small border-radius */

}

/* If you have specific styles for .icon-link that are NOT related to Bootstrap
   (e.g., controlling the SVG size or color), keep them in a separate rule like this: */
.icon-link .icon-svg {
    /* Your existing SVG styling, e.g.: */
    width: 20px;
    height: 20px;
    background-color: currentColor; /* Allows the SVG color to inherit from the parent 'a' tag's color */
}


/* END FOOTER STYLES */

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #000
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: #494d5f;
    color: #fff;
    text-align: left;
    padding: 5px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    z-index: 1
}

.tooltip:active .tooltiptext,
.tooltip:hover .tooltiptext {
    visibility: visible
}


.generate {
    border: none;
    outline: 0;
    padding: 12px 16px;
    background-color: #8458b3;
    color: #fff;
    cursor: pointer;
    margin: 5px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 20px;
    border-radius: 5px
}

#snackbar {
    visibility: hidden;
    min-width: 150px;
    margin-left: -93px;
    background-color: #fff;
    color: #434343;
    text-align: center;
    border-radius: 30px;
    padding: 16px;
    position: fixed;
    z-index: 60;
    left: 50%;
    bottom: 30px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein .5s, fadeout .5s 2s;
    animation: fadein .5s, fadeout .5s 2s
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0
    }

    to {
        bottom: 30px;
        opacity: 1
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0
    }

    to {
        bottom: 30px;
        opacity: 1
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1
    }

    to {
        bottom: 0;
        opacity: 0
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1
    }

    to {
        bottom: 0;
        opacity: 0
    }
}


        /* Hero/Intro Section */
        .intro-section {
            text-align: center;
            padding: 40px 20px;
            /* margin-bottom: 30px; */
            background-color: var(--color-background-light);
        }
        .intro-section h1 {
            font-size: 2.5em;
            margin-bottom: 15px;
            font-weight: 700;
        }
        .intro-section p {
            font-size: 1.1em;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

         /* Filter Section - Designed to match test.html's select-based filters */
         .filter-section {
            background-color: white;
            padding: 20px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            display: flex;
            flex-wrap: wrap;
            gap: 20px; /* Spacing between filter groups */
            justify-content: center;
        }

        
        /* Tooltip for info icons */
        .info-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: var(--color-border-light);
            color: white;
            font-size: 0.8em;
            font-weight: 600;
            cursor: help;
            position: relative;
        }

        .info-icon .tooltiptext {
            visibility: hidden;
            width: 280px;
            background-color: var(--color-text-dark);
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 8px 10px;
            position: absolute;
            z-index: 1;
            bottom: 125%; /* Position above the icon */
            left: 50%;
            margin-left: -110px; /* Center the tooltip */
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 1em;
            line-height: 1.4;
        }
        .info-icon .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: var(--color-text-dark) transparent transparent transparent;
        }
        .info-icon:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }

         .footer-section-newsletter {
    padding-bottom: 0.5rem;
  }

  .nl-footer-widget {
    background: rgba(255, 255, 255, 0.06);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 16px 20px;
    max-width: 680px;
    margin:auto;
  }

  .nl-footer-widget__heading {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 3px;
  }

  .nl-footer-widget__sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    display: block;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .nl-footer-widget__form {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .nl-footer-widget__input {
    flex: 1;
    min-width: 180px;
    height: 34px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 0.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    outline: none;
    transition: border-color 0.15s;
    font-family: inherit;
  }

  .nl-footer-widget__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
  }

  .nl-footer-widget__input:focus {
    border-color: rgba(196, 168, 230, 0.6);
  }

  .nl-footer-widget__btn {
    height: 34px;
    padding: 0 16px;
    background: rgba(196, 168, 230, 0.25);
    color: rgba(255, 255, 255, 0.85);
    border: 0.5px solid rgba(196, 168, 230, 0.45);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
  }

  .nl-footer-widget__btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
  }

  .nl-footer-widget__btn:active {
    transform: scale(0.97);
  }

  .nl-footer-widget__btn:disabled {
    opacity: 0.5;
    cursor: default;
    transform: none;
  }

  .nl-footer-widget__success {
    display: none;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #5dcaa5;
  }

  .nl-footer-widget__success.is-visible {
    display: flex;
  }

  .nl-footer-widget__check {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .nl-footer-widget__error {
    display: none;
    margin-top: 8px;
    font-size: 11px;
    color: rgba(240, 153, 123, 0.9);
  }

  .nl-footer-widget__error.is-visible {
    display: block;
  }

  .nl-footer-widget__error a {
    color: rgba(240, 153, 123, 0.9);
  }
/* Newsletter row layout */
.footer-section-newsletter {
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nl-footer-widget {
  flex: 1 1 300px;
  max-width: 680px;
  margin: 0;
}

/* Supporter widget */
.supporter-count-widget {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.18s;
  flex-shrink: 0;
  margin:auto;
}

.supporter-count-widget:hover {
  opacity: 0.8;
}

.supporter-count-widget__heart {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.supporter-count-widget__right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.supporter-count-widget__number {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.supporter-count-widget__label {
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
}

.supporter-count-widget__label em {
  color: #c4a8e6;
  font-style: normal;
}

/* Stacking on small screens */
@media (max-width: 767px) {
  .footer-section-newsletter {
    flex-direction: column;
    align-items: stretch;
  }

  .nl-footer-widget {
    margin: 0 auto;
    max-height:fit-content;
  }

  .supporter-count-widget {
    margin: 0 auto;
  }
}

/* ── Social icons: external SVG via CSS mask ──────────────────────────
   Previously 4 inline <svg> blocks repeated in every page (~4.4KB raw each).
   Now one cached file per icon, recoloured with background-color. */
.icon-link .icon-svg{
  display:inline-block;
  width:20px;
  height:20px;
  background-color:currentColor;
  -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat;
  -webkit-mask-position:center;  mask-position:center;
  -webkit-mask-size:contain;     mask-size:contain;
}
.icon-svg.icon-youtube  {-webkit-mask-image:url('/images/social-youtube.svg');  mask-image:url('/images/social-youtube.svg');}
.icon-svg.icon-instagram{-webkit-mask-image:url('/images/social-instagram.svg');mask-image:url('/images/social-instagram.svg');}
.icon-svg.icon-facebook {-webkit-mask-image:url('/images/social-facebook.svg'); mask-image:url('/images/social-facebook.svg');}
.icon-svg.icon-bluesky  {-webkit-mask-image:url('/images/social-bluesky.svg');  mask-image:url('/images/social-bluesky.svg');}


/* Shared by index.html and combos.html - both use identical grid columns
   (240-280px wide / 135px compact) and square .card-img-wrapper cards. */
/* ==========================================================================
   LOADING SKELETON
   Sits inside #movesGrid, which is at line ~866 - above the render-blocking
   scripts - so it paints while those are still downloading. It clears
   itself: executeFiltering() does gridContainer.innerHTML = '' before
   appending real cards, so no teardown code is needed.
   `grid-column: 1 / -1` makes it span whatever column count the parent has,
   including the single implicit column it has before the view-wide /
   view-compact class is applied on load.
   ========================================================================== */
.pmb-skel-card {
  background: #ffffff;
  border: 1px solid #f1edf7;
  border-radius: var(--card-radius, 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  animation: pmbSkelPulse 1.6s ease-in-out infinite;
}

/* image well */
.pmb-skel-card::before {
  content: "";
  display: block;
  aspect-ratio: 1 / 1;
  background: #f0e8ff;
}

/* title line */
.pmb-skel-card::after {
  content: "";
  display: block;
  height: 12px;
  width: 60%;
  margin: 16px auto 20px;
  border-radius: 6px;
  background: #f0e8ff;
}

.pmb-skel-card:nth-child(2)  { animation-delay: 0.08s; }
.pmb-skel-card:nth-child(3)  { animation-delay: 0.16s; }
.pmb-skel-card:nth-child(4)  { animation-delay: 0.24s; }
.pmb-skel-card:nth-child(5)  { animation-delay: 0.32s; }
.pmb-skel-card:nth-child(6)  { animation-delay: 0.40s; }
.pmb-skel-card:nth-child(7)  { animation-delay: 0.48s; }
.pmb-skel-card:nth-child(8)  { animation-delay: 0.56s; }

@keyframes pmbSkelPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
  .pmb-skel-card { animation: none; opacity: 0.85; }
}

/* The grid containers only receive grid-template-columns from .view-wide /
   .view-compact, which JS adds on load. Before that they are a single
   implicit column, which collapsed the skeleton into one stack. This gives
   them the wide layout by default; .view-compact still overrides it. */
.moves-grid-container,
.combos-grid-container {
  grid-template-columns: repeat(auto-fill, minmax(240px, 280px));
}
