/* =========================================
   HEADER & FOOTER STYLES (Refactored)
   Context: Standalone file to prevent 403 WAF/* =========================================
   1. CORE VARIABLES & TOKENS
   ========================================= */

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/myriad-pro-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/myriad-pro-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/myriad-pro-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Colors */
    --k-primary: #FFD200;
    --k-dark: #1A1A1A;
    --k-gray: #F5F5F5;

    /* Header Specific */
    --k-header-yellow: #FFD200;
    --k-header-yellow-hover: #F2C700;
    --k-header-black: #000000;
    --k-header-white: #FFFFFF;
    --k-header-text-dark: #000000;
    /* FORCE BLACK */
    --k-header-text-hover: #333333;
    --k-text-white: #FFFFFF;

    /* Typography */
    --k-font-primary: 'Myriad Pro', sans-serif;
    /* MYRIAD PRO GLOBAL */

    /* Transitions & Shadows */
    --k-transition-fluid: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --k-header-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    --k-dropdown-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --k-mega-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

/* Reset for Header Context */
.k-header * {
    box-sizing: border-box;
    font-family: 'Inter', "Segoe UI", sans-serif;
}

.k-header {
    width: 100%;
    background-color: var(--k-header-yellow) !important;
    /* FORCE YELLOW */
    box-shadow: var(--k-header-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: var(--k-font-primary);
    font-weight: 400;
    /* REGULAR */
    color: #000000;
}

.k-header__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* --- ESTILOS BASE / MOBILE (Mobile First) --- */

.k-header__top-row {
    display: flex;
    /* Mobile Layout */
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background-color: var(--k-header-yellow);
    color: #000000;
    width: 100%;
}

.k-header__top-row>* {
    color: #000000 !important;
    /* Force Black Text */
}

/* Hide Desktop Account on Mobile */
.k-header__account-container {
    display: none;
}

.k-header__logo-container {
    grid-area: logo;
    display: flex;
    justify-content: center;
    align-items: center;
}

.k-header__logo-img img {
    display: block;
    height: 42px;
    /* Adjusted Mobile Logo */
    width: auto;
    object-fit: contain;
}

.k-header__search-container {
    grid-area: search;
    position: relative;
    width: 100%;
}

.k-header__search-input {
    width: 100%;
    padding: 10px 20px;
    padding-right: 50px;
    border: 1px solid var(--k-header-black);
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    font-weight: 500;
}

.k-header__search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--k-header-white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--k-transition-fluid);
}

.k-header__search-button svg {
    width: 16px;
    height: 16px;
    stroke: var(--k-header-black);
}

.k-header__search-button:hover {
    background: var(--k-header-yellow);
    transform: translateY(-50%) scale(1.05);
}

.k-header__menu-toggle {
    grid-area: menu;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--k-header-black);
}

/* --- SELECTOR IDIOMA --- */
.k-header__lang-picker {
    grid-area: lang;
    justify-self: end;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    display: flex;
    /* Temporal hasta implementación backend */
    align-items: center;
    justify-content: flex-end;
    min-height: 40px;
}

.k-header__lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--k-header-white);
    border-radius: 8px;
    box-shadow: var(--k-dropdown-shadow);
    display: none;
    flex-direction: column;
    min-width: 110px;
    z-index: 1002;
    margin-top: 5px;
    overflow: hidden;
    border: 1px solid #eee;
}

.k-header__lang-dropdown.show {
    display: flex;
}

.k-header__lang-option {
    padding: 12px 15px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: var(--k-transition-fluid);
    color: var(--k-header-text-dark);
    display: block;
    text-decoration: none;
}

.k-header__lang-option:hover {
    background: var(--k-header-yellow);
    color: var(--k-header-black);
}

/* Resto de estilos Mobile */
.k-header__bottom-row {
    display: none;
}

.k-mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: var(--k-transition-fluid);
    z-index: 1001;
}

/* DRAWER: Transform-based to avoid layout shifts */
.k-mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: var(--k-header-white);
    z-index: 1002;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.4s;
    padding: 30px 20px;

    /* FIX: Use display: none to completely remove from rendering tree when closed */
    display: none;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;

    /* DEFAULT STATE: Hiden & Off-screen */
    transform: translateX(-100%);
    visibility: hidden;
    pointer-events: none;
}

.k-mobile-nav-overlay.active {
    visibility: visible;
    opacity: 1;
}

.k-mobile-nav-drawer.active {
    /* FIX: Restore flex display when active */
    display: flex;
    /* ACTIVE STATE: On-screen */
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.k-mobile-link {
    text-decoration: none;
    color: var(--k-header-black);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.k-mobile-category-content {
    display: none;
    padding: 10px 0 10px 15px;
    flex-direction: column;
    gap: 15px;
}

.k-mobile-category-content.active {
    display: flex;
}

/* --- MEDIA QUERY: TABLET & DESKTOP (A partir de 769px) --- */

@media (min-width: 769px) {

    /* CRITICAL: Matar el drawer en desktop para evitar conflictos */
    .k-mobile-nav-drawer,
    .k-mobile-nav-overlay {
        display: none !important;
    }

    /* --- DESKTOP TOP ROW: YELLOW & REGULAR --- */
    .k-header__top-row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap !important;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        gap: 20px;
        background-color: var(--k-header-yellow) !important;
        color: #000000 !important;
        font-family: var(--k-font-primary);
        font-weight: 400;
        /* Myriad Pro Regular */

        /* STACKING CONTEXT FIX */
        position: relative;
        z-index: 20;
        /* Higher than Bottom Row */
    }

    .k-header__top-row a,
    .k-header__top-row span,
    .k-header__account,
    .k-account-label {
        color: #000000 !important;
        /* Force Black Text */
        font-weight: 400;
    }

    /* Hide Mobile Trigger on Desktop */
    .k-header__menu-toggle {
        display: none;
    }

    /* Logo Container: width auto to fit */
    .k-header__logo-container {
        grid-area: auto;
        width: auto;
        padding: 0;
        margin-right: 0;
        flex-shrink: 0;
    }

    /* Search Container: Take available space */
    .k-header__search-container {
        grid-area: auto;
        flex-grow: 1;
        max-width: 800px;
        margin: 0 30px;
        /* Reduced side margins, removed auto */
    }

    /* Account Container: Right aligned */
    .k-header__account-container {
        display: block;
        flex-shrink: 0;
        min-width: auto;
    }

    /* Account Styling */
    .k-header__account {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        position: relative;
        font-weight: 400;
        font-size: 14px;
        color: #000000 !important;
        /* Black */
        padding: 10px;
        transition: var(--k-transition-fluid);
    }

    .k-header__account:hover {
        background-color: transparent !important;
        /* No shaded box */
        color: #FFFFFF !important;
        /* Text turns White */
    }

    .k-header__account:hover .k-icon,
    .k-header__account:hover .k-account-label {
        color: #FFFFFF !important;
        fill: #FFFFFF !important;
    }

    /* Fix Dropdown position for top bar account */
    .k-header__account .k-dropdown {
        top: 100%;
        right: 0;
        left: auto;
        margin-top: 10px;
    }

    .k-header__account:hover .k-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


    .k-header__menu-toggle {
        display: none;
    }

    .k-header__logo-container {
        grid-area: auto;
        max-width: 300px;
        padding: 10px 20px 10px 0;
        margin-right: 10px;
        justify-content: flex-start;
    }

    .k-header__logo-img img {
        height: 54px;
        /* Adjusted Desktop Logo */
    }

    .k-header__search-container {
        grid-area: auto;
        max-width: 700px;
        flex-grow: 1;
    }

    .k-header__search-input {
        font-size: 15px;
        padding: 12px 25px;
        padding-right: 60px;
    }

    .k-header__search-button {
        width: 38px;
        height: 38px;
        right: 6px;
    }

    .k-header__search-button svg {
        stroke: var(--k-header-black);
        width: 18px;
        height: 18px;
        transition: var(--k-transition-fluid);
    }

    .k-header__lang-picker {
        grid-area: auto;
        font-size: 13px;
        padding: 8px 12px;
        border: 1px solid #eee;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .k-header__lang-dropdown {
        right: 0;
        margin-top: 5px;
        min-width: 120px;
    }

    /* --- BOTTOM ROW: BLACK & BOLD --- */
    /* --- BOTTOM ROW: BLACK & BOLD --- */
    .k-header__bottom-row {
        display: block;
        background-color: var(--k-header-black) !important;
        /* Force Black */
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        font-family: var(--k-font-primary);

        /* STACKING CONTEXT FIX */
        position: relative;
        z-index: 10;
        /* Lower than Top Row */
    }

    .k-nav-wrapper {
        display: flex;
        width: 100%;
    }

    .k-nav-item {
        flex: 1;
        position: relative;
        color: #FFFFFF !important;
        /* Force White */
        text-align: center;
        padding: 18px 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 14px;
        font-weight: 700 !important;
        /* Myriad Pro Bold */
        text-transform: uppercase;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        /* Separator adaptation */
        cursor: pointer;
        transition: var(--k-transition-fluid);
        text-decoration: none;
        white-space: nowrap;
        list-style: none;
        /* Reset li */
    }

    .k-nav-item-wide {
        flex: 1.25;
    }

    .k-nav-item:last-child {
        border-right: none;
    }

    .k-nav-item:hover {
        background-color: var(--k-header-yellow-hover);
        color: #000000 !important;
        /* Black On Hover */
        box-shadow: inset 0 -4px 0 0 var(--k-header-black);
    }

    .k-nav-item:hover svg,
    .k-nav-item:hover span {
        fill: #000000 !important;
        color: #000000 !important;
    }

    .k-nav-item svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
        /* Inherits White by default, Black on Hover */
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .k-nav-item:hover svg {
        transform: scale(1.15) translateY(-2px);
    }

    /* --- DROPDOWN CORRECTION (OPAQUE) --- */
    .k-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        min-width: 240px;
        background-color: #FFFFFF !important;
        /* Opaque White */
        color: #000000 !important;
        /* Text Black */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        /* Stronger Shadow */
        display: flex;
        flex-direction: column;
        padding: 10px 0;
        z-index: 99999;
        /* MAX Z-INDEX */
        /* Ensure on top */
        text-align: left;
        border-top: 1px solid rgba(0, 0, 0, 0.1);

        /* HIDDEN STATE (Default) */
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        background-color: #FFFFFF !important;
        /* FORCE SOLID WHITE */

        /* DELAY LOGIC: Wait 1.5s before hiding */
        transition:
            opacity 0.2s ease 1.5s,
            transform 0.2s ease 1.5s,
            visibility 0s linear 1.7s;
    }

    .k-dropdown-link {
        color: #000000 !important;
        font-family: var(--k-font-primary);
        font-weight: 400;
        /* Regular */
    }

    .k-dropdown-link:hover {
        background-color: var(--k-gray);
        color: #000000 !important;
    }

    .k-dropdown-mega {
        width: min(1000px, calc(100vw - 40px));
        padding: 35px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: min-content;
        gap: 40px 35px;
        border-radius: 0 0 8px 8px;
        box-shadow: var(--k-mega-shadow);
    }

    /* Hover logic */
    /* HOVER STATE: Open Immediately */
    .k-nav-item:hover .k-dropdown,
    .k-header__account:hover .k-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0);
        background-color: #FFFFFF !important;

        /* INSTANT OPEN (No delay) */
        transition:
            opacity 0.2s ease 0s,
            transform 0.2s ease 0s,
            visibility 0s linear 0s;
    }

    /* CRITICAL: MUTUAL EXCLUSION (Kill delay if sibling is hovered) */
    /* If we are hovering the nav wrapper, but NOT this items, kill its delay */
    .k-nav-wrapper:hover .k-nav-item:not(:hover) .k-dropdown,
    .k-header__top-row:hover .k-header__account:not(:hover) .k-dropdown {
        transition-delay: 0s !important;
        /* Close instantly */
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .k-nav-wrapper:hover .k-nav-item:not(:hover) .k-dropdown {
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: opacity 0.1s ease 0s, transform 0.1s ease 0s, visibility 0s linear 0.1s;
    }

    .k-mega-col {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .k-mega-header {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .k-mega-title {
        color: var(--k-header-black);
        font-weight: 900;
        font-size: 15.5px;
        letter-spacing: 0.2px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .k-mega-title:hover {
        color: var(--k-header-yellow-hover) !important;
    }

    .k-mega-desc {
        font-size: 11.5px;
        color: #777;
        line-height: 1.5;
        margin-bottom: 12px;
        min-height: 3.2em;
        display: block;
        white-space: normal;
        overflow: visible;
    }

    .k-mega-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .k-mega-link {
        font-size: 14px;
        color: #444;
        text-decoration: none;
        font-weight: 500;
        transition: var(--k-transition-fluid);
    }

    .k-mega-link:hover {
        color: var(--k-header-yellow-hover);
        padding-left: 5px;
    }

    .k-dropdown-link {
        padding: 12px 20px;
        text-decoration: none;
        color: var(--k-header-text-dark);
        font-size: 14px;
        font-weight: 500;
        transition: var(--k-transition-fluid);
        display: block;
    }

    .k-dropdown-link:hover {
        background: transparent;
        color: var(--k-header-yellow-hover);
        padding-left: 25px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .k-dropdown-mega {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1600px) {
    .k-comparator-table__grid {
        min-width: 100%;
        /* Better to use 100% here */
    }
}



/* --- WAF Compliance Helpers (Replacing inline styles) --- */
.k-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.k-drawer-title {
    font-weight: 900;
    font-size: 18px;
}

.k-drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--k-header-black);
    padding: 0;
    line-height: 1;
}

.k-text-whatsapp {
    color: #25D366 !important;
}

/* --- SVG ICONS (Physical Files for WAF safety) --- */
.k-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.k-icon-menu {
    width: 30px;
    height: 30px;
    background-image: url('../img/icons/menu.svg');
}

.k-icon-search {
    width: 18px;
    height: 18px;
    background-image: url('../img/icons/search.svg');
}

.k-icon-categories {
    background-image: url('../img/icons/categories.svg');
}

.k-icon-account {
    background-image: url('../img/icons/account.svg');
    /* Ensure Icon is visible on yellow (Black icon usually) or white on black */
    /* Since we use CSS filter or fill currentColor for SVGs, but these are background images */
    /* If they are PNG/SVG masks, we might need filter */
}

/* Invert icons to white in bottom bar */
.k-nav-item .k-icon {
    filter: brightness(0) invert(1);
}

.k-nav-item:hover .k-icon {
    filter: none;
    /* Restore original (Black) on hover */
}

/* Top bar account icon stays black (default) */
.k-header__account .k-icon {
    filter: none;
}

.k-icon-whatsapp {
    background-image: url('../img/icons/whatsapp.svg');
}

.k-icon-about {
    background-image: url('../img/icons/about.svg');
}

.k-icon-location {
    background-image: url('../img/icons/location.svg');
}

.k-icon-manuales {
    background-image: url('../img/icons/manuales.svg');
}

.k-icon-electricas {
    background-image: url('../img/icons/electricas.svg');
}

.k-icon-maquinaria {
    background-image: url('../img/icons/maquinaria.svg');
}

/* =========================================
   FOOTER STYLES (Final Slim)
   Context: Mobile First
   ========================================= */

.k-footer {
    background: #000;
    color: #fff;
    font-family: var(--k-font-primary);
    /* Myriad Pro */
    font-weight: 400;
    /* Regular */
    padding: 20px 0 15px;
    /* Compact Mobile Padding */
    border-top: 4px solid #ffcc00;
    font-size: 15px;
    /* Larger base font for mobile readability */
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    /* Safety net inside footer */
}

.k-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid System - Mobile First (1 Columna) */
.k-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    /* Tighter gap for mobile */
}

/* Forzamos estabilidad en las columnas */
.k-footer__col {
    min-width: 0;
}

/* Tablet Breakpoint (2 Columnas) */
@media (min-width: 768px) {
    .k-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Desktop Breakpoint (4 Columnas en una sola fila) */
@media (min-width: 1024px) {
    .k-footer {
        padding: 25px 0 15px;
        font-size: 14px;
        /* Back to standard size for desktop */
    }

    .k-footer__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 30px;
    }
}

.k-footer__title {
    color: #ffcc00;
    font-family: var(--k-font-primary);
    font-weight: 700;
    /* Myriad Bold */
    font-size: 13px;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
    position: relative;
    letter-spacing: 0.5px;
}

.k-footer__title::after {
    content: none;
}

.k-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.k-footer__list li {
    margin-bottom: 8px;
    /* Slightly more spacing for touch targets */
}

@media (min-width: 1024px) {
    .k-footer__list li {
        margin-bottom: 6px;
    }
}

.k-footer__list a {
    color: #bbb;
    text-decoration: none;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    padding: 2px 0;
    /* Touch Target improvement */
}

.k-footer__list a:hover {
    color: #fff;
    padding-left: 0;
}

.k-footer__info-group {
    margin-bottom: 15px;
}

/* Tamaño de teléfono reducido ligeramente */
.k-footer__phone a {
    color: #ffcc00;
    font-size: 16px;
    /* Larger phone number on mobile */
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 5px;
}

@media (min-width: 1024px) {
    .k-footer__phone a {
        font-size: 14px;
    }
}

.k-footer__schedule span,
.k-footer__address span {
    color: #bbb;
    display: block;
    font-size: 14px;
    /* Clearer text */
    line-height: 1.4;
}

@media (min-width: 1024px) {

    .k-footer__schedule span,
    .k-footer__address span {
        font-size: 13px;
    }
}

/* Alineación corregida: Ícono a la derecha para no desplazar el texto */
.k-reclamaciones-link {
    gap: 10px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle bg for touch area */
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.k-reclamaciones-link img {
    width: 16px;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.8;
    height: auto;
}

.k-footer__bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #111;
}

.k-footer__bottom-flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

@media (min-width: 768px) {
    .k-footer__bottom-flex {
        flex-direction: row;
        justify-content: space-between;
    }
}

.k-footer__copyright {
    color: #666;
    font-size: 12px;
    margin: 0;
    text-align: center;
}

/* Sección Síguenos */
.k-footer__social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.k-footer__social-label {
    color: #666;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.k-footer__social-list {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Larger gap for touch */
    list-style: none;
    padding: 0;
    margin: 0;
}

.k-footer__social-item a {
    color: #bbb;
    text-decoration: none;
    transition: 0.2s;
    display: flex;
    align-items: center;
    padding: 5px;
    /* Touch area */
}

.k-footer__social-item a:hover {
    color: #ffcc00;
}

.k-footer__social-item svg {
    width: 18px;
    /* Slightly larger social icons */
    height: 18px;
    fill: currentColor;
}