/* =========================================
   ASH KT SOCIAL MEDIA ICONS
========================================= */

.ashkt-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ashkt-social-icons a {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;

    border: 2px solid #D3DEE8;
    border-radius: 50%;

    background: #F8FAFC;
    color: #B87333;

    text-decoration: none;
    box-sizing: border-box;

    font-size: 12px;
    line-height: 1;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.ashkt-social-icons a:hover {
    background: #B87333;
    color: #FFFFFF;
    border-color: #B87333;

    transform: translateY(-2px);
}


/* =========================================
   DARK MODE (style.css से merge किया गया)
========================================= */

body.ashkt-dark-theme .ashkt-social-icons a {
    background: #2A2A2A;
    color: #E8E6E3;
    border-color: #3A3A3A;
}

body.ashkt-dark-theme .ashkt-social-icons a:hover {
    background: #B89B5E;
    color: #FFFFFF;
    border-color: #B89B5E;
}


/* =========================================
   FOOTER OVERRIDE (Below Footer row — style.css से merge किया गया)
========================================= */

.ashkt-footer-row-below .ashkt-social-icons {
    gap: 14px;
}


/* =========================================
   MOBILE SOCIAL ICONS
========================================= */

@media (max-width: 768px) {

    .ashkt-social-icons {
        gap: 6px;
    }

    .ashkt-social-icons a {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }
}