
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  text-decoration: none;
}

:root {
  --bg-color: #080808;
  --second-bg-color: #131313;
  --text-color: rgb(255, 255, 255);
  --main-color: #22e03b;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0b0b0b;
  color: #fff;
}

/* Navbar */

#logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-color);
  transition: transform 0.3s ease-in-out;
  text-shadow: 0 0 15px var(--main-color);
}

#logo:hover {
  transform: scale(1.05);
}

#logo img {
  height: 55px;
  width: 55px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 10px var(--main-color);
}

#logo span {
  font-family: "Oxygen", sans-serif;
  font-size: 2rem;
  color: var(--main-color);
  font-weight: 700;
}

.logo_contain {
  margin-right: auto;
  display: flex;
  margin-right: auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 90px;
  width: 100%;
  padding: 0.7rem 5% 0.8rem;
  background: rgba(0, 0, 0, 0.836);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  z-index: 999;
}

.navbar_container {
  display: flex;
  margin-top: 8px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-height: 55px;
}

.navbar_menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-left: auto;
}

/* Navbar links small */

.navbar_btn .navbar_links {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-bottom: 2px solid transparent;
}

.navbar_btn .navbar_links:hover {
  color: var(--main-color);
  border-bottom-color: var(--main-color);
}

/* search bar */

.input-box {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0;
  margin-bottom: 10px;
  margin-left: 25px;
  background-color: #000000;
  border-radius: 25px;
  display: flex;
  align-items: center;
  transition: width 0.4s ease-in-out;
  overflow: hidden;
}

.input-box:hover,
.input-box:focus-within {
  width: 350px;
}

.input-box input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 20px 0 50px;
  font-size: 16px;
  color: #333;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-box:hover input,
.input-box:focus-within input {
  opacity: 1;
}

.input-box .search {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.input-box .search-icon {
  font-size: 20px;
  margin-left: 5px;
}

.input-box .close-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #000;
  cursor: pointer;
  display: none;
}

.input-box input:not(:placeholder-shown) ~ .close-icon {
  display: block;
}

.navbar_btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar_shop {
  border-radius: 100px;
  border: solid transparent;
  padding: 10px;
  transition: 0.3s ease;
}

.navbar_shop:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.button {
  display: inline-block;
  padding: 0.5rem 1.8rem;
  background: var(--main-color);
  box-shadow: 0 0 25px var(--main-color);
  border-radius: 4rem;
  font-size: 1rem;
  color: black;
  font-weight: 500;
  border: 2px solid transparent;
  transition: 0.3s ease-in-out;
  margin-bottom: 10px;
}

.button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px var(--main-color);
}

/* Hamburger */

.navbar_toggle {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--main-color);
  transition: all 0.3s ease-in-out;
}

/* Responsive media query navbar with hamburger toggle */

/* For tablets and phones */
@media (max-width: 768px) {
  .navbar_container {
    flex-wrap: wrap;
  }

  /* Hide the menu by default */
  .navbar_menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    display: none;
    transition: all 0.3s ease;
    z-index: 998;
  }

  /* Show when active */
  .navbar_menu.active {
    display: flex;
  }

  /* Show the hamburger button */
  .navbar_toggle {
    display: block;
    cursor: pointer;
    z-index: 999;
  }

  /* Hamburger lines */
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--main-color);
    transition: all 0.3s ease-in-out;
  }

  /* Animate to X when active */
  .navbar_toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .navbar_toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar_toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* <<<<< Auth Modal / Sign In Modal >>>>> */

.auth-scrim{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  z-index: 1200;
}

.auth-modal{
  position: fixed; inset: 0;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  z-index: 1201;
  transition: opacity .25s ease;
}

.auth-modal.open,
.auth-scrim.open{ opacity: 1; pointer-events: auto; }

.auth-card{
  width: min(560px, 92vw);
  background: #0b0b0b;
  color: var(--text-color);
  border-radius: 20px;
  padding: 30px 26px 26px;
  box-shadow: 0 0 24px rgba(34,224,59,.35), 0 0 60px rgba(34,224,59,.25);
  border: 1px solid rgba(34,224,59,.25);
  transform: translateY(16px) scale(.98);
  animation: authIn .28s ease forwards;
  position: relative;
}

/* Two-up grid for first/last name (collapses on small screens) */
.auth-grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin: 0 22px;
}

/* Small helper text */
.auth-hint{
  display:block;
  color:#bdbdbd;
  margin-top:6px;
  font-size:12px;
}

/* Wrapper to hold input + icon */
.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding-right: 40px; /* Space for the eye icon */
}

.password-wrapper button {
  position: absolute;
  right: 10px;  /* Position the eye icon inside the input */
  background: none;
  border: none;
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
}

.password-wrapper button:hover {
  color: #fff;
}

/* Change eye icon when password is visible */
.password-wrapper input[type="text"] {
  color: #fff;
}

/* Tweak inputs inside grid to align with your labels spacing */
.auth-grid-2 .auth-input{ margin: 0; }

/* File input appearance already styled; add a nudge to match screenshot */
.auth-input-file{
  margin: 10px 22px 0 22px;   /* standard horizontal margin */
  transform: translateX(-8px);/* slight left shift “as shown” */
}

/* File name line */
.file-name{
  color:#ccc;
  display:block;
  margin-top:6px;
}

#login-error p {
  color: rgb(0, 0, 0);
  font-size: 14px;
  margin-top: 5px;
  font-weight: bold;
}



@keyframes authIn{ to{ transform: translateY(0) scale(1); } }

.auth-close{
  position: absolute; top: 10px; right: 16px;
  background: transparent; border: 0; color: #aaa; font-size: 22px; cursor: pointer;
}

.auth-close:hover{ color: #fff; }

.auth-view{ display: none; }
.auth-card[data-view="login"]   .auth-login{ display: block; }
.auth-card[data-view="register"] .auth-register{ display: block; }


.auth-view h2{
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 32px;
  letter-spacing: .5px;
  color: var(--text-color);
  text-shadow: 0 0 6px rgba(34,224,59,.25);
}

.auth-input{ 
  position: relative;
  display: block; 
  margin: 14px 22px; 
}


/* Inline login error under password field */

.auth-error{
  display:none;           
  color:#ff6b6b;          
  font-size:12.5px;
  margin:6px 22px 0 22px; 
  text-align:right;       
}

/* Facebook-like error under the password input */

.auth-input .auth-error{
  position: static;          
  display: none;             
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid #d93025; 
  background: #fde7e9;      
  color: #d93025;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.25;
  text-align: left;
}

/* ensure any earlier absolute rule loses — keep this after previous rules */

.auth-input > .auth-error { position: static; right: auto; bottom: auto; transform: none; margin: 8px 0 0 0; }


.auth-input span{
  display: block; font-size: 14px; color: #cfcfcf; margin-bottom: 6px;
}

.auth-input input,
.auth-input textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #3a3a3a;
  color: #fff;
  padding: 10px 4px 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  font-family: inherit;
  font-size: 14px;
  resize: none;
}


.auth-input input[type="file"] {
  border: 1px solid #3a3a3a;
  padding: 8px;
  background-color: #121212;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}


.auth-input input:focus{
  border-bottom-color: var(--main-color);
  box-shadow: 0 6px 18px -12px var(--main-color);
}

.auth-input input,
.auth-input textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #3a3a3a;
  color: #fff;
  padding: 10px 4px 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  font-family: inherit;
  font-size: 14px;
  resize: none;
}

.auth-input textarea:focus {
  border-bottom-color: var(--main-color);
  box-shadow: 0 6px 18px -12px var(--main-color);
}
/* Flex row so the link can sit on the right */
.auth-remember-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin:6px 22px 8px; /* top / sides / bottom – matches the reference image */
}

/* Remove extra margins inside the row (Para nakalined up sya sa left side) */
.auth-remember{ margin:0 !important; } 

.auth-remember{
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; margin: 6px 22px 8px;
  color: #d8d8d8;
}

/* Push the link to the right and keep style */
.auth-forgot{
  margin-left:auto;
  font-size:14px;
  color:var(--main-color);
  font-weight:700;
  text-decoration:none;
}
.auth-forgot:hover{ text-decoration:underline; }

.auth-remember input{ width: 16px; height: 16px; accent-color: #18c43a; }

.send-code-btn {
  background: rgba(34, 224, 59, 0.9);
  box-shadow: 0 0 25px var(--main-color);
  border-radius: 0.8rem;
  font-size: 12px;
  color: black;
  font-weight: 500;
  border: 2px solid transparent;
  padding: 4px 12px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.send-code-btn:hover:enabled {
  transform: scale(1.05);
  box-shadow: 0 0 50px var(--main-color);
}

.send-code-btn:disabled {
  background: #555;
  color: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

/* Log In */
.auth-primary{
  width: calc(100% - 44px);
  margin: 6px 22px 0;
  border: 0; border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  color: #000;
  background: var(--main-color);
  box-shadow: 0 0 22px rgba(34,224,59,.65);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.auth-primary:hover{ transform: translateY(-1px); box-shadow: 0 0 36px rgba(34,224,59,.9); }

.auth-switch{
  margin: 14px 0 4px; text-align: center; color: #cfcfcf;
}

.auth-switch a{ color: var(--main-color); font-weight: 700; }
.auth-switch a:hover{ text-decoration: underline; }



/* Small screen */
@media (max-width: 480px){
  .auth-card{ width: min(92vw, 560px); border-radius: 16px; padding: 20px 18px 18px; }
  .auth-grid-2{
    grid-template-columns: 1fr;
    margin: 0 12px;
    gap: 10px;
  }
  .auth-view h2{ font-size: 26px; margin-bottom: 24px; }
  .auth-input{ margin: 12px 12px; }
  .auth-primary{ width: calc(100% - 24px); margin: 6px 12px 0; }
}

/* Layout sa sign up modal */
/* 2-column grid like the sketch */
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px; /* row x col gap */
}
.signup-grid .full { grid-column: 1 / -1; }
.email-password-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px; /* match signup-grid spacing */
  grid-column: 1 / -1; /* span full width of the grid */
}



/* inputs look like lines */
.auth-input input,
.auth-input textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 10px 0;
  color: #eaeaea;
  outline: none;
}
.auth-input span { display:block; margin-bottom:6px; color:#cfcfcf; font-size:0.95rem; }

/* password eye button */
.password-wrapper { position: relative; }
.password-wrapper input { padding-right: 44px; }
.password-wrapper button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  color: #bfbfbf; cursor: pointer;
}

/* file inputs long and full width */
.auth-input-file input[type="file"] {
  width: 100%;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 10px;
}
.file-name { display:block; margin-top:6px; opacity:0.7; font-size:0.85rem; }

/* full-width button */
.w-100 { width: 100%; margin-left: 2%;}

/* mobile: stack into single column */
@media (max-width: 640px) {
  .signup-grid { grid-template-columns: 1fr; }
}

/* center the modal, dim background */
.auth-modal-overlay{
  position: fixed; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,.55);
  padding: 16px; 
  z-index: 1000;
}

/* the card size: narrower and shorter */
.auth-card{
  width: clamp(560px, 62vw, 820px); 
  max-height: 86vh;
  border-radius: 18px;
  background: #0f1011;
  box-shadow: 0 12px 40px rgba(31, 167, 31, 0.5);
  overflow: hidden;
}

/* scroll only the inner content, not the whole page */
.auth-card__body{
  max-height: calc(86vh - 70px);
  overflow: auto;
  padding: 24px;
}

/* tighter layout like your sketch */
.signup-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 16px;
}
.signup-grid .full{ grid-column: 1 / -1; }

/* Dropdown Styling (Register Form) */

.auth-input select {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-border, #444);
  color: var(--color-text, #fff);
  font-size: 1rem;
  appearance: none;   /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

/* Hover + Focus state */
.auth-input select:hover,
.auth-input select:focus {
  border-color: var(--color-accent, #00ff88);
  color: var(--color-text-focus, #fff);
}

/* Option styling inside dropdown */
.auth-input select option {
  background: #111; /* dropdown background */
  color: #fff;      /* option text color */
  padding: 0.5rem;
}

.auth-input span{ margin-bottom: 4px; font-size: .92rem; }
.auth-input input, .auth-input textarea{ padding: 8px 0; }

/* full-width button */
.w-100{ width: 100%; }

/* mobile: stack to single column */
@media (max-width: 640px){
  .auth-card{ width: min(92vw, 560px); }
  .signup-grid{ grid-template-columns: 1fr; }
}

/* Only vertical scroll inside the modal body */
.auth-card__body{
  overflow-y: auto;
  overflow-x: hidden;
}

/* Prevent any child from forcing horizontal overflow */
.signup-grid{ min-width: 0; }
.signup-grid > *{ min-width: 0; }
.auth-input input,
.auth-input textarea,
.auth-input-file input[type="file"]{
  max-width: 100%;
  display: block;
}
.email-password-row .auth-input {
  margin: 0;
}

/* Make hint text smaller so it doesn’t push row height too much */
.email-password-row .auth-hint {
  font-size: 0.8rem;
  line-height: 1.2;
  margin-top: 4px;
  opacity: 0.8;
}


.file-name{ overflow-wrap: anywhere; } /* long filenames wrap */

/* Make the Y-axis scrollbar green */
.auth-card__body{
  scrollbar-width: thin;                 /* Firefox */
  scrollbar-color: #22c55e transparent;  /* thumb / track */
}

/* Chrome/Edge/WebKit */
.auth-card__body::-webkit-scrollbar{
  width: 10px;
}
.auth-card__body::-webkit-scrollbar-track{
  background: transparent;
}
.auth-card__body::-webkit-scrollbar-thumb{
  background: linear-gradient(#22c55e,#16a34a);
  border-radius: 10px;
  border: 2px solid #0f1011; /* matches modal bg */
}
.auth-card__body::-webkit-scrollbar-corner{
  background: transparent;
} 

/* action popup */

.action-popup {
  position: fixed;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 99999;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 0;
}
.action-popup[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.action-popup-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  background: #fff;
  min-width: 280px;
  max-width: 420px;
}

.action-popup-icon { 
  width: 36px; height: 36px; border-radius: 50%; flex: 0 0 36px;
  display:flex; align-items:center; justify-content:center; color: #fff; font-weight:700;
}


.action-popup-message { 
  color: #000000; 
  font-size: 14px; 
  line-height: 1.2; 
}

.action-popup-close {
  margin-left: auto;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

/* success / error themes */
.action-popup.success .action-popup-card { background: #f0fff4; }
.action-popup.success #action-popup-icon { background: #28a745; }
.action-popup.error .action-popup-card   { background: #fff5f6; }
.action-popup.error #action-popup-icon   { background: #dc3545; }



/* === Hero Section (matches see-customer design) === */
.terms-hero {
  position: relative;
  width: 100%;
  height: 550px;
  background: url('../Images/VapeSmoke1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.terms-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.terms-hero .hero-inner {
  position: relative;
  z-index: 1;
}

.terms-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.terms-hero .muted {
  margin-top: 10px;
  color: #ccc;
  font-size: 1rem;
}

/* === Main Terms Content === */
.terms-content {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto;
  background: #0e0e0e;
  border-radius: 12px;
  padding: 40px 50px;
  box-shadow: 0 0 20px rgba(34, 224, 59, 0.08);
}

.terms-content section {
  margin-bottom: 30px;
}

.terms-content h2 {
  color: #22e03b;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.terms-content p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
}

.terms-content a {
  color: #22e03b;
  text-decoration: none;
}

.terms-content a:hover {
  text-decoration: underline;
}

/* Responsive media query hero section */
@media (max-width: 768px) {
  .terms-hero {
    height: 250px;
  }

  .terms-hero h1 {
    font-size: 2rem;
  }

  .terms-content {
    width: 94%;
    padding: 30px 20px;
  }
}

/* Footer */

footer {
  width: 100%;
  background: rgb(0, 0, 0);
  color: #fff;
  padding: 35px 0 30px;
  font-size: 13px;
  line-height: 20px;
}

ul li {
  list-style: none;
  margin-bottom: 12px;
}

ul li a {
  text-decoration: none;
  color: white;
}

.footer-content {
  transform: translateY(-20px);
}

.follow h3 {
  margin: 18px 0 10px;
  color: var(--text-color);
}

/* ---------- Footer layout (replace old footer rules) ---------- */
#site-footer {
  background: #000;
  color: #fff;
  padding: 40px 0 30px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 1.5;
}

/* main row wrapper: keep centered and use flex to place columns */
#site-footer .row {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start; /* ensure columns align from the top */
  justify-content: space-between;
  gap: 30px;
  box-sizing: border-box;
}

/* explicit column widths so columns sit like the screenshot */
#site-footer .col1 {
  /* newsletter + social — left */
  flex: 0 0 46%;
  min-width: 260px;
  padding: 8px 12px 0 0;
  text-align: left;
}
#site-footer .col2 {
  /* products — center */
  flex: 0 0 22%;
  min-width: 180px;
  padding: 8px 12px;
  text-align: left;
}
#site-footer .col3 {
  /* links — right */
  flex: 0 0 22%;
  min-width: 160px;
  padding: 8px 12px;
  text-align: left;
}

/* Social icon */
#site-footer .social .fab {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #22e03b;
  border: 2px solid #22e03b;
  transition: all 0.3s ease;
}

#site-footer .social .fab:hover {
  color: #fdfffe;
  background-color: var(--main-color);
  box-shadow: 0 0 8px var(--main-color);
  transform: translateY(-10%) scale(1.1);
}

/* Lists and headings (ensure h2 lines up with list items) */
#site-footer h2,
#site-footer h3 {
  margin: 0 0 12px 0;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.15;
}

/* Remove default list indentation so li items align flush under heading */
#site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#site-footer ul li {
  margin-bottom: 8px;
}
#site-footer ul li a {
  text-decoration: none;
  color: #a9a9a9;
}

/* subtle hover */
#site-footer ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

/* horizontal rule + copyright */
#site-footer hr {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin: 22px auto 12px;
  width: 92%;
}
#site-footer .copyright {
  width: 100%;
  text-align: center;
  color: #8f8f8f;
  font-size: 12px;
  margin-top: 8px;
}

/* Responsive media query footer */

/* Footer Small screen: stack columns and center */

@media (max-width: 880px) {
  #site-footer .row {
    flex-direction: column;
    align-items: center;
  }
  #site-footer .col1,
  #site-footer .col2,
  #site-footer .col3 {
    flex: 1 1 100%;
    min-width: 0;
    text-align: center;
    padding: 8px 0;
  }
  #site-footer ul {
    text-align: center;
  }
}

