/* =========================================================
   GLOBAL DESIGN SYSTEM
========================================================= */




:root {

    /* Colors — SMC Global Blue Theme */
    --primary: #00409e;
    --primary-soft: #00307a;

    --accent: #007fbe;
    --accent-dark: #0061af;
    --accent-light: #008fc6;

    --white: #ffffff;
    --black: #000000;

    --text: #0d1b2a;
    --text-secondary: #5a6a7a;
    --text-light: #8a9aaa;

    --border: #dce6f0;
    --border-dark: #c5d4e4;

    --surface: #ffffff;
    --surface-soft: #f0f6fb;
    --surface-dark: #00409e;

    --success: #238b45;
    --danger: #c63d3d;

    /* Typography */
    --font-body: "DM Sans", sans-serif;
    --font-heading: "DM Sans", sans-serif;

    /* Layout */
    --container-width: 1440px;

    /* Header */
    --announcement-height: 38px;
    --header-height: 82px;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 35px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Transition */
    --transition: all 0.3s ease;

}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;

    line-height: 1.6;

    color: var(--text);
    background: var(--white);

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open,
body.search-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    border: 0;
    background: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}


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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;

    font-family: var(--font-heading);
    font-weight: 600;

    line-height: 1.15;

    color: var(--primary);
}

p {
    margin-top: 0;
}

.display-heading {
    margin-bottom: 18px;

    font-size: clamp(42px, 5vw, 76px);
    line-height: 1.05;
}

.lead-text {
    max-width: 700px;

    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.8;
}

.eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 15px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 30px;
    height: 1px;

    margin-right: 10px;

    background: var(--accent);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: var(--container-width);

    margin-right: auto;
    margin-left: auto;

    padding-right: 24px;
    padding-left: 24px;
}

.container-fluid {
    width: 100%;

    padding-right: 30px;
    padding-left: 30px;
}


/* =========================================================
   SECTION
========================================================= */

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-padding-sm {
    padding-top: 60px;
    padding-bottom: 60px;
}


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

.btn-custom {
    display: inline-flex;

    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;

    padding: 0 28px;

    border: 1px solid transparent;
    border-radius: 0;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition: var(--transition);
}

.btn-primary-custom {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary-custom:hover {
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent);
}

.btn-outline-custom {
    color: var(--primary);
    background: transparent;
    border-color: var(--primary);
}

.btn-outline-custom:hover {
    color: var(--white);
    background: var(--primary);
}

.btn-accent-custom {
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent);
}

.btn-accent-custom:hover {
    color: var(--white);
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}


/* =========================================================
   FORM ELEMENTS
========================================================= */

.form-control-custom {
    width: 100%;

    min-height: 50px;

    padding: 12px 15px;

    color: var(--text);

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-sm);

    outline: none;

    transition: var(--transition);
}

.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.form-control-custom::placeholder {
    color: #aaa;
}


/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.announcement-bar {
    position: relative;

    z-index: 1000;

    min-height: var(--announcement-height);

    display: flex;
    align-items: center;

    color: var(--white);

    background: var(--primary);

    font-size: 11px;
    letter-spacing: 0.4px;
}

.announcement-content {
    min-height: var(--announcement-height);

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

    gap: 16px;
}

.announcement-content span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.announcement-content i {
    color: var(--accent);
    font-size: 13px;
}

.announcement-divider {
    width: 1px;
    height: 14px;

    background: rgba(255, 255, 255, 0.25);
}


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

.site-header {
    position: relative;

    z-index: 999;

    background: var(--white);

    border-bottom: 1px solid var(--border);
}

.header-container {
    min-height: var(--header-height);

    display: flex;
    align-items: center;

    gap: 35px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    gap: 10px;
}

.logo-mark {
    width: 39px;
    height: 39px;

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

    color: var(--white);

    background: var(--primary);

    border-radius: 50%;

    font-size: 17px;

    transition: var(--transition);
}

.site-logo:hover .logo-mark {
    background: var(--accent);
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.logo-text strong {
    color: var(--primary);

    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;

    letter-spacing: 1px;
}

.logo-text small {
    margin-top: 4px;

    color: var(--text-light);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.main-navigation {
    flex: 1;

    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;

    gap: 3px;
}

.nav-item {
    position: relative;
}

.nav-link {
    min-height: var(--header-height);

    display: inline-flex;
    align-items: center;

    padding: 0 14px;

    color: var(--text);

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    transition: var(--transition);
}

.nav-link i {
    margin-left: 6px;

    font-size: 9px;

    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.sale-link {
    color: var(--danger) !important;
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.dropdown-menu-custom {
    position: absolute;

    top: calc(100% + 1px);
    left: 50%;

    width: 210px;

    padding: 12px 0;

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 10px);

    background: var(--white);

    border: 1px solid var(--border);

    box-shadow: var(--shadow-md);

    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, 0);
}

.dropdown-menu-custom a {
    display: block;

    padding: 10px 20px;

    color: var(--text-secondary);

    font-size: 13px;

    transition: var(--transition);
}

.dropdown-menu-custom a:hover {
    padding-left: 25px;

    color: var(--primary);

    background: var(--surface-soft);
}

.dropdown-divider {
    height: 1px;

    margin: 8px 20px;

    background: var(--border);
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 4px;
}

.header-action {
    position: relative;

    width: 42px;
    height: 42px;

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

    color: var(--primary);

    cursor: pointer;

    transition: var(--transition);
}

.header-action i {
    font-size: 19px;
}

.header-action:hover {
    color: var(--accent);
}

.action-with-badge {
    position: relative;
}

.action-badge {
    position: absolute;

    top: 2px;
    right: 1px;

    min-width: 16px;
    height: 16px;

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

    padding: 0 4px;

    color: var(--white);

    background: var(--accent);

    border-radius: 50%;

    font-size: 8px;
    font-weight: 700;

    line-height: 1;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

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

    color: var(--primary);

    cursor: pointer;
}

.mobile-menu-toggle i {
    font-size: 25px;
}


/* =========================================================
   SEARCH PANEL
========================================================= */

.search-panel {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    padding: 30px 0 35px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    background: var(--white);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    box-shadow: var(--shadow-md);

    transition: var(--transition);
}

.search-panel.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.search-panel-inner {
    max-width: 900px;

    margin: 0 auto;
}

.global-search-form {
    position: relative;

    display: flex;
    align-items: center;
}

.search-form-icon {
    position: absolute;
    left: 18px;

    color: var(--text-light);

    font-size: 18px;
}

.global-search-form input {
    width: 100%;
    height: 58px;

    padding: 0 55px;

    color: var(--text);

    background: var(--surface-soft);

    border: 1px solid var(--border);

    outline: none;

    font-size: 15px;
}

.global-search-form input:focus {
    border-color: var(--primary);
}

.search-close {
    position: absolute;
    right: 17px;

    color: var(--text-light);

    cursor: pointer;

    transition: var(--transition);
}

.search-close:hover {
    color: var(--primary);
}

.search-suggestions {
    margin-top: 18px;
}

.search-suggestion-title {
    display: block;

    margin-bottom: 10px;

    color: var(--text-light);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.search-tags a {
    padding: 7px 13px;

    color: var(--text-secondary);

    background: var(--surface-soft);

    border: 1px solid var(--border);

    font-size: 11px;

    transition: var(--transition);
}

.search-tags a:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}


/* =========================================================
   MOBILE MENU OVERLAY
========================================================= */

.mobile-menu-overlay {
    position: fixed;

    inset: 0;

    z-index: 1100;

    background: rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 1200;

    width: min(88%, 390px);
    height: 100vh;

    display: flex;
    flex-direction: column;

    background: var(--white);

    transform: translateX(-100%);

    box-shadow: var(--shadow-lg);

    transition: transform 0.35s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    min-height: 82px;

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

    padding: 0 22px;

    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;

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

    color: var(--primary);

    cursor: pointer;
}

.mobile-menu-close i {
    font-size: 19px;
}

.mobile-menu-body {
    flex: 1;

    overflow-y: auto;
}

.mobile-navigation {
    padding: 12px 20px;
}

.mobile-nav-link {
    width: 100%;

    min-height: 55px;

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

    padding: 0 3px;

    color: var(--primary);

    border-bottom: 1px solid var(--border);

    font-size: 14px;
    font-weight: 500;

    text-align: left;

    cursor: pointer;

    transition: var(--transition);
}

.mobile-nav-link > span {
    display: inline-flex;
    align-items: center;

    gap: 13px;
}

.mobile-nav-link > span i {
    width: 20px;

    color: var(--text-light);

    font-size: 16px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--accent);
}

.mobile-nav-link.active > span i {
    color: var(--accent);
}

.mobile-nav-group {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-group .mobile-nav-link {
    border-bottom: 0;
}

.mobile-dropdown {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.35s ease;
}

.mobile-dropdown.active {
    max-height: 300px;
}

.mobile-dropdown a {
    display: block;

    padding: 9px 0 9px 35px;

    color: var(--text-secondary);

    font-size: 13px;
}

.mobile-dropdown a:last-child {
    padding-bottom: 15px;
}

.mobile-dropdown a:hover {
    color: var(--accent);
}

.mobile-dropdown-toggle.active > i {
    transform: rotate(180deg);
}

.mobile-dropdown-toggle > i {
    transition: transform 0.3s ease;
}

.mobile-account-links {
    padding: 20px;

    background: var(--surface-soft);
}

.mobile-account-links a {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 10px 0;

    color: var(--text-secondary);

    font-size: 13px;
}

.mobile-account-links a:hover {
    color: var(--primary);
}

.mobile-account-links i {
    width: 20px;

    font-size: 16px;
}

.mobile-menu-footer {
    padding: 20px;

    border-top: 1px solid var(--border);
}

.mobile-menu-footer p {
    margin-bottom: 4px;

    color: var(--text-light);

    font-size: 11px;
}

.mobile-menu-footer a {
    color: var(--primary);

    font-size: 13px;
    font-weight: 600;
}


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

.site-footer {
    color: rgba(255, 255, 255, 0.75);

    background: #001a44;
    background: linear-gradient(180deg, #002a66 0%, #001533 100%);
}

.footer-main {
    display: grid;

    grid-template-columns: 1.5fr repeat(3, 1fr) 1.3fr;

    gap: 55px;

    padding-top: 80px;
    padding-bottom: 65px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo .logo-text strong {
    color: var(--white);
}

.footer-logo .logo-img {
    height: 48px;
    max-width: 180px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-brand > p {
    margin-top: 22px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;

    gap: 10px;

    margin-top: 28px;
}

.footer-socials a {
    width: 38px;
    height: 38px;

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

    color: #fff;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;

    transition: var(--transition);
}

.footer-socials a:hover {
    color: #fff;

    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-column h3 {
    margin-bottom: 22px;

    color: #ffffff;

    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column li a {
    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;

    transition: var(--transition);
}

.footer-column li a:hover {
    color: #ffffff;

    padding-left: 4px;
}

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
    line-height: 1.7;
}

.contact-item i {
    flex-shrink: 0;

    margin-top: 3px;

    color: var(--accent-light);

    font-size: 15px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.65);

    transition: var(--transition);
}

.contact-item a:hover {
    color: #ffffff;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    min-height: 72px;

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

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.5);

    font-size: 12px;
}

.payment-methods {
    display: flex;
    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 12px;
}

.payment-methods i {
    color: rgba(255, 255, 255, 0.7);

    font-size: 18px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 44px;
    height: 44px;

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

    color: var(--white);

    background: var(--primary);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    cursor: pointer;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
}


/* =========================================================
   SELECTION
========================================================= */

::selection {
    color: var(--white);
    background: var(--accent);
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #f4f4f4;
}

::-webkit-scrollbar-thumb {
    background: #bcbcbc;
}

::-webkit-scrollbar-thumb:hover {
    background: #888;
}


/* =========================================================
   RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .header-container {
        gap: 20px;
    }

    .nav-list {
        gap: 0;
    }

    .nav-link {
        padding: 0 9px;

        font-size: 12px;
    }

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

        row-gap: 45px;
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {

    :root {
        --header-height: 72px;
    }

    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .container-fluid {
        padding-right: 20px;
        padding-left: 20px;
    }

    .main-navigation {
        display: none;
    }

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

    .header-container {
        gap: 10px;
    }

    .site-logo {
        margin-right: auto;
    }

    .desktop-action {
        display: none;
    }

    .header-actions {
        gap: 0;
    }

    .header-action {
        width: 40px;
        height: 40px;
    }

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

    .footer-brand {
        max-width: 100%;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {

    :root {
        --announcement-height: 34px;
        --header-height: 68px;
    }

    body {
        font-size: 14px;
    }

    .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .container-fluid {
        padding-right: 14px;
        padding-left: 14px;
    }

    .announcement-content {
        gap: 8px;

        font-size: 9px;
    }

    .announcement-divider {
        height: 11px;
    }

    .announcement-content span:nth-last-child(-n+2) {
        display: none;
    }

    .header-container {
        min-height: var(--header-height);
    }

    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
    }

    .mobile-menu-toggle i {
        font-size: 23px;
    }

    .logo-mark {
        width: 35px;
        height: 35px;

        font-size: 15px;
    }

    .logo-text strong {
        font-size: 18px;
    }

    .logo-text small {
        font-size: 6px;

        letter-spacing: 1.5px;
    }

    .header-action {
        width: 37px;
        height: 37px;
    }

    .header-action i {
        font-size: 17px;
    }

    .action-badge {
        top: 0;
        right: -1px;

        min-width: 14px;
        height: 14px;

        font-size: 7px;
    }

    .search-panel {
        padding: 20px 0 25px;
    }

    .global-search-form input {
        height: 52px;

        padding-left: 48px;

        font-size: 13px;
    }

    .search-tags {
        gap: 6px;
    }

    .search-tags a {
        padding: 6px 10px;

        font-size: 10px;
    }

    .section-padding {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .display-heading {
        font-size: 40px;
    }

    .lead-text {
        font-size: 15px;
    }

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

        gap: 35px;

        padding-top: 55px;
        padding-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        padding-top: 20px;
        padding-bottom: 20px;
    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .announcement-content {
        justify-content: flex-start;
    }

    .mobile-menu {
        width: 92%;
    }

    .footer-socials a {
        width: 33px;
        height: 33px;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;

        width: 40px;
        height: 40px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}

/* =========================================================
   SMC GLOBAL LOGO
========================================================= */

.logo-mark-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
}


/* Image logo overrides */
.logo-mark.logo-mark-img {
    width: auto;
    height: auto;
    background: transparent !important;
    border-radius: 0;
    color: inherit;
    padding: 0;
}

.site-logo:hover .logo-mark.logo-mark-img {
    background: transparent !important;
}

/* Hide text when image logo is used (logo already contains brand name) */
.site-logo:has(.logo-mark-img) .logo-text {
    display: none;
}

.logo-img {
    height: 42px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo .logo-text strong {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.site-logo .logo-text small {
    color: var(--accent);
    font-weight: 500;
}

@media (max-width: 575px) {
    .logo-img {
        height: 34px;
        max-width: 120px;
    }
}
