/* ==============================
   Coupon-Style Global Footer
   ============================== */
:root {
  --footer-bg: #2c3b4c;
  --footer-fg: #e4ecf2;
  --footer-fg-dim: #cdd7df;
  --footer-head: #ffffff;
  --footer-link: #dfe8f0;
  --footer-link-hover: #ffffff;
  --footer-accent: #3f556b;
  --divider: rgba(255, 255, 255, 0.08);
}

/* reset theme gap under footer */
.site,
.site-content,
.content-area,
#content,
main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.rr-footer+* {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.rr-footer {
  background: #20272f;
  color: var(--footer-fg);
  font-size: 16px;
  margin-top: 60px;
}



.rr-footer a {
  color: var(--footer-link);
  text-decoration: none;
}

.rr-footer a:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}

/* grid layout */
.rr-footer__inner {
  display: flex;
}



/* brand column */
.rr-footer__brand img,
.rr-footer__brand .custom-logo {
  max-height: 44px;
  width: auto;
  display: block;
  margin: 0 0 16px;
}

.rr-footer__sitename {
  display: block;
  font: 800 28px/1.1 system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu;
  color: #fff;
  margin: 0 0 10px;
}

.rr-footer__tagline {
  margin: 0 0 20px;
  max-width: 520px;
  line-height: 1.7;
  color: var(--footer-fg-dim);
}

/* titles */
.rr-footer__title {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.2;
  color: var(--footer-head);
  font-weight: 700;
}

/* menus */
.rr-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rr-footer__menu li {
  margin: 10px 0;
}

.rr-footer__menu a {
  color: var(--footer-fg-dim);
}

.rr-footer__menu a:hover {
  color: #fff;
}

/* social icons */
.rr-footer__socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rr-social {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.rr-social:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.rr-social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  display: block;
}

/* brand colors */
.rr-social--facebook {
  background: #1877f2;
}

.rr-social--youtube {
  background: #ff0000;
}

.rr-social--instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.rr-social--pinterest {
  background: #e60023;
}

.rr-social--snapchat {
  background: #fffc00;
}

.rr-social--tiktok {
  background: #010101;
}

/* app badges */
.rr-footer__apps .rr-app-badge {
  display: block;
  width: 210px;
  max-width: 100%;
  margin: 0 0 14px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.rr-footer__apps img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* bottom copyright bar */
.rr-footer__bottom {
  border-top: 1px solid var(--divider);
  padding: 18px 0 26px;
  text-align: center;
}

.rr-footer__bottom p {
  margin: 0;
  color: var(--footer-fg-dim);
  font-size: 15px;
  letter-spacing: 0.2px;
}

/* .rr-footer__col.rr-footer__brand {} */

/* mobile tweaks */
@media (max-width: 480px) {

  .rr-footer__tagline {
    font-size: 15px;
  }

  .rr-footer__title {
    font-size: 18px;
  }
}

:root {
  --footer-gap-top: 24px;
}

.rr-footer {
  margin-top: var(--footer-gap-top) !important;
}

.rr-footer+* {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


.rr-footer__socials {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px
}

.rr-social {
  --bg: #666;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg);
  box-shadow: 0 2px 0 rgba(0, 0, 0, .15), inset 0 0 0 1px rgba(255, 255, 255, .08);
  transition: .2s
}

.rr-social svg {
  width: 20px;
  height: 20px;
  display: block
}

.rr-social svg * {
  fill: #fff
}

/* white logos */
.rr-social--facebook {
  --bg: #1877F2
}

.rr-social--youtube {
  --bg: #FF0000
}

.rr-social--instagram {
  --bg: #E1306C
}

.rr-social--pinterest {
  --bg: #E60023
}

.rr-social--snapchat {
  --bg: #FFFC00
}

.rr-social--tiktok {
  --bg: #111
}