/* =========================
   TEMA E RESET
========================= */
:root {
  --bg: #0d0d0d;
  --bg-soft: #121212;
  --card: rgba(30, 30, 30, 0.38);
  --card-strong: rgba(24, 24, 24, 0.52);
  --border: #2a2a2a;
  --border-purple: rgba(224, 224, 224, 0.28);
  --purple: #e0e0e0;
  --purple-2: #ffffff;
  --purple-soft: rgba(224, 224, 224, 0.13);
  --purple-faint: rgba(224, 224, 224, 0.07);
  --text: #f5f5f5;
  --muted: #6c757d;
  --muted-2: #4f4f4f;
  --green: #00ff88;
  --red: #ff5c68;
  --topbar-height: 72px;
  --bottom-nav-height: 74px;
  --radius: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 52% -10%, rgba(255, 255, 255, 0.055), transparent 36%),
    linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button,
a,
input,
label {
  -webkit-tap-highlight-color: transparent;
}

#network-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.62;
}

.app-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* =========================
   CABEÇALHO
========================= */
.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 224, 224, 0.35);
  border-radius: 12px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(145deg, rgba(224, 224, 224, 0.12), rgba(18, 18, 18, 0.9));
  box-shadow: inset 0 0 16px rgba(224, 224, 224, 0.08);
}

.apple-mark {
  position: absolute;
  top: 1px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #f2efff;
}

.logo-caption {
  position: absolute;
  bottom: 4px;
  text-align: center;
  color: var(--purple);
  font-size: 6px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-name {
  color: var(--purple);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.8px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.connection-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 600;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 6px rgba(0, 255, 136, 0.80),
    0 0 12px rgba(0, 255, 136, 0.45);
}

.logout-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 75, 95, 0.28);
  border-radius: 9px;
  cursor: pointer;
  color: #b32b3b;
  background: rgba(255, 75, 95, 0.07);
  transition: 180ms ease;
}

.logout-button:hover {
  color: #ff6878;
  border-color: rgba(255, 75, 95, 0.52);
  background: rgba(255, 75, 95, 0.12);
}

.logout-button svg {
  width: 17px;
  height: 17px;
}

/* =========================
   CONTEÚDO
========================= */
.content {
  width: 100%;
  padding: calc(var(--topbar-height) + 14px) 18px calc(var(--bottom-nav-height) + 28px);
}

.page {
  display: none;
  width: min(100%, 1900px);
  margin: 0 auto;
  animation: page-enter 240ms ease;
}

.page.active {
  display: block;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-card,
.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 58%),
    var(--card);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  backdrop-filter: blur(14px) saturate(115%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 8px 28px rgba(0, 0, 0, 0.18);
}

.section-card {
  margin-bottom: 12px;
  padding: 18px 18px 17px;
  border-radius: var(--radius);
}

.section-title {
  margin: 0 0 19px;
  color: var(--purple);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.info-row {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.label {
  color: #808080;
  font-size: 12px;
  font-weight: 500;
}

.value {
  color: #eeebf4;
  font-size: 12px;
  text-align: right;
}

.value.accent,
.license-code {
  color: var(--purple);
}

.strong {
  font-weight: 700;
}

.current-ip {
  margin: 0;
  color: #f1eef8;
  font-size: 12px;
  font-weight: 700;
}

.license-code {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
}

.divider {
  height: 1px;
  margin: 14px 0 12px;
  background: rgba(255, 255, 255, 0.055);
}

.outline-button,
.primary-button {
  width: 100%;
  min-height: 42px;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 600;
  transition: 180ms ease;
}

.outline-button {
  border: 1px solid rgba(224, 224, 224, 0.7);
  color: var(--purple);
  background: rgba(224, 224, 224, 0.025);
}

.outline-button:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(224, 224, 224, 0.08);
  box-shadow: 0 0 22px rgba(224, 224, 224, 0.11);
}

.primary-button {
  border: 0;
  color: #111111;
  background: linear-gradient(90deg, #e0e0e0, #ffffff);
  box-shadow: 0 8px 26px rgba(255, 255, 255, 0.10);
}

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

/* =========================
   SWITCH
========================= */
.switch {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  width: 38px;
  height: 22px;
  cursor: pointer;
}

.switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.switch-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #343434;
  transition: 180ms ease;
}

.switch-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #777777;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  transition: 180ms ease;
}

.switch input:checked + .switch-track {
  background: rgba(224, 224, 224, 0.34);
  box-shadow: 0 0 13px rgba(224, 224, 224, 0.14);
}

.switch input:checked + .switch-track::after {
  left: 19px;
  background: var(--purple);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.38);
}

.feature-heading,
.section-card-header,
.control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.feature-heading {
  color: #c6c2cc;
  font-size: 13px;
  font-weight: 600;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.time-field {
  display: grid;
  gap: 7px;
  text-align: center;
}

.time-field > span {
  color: #4f4c59;
  font-size: 9px;
  font-weight: 600;
}

.time-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  outline: none;
  color: #f2eef8;
  text-align: center;
  background: rgba(24, 24, 24, 0.96);
}

.time-field input:focus {
  border-color: rgba(224, 224, 224, 0.56);
  box-shadow: 0 0 0 3px rgba(224, 224, 224, 0.07);
}

.time-field input:disabled {
  color: #4e4c55;
  opacity: 1;
}

/* =========================
   LISTAS
========================= */
.steps-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #7b7b7b;
  font-size: 11px;
  line-height: 1.4;
}

.steps-list li strong {
  color: #dfdbe7;
  font-weight: 700;
}

.step-number {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  margin-top: -1px;
  border-radius: 50%;
  color: #e0e0e0;
  font-size: 9px;
  font-weight: 700;
  background: rgba(224, 224, 224, 0.14);
}

.installation-list {
  gap: 9px;
}

/* =========================
   DOWNLOAD
========================= */
.vpn-profile-card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 25px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(224, 224, 224, 0.10), transparent 36%),
    var(--card);
}

.shield-wrapper {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 7px;
  color: var(--purple);
  filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.24));
}

.shield-wrapper svg {
  width: 30px;
  height: 30px;
  stroke-width: 2;
}

.vpn-profile-card h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.vpn-profile-card p {
  margin: 4px 0 20px;
  color: #6f6c78;
  font-size: 10px;
}

.vpn-profile-card .primary-button {
  min-height: 42px;
}

/* =========================
   CONFIG
========================= */
.controls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.feature-card {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
}

.feature-info {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9a9a9a;
}

.glyph {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #e0e0e0;
  background: rgba(224, 224, 224, 0.10);
}

.glyph svg {
  width: 13px;
  height: 13px;
}

.glyph-text {
  font-size: 12px;
  font-weight: 700;
}

.feature-name {
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.warning {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  color: var(--red);
}

.section-card-header {
  align-items: flex-start;
}

.hologram-card h3 {
  margin: 0 0 13px;
  color: #b0b0b0;
  font-size: 13px;
}

.steps-list.compact {
  gap: 8px;
}

.player-control {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.player-control:last-child {
  border-bottom: 0;
}

.control-row {
  color: #b0b0b0;
  font-size: 13px;
  font-weight: 600;
}

.slider-block {
  position: relative;
  margin-top: 14px;
  padding-top: 22px;
}

.slider-value {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 48px;
  padding: 4px 12px;
  border-radius: 999px;
  color: #000000;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(255, 255, 255, 0.12);
}

input[type="range"] {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  outline: none;
  appearance: none;
  background:
    linear-gradient(
      to right,
      var(--purple) 0%,
      var(--purple) var(--range-progress, 40%),
      #303030 var(--range-progress, 40%),
      #303030 100%
    );
}

input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
  background: var(--purple);
  box-shadow: 0 0 13px rgba(224, 224, 224, 0.35);
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--purple);
  box-shadow: 0 0 13px rgba(224, 224, 224, 0.35);
}

/* =========================
   NAVEGAÇÃO INFERIOR
========================= */
.bottom-nav {
  position: fixed;
  z-index: 30;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--bottom-nav-height);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(224, 224, 224, 0.14);
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(18px);
}

.nav-item {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  outline: 0;
  cursor: pointer;
  color: #6c757d;
  background: transparent;
  transition: 180ms ease;
}

.nav-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.7;
}

.nav-item span {
  font-size: 10px;
  font-weight: 600;
}

.nav-item:hover {
  color: #a7a7a7;
}

.nav-item.active {
  color: var(--purple);
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
}


.nav-item:focus,
.nav-item:focus-visible,
.nav-item.active:focus,
.nav-item.active:focus-visible {
  border: 0;
  outline: none;
  box-shadow: none;
}

/* =========================
   TOAST
========================= */
.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: calc(var(--bottom-nav-height) + 20px);
  max-width: min(90vw, 420px);
  padding: 10px 15px;
  border: 1px solid rgba(224, 224, 224, 0.28);
  border-radius: 10px;
  color: #f3effa;
  font-size: 12px;
  text-align: center;
  background: rgba(24, 24, 24, 0.97);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* =========================
   RESPONSIVO
========================= */
@media (min-width: 768px) {
  :root {
    --topbar-height: 76px;
    --bottom-nav-height: 72px;
  }

  .content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-card {
    padding: 21px 20px;
  }

  .vpn-profile-card {
    min-height: 190px;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 0 14px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .connection-status span:last-child {
    display: none;
  }

  .content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .controls-grid {
    grid-template-columns: 1fr;
  }

  .time-grid {
    gap: 6px;
  }

  .section-card {
    padding: 16px 14px;
  }

  .feature-card {
    min-height: 67px;
  }
}




/* =========================
   LOGIN INICIAL — visual original do pacote fornecido
========================= */
.login-screen {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  touch-action: pan-x pan-y;
  background: #0d0d0d;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: opacity 320ms ease, visibility 320ms ease;
}
.login-screen.is-hidden { opacity:0; visibility:hidden; pointer-events:none; }
.app-shell.is-locked { opacity:0; visibility:hidden; pointer-events:none; }
.app-shell { transition:opacity 320ms ease, visibility 320ms ease; }
#particles { position:fixed; inset:0; z-index:0; width:100%; height:100%; pointer-events:none; }
.login-orb { position:fixed; border-radius:50%; filter:blur(80px); opacity:.3; z-index:0; pointer-events:none; }
.login-orb-1 { width:300px; height:300px; background:#d0d0d0; top:-80px; left:-60px; animation:loginFloat1 8s ease-in-out infinite; }
.login-orb-2 { width:250px; height:250px; background:#8f8f8f; bottom:-60px; right:-40px; animation:loginFloat2 10s ease-in-out infinite; }
.login-orb-3 { width:180px; height:180px; background:#f0f0f0; top:50%; left:50%; transform:translate(-50%,-50%); animation:loginFloat3 12s ease-in-out infinite; }
@keyframes loginFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,40px)} }
@keyframes loginFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-20px,-30px)} }
@keyframes loginFloat3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.2)} }
.login-container { position:relative; z-index:10; width:100%; max-width:380px; padding:0 28px; }
.login-card-original {
  background:rgba(30,30,30,.72); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(224,224,224,.18); border-radius:20px; padding:32px 24px;
  animation:loginFadeUp .8s ease-out .2s both;
}
@keyframes loginFadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.login-brand-name { margin:0 0 25px; color:#ffffff; text-align:center; font-size:20px; font-weight:800; letter-spacing:.8px; }
.login-field-original { margin-bottom:16px; position:relative; }
.login-field-original input {
  width:100%; padding:16px 18px; background:rgba(255,255,255,.04);
  border:1px solid rgba(224,224,224,.22); border-radius:14px; color:#fff;
  font-size:15px; font-weight:400; font-family:inherit; transition:all .3s ease;
  outline:none; -webkit-appearance:none;
}
.login-field-original input:focus { border-color:#d0d0d0; background:rgba(255,255,255,.05); box-shadow:0 0 20px rgba(255,255,255,.10); }
.login-field-original input::placeholder { color:rgba(255,255,255,.25); }
.login-ip-row-original { display:flex; gap:10px; }
.login-ip-row-original input { flex:1; min-width:0; }
.login-btn-detect {
  padding:16px; background:rgba(224,224,224,.09); border:1px solid rgba(224,224,224,.28);
  border-radius:14px; color:#e0e0e0; font-size:12px; font-weight:500; letter-spacing:.3px;
  cursor:pointer; white-space:nowrap; transition:all .3s; font-family:inherit; -webkit-appearance:none;
}
.login-btn-detect:active { background:rgba(224,224,224,.18); transform:scale(.96); }
.login-save-key-container { display:flex; align-items:center; justify-content:space-between; margin:20px 0; padding:0 4px; cursor:pointer; user-select:none; }
.login-save-key-label { font-size:14px; color:rgba(255,255,255,.6); font-weight:500; }
.login-switch { position:relative; display:inline-block; width:42px; height:24px; }
.login-switch input { opacity:0; width:0; height:0; }
.login-slider { position:absolute; cursor:pointer; inset:0; background-color:rgba(255,255,255,.1); transition:.3s; border-radius:24px; border:1px solid rgba(224,224,224,.18); }
.login-slider:before { position:absolute; content:""; height:18px; width:18px; left:2px; bottom:2px; background:#fff; transition:.3s; border-radius:50%; box-shadow:0 2px 4px rgba(0,0,0,.2); }
.login-switch input:checked + .login-slider { background-color:#d0d0d0; border-color:#d0d0d0; }
.login-switch input:checked + .login-slider:before { transform:translateX(18px); }
.login-btn-enter {
  width:100%; padding:17px; margin-top:8px; background:linear-gradient(135deg,#d0d0d0 0%,#f0f0f0 50%,#d0d0d0 100%);
  background-size:200% 200%; border:none; border-radius:14px; color:#111; font-size:16px; font-weight:700;
  letter-spacing:.5px; cursor:pointer; transition:all .3s; font-family:inherit; -webkit-appearance:none;
  position:relative; overflow:hidden; animation:loginGradientShift 4s ease infinite;
}
@keyframes loginGradientShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.login-btn-enter:active { transform:scale(.97); }
.login-btn-enter::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,transparent,rgba(255,255,255,.15),transparent); transform:translateX(-100%); animation:loginShimmer 3s infinite; }
@keyframes loginShimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

/* Fade suave entre abas */
.page { opacity:0; transform:translateY(8px); }
.page.active { animation:tab-fade-in 360ms cubic-bezier(.22,.61,.36,1) both; }
@keyframes tab-fade-in { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

/* Aba ativa: apenas ícone e texto roxos, sem contorno */
.nav-item, .nav-item.active, .nav-item:focus, .nav-item:focus-visible,
.nav-item.active:focus, .nav-item.active:focus-visible { border:0 !important; outline:0 !important; box-shadow:none !important; }
.nav-item.active { color:var(--purple); background:transparent !important; }
.brand { min-height:42px; }



/* =========================
   TEXTURA
========================= */
.texture-tutorial-card,
.texture-selection-card {
  background: rgba(25, 25, 25, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.texture-steps {
  gap: 12px;
}

.texture-steps li {
  color: #a4a4a4;
  font-size: 12px;
}

.texture-option {
  min-height: 156px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(30, 30, 30, 0.28);
}

.texture-option + .texture-option {
  margin-top: 12px;
}

.texture-content {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.texture-image-frame {
  width: 90px;
  height: 110px;
  flex: 0 0 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.22);
}

.texture-character-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.texture-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.texture-copy strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.texture-copy span {
  color: #777777;
  font-size: 11px;
}

.texture-switch {
  margin-left: auto;
}

@media (max-width: 520px) {
  .texture-option {
    min-height: 128px;
    padding: 12px;
    gap: 12px;
  }

  .texture-content {
    gap: 12px;
  }

 .texture-image-frame {
    width: 82px;
    height: 100px;
    border-radius: 11px;
  }

  .texture-copy strong {
    font-size: 13px;
  }

  .texture-copy span {
    max-width: 125px;
    font-size: 10px;
  }
}

@media (max-width: 420px) {
  .bottom-nav {
    height: 70px;
  }

  .nav-item {
    gap: 4px;
  }

  .nav-item svg {
    width: 18px;
    height: 18px;
  }

  .nav-item span {
    font-size: 9px;
  }
}
