/* =========================
   Base Reset
   ========================= */

html, body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

/* =========================
   Typography
   ========================= */

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #222;
}

/* =========================
   Site Header
   ========================= */

.site-header {
    width: 100%;
}

/* =========================
   Utility Bar
   ========================= */

.header-utility {
    background: #2f2c63;
    color: #fff;
    width: 100%;
    overflow: hidden;
}

.utility-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/* Utility links (right-aligned, next to icons) */
.utility-links {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.utility-links span {
    opacity: 0.6;
    margin: 0 6px;
}

/* Social icons */
.utility-social {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.utility-social i {
    font-size: 15px;
}

/* Utility links + icons */
.header-utility a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.15s ease;
}

.header-utility a:hover {
    opacity: 0.8;
}

/* Clickable icon feel */
.utility-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.utility-social a:hover {
    background: rgba(255,255,255,0.15);
}

/* =========================
   Utility Bar Mobile
   ========================= */

@media (max-width: 1024px) {
    .utility-inner {
        padding: 8px 12px;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .utility-links,
    .utility-social {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        white-space: normal;
        width: 100%;
        gap: 8px;
    }

    .utility-links span {
        display: none;
    }

    .header-utility a {
        font-size: 13px;
        line-height: 1.3;
        white-space: nowrap;
    }

    .utility-social a {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 640px) {
    .utility-inner {
        padding: 8px 10px;
        gap: 8px;
    }

    .utility-links {
        gap: 6px;
    }

    .header-utility a {
        font-size: 12px;
    }

    .utility-social {
        gap: 10px;
    }

    .utility-social a {
        width: 24px;
        height: 24px;
    }
}

/* =========================
   Main Header
   ========================= */

.header-main {
    background: #fff;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.site-logo {
    max-width: 340px;
}

.site-logo img {
    max-width: 300px;
    height: auto;
    display: block;
}

/* =========================
   Main Navigation - Base
   ========================= */

.main-nav {
    display: block;
}

/* Top-level list */
.main-nav > ul,
.main-nav > div > ul,
.main-nav > nav > ul,
.main-nav ul.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

/* Top-level items */
.main-nav > ul > li,
.main-nav > div > ul > li,
.main-nav > nav > ul > li,
.main-nav ul.nav > li {
    position: relative;
    margin: 0;
    list-style: none;
}

/* Top-level links */
.main-nav > ul > li > a,
.main-nav > div > ul > li > a,
.main-nav > nav > ul > li > a,
.main-nav ul.nav > li > a {
    display: inline-block;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #2f2c63;
    font-size: 15px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
    background: #eef0f8;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-nav > ul > li > a:hover,
.main-nav > div > ul > li > a:hover,
.main-nav > nav > ul > li > a:hover,
.main-nav ul.nav > li > a:hover {
    background: #2f2c63;
    color: #ffffff;
    text-decoration: none;
}

/* Active top-level page */
.main-nav > ul > li.nav-selected > a,
.main-nav > ul > li.is-active > a,
.main-nav > ul > li.current-page > a,
.main-nav > div > ul > li.nav-selected > a,
.main-nav > div > ul > li.is-active > a,
.main-nav > div > ul > li.current-page > a,
.main-nav > nav > ul > li.nav-selected > a,
.main-nav > nav > ul > li.is-active > a,
.main-nav > nav > ul > li.current-page > a,
.main-nav ul.nav > li.nav-selected > a,
.main-nav ul.nav > li.is-active > a,
.main-nav ul.nav > li.current-page > a {
    background: #2f2c63;
    color: #fff;
}

/* =========================
   Desktop Dropdowns
   ========================= */

.main-nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    margin: 0;
    padding: 14px;
    list-style: none;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.14);
    z-index: 3000;
}

@media (min-width: 1025px) {
    .main-nav li:hover > ul {
        display: block;
    }
}

.main-nav li ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav li ul a {
    display: block;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #2f2c63;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 999px;
    background: transparent;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-nav li ul a:hover {
    background: #eef0f8;
    color: #2f2c63;
}

.main-nav li ul li.nav-selected > a,
.main-nav li ul li.is-active > a,
.main-nav li ul li.current-page > a {
    background: #2f2c63;
    color: #fff;
}

/* =========================
   Hamburger
   ========================= */

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: #2f2c63;
    margin: 4px 0;
    border-radius: 2px;
}

/* =========================
   Mobile Nav
   ========================= */

@media (max-width: 1024px) {
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 2000;
        width: 40px;
        height: 40px;
        background: transparent;
    }

    .nav-toggle span {
        width: 24px;
        height: 3px;
        background-color: #2f2c63;
        margin: 4px 0;
    }

    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #e5e5e5;
        z-index: 999;
    }

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

    .main-nav > ul,
    .main-nav > div > ul,
    .main-nav > nav > ul,
    .main-nav ul.nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 16px 0;
        white-space: normal;
    }

    .main-nav > ul > li,
    .main-nav > div > ul > li,
    .main-nav > nav > ul > li,
    .main-nav ul.nav > li {
        margin: 0;
        text-align: center;
        width: 100%;
    }

    .main-nav > ul > li > a,
    .main-nav > div > ul > li > a,
    .main-nav > nav > ul > li > a,
    .main-nav ul.nav > li > a {
        font-size: 16px;
        padding: 10px 20px;
    }

    .main-nav li ul {
        position: static;
        display: block;
        min-width: 0;
        box-shadow: none;
        background: transparent;
        padding: 6px 0 0;
        margin: 6px 0 0;
        border-radius: 0;
    }

    .main-nav li ul li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .main-nav li ul a {
        display: block;
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        padding: 6px 0;
        border-radius: 0;
        background: transparent !important;
        color: #2f2c63;
        opacity: 0.75;
        white-space: normal;
    }

    .main-nav li ul a:hover {
        background: transparent !important;
        opacity: 1;
        color: #2f2c63;
    }

    .main-nav li ul li.nav-selected > a,
    .main-nav li ul li.is-active > a,
    .main-nav li ul li.current-page > a {
        background: transparent !important;
        color: #2f2c63;
        opacity: 1;
    }

    .site-logo img {
        max-width: 170px;
    }
}

@media (max-width: 400px) {
    .site-logo img {
        max-width: 150px;
    }

    .main-nav > ul > li > a,
    .main-nav > div > ul > li > a,
    .main-nav > nav > ul > li > a,
    .main-nav ul.nav > li > a {
        font-size: 15px;
        padding: 9px 18px;
    }
}

/* =========================
   Footer
   ========================= */

.site-footer {
    background: #2f2c63;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 34px 24px 26px;
}

.footer-main {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    min-width: 0;
}

.footer-brand img {
    max-width: 220px;
    height: auto;
    display: block;
}

.footer-content {
    min-width: 0;
}

.footer-links-row {
    margin-bottom: 18px;
}

.footer-links-row nav,
.footer-links-row ul,
.footer-links-row .ccm-block-page-list-wrapper {
    margin: 0;
    padding: 0;
}

.footer-links-row ul {
    list-style: none;
}

.footer-links-row a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links-row > * {
    width: 100%;
}

/* If using a custom HTML nav block */
.footer-links-row nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
    align-items: center;
}

.footer-links-row nav li {
    margin: 0;
    padding: 0;
}

.footer-links-row nav a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.footer-links-row nav a:hover {
    background: #5f67b1;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* If a simple block outputs plain links without list styling */
.footer-links-row p,
.footer-links-row div {
    margin: 0;
}

.footer-links-row p a,
.footer-links-row > div > a {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.footer-links-row p a:hover,
.footer-links-row > div > a:hover {
    background: #5f67b1;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.footer-meta-row {
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-meta-text {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    line-height: 1.7;
}

.footer-meta-text p {
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    line-height: 1.7;
}

.footer-meta-text a {
    color: #ffffff;
    text-decoration: none;
}

.footer-meta-text a:hover {
    text-decoration: underline;
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto;
    }

    .footer-links-row nav ul {
        justify-content: center;
    }

    .footer-links-row,
    .footer-meta-row,
    .footer-meta-text {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer-inner {
        padding: 28px 16px 22px;
    }

    .footer-links-row nav ul {
        gap: 10px;
    }

    .footer-links-row nav a,
    .footer-links-row p a,
    .footer-links-row > div > a {
        font-size: 14px;
        padding: 7px 12px;
    }
}

.footer-links-row nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links-row nav li {
    margin: 0;
    padding: 0;
}

.footer-links-row nav a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.footer-links-row nav a:hover {
    background: #5f67b1;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

@media (max-width: 1024px) {
    .footer-links-row nav ul {
        justify-content: center;
    }
}

/* =========================
   Main Content Width
   ========================= */

.main-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

.site-main {
    width: 100%;
}

.site-main-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* =========================
   Concrete Main Content Width Fix
   ========================= */

.ccm-layout-column-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.ccm-layout-column {
    width: 100%;
}

.ccm-layout-column-inner {
    width: 100%;
}
/* Disable clicking the top-level Technical Resources nav item only */
.main-nav a[href$="/technical-resources"],
.main-nav a[href$="/technical-resources/"] {
    pointer-events: none;
    cursor: default;
}
/* Disable clicking the top-level Product Flyers nav item only */
.main-nav a[href$="/product-flyers"],
.main-nav a[href$="/product-flyers/"] {
    pointer-events: none;
    cursor: default;
}
/* Keep right-side nav dropdowns inside the browser */
.main-nav li:last-child ul {
    left: auto;
    right: 0;
}


/* =========================
   Global Concrete Form Styling
   ========================= */

.ccm-block-type-form,
.ccm-block-type-form form,
.ccm-block-type-form .ccm-form,
.ccm-block-express-form,
.ccm-block-express-form form,
.ccm-block-express-form .ccm-form {
    max-width: 760px;
    margin: 0;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.ccm-block-type-form fieldset,
.ccm-block-express-form fieldset {
    border: 0 !important;
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
    min-width: 0;
}

.ccm-block-type-form legend,
.ccm-block-express-form legend {
    display: none !important;
}

.ccm-block-type-form .form-group,
.ccm-block-type-form .ccm-form-group,
.ccm-block-type-form .mb-3,
.ccm-block-express-form .form-group,
.ccm-block-express-form .ccm-form-group,
.ccm-block-express-form .mb-3 {
    margin-bottom: 24px !important;
}

.ccm-block-type-form label,
.ccm-block-type-form .control-label,
.ccm-block-type-form .form-label,
.ccm-block-express-form label,
.ccm-block-express-form .control-label,
.ccm-block-express-form .form-label {
    display: block;
    margin-bottom: 8px !important;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: #2f2c73;
}

.ccm-block-type-form .help-block,
.ccm-block-type-form .text-muted,
.ccm-block-type-form .form-text,
.ccm-block-type-form small,
.ccm-block-type-form .ccm-required,
.ccm-block-express-form .help-block,
.ccm-block-express-form .text-muted,
.ccm-block-express-form .form-text,
.ccm-block-express-form small,
.ccm-block-express-form .ccm-required {
    font-size: 14px;
    line-height: 1.4;
    color: #777777;
}

.ccm-block-type-form input[type="text"],
.ccm-block-type-form input[type="email"],
.ccm-block-type-form input[type="tel"],
.ccm-block-type-form input[type="number"],
.ccm-block-type-form input[type="url"],
.ccm-block-type-form input[type="date"],
.ccm-block-type-form select,
.ccm-block-type-form textarea,
.ccm-block-type-form .form-control,
.ccm-block-express-form input[type="text"],
.ccm-block-express-form input[type="email"],
.ccm-block-express-form input[type="tel"],
.ccm-block-express-form input[type="number"],
.ccm-block-express-form input[type="url"],
.ccm-block-express-form input[type="date"],
.ccm-block-express-form select,
.ccm-block-express-form textarea,
.ccm-block-express-form .form-control {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.4;
    font-family: Arial, sans-serif;
    color: #333333;
    background: #ffffff;
    border: 1px solid #d8deea !important;
    border-radius: 14px;
    box-shadow: none !important;
    margin: 0 !important;
    height: auto !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ccm-block-type-form textarea,
.ccm-block-express-form textarea {
    min-height: 140px;
    resize: vertical;
}

.ccm-block-type-form input[type="text"]:focus,
.ccm-block-type-form input[type="email"]:focus,
.ccm-block-type-form input[type="tel"]:focus,
.ccm-block-type-form input[type="number"]:focus,
.ccm-block-type-form input[type="url"]:focus,
.ccm-block-type-form input[type="date"]:focus,
.ccm-block-type-form select:focus,
.ccm-block-type-form textarea:focus,
.ccm-block-type-form .form-control:focus,
.ccm-block-express-form input[type="text"]:focus,
.ccm-block-express-form input[type="email"]:focus,
.ccm-block-express-form input[type="tel"]:focus,
.ccm-block-express-form input[type="number"]:focus,
.ccm-block-express-form input[type="url"]:focus,
.ccm-block-express-form input[type="date"]:focus,
.ccm-block-express-form select:focus,
.ccm-block-express-form textarea:focus,
.ccm-block-express-form .form-control:focus {
    outline: none;
    border-color: #4b4f97 !important;
    box-shadow: 0 0 0 3px rgba(75, 79, 151, 0.12) !important;
}

.ccm-block-type-form input[type="radio"],
.ccm-block-type-form input[type="checkbox"],
.ccm-block-express-form input[type="radio"],
.ccm-block-express-form input[type="checkbox"] {
    margin-right: 8px;
    transform: translateY(1px);
}

.ccm-block-type-form .radio,
.ccm-block-type-form .checkbox,
.ccm-block-type-form .form-check,
.ccm-block-express-form .radio,
.ccm-block-express-form .checkbox,
.ccm-block-express-form .form-check {
    margin-bottom: 12px !important;
    font-size: 16px;
    color: #333333;
}

.ccm-block-type-form input[type="submit"],
.ccm-block-type-form button[type="submit"],
.ccm-block-type-form .btn,
.ccm-block-type-form .btn-primary,
.ccm-block-express-form input[type="submit"],
.ccm-block-express-form button[type="submit"],
.ccm-block-express-form .btn,
.ccm-block-express-form .btn-primary {
    display: inline-block;
    padding: 14px 24px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    color: #ffffff !important;
    background: #2f2c73 !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ccm-block-type-form input[type="submit"]:hover,
.ccm-block-type-form button[type="submit"]:hover,
.ccm-block-type-form .btn:hover,
.ccm-block-type-form .btn-primary:hover,
.ccm-block-express-form input[type="submit"]:hover,
.ccm-block-express-form button[type="submit"]:hover,
.ccm-block-express-form .btn:hover,
.ccm-block-express-form .btn-primary:hover {
    background: #b32025 !important;
    transform: translateY(-1px);
}

.ccm-block-type-form .g-recaptcha,
.ccm-block-type-form .ccm-captcha-block,
.ccm-block-express-form .g-recaptcha,
.ccm-block-express-form .ccm-captcha-block {
    margin: 20px 0 22px !important;
}
.ccm-block-type-form,
.ccm-block-express-form {
    margin-bottom: 48px;
}

@media (max-width: 768px) {
  .ccm-layout-column {
    width: 100% !important;
    float: none !important;
    display: block !important;
    margin-bottom: 24px !important;
  }

  .ccm-layout-column + .ccm-layout-column {
    margin-top: 24px !important;
  }

  .ccm-layout-column-wrapper {
    display: block !important;
  }

  .ccm-layout-column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* =========================
   Catalog Brochure Styling
   ========================= */
   
   /* =========================
   Catalogs / Brochures Grid
   ========================= */

.wsi-docs-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 50px 24px;
    font-family: Arial, sans-serif;
}

.wsi-docs-section {
    margin-bottom: 46px;
}

.wsi-docs-section:last-child {
    margin-bottom: 0;
}

.wsi-docs-section h2 {
    margin: 0 0 22px 0;
    font-size: 34px;
    line-height: 1.2;
    color: #2f2c73;
    font-weight: 700;
}

.wsi-docs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.wsi-doc-card {
    background: #f3f4fc;
    border-radius: 28px;
    padding: 20px 20px 24px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.wsi-doc-thumb {
    background: #ffffff;
    border-radius: 22px;
    padding: 18px;
    margin-bottom: 18px;
}

.wsi-doc-thumb img {
    max-width: 100%;
    height: 290px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.wsi-doc-card h3 {
    margin: 0 0 18px 0;
    font-size: 22px;
    line-height: 1.35;
    color: #333333;
    font-weight: 700;
}

.wsi-doc-card a {
    display: inline-block;
    padding: 14px 22px;
    border: 1px solid #d8deea;
    border-radius: 999px;
    background: #ffffff;
    color: #b32025;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.wsi-doc-card a:hover {
    background: #2f2c73;
    border-color: #2f2c73;
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .wsi-docs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .wsi-docs-wrap {
        padding: 0 16px 40px 16px;
    }

    .wsi-docs-grid {
        grid-template-columns: 1fr;
    }

    .wsi-doc-thumb img {
        height: 240px;
    }

    .wsi-doc-card h3 {
        font-size: 20px;
    }
}

/* Disable click on Products parent nav item */
/* Disable clicking the top-level Products nav item only */
.main-nav a[href$="/products"],
.main-nav a[href$="/products/"] {
    pointer-events: none;
    cursor: default;
}

/* Disable click on Training Videos parent nav item */
/* Disable clicking the top-level Training Videos nav item only */
.main-nav a[href$="/training"],
.main-nav a[href$="/training/"] {
    pointer-events: none;
    cursor: default;
}
/* COOKIE CONSENT */
.wsi-cookie-banner[hidden],
.wsi-cookie-modal[hidden] {
    display: none !important;
}

.wsi-cookie-banner,
.wsi-cookie-modal {
    z-index: 99999;
}

.wsi-cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.wsi-cookie-banner__inner {
    max-width: 1180px;
    margin: 0 auto;
    background: #0b0b0d;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.wsi-cookie-banner__text strong {
    display: block;
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
}

.wsi-cookie-banner__text p {
    margin: 0;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.wsi-cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.wsi-cookie-btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.wsi-cookie-btn--primary {
    background: #d4a43a;
    color: #111;
}

.wsi-cookie-btn--primary:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

.wsi-cookie-btn--secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.wsi-cookie-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.wsi-cookie-btn--link {
    background: transparent;
    color: #d4a43a;
    padding-left: 6px;
    padding-right: 6px;
}

.wsi-cookie-btn--link:hover {
    color: #fff;
}

.wsi-cookie-modal {
    position: fixed;
    inset: 0;
}

.wsi-cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.wsi-cookie-modal__dialog {
    position: relative;
    width: min(92%, 760px);
    margin: 60px auto;
    background: #2f2c60;
    color: #fff;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    padding: 34px 30px 28px;
    z-index: 2;
}

.wsi-cookie-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.wsi-cookie-modal__close:hover {
    background: rgba(255, 255, 255, 0.18);
}

.wsi-cookie-modal h3 {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.1;
    color: #fff;
}

.wsi-cookie-modal__intro {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.6;
}

.wsi-cookie-group {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wsi-cookie-group:first-of-type {
    border-top: 0;
}

.wsi-cookie-group p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.wsi-cookie-group__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.wsi-cookie-group__head strong {
    font-size: 20px;
    color: #fff;
}

.wsi-cookie-group__head span {
    color: #d4a43a;
    font-weight: 700;
    white-space: nowrap;
}

.wsi-cookie-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
}

.wsi-cookie-toggle span {
    display: block;
}

.wsi-cookie-toggle strong {
    display: block;
    font-size: 20px;
    color: #fff;
    margin-bottom: 4px;
}

.wsi-cookie-toggle small {
    display: block;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.wsi-cookie-toggle input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #d4a43a;
    flex-shrink: 0;
}

.wsi-cookie-modal__actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 28px;
    flex-wrap: wrap;
}

.footer-brand-cookie {
    margin-top: 18px;
}

.wsi-footer-cookie-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.wsi-footer-cookie-link:hover {
    background: #d4a43a;
    border-color: #d4a43a;
    color: #111;
    transform: translateY(-1px);
}

.wsi-footer-cookie-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 164, 58, 0.28);
}

body.wsi-cookie-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .wsi-cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .wsi-cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .wsi-cookie-banner__text strong {
        font-size: 24px;
    }

    .wsi-cookie-banner__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .wsi-cookie-modal__dialog {
        width: calc(100% - 28px);
        margin: 20px auto;
        padding: 28px 20px 24px;
    }

    .wsi-cookie-modal h3 {
        font-size: 30px;
        padding-right: 40px;
    }

    .wsi-cookie-toggle,
    .wsi-cookie-group__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .wsi-cookie-modal__actions {
        justify-content: flex-start;
    }

    .wsi-footer-cookie-link {
        width: 100%;
        justify-content: center;
    }
}