/* =========================================================
   CROWNBARSHOP
   FOOTER V1
========================================================= */

.cbs-footer{
  padding:56px 0 24px;
  background:#0e0e0e;
  color:#fff;
}


/* GRID */

.cbs-footer-grid{
  display:grid;
  grid-template-columns:1.5fr .75fr .75fr;
  gap:70px;

  padding-bottom:42px;

  border-bottom:1px solid rgba(255,255,255,.10);
}


/* BRAND */

.cbs-footer-logo{
  display:inline-flex;
  align-items:baseline;
  gap:7px;

  color:#fff;
}

.cbs-footer-logo span{
  font-size:20px;
  font-weight:800;
  letter-spacing:.8px;
}

.cbs-footer-logo small{
  color:#b8b8b8;

  font-size:9px;
  font-weight:700;

  letter-spacing:2.3px;
}

.cbs-footer-brand p{
  max-width:390px;

  margin:18px 0 0;

  color:rgba(255,255,255,.48);

  font-size:12px;
  line-height:1.7;
}


/* LINKS */

.cbs-footer-column h3{
  margin:2px 0 17px;

  color:#fff;

  font-size:11px;
  font-weight:800;

  letter-spacing:1.4px;
  text-transform:uppercase;
}

.cbs-footer-column nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.cbs-footer-column a{
  color:rgba(255,255,255,.55);

  font-size:12px;
  line-height:1.4;

  transition:color .18s ease;
}

.cbs-footer-column a:hover{
  color:#fff;
}


/* BOTTOM */

.cbs-footer-bottom{
  min-height:56px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:30px;

  padding-top:20px;
}

.cbs-footer-bottom p{
  margin:0;

  color:rgba(255,255,255,.36);

  font-size:10px;
  line-height:1.5;
}

.cbs-footer-notice{
  max-width:650px;
  text-align:right;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:760px){

  .cbs-footer{
    padding:38px 0 18px;
  }

  .cbs-footer-grid{
    grid-template-columns:1.35fr .8fr .95fr;
    gap:12px;
    padding-bottom:26px;
  }

  .cbs-footer-logo{
    gap:5px;
  }

  .cbs-footer-logo span{
    font-size:15px;
    letter-spacing:.5px;
  }

  .cbs-footer-logo small{
    display:none;
  }

  .cbs-footer-brand p{
    max-width:150px;
    margin-top:11px;

    font-size:10px;
    line-height:1.55;

    color:rgba(255,255,255,.48);
  }

  .cbs-footer-column h3{
    margin:1px 0 12px;

    font-size:9px;
    line-height:1.2;
    letter-spacing:1px;
  }

  .cbs-footer-column nav{
    gap:9px;
  }

  .cbs-footer-column a{
    font-size:10px;
    line-height:1.4;
  }

  .cbs-footer-bottom{
    min-height:0;

    display:block;

    padding-top:16px;
  }

  .cbs-footer-bottom p{
    font-size:9px;
    line-height:1.5;
  }

  .cbs-footer-notice{
    max-width:none;

    margin-top:7px !important;

    text-align:left;
  }

}


@media(max-width:430px){

  .cbs-footer-grid{
    grid-template-columns:1.25fr .8fr .95fr;
    gap:9px;
  }

  .cbs-footer-brand p{
    font-size:9.5px;
  }

  .cbs-footer-column a{
    font-size:9.5px;
  }

}