/* ========================================================================== */
/*   DESIGN TOKENS                                                            */
/* ========================================================================== */

:root {
  --color-brand-primary: #43b3e6;
  --color-brand-primary-dark: #1d7faa;
  --color-brand-primary-darker: #0d3553;

  --color-text: #1f2328;
  --color-text-soft: #353b42;
  --color-text-muted: #68717b;
  --color-text-white: #ffffff;
  --color-text-light-grey: #f6f6f6;

  --color-brand-primary-link: #319ecd;
  --color-link-hover: #2ea6dc;

  --color-bg: #eef1f4;
  --color-bg-light: #f9fcff;
  --color-bg-very-light: #fefefe;
  --color-bg-alt: #e4e9ee;
  --color-bg-card: #ffffff;
  --color-bg-dark: #252a30;
  --color-bg-dark-alt: #1d2126;

  --color-border: #d8e0e7;
  --color-border-soft: #e4eaf0;
  --color-border-soft-alt: #edf2f6;
  --color-border-dark-soft: rgba(255, 255, 255, 0.08);
  --color-border-events-mobile: #d9e2e8;

  --color-overlay-brand-light: rgba(67, 179, 230, 0.08);
  --color-overlay-brand-medium: rgba(67, 179, 230, 0.11);
  --color-overlay-brand-strong: rgba(67, 179, 230, 0.15);
  --color-overlay-brand-active: rgba(67, 179, 230, 0.2);

  --color-overlay-dark-hover: rgba(255, 255, 255, 0.06);
  --color-overlay-dark-active: rgba(255, 255, 255, 0.1);

  --color-border-brand-subtle: rgba(67, 179, 230, 0.18);
  --color-border-brand-events: rgba(67, 179, 230, 0.22);

  --shadow-nav: 0 24px 60px rgba(10, 16, 24, 0.18);
  --shadow-nav-mobile: 0 18px 40px rgba(10, 16, 24, 0.12);
  --shadow-nav-events: 0 24px 60px rgba(0, 0, 0, 0.28);

  --font-primary: "Segoe UI", Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 22px;

  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;

  --color-positive-action: #20603d;
  --color-positive-action-hover: #14532d;
  --color-positive-action-bg: #eaf7ee;
  --color-positive-action-bg-hover: #dcf2e3;
  --color-positive-action-border: #b7e0c4;
  --color-positive-action-border-hover: #8fcf9f;

  --color-positive-action-alt-branded: #106388;
  --color-positive-action-alt-branded-hover: #0d5f82;
  --color-positive-action-alt-branded-bg: #f0f9fd;
  --color-positive-action-alt-branded-bg-hover: #c8efff;
  --color-positive-action-alt-branded-border: #c7e7f4;
  --color-positive-action-alt-branded-border-hover: #8fcfe7;

  --color-negative-action: #b42318;
  --color-negative-action-hover: #7a271a;
  --color-negative-action-bg: #fff3f1;
  --color-negative-action-bg-hover: #ffe7e3;
  --color-negative-action-border: #ffd0c9;
  --color-negative-action-border-hover: #f7a79b;

  --color-neutral-action: #344054;
  --color-neutral-action-hover: #1d2939;
  --color-neutral-action-bg: #f3f5f7;
  --color-neutral-action-bg-hover: #e7ebef;
  --color-neutral-action-border: #d8dee5;
  --color-neutral-action-border-hover: #b8c2cc;

  --color-warning-action: #7a5600;
  --color-warning-action-hover: #6f3a00;
  --color-warning-action-bg: #fff4db;
  --color-warning-action-bg-hover: #ffe3ad;
  --color-warning-action-border: #f2cf8a;
  --color-warning-action-border-hover: #c47a00;
  --color-warning-action-link: #7a5600;
  --color-warning-action-link-hover: #6f3a00;

}


/* ========================================================================== */
/*   GENERAL STYLING                                                          */
/* ========================================================================== */

/* Reset / box model */

* {
  box-sizing: border-box;
}

/* Base page styling */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
}

/* Default element behaviour */

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


a.link {
    color: var(--color-brand-primary-dark);
    transition: all var(--transition-medium);
}

a.link:hover {
    color: var(--color-brand-primary-darker);
    transition: all var(--transition-medium);
}


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

/* Basic layout helper */

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

.spinning {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

/* ========================================================================== */
/*   TYPOGRAPHY                                                               */
/* ========================================================================== */

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75em 0;
  font-family: var(--font-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--color-brand-primary);
}

h2 {
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--color-text);
}

h3 {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-text);
}

h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text-soft);
}

h5 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

h6 {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


/* Tablet */

@media (max-width: 1024px) {
  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.18rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: 0.88rem;
  }
}

/* Mobile */

@media (max-width: 768px) {
  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  h5 {
    font-size: 0.98rem;
  }

  h6 {
    font-size: 0.84rem;
  }
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================================================== */
/*   SITE HEADER                                                              */
/* ========================================================================== */

/* Default */

.site-header {
  width: 100%;
  position: relative;
  background: var(--color-bg-dark);
  border-bottom: 1px solid var(--color-border-dark-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 14px 0;
}

.logo img {
  height: 54px;
  width: auto;
}

.header-actions {
  color: var(--color-text-white);
}

/* Tablet */

@media (max-width: 1024px) {
  .header-inner {
    gap: 20px;
    min-height: 82px;
  }

  .logo img {
    height: 48px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
  }

  .logo {
    padding: 18px 0;
  }

  .logo img {
    height: 40px;
  }
}


/* ========================================================================== */
/*   HEADER TOOLS                                                             */
/* ========================================================================== */

/* Default */

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.header-phone {
  flex-shrink: 0;
}

.header-phone__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-lg);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--color-text-white);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.header-phone__link:hover {
  background: var(--color-overlay-dark-hover);
  color: var(--color-brand-primary);
}

.header-phone__link i {
  font-size: 1rem;
  color: var(--color-brand-primary);
}

/* Tablet */

@media (max-width: 1024px) {
  .header-tools {
    gap: 10px;
  }

  .header-phone__link {
    padding: 0 14px;
    font-size: 0.93rem;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .header-tools {
    width: auto;
    margin-left: auto;
  }

  .header-phone {
    display: none;
  }
}

.mobile-account-logout {
    display: none;
}

@media (max-width: 768px) {
    .mobile-account-logout {
        display: block;
        padding: 14px 0 0;
    }

    .mobile-account-logout .container {
        display: flex;
        justify-content: flex-end;
    }

    .mobile-account-logout__btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ========================================================================== */
/*   ACCESSIBILITY HELPERS                                                    */
/* ========================================================================== */

/* Screen reader only text */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}


/* ========================================================================== */
/*   BUTTONS                                                                  */
/* ========================================================================== */

/* Default */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-primary {
  background: var(--color-brand-primary);
  color: #ffffff;
  border-color: var(--color-brand-primary);
  box-shadow: 0 4px 12px rgba(67, 179, 230, 0.22);
}

.btn-primary:hover {
  background: #2ea6dc;
  border-color: #2ea6dc;
}

.btn-secondary {
  color: var(--color-brand-primary-dark);
  border-color: var(--color-brand-primary);
  background: var(--color-bg-card);
}

.btn-secondary:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-border-brand-subtle);
}

.btn-outline {
  background: transparent;
  border-color: #98a3ad;
  color: var(--color-text);
}

.btn-outline:hover {
  background: var(--color-overlay-brand-active);
}

.btn-positive-action,
.btn-positive-action-alt-branded,
.btn-neutral-action,
.btn-negative-action,
.btn-warning-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        transform var(--transition-fast);
}

.btn-positive-action i,
.btn-positive-action-alt-branded i,
.btn-neutral-action i,
.btn-negative-action i,
.btn-warning-action i {
    font-size: 0.92em;
    line-height: 1;
    color: currentColor;
}

.btn-neutral-action {
    color: var(--color-neutral-action);
    background: var(--color-neutral-action-bg);
    border-color: var(--color-neutral-action-border);
}

.btn-neutral-action:hover,
.btn-neutral-action:focus-visible {
    color: var(--color-neutral-action-hover);
    background: var(--color-neutral-action-bg-hover);
    border-color: var(--color-neutral-action-border-hover);
}

.btn-positive-action {
    color: var(--color-positive-action);
    background: var(--color-positive-action-bg);
    border-color: var(--color-positive-action-border);
}

.btn-positive-action:hover,
.btn-positive-action:focus-visible {
    color: var(--color-positive-action-hover);
    background: var(--color-positive-action-bg-hover);
    border-color: var(--color-positive-action-border-hover);
}

.btn-positive-action-alt-branded {
    color: var(--color-positive-action-alt-branded);
    background: var(--color-positive-action-alt-branded-bg);
    border-color: var(--color-positive-action-alt-branded-border);
}

.btn-positive-action-alt-branded:hover,
.btn-positive-action-alt-branded:focus-visible {
    color: var(--color-positive-action-alt-branded-hover);
    background: var(--color-positive-action-alt-branded-bg-hover);
    border-color: var(--color-positive-action-alt-branded-border-hover);
}

.btn-negative-action {
    color: var(--color-negative-action);
    background: var(--color-negative-action-bg);
    border-color: var(--color-negative-action-border);
}

.btn-negative-action:hover,
.btn-negative-action:focus-visible {
    color: var(--color-negative-action-hover);
    background: var(--color-negative-action-bg-hover);
    border-color: var(--color-negative-action-border-hover);
}

.btn-warning-action {
    color: var(--color-warning-action);
    background: var(--color-warning-action-bg);
    border-color: var(--color-warning-action-border);
}

.btn-warning-action:hover,
.btn-warning-action:focus-visible {
    color: var(--color-warning-action-hover);
    background: var(--color-warning-action-bg-hover);
    border-color: var(--color-warning-action-border-hover);
}

.btn-neutral-action:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(52, 64, 84, 0.13);
}

.btn-positive-action:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(32, 96, 61, 0.14);
}

.btn-positive-action-alt-branded:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(29, 127, 170, 0.14);
}

.btn-negative-action:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.12);
}

.btn-warning-action:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(122, 86, 0, 0.14);
}

.btn-positive-action:hover,
.btn-positive-action:focus-visible,
.btn-positive-action-alt-branded:hover,
.btn-positive-action-alt-branded:focus-visible,
.btn-neutral-action:hover,
.btn-neutral-action:focus-visible,
.btn-negative-action:hover,
.btn-negative-action:focus-visible,
.btn-warning-action:hover,
.btn-warning-action:focus-visible {
    transform: translateY(-1px);
}

.btn-positive-action:disabled,
.btn-positive-action-alt-branded:disabled,
.btn-neutral-action:disabled,
.btn-negative-action:disabled,
.btn-warning-action:disabled,
.btn-positive-action.is-disabled,
.btn-positive-action-alt-branded.is-disabled,
.btn-neutral-action.is-disabled,
.btn-negative-action.is-disabled,
.btn-warning-action.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}


@media (max-width: 390px) {
    .ps-hero__actions .btn, .ps-cta__actions .btn {
        width: 100%;
        padding: 8px;
    }
}


/* ========================================================================== */
/*   SITE FOOTER                                                              */
/* ========================================================================== */

/* Default */

.site-footer {
  margin-top: 80px;
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  border-top: 1px solid var(--color-border-dark-soft);
  clear: both;
  width: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 42px;
}

.footer-brand__logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-brand__logo img {
  width: 168px;
  height: auto;
}

.footer-brand__title {
  margin: 0 0 12px 0;
  color: var(--color-bg-card);
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu__item + .footer-menu__item {
  margin-top: 8px;
}

.footer-menu__link::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%) translateX(-8px);
  color: var(--color-link-hover);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.footer-menu__link:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.footer-menu__link.is-active {
  color: var(--color-brand-primary);
  font-weight: 600;
  padding-left: 0;
}

.footer-menu__link.is-active::before {
  opacity: 0;
  transform: translateY(-50%) translateX(-8px);
}

.footer-brand__summary {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

.footer-heading {
  margin: 0 0 14px 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-brand-primary);
}

.footer-menu__link {
  position: relative;
  display: inline-block;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s ease, padding-left 0.3s ease, font-weight 0.3s ease;
}

.footer-menu__link:hover {
  color: var(--color-brand-primary);
  padding-left: 22px;
}

.footer-legal {
  background: var(--color-bg-dark-alt);
  border-top: 1px solid var(--color-border-dark-soft);
}

.footer-legal__inner {
    padding: 18px 0 22px;
}

.footer-legal__inner p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}

/* Tablet */

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
    padding: 48px 0 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand__summary {
    max-width: 560px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .site-footer {
    margin-top: 60px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 30px;
  }

  .footer-heading {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .footer-brand__logo img {
    width: 150px;
  }

  .footer-brand__summary {
    font-size: 0.95rem;
  }

  .footer-legal__inner {
    padding: 16px 0 20px;
  }

  .footer-legal__inner p {
    font-size: 0.8rem;
  }

}

.footer-nav-col {
  position: relative;
}
.footer-nav-col {
  position: relative;
}

.footer-dropdown {
  position: relative;
  margin-top: 22px;
}

.footer-dropdown__chevron-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-height: 48px;
  border-radius: var(--radius-lg);
  background: transparent;
  flex-shrink: 0;
}

/* Desktop / tablet icon, chevron only */
.footer-dropdown__chevron,
.footer-dropdown__chevron::before,
.footer-dropdown__chevron::after,
.footer-dropdown__chevron span {
  transition: transform 0.35s ease, opacity 0.3s ease, border-color var(--transition-fast), background var(--transition-fast);
}

.footer-dropdown__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-text);
  border-bottom: 2px solid var(--color-text);
  transform: rotate(-135deg);
  transform-origin: center center;
  margin-top: 2px;
}

.footer-dropdown__chevron::before,
.footer-dropdown__chevron::after,
.footer-dropdown__chevron span {
  content: none;
}

.footer-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 48px;
  padding: 0 8px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  font: inherit;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.footer-dropdown__toggle-label {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-lg);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-text-white);
  transition: color var(--transition-fast);
}

.footer-dropdown__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(-135deg);
  transform-origin: center center;
  margin-top: 2px;
}

.footer-dropdown:hover .footer-dropdown__toggle,
.footer-dropdown:focus-within .footer-dropdown__toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(67, 179, 230, 0.28);
}

.footer-dropdown:hover .footer-dropdown__toggle-label,
.footer-dropdown:focus-within .footer-dropdown__toggle-label {
  color: var(--color-brand-primary);
}

.footer-dropdown:hover .footer-dropdown__chevron,
.footer-dropdown:focus-within .footer-dropdown__chevron {
  border-color: var(--color-brand-primary);
  transform: rotate(45deg) scaleY(-1);
}

.footer-dropdown__panel {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 320px;
  max-width: min(420px, calc(100vw - 40px));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--color-border-brand-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-nav);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-medium), transform var(--transition-medium), visibility var(--transition-medium);
  z-index: 200;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-dropdown__panel::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 24px;
}

.footer-dropdown:hover .footer-dropdown__panel,
.footer-dropdown:focus-within .footer-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.footer-dropdown__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 24px 26px;
}

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

.footer-dropdown__group + .footer-dropdown__group {
  border-top: 1px solid var(--color-border-soft-alt);
  padding-top: 18px;
}

.footer-dropdown__title {
  display: inline-block;
  margin: 0 0 12px 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-brand-primary);
}

.footer-dropdown .footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-dropdown .footer-menu__item + .footer-menu__item {
  margin-top: 4px;
}

.footer-dropdown .footer-menu__link {
  position: relative;
  display: block;
  padding: 10px 0;
  font-size: 0.94rem;
  color: var(--color-text-soft);
  transition: color 0.3s ease, padding-left 0.3s ease, font-weight 0.3s ease;
}

.footer-dropdown .footer-menu__link::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%) translateX(-8px);
  color: var(--color-link-hover);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-dropdown .footer-menu__link:hover {
  color: var(--color-link-hover);
  padding-left: 22px;
}

.footer-dropdown .footer-menu__link:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.footer-dropdown .footer-menu__link.is-active {
  color: var(--color-brand-primary);
  font-weight: 600;
  padding-left: 0;
}

.footer-dropdown .footer-menu__link.is-active::before {
  opacity: 0;
  transform: translateY(-50%) translateX(-8px);
}

.footer-menu__link.is-active:hover {
  color: var(--color-text-muted);
}

.footer-dropdown .footer-menu__link.is-active:hover {
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .footer-dropdown__panel {
    min-width: 300px;
    max-width: min(380px, calc(100vw - 40px));
  }

  .footer-dropdown__inner {
    padding: 22px 24px;
  }
}

@media (max-width: 768px) {
  .footer-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
    padding-right: 0;
  }

  .footer-dropdown__toggle-label {
    width: 100%;
    padding: 14px;
    border-radius: 0;
  }

  .footer-dropdown__chevron-wrap {
    width: 54px;
    min-height: 56px;
    border-radius: 0;
  }

  /* Mobile icon, hamburger by default */
  .footer-dropdown__chevron {
    width: 18px;
    height: 12px;
    margin-top: 0;
    border: 0;
    transform: none !important;
  }

  .footer-dropdown__chevron::before,
  .footer-dropdown__chevron::after,
  .footer-dropdown__chevron span {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
  }

  .footer-dropdown__chevron::before {
    top: 0;
    transform: none;
  }

  .footer-dropdown__chevron span {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
  }

  .footer-dropdown__chevron::after {
    bottom: 0;
    transform: none;
  }

  /* Kill desktop hover chevron behaviour on mobile */
  .footer-dropdown:hover .footer-dropdown__chevron,
  .footer-dropdown:focus-within .footer-dropdown__chevron {
    border: 0;
    transform: none !important;
  }

  .footer-dropdown:hover .footer-dropdown__chevron::before,
  .footer-dropdown:focus-within .footer-dropdown__chevron::before {
    transform: none;
  }

  .footer-dropdown:hover .footer-dropdown__chevron::after,
  .footer-dropdown:focus-within .footer-dropdown__chevron::after {
    transform: none;
  }

  .footer-dropdown:hover .footer-dropdown__chevron span,
  .footer-dropdown:focus-within .footer-dropdown__chevron span {
    opacity: 1;
  }

  /* Mobile open state, hamburger becomes X */
  .footer-dropdown.is-open .footer-dropdown__chevron {
    transform: none !important;
  }

  .footer-dropdown.is-open .footer-dropdown__chevron::before {
    transform: translateY(5px) rotate(45deg);
  }

  .footer-dropdown.is-open .footer-dropdown__chevron span {
    opacity: 0;
  }

  .footer-dropdown.is-open .footer-dropdown__chevron::after {
    transform: translateY(-5px) rotate(-45deg);
  }

  .footer-dropdown__panel {
    position: static;
    min-width: 0;
    max-width: none;
    margin-top: 12px;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    display: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 24px rgba(8, 27, 43, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .footer-dropdown__panel::before {
    display: none;
  }

  .footer-dropdown.is-open .footer-dropdown__panel {
    display: block;
  }

  .footer-dropdown__inner {
    padding: 18px;
    gap: 16px;
  }

  .footer-dropdown__group + .footer-dropdown__group {
    padding-top: 16px;
  }
}
/* ==========================================================================
   BREADCRUMB
   ========================================================================== */

   nav.breadcrumb {
       width: 100%;
       clear: both;
   }

.section--breadcrumb {
  padding: 18px 0 0;
  clear: both;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb__item {
  display: inline;
  min-width: 0;
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  display: inline;
  margin: 0 2px 0 6px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.breadcrumb__link,
.breadcrumb__current {
  display: inline;
  font-size: 0.94rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: normal;
}

.breadcrumb__link {
  color: var(--color-text-soft);
  text-decoration: none;
}

.breadcrumb__link:hover {
  color: var(--color-link-hover);
}

.breadcrumb__current {
  color: var(--color-text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .section--breadcrumb {
    padding: 12px 0 0;
  }

  .breadcrumb__list {
    gap: 2px 4px;
  }

  .breadcrumb__item:not(:last-child)::after {
    margin: 0 2px 0 4px;
  }

  .breadcrumb__link,
  .breadcrumb__current {
    font-size: 0.86rem;
    line-height: 1.4;
  }
}


/* ==========================================================================
   SITE NOTICE
   ========================================================================== */

.site-notice {
    width: 100%;
    float: left;
    padding: 14px 0;
    border-bottom: 1px solid #dfe5eb;
}

.site-notice__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}

.site-notice__inner i {
    font-size: 16px;
}

.site-notice--success {
    background: #eef9f0;
    color: #1f5f2c;
    border-bottom-color: #d5e9d9;
}

.site-notice--error {
    background: #fff1f1;
    color: #8a1f1f;
    border-bottom-color: #efd3d3;
}

.site-notice--warning {
    background: #fff8e8;
    color: #8a641a;
    border-bottom-color: #eedfb8;
}

.site-notice--info {
    background: #eef6fc;
    color: #1d5f96;
    border-bottom-color: #d3e3f2;
}


.account-auth-card--inline {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.account-auth-card--inline .account-auth-card__inner {
    padding: 0;
}

.account-auth-card--inline .account-auth-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.account-auth-card--inline .account-auth-intro,
.account-auth-card--inline .account-auth-eyebrow {
    display: none;
}

.save-quote-login-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.save-quote-inline-login .account-auth-card.account-auth-card--inline {
    border: none;
    box-shadow: none;
    padding: 4px 25px 0 0;
}

.save-quote-details-section {
    margin-top: 24px;
}

.save-quote-details-block + .save-quote-details-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.site-notice__inner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    padding: 3px 8px 6px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.9em;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-notice__inner span {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.site-notice--success .site-notice__inner a {
    color: #247a45;
    background: rgba(36, 122, 69, 0.10);
    border: 1px solid rgba(36, 122, 69, 0.22);
}

.site-notice--success .site-notice__inner a:hover,
.site-notice--success .site-notice__inner a:focus {
    color: #1f6b3d;
    background: rgba(36, 122, 69, 0.16);
    border-color: rgba(36, 122, 69, 0.34);
}

.site-notice--error .site-notice__inner a {
    color: var(--color-negative-action);
    background: rgba(180, 35, 24, 0.10);
    border: 1px solid rgba(180, 35, 24, 0.22);
}

.site-notice--error .site-notice__inner a:hover,
.site-notice--error .site-notice__inner a:focus {
    color: #912018;
    background: rgba(180, 35, 24, 0.16);
    border-color: rgba(180, 35, 24, 0.34);
}

.site-notice--warning .site-notice__inner a {
    color: #9a6700;
    background: rgba(154, 103, 0, 0.10);
    border: 1px solid rgba(154, 103, 0, 0.22);
}

.site-notice--warning .site-notice__inner a:hover,
.site-notice--warning .site-notice__inner a:focus {
    color: #7a4b00;
    background: rgba(154, 103, 0, 0.16);
    border-color: rgba(154, 103, 0, 0.34);
}

.site-notice--info .site-notice__inner a {
    color: #1d6f8a;
    background: rgba(29, 111, 138, 0.10);
    border: 1px solid rgba(29, 111, 138, 0.22);
}

.site-notice--info .site-notice__inner a:hover,
.site-notice--info .site-notice__inner a:focus {
    color: #185c72;
    background: rgba(29, 111, 138, 0.16);
    border-color: rgba(29, 111, 138, 0.34);
}

@media (max-width: 767px) {
    .site-notice {
        position: sticky;
        top: 0;
        z-index: 3000;
    }
    .site-notice__inner {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   PAGE BUSY OVERLAY
   ========================================================================== */

.page-busy-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.page-busy-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.page-busy-overlay__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;

    min-width: 240px;
    max-width: 90%;
    padding: 26px 30px;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.16);
}

.page-busy-overlay__spinner-wrap {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.page-busy-overlay__soundwave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 44px;
}

.page-busy-overlay__soundwave-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;

    background: var(--color-brand-primary, #269dd0);
    box-shadow: 0 0 12px rgba(38, 157, 208, 0.22);

    animation:
        pageBusySoundwave 1.05s ease-in-out infinite,
        pageBusySoundwaveColour 1.05s ease-in-out infinite;
}

.page-busy-overlay__soundwave-dot:nth-child(1) {
    animation-delay: 0s, 0s;
}

.page-busy-overlay__soundwave-dot:nth-child(2) {
    animation-delay: 0.1s, 0.1s;
}

.page-busy-overlay__soundwave-dot:nth-child(3) {
    animation-delay: 0.2s, 0.2s;
}

.page-busy-overlay__soundwave-dot:nth-child(4) {
    animation-delay: 0.3s, 0.3s;
}

.page-busy-overlay__soundwave-dot:nth-child(5) {
    animation-delay: 0.4s, 0.4s;
}

.page-busy-overlay__soundwave-dot:nth-child(6) {
    animation-delay: 0.5s, 0.5s;
}

.page-busy-overlay__soundwave-dot:nth-child(7) {
    animation-delay: 0.6s, 0.6s;
}

.page-busy-overlay__text {
    font-size: 0.98rem;
    line-height: 1.4;
    color: #1f2d3d;
    font-weight: 600;
}

body.page-busy-overlay-active {
    overflow: hidden;
}

@keyframes pageBusySoundwave {
    0%,
    100% {
        transform: translateY(0) scale(0.9);
    }

    25% {
        transform: translateY(-12px) scale(1.05);
    }

    50% {
        transform: translateY(0) scale(0.9);
    }

    75% {
        transform: translateY(12px) scale(1.05);
    }
}

@keyframes pageBusySoundwaveColour {
    0%,
    100% {
        opacity: 0.42;
        background: var(--color-brand-primary-light, #8dd8f2);
        box-shadow: 0 0 8px rgba(38, 157, 208, 0.16);
    }

    25% {
        opacity: 1;
        background: var(--color-brand-primary-dark, #1f7fa8);
        box-shadow: 0 0 18px rgba(38, 157, 208, 0.34);
    }

    50% {
        opacity: 0.72;
        background: var(--color-brand-primary, #269dd0);
        box-shadow: 0 0 12px rgba(38, 157, 208, 0.24);
    }

    75% {
        opacity: 1;
        background: var(--color-brand-primary-dark, #1f7fa8);
        box-shadow: 0 0 18px rgba(38, 157, 208, 0.34);
    }
}



/* ==========================================================================
   AUTH PAGES
   ========================================================================== */

.account-auth-field input.contact-input--error,
.account-auth-field select.contact-input--error,
.account-auth-field textarea.contact-input--error {
    border-color: #d92d20;
    background: #fff5f5;
}

.account-auth-checkbox input.contact-checkbox--error {
    outline: 2px solid #d92d20;
    outline-offset: 3px;
}



.hireshop-modal h2[tabindex="-1"]:focus {
    outline: none;
}
