/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 31 2026 | 02:11:23 */
/* =========================================================
   AR CRAFTIX - FOOTER SOCIAL ICONS
   ========================================================= */

.arc-footer-social {
    margin-top: 28px;
    width: 100%;
}


/* -------------------------
   FOLLOW US HEADING
   ------------------------- */

.arc-social-title {
    position: relative;
    display: inline-block;

    margin: 0 0 18px 0;
    padding: 0 0 9px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* Small stylish underline */

.arc-social-title::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 32px;
    height: 3px;

    background: #003da3;

    border-radius: 20px;
}


/* -------------------------
   ICONS CONTAINER
   ------------------------- */

.arc-social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex-wrap: wrap;

    gap: 10px;
}


/* -------------------------
   INDIVIDUAL ICON
   ------------------------- */

.arc-social-link {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    padding: 0;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;

    text-decoration: none !important;

    overflow: hidden;

    transition:
        transform 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}


/* SVG icons */

.arc-social-link svg {
    position: relative;
    z-index: 2;

    display: block;

    width: 20px;
    height: 20px;

    fill: currentColor;

    transition:
        transform 0.28s ease,
        color 0.28s ease;
}


/* Decorative hover layer */

.arc-social-link::before {
    content: "";

    position: absolute;

    width: 0;
    height: 0;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    transition:
        width 0.35s ease,
        height 0.35s ease;
}


/* -------------------------
   GENERAL HOVER
   ------------------------- */

.arc-social-link:hover {
    color: #ffffff;

    transform: translateY(-5px);

    border-color: transparent;

    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.25);
}


.arc-social-link:hover::before {
    width: 90px;
    height: 90px;
}


.arc-social-link:hover svg {
    transform: scale(1.08);
}


/* =========================================================
   BRAND COLORS
   ========================================================= */


/* Email */

.arc-email::before {
    background: #003da3;
}


/* Instagram */

.arc-instagram::before {
    background: linear-gradient(
        135deg,
        #833ab4 0%,
        #c13584 40%,
        #e1306c 65%,
        #f77737 100%
    );
}


/* WhatsApp */

.arc-whatsapp::before {
    background: #25d366;
}


/* X / Twitter */

.arc-x::before {
    background: #000000;
}


/* =========================================================
   OPTIONAL ICON DEFAULT ACCENT
   ========================================================= */

.arc-email:hover {
    border-color: #003da3;
}

.arc-instagram:hover {
    border-color: #c13584;
}

.arc-whatsapp:hover {
    border-color: #25d366;
}

.arc-x:hover {
    border-color: #333333;
}


/* =========================================================
   FOCUS / ACCESSIBILITY
   ========================================================= */

.arc-social-link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media only screen and (max-width: 767px) {

    .arc-footer-social {
        margin-top: 22px;
    }

    .arc-social-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .arc-social-icons {
        gap: 9px;
    }

    .arc-social-link {
        width: 43px;
        height: 43px;
        border-radius: 11px;
    }

    .arc-social-link svg {
        width: 19px;
        height: 19px;
    }

}


/* =========================================================
   REDUCED MOTION SUPPORT
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .arc-social-link,
    .arc-social-link::before,
    .arc-social-link svg {
        transition: none;
    }

}
/* =========================================================
   AR CRAFTIX FOOTER SOCIAL ICONS - WORDPRESS TEXT WIDGET FIX
   ========================================================= */

/* Main social area */
.arc-footer-social {
    width: 100%;
    margin-top: 26px;
}


/* FOLLOW US heading */
.arc-social-title {
    position: relative;
    display: inline-block;
    margin: 0 0 27px 0 !important;
    padding: 0 0 11px 0;

    color: #ffffff !important;

    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}


/* Blue underline */
.arc-social-title::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 31px;
    height: 3px;

    background: #003da3;

    border-radius: 10px;
}


/* =========================================================
   IMPORTANT:
   REMOVE WORDPRESS AUTOMATIC EMPTY PARAGRAPH ICONS
   ========================================================= */

/*
WordPress Text Widget has generated:

<p><a class="arc-social-link"></a></p>

These are the unwanted empty boxes.
*/
.arc-social-icons > p {
    display: none !important;
}


/* Icons container */
.arc-social-icons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    align-items: center !important;
    justify-content: flex-start !important;

    gap: 10px !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* Actual icon button */
.arc-social-icons > a.arc-social-link {
    position: relative;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 46px !important;

    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;

    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 11px !important;

    color: #ffffff !important;

    text-decoration: none !important;

    overflow: hidden;

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}


/* WordPress added <p> INSIDE actual links */
.arc-social-icons > a.arc-social-link > p {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 1 !important;
}


/* SVG */
.arc-social-link svg {
    display: block !important;

    width: 19px !important;
    height: 19px !important;

    margin: 0 !important;
    padding: 0 !important;

    fill: currentColor !important;

    position: relative;
    z-index: 2;

    transition: transform 0.25s ease;
}


/* =========================================================
   DEFAULT BRAND COLORS
   ========================================================= */

/* Email */
.arc-social-icons > .arc-email {
    background: #003da3 !important;
    border-color: #003da3 !important;
}


/* Instagram */
.arc-social-icons > .arc-instagram {
    background: #833ab4 !important;
    border-color: #833ab4 !important;
}


/* WhatsApp */
.arc-social-icons > .arc-whatsapp {
    background: #25d366 !important;
    border-color: #25d366 !important;
}


/* X */
.arc-social-icons > .arc-x {
    background: #111111 !important;
    border-color: #292929 !important;
}


/* =========================================================
   HOVER EFFECTS
   ========================================================= */

.arc-social-icons > a.arc-social-link:hover {
    transform: translateY(-5px) !important;

    color: #ffffff !important;

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.32) !important;
}


/* Email hover */
.arc-social-icons > .arc-email:hover {
    background: #0052d9 !important;
}


/* Instagram hover */
.arc-social-icons > .arc-instagram:hover {
    background: #c13584 !important;
}


/* WhatsApp hover */
.arc-social-icons > .arc-whatsapp:hover {
    background: #20bd5a !important;
}


/* X hover */
.arc-social-icons > .arc-x:hover {
    background: #000000 !important;
}


/* Slight icon zoom */
.arc-social-icons > a.arc-social-link:hover svg {
    transform: scale(1.12);
}


/* =========================================================
   REMOVE THEME LINK DECORATION
   ========================================================= */

.arc-footer-social a,
.arc-footer-social a:hover,
.arc-footer-social a:focus,
.arc-footer-social a:active {
    text-decoration: none !important;
    outline: none;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media only screen and (max-width: 767px) {

    .arc-footer-social {
        margin-top: 22px;
    }

    .arc-social-title {
        font-size: 16px !important;
        margin-bottom: 20px !important;
    }

    .arc-social-icons {
        gap: 8px !important;
        flex-wrap: wrap !important;
    }

    .arc-social-icons > a.arc-social-link {
        flex-basis: 43px !important;

        width: 43px !important;
        min-width: 43px !important;
        max-width: 43px !important;

        height: 43px !important;
        min-height: 43px !important;
        max-height: 43px !important;
    }

    .arc-social-link svg {
        width: 18px !important;
        height: 18px !important;
    }

}
/* =========================================================
   AR CRAFTIX SOCIAL ICONS - SIZE + INSTAGRAM FIX
   ========================================================= */


/* Bigger social buttons */
.arc-social-icons > a.arc-social-link {
    width: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;

    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;

    flex: 0 0 52px !important;

    border-radius: 12px !important;
}


/* Bigger icons */
.arc-social-link svg {
    width: 23px !important;
    height: 23px !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* Email, WhatsApp & X */
.arc-email svg,
.arc-whatsapp svg,
.arc-x svg {
    fill: #ffffff !important;
}


/* =========================================================
   INSTAGRAM ICON FIX
   ========================================================= */

.arc-instagram .arc-instagram-svg {
    width: 25px !important;
    height: 25px !important;

    fill: none !important;
    stroke: #ffffff !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}


/* Instagram small top dot */
.arc-instagram .arc-instagram-svg circle:last-child {
    fill: #ffffff !important;
    stroke: none !important;
}


/* Slightly more gap between icons */
.arc-social-icons {
    gap: 11px !important;
}


/* Hover */
.arc-social-icons > a.arc-social-link:hover {
    transform: translateY(-5px) scale(1.04) !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media only screen and (max-width: 767px) {

    .arc-social-icons > a.arc-social-link {
        width: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;

        height: 48px !important;
        min-height: 48px !important;
        max-height: 48px !important;

        flex-basis: 48px !important;
    }

    .arc-social-link svg {
        width: 21px !important;
        height: 21px !important;
    }

    .arc-instagram .arc-instagram-svg {
        width: 23px !important;
        height: 23px !important;
    }
}