/* General Rack storefront template */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --bg: #FAFAF8;
  --bg2: #F4F3EF;
  --bg3: #EDECEA;
  --bg4: #E4E3DF;
  --ink: #1A1A18;
  --ink2: #3A3A36;
  --ink3: #7A7A72;
  --bo: rgba(26, 26, 24, .07);
  --bo2: rgba(26, 26, 24, .035);
  --ac: #2D2D2D;
  --wa: #25D366;
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'Mulish', sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slideR {
  from {
    opacity: 0;
    transform: translateX(24px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.wa-ico {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0
}

.wa-ico path {
  fill: currentColor;
  stroke: none
}

.ann {
  background: var(--ac);
  overflow: hidden;
  padding: 8px 0
}

.ann-t {
  display: inline-flex;
  animation: marquee 26s linear infinite;
  white-space: nowrap;
  gap: 60px
}

.ann-i {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250, 250, 248, .7)
}

.ann-s {
  color: rgba(250, 250, 248, .25);
  margin: 0 4px
}

header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 250, 248, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bo);
  animation: fadeIn .3s both
}

.hdr-top {
  padding: 0 40px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

@media(max-width:768px) {
  .hdr-top {
    padding: 0 20px
  }
}

.logo {
  font-family: var(--fd);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.3px;
  min-height: 34px;
  display: inline-flex;
  align-items: center
}

.logo-img {
  display: block;
  max-width: 210px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain
}

.hdr-r {
  display: flex;
  align-items: center;
  gap: 14px
}

.hdr-ig {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--ink3);
  text-decoration: none;
  transition: color .15s
}

.hdr-ig:hover {
  color: var(--ink)
}

@media(max-width:500px) {
  .hdr-ig {
    display: none
  }
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 18px;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  border: none;
  cursor: pointer;
  transition: background .15s
}

.cart-btn:hover {
  background: #000
}

.cart-c {
  background: rgba(250, 250, 248, .2);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center
}

.nav-cats {
  padding: 0 40px;
  height: 40px;
  border-top: 1px solid var(--bo2);
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none
}

.nav-cats::-webkit-scrollbar {
  display: none
}

@media(max-width:768px) {
  .nav-cats {
    padding: 0 20px
  }
}

.nc {
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink3);
  cursor: pointer;
  border-bottom: 1.5px solid transparent;
  transition: all .15s;
  white-space: nowrap;
  text-decoration: none
}

.nc:hover {
  color: var(--ink)
}

.nc.active {
  color: var(--ink);
  border-bottom-color: var(--ink)
}

.hero {
  padding: 60px 40px 52px;
  border-bottom: 1px solid var(--bo);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  animation: fadeUp .5s both
}

@media(max-width:800px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 44px 20px 36px;
    gap: 20px
  }
}

.hero-title {
  font-family: var(--fd);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: .88;
  letter-spacing: -2px;
  margin-bottom: 14px
}

.hero-title strong {
  font-style: normal;
  font-weight: 700
}

.hero-sub {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink3);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 6px
}

.hero-r {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start
}

.hero-desc {
  font-family: var(--fd);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.55;
  border-left: 2px solid var(--ac);
  padding-left: 16px;
  max-width: 340px
}

.hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  padding: 11px 22px;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter .15s, transform .15s
}

.hero-wa:hover {
  filter: brightness(1.08);
  transform: translateY(-1px)
}

.hero-wa .wa-ico,
.di-wa .wa-ico,
.cp-wa .wa-ico {
  width: 15px;
  height: 15px
}

.hero-cats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.hero-chip {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid var(--bo);
  color: var(--ink3);
  cursor: pointer;
  transition: all .15s;
  text-decoration: none
}

.hero-chip:hover,
.hero-chip.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink)
}

.toolbar {
  padding: 12px 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--bo);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  position: sticky;
  top: 96px;
  z-index: 99
}

@media(max-width:768px) {
  .toolbar {
    padding: 10px 20px
  }
}

.filters {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1
}

.filters::-webkit-scrollbar {
  display: none
}

.fbtn {
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink3);
  background: transparent;
  border: 1px solid var(--bo);
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap
}

.fbtn:hover {
  border-color: var(--ink3);
  color: var(--ink)
}

.fbtn.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink)
}

.tc {
  font-size: 11px;
  font-weight: 300;
  color: var(--ink3);
  white-space: nowrap;
  font-style: italic
}

.grid {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--bo2)
}

@media(max-width:580px) {
  .grid {
    grid-template-columns: 1fr
  }
}

.pcard {
  background: var(--bg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .2s;
  animation: fadeUp .4s both
}

.pcard:hover .pc-img {
  transform: scale(1.04)
}

.pcard:hover .pc-img2 {
  opacity: 1
}

.pcard:hover .pc-cta {
  opacity: 1;
  transform: translateY(0)
}

.pc-img-wrap {
  aspect-ratio: 2/3;
  position: relative;
  overflow: hidden;
  background: var(--bg3)
}

.pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease
}

.pc-img2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s
}

.pc-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px
}

.pc-ph-letter {
  font-family: var(--fd);
  font-size: clamp(40px, 6vw, 72px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink3);
  opacity: .3
}

.pc-ph-cat {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  opacity: .4
}

.pc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--bg)
}

.pc-badge-ago {
  background: rgba(26, 26, 24, .15);
  color: var(--ink3)
}

.pc-cta {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(250, 250, 248, .92);
  color: var(--ink);
  padding: 10px;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all .22s
}

.pc-info {
  padding: 14px 16px 18px;
  border-top: 1px solid var(--bo2)
}

.pc-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 4px
}

.pc-name {
  font-family: var(--fd);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 6px
}

.pc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.pc-price {
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink)
}

.pc-price-ago {
  color: var(--ink3);
  font-weight: 300
}

.pc-stock {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink3)
}

.pc-stock-low {
  color: #C0392B
}

.detail-view {
  display: none;
  min-height: 100vh;
  animation: fadeIn .3s both
}

.detail-view.active {
  display: block
}

.detail-back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  border-bottom: 1px solid var(--bo);
  background: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink3);
  cursor: pointer;
  transition: color .15s;
  width: 100%
}

.detail-back:hover {
  color: var(--ink)
}

.detail-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

@media(max-width:768px) {
  .detail-back {
    padding: 14px 20px
  }
}

.detail-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(100vh - 148px)
}

@media(max-width:900px) {
  .detail-layout {
    grid-template-columns: 1fr
  }
}

.d-gallery {
  position: sticky;
  top: 96px;
  height: calc(100vh - 96px);
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--bo2);
  overflow: hidden
}

@media(max-width:900px) {
  .d-gallery {
    position: relative;
    top: 0;
    height: auto
  }
}

.d-main {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--bg3)
}

.d-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: fadeIn .4s both
}

.d-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: var(--bg3)
}

.d-ph-l {
  font-family: var(--fd);
  font-size: clamp(56px, 10vw, 100px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink3);
  opacity: .2
}

.d-ph-c {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  opacity: .3
}

.d-thumbs {
  display: flex;
  gap: 1px;
  background: var(--bo2);
  flex-shrink: 0
}

.dthumb {
  flex: 1;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  opacity: .5;
  transition: opacity .15s;
  display: block
}

.dthumb:hover,
.dthumb.active {
  opacity: 1
}

.dthumb-ph {
  flex: 1;
  aspect-ratio: 1;
  background: var(--bg3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .4;
  transition: opacity .15s;
  font-family: var(--fd);
  font-size: 16px;
  font-style: italic;
  color: var(--ink3)
}

.dthumb-ph:hover,
.dthumb-ph.active {
  opacity: 1
}

.d-info {
  padding: 52px 48px 80px;
  overflow-y: auto;
  animation: slideR .4s both
}

@media(max-width:900px) {
  .d-info {
    padding: 28px 20px 60px
  }
}

.di-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 12px
}

.di-nombre {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 46px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.5px;
  line-height: .95;
  margin-bottom: 12px
}

.di-price {
  font-family: var(--fb);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -.5px
}

.di-stock-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px
}

.di-sdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0
}

.di-sok {
  background: #27AE60
}

.di-slow {
  background: #E67E22
}

.di-sago {
  background: var(--ink3)
}

.di-stxt {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink3)
}

.di-hr {
  height: 1px;
  background: var(--bo);
  margin: 22px 0
}

.di-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 8px
}

.di-desc {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 22px
}

.di-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.sz {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bo);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
  cursor: pointer;
  transition: all .15s
}

.sz:hover {
  border-color: var(--ink);
  color: var(--ink)
}

.sz.selected {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink)
}

.di-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--wa);
  color: #fff;
  padding: 14px;
  width: 100%;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter .15s, transform .15s;
  margin-bottom: 8px
}

.di-wa:hover {
  filter: brightness(1.08);
  transform: translateY(-1px)
}

.di-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  padding: 13px;
  width: 100%;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .15s;
  margin-bottom: 22px
}

.di-add:hover {
  background: #000
}

.di-ago {
  padding: 13px;
  background: var(--bg3);
  border: 1px solid var(--bo);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 22px
}

.di-rlbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 12px
}

.di-rgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

@media(max-width:480px) {
  .di-rgrid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.rcard {
  cursor: pointer;
  transition: opacity .15s
}

.rcard:hover {
  opacity: .85
}

.rcard-img {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px
}

.rcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s
}

.rcard:hover .rcard-img img {
  transform: scale(1.04)
}

.rcard-ph {
  font-family: var(--fd);
  font-size: 20px;
  font-style: italic;
  color: var(--ink3);
  opacity: .3
}

.rcard-name {
  font-family: var(--fd);
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 2px
}

.rcard-price {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink3)
}

.cart-ov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s
}

.cart-ov.open {
  opacity: 1;
  pointer-events: all
}

.cpanel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 340px;
  max-width: 100vw;
  background: var(--bg);
  border-left: 1px solid var(--bo);
  z-index: 300;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  flex-direction: column
}

.cpanel.open {
  transform: translateX(0)
}

.cp-hd {
  padding: 18px 22px;
  border-bottom: 1px solid var(--bo);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.cp-lbl {
  font-family: var(--fd);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink)
}

.cp-x {
  width: 26px;
  height: 26px;
  background: var(--bg2);
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s
}

.cp-x:hover {
  background: var(--bg3)
}

.cp-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 22px
}

.cp-empty {
  text-align: center;
  padding: 40px 0;
  font-family: var(--fd);
  font-size: 15px;
  font-style: italic;
  color: var(--ink3)
}

.ci {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bo2);
  align-items: flex-start
}

.ci-img {
  width: 60px;
  height: 80px;
  background: var(--bg2);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.ci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.ci-ph {
  font-family: var(--fd);
  font-size: 20px;
  font-style: italic;
  color: var(--ink3);
  opacity: .4
}

.ci-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1.3
}

.ci-var {
  font-size: 10px;
  color: var(--ink3);
  margin-bottom: 3px
}

.ci-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink)
}

.ci-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px
}

.qb {
  width: 20px;
  height: 20px;
  border: 1px solid var(--bo);
  background: none;
  cursor: pointer;
  font-size: 12px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .13s
}

.qb:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink)
}

.qv {
  font-size: 12px;
  font-weight: 700;
  min-width: 14px;
  text-align: center
}

.cp-ft {
  padding: 14px 22px 24px;
  border-top: 1px solid var(--bo)
}

.cp-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px
}

.cp-tl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3)
}

.cp-tn {
  font-family: var(--fd);
  font-size: 26px;
  font-style: italic;
  color: var(--ink)
}

.cp-wa {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--wa);
  color: #fff;
  padding: 12px;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: filter .15s
}

.cp-wa:hover {
  filter: brightness(1.08)
}

.wa-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 400;
  background: var(--wa);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .3);
  transition: transform .2s
}

.wa-fab:hover {
  transform: scale(1.08)
}

.wa-fab .wa-ico {
  width: 20px;
  height: 20px
}

@media(max-width:768px) {
  .wa-fab {
    display: flex
  }
}

.ls {
  height: 1px
}

.lsp {
  display: none;
  text-align: center;
  padding: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  font-style: italic
}

.lsp.on {
  display: block
}

footer {
  background: var(--ink);
  padding: 36px 40px 24px
}

@media(max-width:768px) {
  footer {
    padding: 28px 20px
  }
}

.ft-g {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250, 250, 248, .07)
}

@media(max-width:600px) {
  .ft-g {
    grid-template-columns: 1fr;
    gap: 14px
  }
}

.ft-logo {
  font-family: var(--fd);
  font-size: 20px;
  font-style: italic;
  color: rgba(250, 250, 248, .8);
  margin-bottom: 5px
}

.ft-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250, 250, 248, .3);
  line-height: 1.6
}

.ft-h {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 250, 248, .2);
  margin-bottom: 10px
}

.ft-a {
  display: inline-flex;
  font-size: 13px;
  font-weight: 300;
  color: rgba(250, 250, 248, .4);
  text-decoration: none;
  margin-bottom: 5px;
  transition: color .15s;
  align-items: center;
  gap: 6px
}

.ft-a:hover {
  color: rgba(250, 250, 248, .8)
}

.ft-a .wa-ico {
  width: 14px;
  height: 14px
}

.ft-bot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 10px;
  color: rgba(250, 250, 248, .2)
}

.ft-bot a {
  color: rgba(250, 250, 248, .3);
  text-decoration: none
}