:root {
  --pink: #f6b8c8;
  --pink-dark: #df819b;
  --mint: #b8ddd1;
  --mint-dark: #79b8a5;
  --yellow: #f8df91;
  --yellow-soft: #fff5cc;
  --cream: #fffdf7;
  --text: #46504c;
  --muted: #8b918d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.serif {
  font-family: "Playfair Display", serif;
}


/* COVER */

.cover {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(246,184,200,.55),
      transparent 22%
    ),
    radial-gradient(
      circle at 85% 25%,
      rgba(184,221,209,.7),
      transparent 25%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(248,223,145,.5),
      transparent 30%
    ),
    var(--cream);

  transition:
    opacity .7s ease,
    visibility .7s ease;
}

.cover.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cover-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .7;
}

.cover-shape.one {
  width: 120px;
  height: 120px;
  top: -35px;
  left: -25px;
  background: var(--yellow);
}

.cover-shape.two {
  width: 90px;
  height: 90px;
  right: 20px;
  bottom: 80px;
  background: var(--pink);
}

.cover-shape.three {
  width: 70px;
  height: 70px;
  left: 15%;
  bottom: 12%;
  background: var(--mint);
}

.cover-inner {
  position: relative;
  z-index: 2;

  width: min(92%, 520px);

  padding: 50px 30px;

  text-align: center;

  background: rgba(255,255,255,.66);

  border: 2px solid rgba(255,255,255,.9);

  border-radius: 36px;

  box-shadow:
    0 25px 70px rgba(95,110,100,.12);

  backdrop-filter: blur(8px);
}

.tiny-stars {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--pink-dark);
}

.tiny-stars span:nth-child(2) {
  color: var(--mint-dark);
}

.tiny-stars span:nth-child(3) {
  color: #d4ae3b;
}

.cover-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.cover-names {
  margin-top: 18px;
  color: var(--text);
  font-size: clamp(42px, 10vw, 64px);
  line-height: 1.05;
  font-weight: 500;
}

.cover-names span {
  display: inline-block;
}

.cover-and {
  color: var(--pink-dark);
  margin: 0 8px;
  font-size: .55em;
}

.cover-date {
  margin-top: 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.open-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 30px;

  padding: 14px 26px;

  color: var(--text);
  background: var(--yellow);
  border-radius: 999px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;

  box-shadow:
    0 8px 20px rgba(212,174,59,.18);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.open-btn:hover {
  transform: translateY(-3px) rotate(-1deg);

  box-shadow:
    0 12px 25px rgba(212,174,59,.25);
}


/* HERO */

.hero {
  position: relative;
  min-height: 100svh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--cream);
}

.hero::before {
  content: "";

  position: absolute;

  width: 430px;
  height: 430px;

  right: -150px;
  top: -120px;

  background: var(--mint);

  border-radius: 45% 55% 62% 38%;

  transform: rotate(18deg);

  opacity: .65;
}

.hero::after {
  content: "";

  position: absolute;

  width: 270px;
  height: 270px;

  left: -130px;
  bottom: -100px;

  background: var(--pink);

  border-radius: 58% 42% 35% 65%;

  opacity: .55;
}

.hero-inner {
  position: relative;
  z-index: 2;

  width: min(100%, 1120px);

  margin: auto;

  padding: 70px 28px;

  display: grid;

  grid-template-columns: .9fr 1.1fr;

  align-items: center;

  gap: 60px;
}

.hero-copy {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;

  color: var(--text);
  background: var(--yellow-soft);

  border-radius: 999px;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: "✦";
  color: var(--pink-dark);
}

.hero-title {
  margin-top: 30px;

  color: var(--text);

  font-size: clamp(60px, 9vw, 104px);

  line-height: .86;

  font-weight: 500;
}

.hero-title .pink {
  color: var(--pink-dark);
}

.hero-title .mint {
  color: var(--mint-dark);
}

.hero-intro {
  max-width: 430px;

  margin-top: 30px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.9;
}

.hero-date-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-top: 28px;

  padding: 12px 17px;

  background: var(--white);

  border-radius: 18px;

  box-shadow:
    0 10px 25px rgba(95,110,100,.08);
}

.hero-date-icon {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--mint);

  border-radius: 12px;

  font-size: 16px;
}

.hero-date-text strong {
  display: block;
  color: var(--text);
  font-size: 11px;
}

.hero-date-text span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}


/* HERO PHOTO */

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-photo-main {
  position: absolute;

  width: 72%;
  height: 80%;

  right: 5%;
  top: 8%;

  overflow: hidden;

  border-radius:
    42% 42% 20% 20%;

  background: #eee;

  box-shadow:
    0 25px 60px rgba(75,90,80,.16);

  transform: rotate(3deg);
}

.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-small {
  position: absolute;

  width: 170px;
  height: 210px;

  left: 3%;
  bottom: 8%;

  overflow: hidden;

  border: 10px solid var(--white);

  border-radius:
    35% 20% 40% 20%;

  background: #eee;

  transform: rotate(-8deg);

  box-shadow:
    0 15px 35px rgba(75,90,80,.15);
}

.hero-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bubble {
  position: absolute;

  right: 0;
  bottom: 3%;

  width: 105px;
  height: 105px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 15px;

  color: var(--text);
  background: var(--yellow);

  border-radius:
    48% 52% 56% 44%;

  font-size: 10px;
  font-weight: 700;
  text-align: center;

  transform: rotate(8deg);

  box-shadow:
    0 10px 25px rgba(212,174,59,.18);
}

.flower-dot {
  position: absolute;

  width: 18px;
  height: 18px;

  border-radius: 50%;
}

.flower-dot::before,
.flower-dot::after {
  content: "";

  position: absolute;

  width: 18px;
  height: 18px;

  background: inherit;

  border-radius: 50%;
}

.flower-dot::before {
  left: -9px;
}

.flower-dot::after {
  top: -9px;
}

.flower-dot {
  background: var(--pink);

  right: 16%;
  top: 8%;
}

.flower-dot.mint {
  background: var(--mint);

  left: 8%;
  top: 25%;

  transform: scale(.75);
}


/* GENERAL */

.section {
  position: relative;
  padding: 95px 20px;
}

.section-inner {
  width: min(100%, 960px);
  margin: auto;
}

.section-label {
  color: var(--pink-dark);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: .25em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 12px;

  color: var(--text);

  font-size: clamp(38px, 7vw, 62px);

  line-height: 1;

  font-weight: 500;
}

.section-description {
  max-width: 600px;

  margin: 20px auto 0;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.9;
}

.section-heading {
  text-align: center;
  margin-bottom: 55px;
}

.pastel-divider {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  margin-top: 20px;
}

.pastel-divider span {
  width: 35px;
  height: 4px;

  border-radius: 999px;

  background: var(--pink);
}

.pastel-divider span:nth-child(2) {
  background: var(--yellow);
}

.pastel-divider span:nth-child(3) {
  background: var(--mint);
}


/* COUPLE */

.couple {
  background: var(--white);
}

.couple-grid {
  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 35px;
}

.person {
  text-align: center;
}

.person-photo {
  position: relative;

  width: 205px;
  height: 205px;

  margin: auto;

  padding: 9px;

  background:
    linear-gradient(
      135deg,
      var(--pink),
      var(--yellow),
      var(--mint)
    );

  border-radius:
    43% 57% 52% 48%;
}

.person-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius:
    40% 60% 50% 50%;
}

.person-name {
  margin-top: 25px;

  color: var(--text);

  font-size: 38px;
}

.person-role {
  margin-top: 8px;

  color: var(--muted);

  font-size: 10px;

  line-height: 1.7;
}

.couple-symbol {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--text);

  background: var(--yellow);

  border-radius:
    44% 56% 50% 50%;

  font-size: 34px;

  transform: rotate(-6deg);
}


/* QUOTE */

.quote {
  background:
    linear-gradient(
      120deg,
      #fff8df,
      #f4fff9
    );

  text-align: center;
}

.quote-mark {
  color: var(--pink-dark);

  font-family: Georgia, serif;

  font-size: 70px;

  line-height: .5;
}

.quote-text {
  max-width: 760px;

  margin: 25px auto 0;

  color: var(--text);

  font-size: clamp(27px, 5vw, 45px);

  line-height: 1.2;
}

.quote-source {
  margin-top: 22px;

  color: var(--muted);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: .2em;

  text-transform: uppercase;
}


/* EVENT */

.event {
  background: var(--cream);
}

.event-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 18px;
}

.event-card {
  position: relative;

  padding: 35px;

  background: var(--white);

  border-radius: 28px;

  box-shadow:
    0 15px 35px rgba(80,95,85,.07);

  overflow: hidden;
}

.event-card::after {
  content: "";

  position: absolute;

  width: 100px;
  height: 100px;

  right: -40px;
  bottom: -45px;

  border-radius: 50%;

  background: var(--mint);

  opacity: .45;
}

.event-card:nth-child(2)::after {
  background: var(--pink);
}

.event-card:nth-child(3)::after {
  background: var(--yellow);
}

.event-card:nth-child(4)::after {
  background: var(--mint);
}

.event-icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--yellow-soft);

  border-radius: 15px;

  font-size: 20px;
}

.event-card:nth-child(2) .event-icon {
  background: #ffe9ef;
}

.event-card:nth-child(3) .event-icon {
  background: #e8f8f2;
}

.event-card:nth-child(4) .event-icon {
  background: #fff4d1;
}

.event-title {
  margin-top: 22px;

  color: var(--muted);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: .18em;
  text-transform: uppercase;
}

.event-main {
  margin-top: 7px;

  color: var(--text);

  font-size: 28px;
}

.event-info {
  margin-top: 8px;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.8;
}

.map-btn {
  display: inline-flex;

  margin-top: 18px;

  padding: 10px 15px;

  color: var(--text);

  background: var(--mint);

  border-radius: 999px;

  font-size: 9px;
  font-weight: 700;

  transition:
    transform .2s ease;
}

.map-btn:hover {
  transform: translateY(-2px);
}


/* COUNTDOWN */

.countdown {
  background: var(--mint);

  text-align: center;
}

.countdown .section-label {
  color: var(--text);
}

.countdown-grid {
  max-width: 680px;

  margin: 45px auto 0;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 10px;
}

.count-item {
  padding: 20px 10px;

  background: rgba(255,255,255,.7);

  border-radius: 22px;
}

.count-number {
  color: var(--text);

  font-family: "Playfair Display", serif;

  font-size: 42px;

  line-height: 1;
}

.count-label {
  margin-top: 8px;

  color: var(--muted);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: .14em;

  text-transform: uppercase;
}


/* GALLERY */

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 14px;
}

.gallery-item {
  position: relative;

  aspect-ratio: 1 / 1.15;

  overflow: hidden;

  cursor: pointer;

  border-radius: 25px;

  background: #eee;
}

.gallery-item:nth-child(2) {
  margin-top: 35px;
}

.gallery-item:nth-child(5) {
  margin-top: -35px;
}

.gallery-item:nth-child(1) {
  border-radius:
    42% 20% 25% 30%;
}

.gallery-item:nth-child(2) {
  border-radius:
    25% 40% 25% 35%;
}

.gallery-item:nth-child(3) {
  border-radius:
    30% 25% 45% 20%;
}

.gallery-item:nth-child(4) {
  border-radius:
    25% 35% 20% 45%;
}

.gallery-item:nth-child(5) {
  border-radius:
    40% 20% 35% 25%;
}

.gallery-item:nth-child(6) {
  border-radius:
    25% 45% 25% 35%;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}


/* RSVP */

.rsvp {
  background: var(--white);
}

.rsvp-inner {
  max-width: 960px;
  margin: auto;
}

.rsvp-layout {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 45px;

  align-items: start;
}

.rsvp-form,
.rsvp-wishes {
  min-width: 0;
}

.rsvp-wishes {
  width: 100%;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;

  margin-bottom: 7px;

  color: var(--text);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: .14em;

  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;

  padding: 14px 16px;

  color: var(--text);

  background: #fffdf9;

  border: 2px solid #f0eee7;

  border-radius: 16px;

  outline: none;

  transition:
    border-color .2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--mint-dark);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.submit-btn {
  width: 100%;

  padding: 15px;

  color: var(--text);

  background:
    linear-gradient(
      90deg,
      var(--yellow),
      var(--pink)
    );

  border-radius: 999px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .14em;

  text-transform: uppercase;
}


/* WISHES */

.wish-viewport {
  width: 100%;

  margin: auto;

  overflow: hidden;
}

.wish-list {
  display: flex;

  gap: 16px;

  transition:
    transform .45s ease;
}

.wish-card {
  min-width: 100%;

  padding: 32px;

  background: var(--white);

  border-radius: 28px;

  box-shadow:
    0 15px 35px rgba(90,90,70,.08);
}

.wish-card-name {
  color: var(--text);

  font-size: 13px;

  font-weight: 700;
}

.wish-card-status {
  margin-top: 5px;

  color: var(--mint-dark);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: .15em;

  text-transform: uppercase;
}

.wish-card-text {
  margin-top: 20px;

  color: var(--text);

  font-size: 27px;

  line-height: 1.2;
}

.wish-controls {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 15px;

  margin-top: 25px;
}

.wish-arrow {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--text);

  background: var(--white);

  border-radius: 50%;

  box-shadow:
    0 5px 15px rgba(80,90,80,.08);
}

.wish-dots {
  display: flex;
  gap: 6px;
}

.wish-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border-radius: 50%;

  background: #ddd;
}

.wish-dot.active {
  background: var(--pink-dark);
}


/* GIFT */

.gift {
  background: var(--pink);
}

.gift .section-label {
  color: #9e566a;
}

.gift-description {
  max-width: 560px;

  margin: 20px auto 45px;

  color: #795b64;

  font-size: 13px;

  line-height: 1.9;

  text-align: center;
}

.gift-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 18px;
}

.gift-card {
  padding: 30px;

  background: rgba(255,255,255,.88);

  border-radius: 28px;

  box-shadow:
    0 12px 30px rgba(100,65,75,.08);
}

.gift-icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--yellow);

  border-radius: 15px;

  font-size: 20px;
}

.gift-card:nth-child(2) .gift-icon {
  background: var(--mint);
}

.gift-type {
  margin-top: 20px;

  color: var(--muted);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: .18em;

  text-transform: uppercase;
}

.gift-name {
  margin-top: 6px;

  color: var(--text);

  font-size: 30px;
}

.gift-number {
  margin-top: 18px;

  color: var(--text);

  font-size: 17px;

  font-weight: 700;
}

.gift-owner {
  margin-top: 5px;

  color: var(--muted);

  font-size: 10px;
}

.gift-copy {
  margin-top: 18px;

  padding: 10px 15px;

  color: var(--text);

  background: var(--white);

  border-radius: 999px;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: .1em;

  text-transform: uppercase;
}


/* FOOTER */

.footer {
  padding: 70px 20px;

  color: var(--text);

  background: var(--yellow-soft);

  text-align: center;
}

.footer-names {
  font-size: 48px;
}

.footer-text {
  margin-top: 12px;

  color: var(--muted);

  font-size: 9px;

  letter-spacing: .15em;

  text-transform: uppercase;
}


/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;

  z-index: 2000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 25px;

  background: rgba(60,65,60,.92);

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity .3s ease,
    visibility .3s ease;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;

  pointer-events: auto;
}

.lightbox img {
  max-width: 100%;
  max-height: 82vh;

  object-fit: contain;

  border-radius: 20px;
}

.lightbox-close {
  position: absolute;

  top: 20px;
  right: 20px;

  width: 42px;
  height: 42px;

  color: var(--text);

  background: var(--white);

  border-radius: 50%;
}


/* MUSIC */

.music-btn {
  position: fixed;

  right: 20px;
  bottom: 20px;

  z-index: 500;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--text);

  background: var(--yellow);

  border-radius: 50%;

  box-shadow:
    0 8px 22px rgba(70,80,70,.15);
}

.music-btn.playing {
  animation:
    musicPulse 1.8s infinite;
}

@keyframes musicPulse {
  50% {
    transform: scale(1.08);
  }
}


/* TOAST */

.toast {
  position: fixed;

  left: 50%;
  bottom: 25px;

  z-index: 3000;

  padding: 12px 20px;

  color: var(--text);

  background: var(--white);

  border-radius: 999px;

  font-size: 10px;

  font-weight: 700;

  box-shadow:
    0 10px 30px rgba(60,70,60,.15);

  transform:
    translate(-50%, 20px);

  opacity: 0;

  pointer-events: none;

  transition:
    opacity .25s ease,
    transform .25s ease;
}

.toast.show {
  opacity: 1;

  transform:
    translate(-50%, 0);
}


/* MOBILE */

@media (max-width: 760px) {

  .section {
    padding: 75px 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr;

    gap: 30px;

    padding:
      70px 22px
      65px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-badge {
    margin: auto;
  }

  .hero-title {
    font-size: clamp(
      62px,
      19vw,
      88px
    );
  }

  .hero-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-date-box {
    text-align: left;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-photo-main {
    width: 75%;
    height: 78%;

    right: 4%;
  }

  .hero-photo-small {
    width: 145px;
    height: 175px;

    left: 2%;
    bottom: 6%;
  }

  .hero-bubble {
    width: 90px;
    height: 90px;

    right: 0;
  }

  .couple-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .couple-symbol {
    margin: auto;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .countdown-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 8px;
  }

  .gallery-item:nth-child(2) {
    margin-top: 18px;
  }

  .gallery-item:nth-child(5) {
    margin-top: -18px;
  }

  /* RSVP: form di atas, wishes di bawah */

  .rsvp-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .rsvp-form {
    order: 1;
  }

  .rsvp-wishes {
    order: 2;
  }

  .gift-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 420px) {

  .cover-inner {
    padding:
      42px 22px;
  }

  .hero-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-title {
    font-size: 58px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-photo-small {
    width: 120px;
    height: 150px;
  }

  .hero-bubble {
    width: 78px;
    height: 78px;

    font-size: 8px;
  }

  .person-photo {
    width: 180px;
    height: 180px;
  }

  .wish-card {
    padding: 26px 22px;
  }

  .wish-card-text {
    font-size: 23px;
  }

}

/* =====================================================
   MOBILE BOTTOM NAVIGATION
===================================================== */

.mobile-nav {
  display: none;
}


@media (max-width: 760px) {

  .mobile-nav {
    position: fixed;

    left: 12px;
    right: 12px;
    bottom: 12px;

    z-index: 850;

    height: 58px;

    display: grid;

    grid-template-columns:
      repeat(4, 1fr);

    background:
      rgba(70, 80, 76, .97);

    border:
      1px solid
      rgba(255,255,255,.12);

    box-shadow:
      0 10px 30px
      rgba(60,70,60,.18);

    backdrop-filter:
      blur(12px);

    -webkit-backdrop-filter:
      blur(12px);
  }


  .mobile-nav-item {
    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 3px;

    color:
      rgba(255,255,255,.55);

    text-decoration: none;

    font-size: 7px;

    letter-spacing: .08em;

    text-transform: uppercase;

    transition:
      color .25s ease,
      background .25s ease;
  }


  .mobile-nav-item
  + .mobile-nav-item {
    border-left:
      1px solid
      rgba(255,255,255,.10);
  }


  .mobile-nav-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    height: 18px;

    color:
      rgba(255,255,255,.55);

    font-size: 15px;

    line-height: 1;
  }


  .mobile-nav-item.active {
    color: #fff;

    background:
      rgba(246,184,200,.14);
  }


  .mobile-nav-item.active
  .mobile-nav-icon {
    color:
      var(--pink);
  }


  body.locked .mobile-nav {
    opacity: 0;

    visibility: hidden;

    pointer-events: none;
  }


  /* Musik tetap terpisah dan berada
     di atas navbar */

  .music-btn {
    right: 18px;

    bottom: 82px;

    z-index: 900;
  }


  .footer {
    padding-bottom: 105px;
  }

}


@media (max-width: 420px) {

  .mobile-nav {
    left: 10px;
    right: 10px;
    bottom: 10px;

    height: 56px;
  }


  .mobile-nav-item {
    font-size: 6.5px;
  }


  .mobile-nav-icon {
    font-size: 14px;
  }


  .music-btn {
    right: 16px;

    bottom: 78px;
  }

}