.site-footer {
    position: fixed;
    bottom: var(--footer-bottom);
    left: 0;
    right: 8vw;
    width: var(--main-width);
    height: var(--footer-height);
    background: rgba(0,0,0,0.85);
    border-top: 2px solid #333;
    z-index: 100;
    display: grid;
    grid-template-columns: 5fr 3fr 2fr;
}

.footer-col-socials {
    display: grid;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    align-items: center;
}

.social-row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.footer-col-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

/* --- ICON FIXES --- */
/* FontAwesome Icons (i tags) */
.site-footer i, 
.contact-row i {
    color: #BE4BDB;
    font-weight: bold;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    cursor: pointer;
    display: inline-block;
    text-shadow: 0 0 5px rgba(192,192,192,0.5);
}

/* SVG Icons */
.social-row a {
    display: inline-block;
    width: 24px;
    height: 24px;
    transition: 0.3s;
}

.social-row a svg {
    width: 100%;
    height: 100%;
    fill: #BE4BDB;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    text-shadow: 0 0 5px rgba(192,192,192,0.5);
}

/* Hover Effects */
.site-footer i:hover {
    fill: #82C91E;
    transform: scale(1.02);
}

.social-row a:hover svg {
    fill: #82C91E;
    transform: scale(1.02);
}

.footer-col-paypal {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paypal-link {
    text-decoration: none;
    display: block;
    height: 90%;
    width: 45%; /* 45% Width */
    border: 2px solid #800080; 
    box-sizing: border-box;
    overflow: hidden;
}

.paypal-bg {
    width: 100%;
    height: 100%;
    background-image: url('../images/paypal.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paypal-text {
    font-size: 1.2rem;
    color: #00ff00; 
    text-shadow: 1px 1px 0 #800080;
    -webkit-text-stroke: 1px #800080;
    font-family: 'Starcraft Regular', sans-serif;
    font-weight: bold;
}