.footerSection {
    padding-top: 100px !important;
}
.radiusFooter {
	border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom: none;       /* optional if you only want top/sides */
    overflow: hidden;          /* keeps child backgrounds inside the radius */
}
.footerColumnTitle {
	font-weight: 600;
}

/* Footer Socials */
.footerSocials a {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  margin: 0 8px !important;
  font-size: 20px !important;
  text-decoration: none !important;
  background-color: #f0f0f0 !important;
  color: #000 !important;
}

.footerSocials a i {
  display: inline-block !important;
  vertical-align: middle !important;  /* safe fallback */
  position: relative !important;       /* if theme sets relative */
  top: 0 !important;                   /* reset any previous offset */
  line-height: 1 !important;           /* reset theme line-height */
}

/* Footer Newsletter form */
.newsletterfooter .flex-col.flex-grow {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.newsletterfooter input[type="email"] {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 600;
    padding-left: 20px;
}

.newsletterfooter input[type="submit"] {
    position: absolute;
    right: 4px;        /* inside the input */
    top: 15%;
    transform: translateY(-50%);
    height: 45px;
	width: 45px;
    border-radius: 25px;
    padding: 0 20px;
    background-color: #282828;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0px;
}
/* Style the arrow icon */
.newsletterfooter .icon-angle-right {
    position: absolute;
    right: 18px;
    top: 16%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    pointer-events: none;
}

.newsletterfooter input[type="submit"]:hover {
    background-color: #000;
}

/* Responsive for small screens */
@media (max-width: 500px) {
    .newsletterfooter input[type="email"],
    .newsletterfooter input[type="submit"] {
        border-radius: 25px;
    }
}
.newsletterfooter .button:hover,
.newsletterfooter input[type=submit]:hover {
    background-color: #e1e1e1;  
    box-shadow: none;
}
/* Hover effect: change arrow color and optionally slide */
.newsletterfooter input[type="submit"]:hover ~ .icon-angle-right {
    color: #282828;
    transform: translateY(-50%) translateX(2px);
}


/*  ---  */


.footer-links {
  font-size: 110%;
  color: #282828;
  line-height: 1.8;
}
.footer-links a {
  color: #282828;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}
.footer-links a:hover {
  color: blue; /* slightly darker on hover */
  text-decoration: underline;
}

.footerCopyrightColumn {
	padding: 0 15px 0px;
}
@media screen and (max-width: 849px) {
    .col.footerCopyrightColumn {
        padding-bottom: 0px;
    }
}

.absolute-footer {
	display: none;
}


/* Buttons Hover State */
.buttonHoverOutline:hover {
    background: #fff !important;
    color: var(--fs-color-primary) !important; 
    border: 1px solid var(--fs-color-primary) !important; 
	box-shadow: none !important; /* kill the inherited inset shadow */
}
.buttonHoverOutline {
    transition: all 0.4s ease;
}
/* End of Buttons Hover State */


/* hide uncategorized globally */
.cat-item.cat-item-16 {
    display: none !important;
}

.category-uncategorized,
.cat-item.cat-item-1 {
    display: none !important;
}