/* ============================================================
   THE KEPT WOMAN — Mobile Nav Drawer
   ============================================================ */

.tkw-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 40px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.tkw-mobile-nav.is-open {
  transform: translateX(0);
}

.tkw-mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 26px;
  font-weight: 300;
  color: #1A1610;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  margin-bottom: 36px;
}

.tkw-mobile-nav-links {
  display: flex;
  flex-direction: column;
}

.tkw-mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 32px;
  color: #1A1610;
  padding: 14px 0;
  border-bottom: 1px solid #EFEBE3;
  text-decoration: none;
  transition: color 0.2s;
}
.tkw-mobile-nav-links a:hover { color: #C9A070; }

.tkw-mobile-nav-footer {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  gap: 24px;
}

.tkw-mobile-nav-footer a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6B6459;
  text-decoration: none;
}
