body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0d;
    color: #ffffff;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    }

    .btn-cart {
      position: relative;
      background-color: transparent;
      border: 1px solid #555;
      color: white;
      padding: 10px 16px;
      font-size: 16px;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .btn-cart:hover {
      background-color: #1f1f1f;
    }
    
    .toast {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: linear-gradient(135deg, #b61111, #7c0b0b);
      color: white;
      padding: 14px 24px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      font-size: 15px;
      font-weight: 500;
      opacity: 0;
      pointer-events: none;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      z-index: 9999;
    }
    .toast.show {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }
    
    .cart-count {
      position: absolute;
      top: -8px;
      right: -8px;
      background-color: #ff4757;
      color: white;
      border-radius: 50%;
      font-size: 12px;
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    

    /* SCROLLBAR WEBKIT (Chrome, Edge, Safari) */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #0a0a0d;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(145deg, #b61111, #500707);
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(145deg, #b61111, #500707);
}

/* SCROLLBAR FIREFOX */
html {
  scrollbar-width: thin;
  scrollbar-color: #b61111 #0a0a0d;
}


  .payment-animation {
    text-align: center;
    margin-top: 40px;
    color: #00e676;
    animation: fadeIn 1s ease-in-out;
  }
  
  .checkmark-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-block;
    background: #1f1f1f;
    border: 4px solid #00e676;
    margin-bottom: 20px;
    position: relative;
    animation: bounce 0.8s ease;
  }
  
  .checkmark {
    font-size: 50px;
    line-height: 100px;
    display: inline-block;
    font-weight: bold;
    color: #00e676;
  }

 
  
  @keyframes bounce {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  

  .navbar {
    background-color: #0c0c0e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  }
  .navbar-left {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  /* Container de Preço */
.pricing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
}

/* Organização lado a lado (select + botão) */
.form-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px; /* Espaçamento entre o select e o botão */
  align-items: center;
}

.product-selection {
  position: relative;
}

.product-selection select {
  background-color: #1a1a1a;
  color: white;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 12px 20px;  /* Mais padding para melhorar o espaço interno */
  font-size: 1rem;
  width: 200px;
  transition: border-color 0.3s ease;
  text-align: center;  /* Centraliza o conteúdo do select */
  appearance: none; /* Remove a seta do select */
}

.product-selection label {
  font-size: 1.2rem;
  color: #e2e2e2;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

/* Estilo do botão */
.btn-add-to-cart {
  padding: 12px 20px;
  background-color: #b61111;
  border: none;
  color: white;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 180px; /* Ajuste no tamanho para combinar com o select */
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* Espaçamento superior */
  margin-bottom: 30px; /* Espaçamento inferior aumentado */
}

/* Efeito de Hover para o botão */
.btn-add-to-cart:hover {
  background-color: #b61111;
}

/* Responsividade */
@media (max-width: 768px) {
  .pricing-container {
    padding: 0 20px;
    flex-direction: column; /* Deixa tudo em coluna para telas menores */
  }

  .form-wrapper {
    flex-direction: column; /* Muda para coluna em telas pequenas */
  }

  .product-selection select, .btn-add-to-cart {
    width: 100%; /* Faz com que o select e o botão ocupem toda a largura */
    margin-bottom: 10px;
  }

  .btn-add-to-cart {
    width: 100%; /* Ajusta a largura do botão */
  }
}

  
  .navbar-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
  }
  
  .logo img {
    height: 58px;
    display: block;
    margin: 0;
    padding: 0;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  
  .nav-links li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .nav-links li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: #b61111;
    bottom: -22px;
    left: 0;
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
  }
  
  .nav-links li a:hover,
  .nav-links li a.active {
    color: #b61111;
  }
  
  .nav-links li a:hover::after,
  .nav-links li a.active::after {
    width: 100%;
  }
  
  
  .navbar-actions {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .btn-forum {
    background-color: #1b1b25;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 6px;
    text-transform: uppercase;
    transition: background 0.3s;
  }
  
  .btn-forum:hover {
    background-color: #2b2b39;
  }
  
  .btn-signin {
    background-color: #b61111;
    padding: 10px 20px;
    font-weight: bold;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-signin:hover {
    background-color: #b61111;
  }
  
 
.btn-dashboard {
background-color: #b61111; 
color: white; 
padding: 10px 20px;
border-radius: 8px;
font-size: 1rem;
cursor: pointer;
text-decoration: none;
font-weight: normal;
transition: background-color 0.3s ease-in-out;
margin-left: auto; 
margin-right: 30px; 
}

.breadcrumb {
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 0 40px;
  font-size: 2.3rem;
  color: #ffffff;
}

  .breadcrumb span {
    color: #b61111;
  }

  .breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }

  
  .breadcrumbf {
    max-width: 1200px;
margin: 130px auto 25px;
    font-size: 2.3rem;
    color: #ffffff;
  }
  .breadcrumbf span {
    color: #b61111;
  }

  .breadcrumbf a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  .product-wrapper {
    max-width: 1200px;
    margin: 20px auto 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 40px;
    align-items: start;
  }

  .product-image img {
    border-radius: 16px;
filter: brightness(1.05);
box-shadow: 0 0 24px rgba(221, 2, 2, 0.2);
    width: 100%;
  }

  .product-info h1 {
    font-size: 2.4rem;
    margin-top: 0px;
    margin-bottom: 12px;
  }

  .product-info p {
    color: #cfcfcf;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .product-info strong {
    color: #ffffff;
  }

  .product-info .highlight {
    color: #00e676;
  }

  .pricing-container {
display: flex;
align-items: center;
gap: 24px;
margin-top: 30px;
}

.plans {
display: flex;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
background: #0a0a0d;
}

.special-radio {
display: flex;
background-color: #16171d;
border-radius: 10px;
overflow: hidden;
}

.special-radio input[type=radio] {
display: none;
}




.special-radio input[type=radio]+label {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 1rem 2rem;
height: auto;
width: 100px;
text-align: center;
transform: none;
}

.price-text {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
}

.price-text strong {
font-size: 1.4rem;
}

.price-text span {
font-size: 1rem;
}

.plans {
flex-direction: column;
align-items: center;
}
.special-radio label {
transform: none !important; /* Remove skew para mobile */
}
.special-radio label .price-text {
transform: none !important;
}

.special-radio input[type=radio]+label strong {
font-size: 1.5rem;
}

.special-radio input[type=radio]:checked+label {
    background: linear-gradient(145deg, #b61111, #610808);
    box-shadow: 0 0 14px rgba(255, 108, 108, 0.4);
    color: #111;
    font-weight: bold;
  }
  

.special-radio input[type=radio]:checked+label .price-text span,
.special-radio input[type=radio]:checked+label .price-text strong {
color: #111;
}


.btn-buy {
background-color: #b61111;
color: white;
padding: 28px 48px;
border-radius: 12px;
font-size: 1rem;
text-decoration: none;
font-weight: 600;
transition: 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 12px rgba(255, 108, 108, 0.4);
}

.btn-buy:hover {
background-color: #b61111;
transform: translateY(-2px) scale(1.03);
}
.specs {
margin-top: 205px; /* aumente esse valor conforme quiser "abaixar" */
font-size: 1.0rem;
color: #cfcfcf;
}


.specs p {
display: flex;
align-items: center;
gap: 2px;
margin: 4px 0;
font-size: 1.0rem;
line-height: 1.5;
}

.spec-icon {
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.spec-label {
color: #b61111;
font-weight: bold;
}


  .spec-label {
    color: #b61111;
    font-weight: bold;
  }

  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
  }
  
  .features-section {
    padding: 80px 40px;
    background-color: #0a0a0d;
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
  }
  
  .features-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .features-section h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 32px;
  }
  
  .features-warning {
    background-color: #2e2e4a;
    color: #d1d1ff;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 48px;
    box-shadow: 0 0 16px rgba(108, 115, 255, 0.1);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
  }
  
  .feature-block h3 {
    color: #b61111;
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
  
  .feature-block .desc {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: #aaa;
  }
  
  .feature-block ul {
    list-style: none;
    padding-left: 0;
  }
  
  .feature-block ul li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #fff;
    margin-left: 8px;
    position: relative;
  }
/* seta azul pros itens principais */
.feature-block > ul > li::before {
    content: '\276f';
    color: #b61111;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  
  /* seta cinza nos subitens */
  .feature-block ul ul li::before {
    content: '\276f';
    color: #acacac;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  

  
  .feature-block ul ul {
    padding-left: 16px;
    margin: 2px 0 0 0;
    color: #bbb;
  }
  
  .feature-block ul ul li {
    font-size: 0.95em;
    margin: 1px 0;
  }

  /* Breadcrumb */
.breadcrumb {
  margin: 130px auto 60px;
  padding: 0 40px;
  font-size: 2.3rem;
  color: #ffffff;
}

.breadcrumb span {
  color: #b61111;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.cart-container {
  max-width: 600px;
  margin: 130px auto 60px auto;
  padding: 30px;
  border: 1.0px solid #1f1f1f; /* Borda azul roxa */
  border-radius: 16px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1.0px solid #1f1f1f; /* Borda azul roxa */
  padding: 16px;
  border-radius: 12px;
  transition: transform 0.2s ease;
}


.cart-item:hover {
  transform: scale(1.01);
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-item-info h2 {
  font-size: 1.4rem;
  margin: 0 0 6px;
  line-height: 1.2;
}

.cart-item-info p {
  font-size: 1rem;
  margin: 2px 0;
  color: #cfcfcf;
}

.cart-item-remove button {
  background-color: #e64545;
  border: none;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: bold;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(230, 69, 69, 0.4);
  transition: background-color 0.3s ease;
}

.cart-item-remove button:hover {
  background-color: #c93333;
}

.cart-summary {
  margin-top: 50px;
  padding: 28px 24px;
  border: 1.5px solid #1f1f1f;
  border-radius: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cart-summary .cart-total p {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.cart-total {
  margin-bottom: 10px;
}



.input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #0a0a0d;
  border: 1.5px solid #1f1f1f;
  border-radius: 8px;
  color: white;
  box-sizing: border-box;
  font-size: 0.95rem;
}

.btn {
  width: 100%;
  padding: 12px;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  box-sizing: border-box;
}

.switch-link {
  margin-top: 15px;
  display: block;
  font-size: 0.9rem;
  color: #aaa;
  text-decoration: none;
}


.cart-total p {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.btn-checkout {
  background: linear-gradient(135deg, #b61111, #500707);
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 12px rgba(108, 115, 255, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  width: fit-content;
}

.btn-checkout:hover {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(135deg, #b61111, #500707);
}

.btn-checkout i {
  font-size: 1.1rem;
}
.checkout-container {
  max-width: 500px;
  margin: 60px auto 40px auto; /* ↓ estava 120px */
  padding: 24px 32px;
  border-radius: 16px;
  border: 1.5px solid #1f1f1f;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item {
  border: 1.5px solid #1f1f1f;
  padding: 16px 20px;
  border-radius: 12px;
}

.cart-item-info h2 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group input {
  padding: 12px 16px;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  background-color: #0e0e11;
  color: white;
}

.checkout-payment {
  text-align: center;
  margin-top: 12px;
}

.checkout-payment p {
  margin: 0;
  font-weight: 500;
}

.pix-image {
  margin-top: 10px;
  height: 36px;
}

.btn-check {
  background: linear-gradient(135deg, #b61111, #500707);
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 12px rgba(108, 115, 255, 0.2);
  margin: 0 auto; /* ← ESSA LINHA CENTRALIZA */
  display: block;
}

.btn-check:hover {
  background-color: #3a51b1;
  transform: translateY(-1px);
}


.form-group input,
.form-group textarea {
  background: #0a0a0d;
  border: 1.5px solid #1f1f1f;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b61111;
  box-shadow: 0 0 8px rgba(108, 115, 255, 0.3);
}


::selection {
  background-color: #b61111; /* fundo da seleção */
  color: #ffffff;            /* cor do texto selecionado */
}


/* Ajuste de seleção (colar, arrastar, etc.) */
input::selection,
textarea::selection {
  background-color: #b61111;
  color: #ffffff;
}

/* Evita fundo branco no autofill do Chrome */
input:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  transition: background-color 9999s ease-in-out 0s;
}


.status-wrapper {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.status-product {
  background-color: #0a0a0a;
  border: 1px solid #1d1d1d;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.product-info h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #c9c9c9;
}

.product-info p {
  margin: 5px 0;
}

.status {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 5px 10px;
  display: inline-block;
}

.status.online {
  background-color: #28a745;
  color: white;
}

.status.offline {
  background-color: #dc3545;
  color: white;
}

.status.updating {
  background-color: #ffc107;
  color: white;
}

.status-indicator {
  display: flex;
  align-items: center;
}

.indicator {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  margin-right: 10px;
}

.indicator.online {
  background-color: #28a745;
}

.indicator.offline {
  background-color: #dc3545;
}

.indicator.updating {
  background-color: #ffc107;
}

  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: none;
    }
  }

  @media (max-width: 600px) {
    body {
      padding-top: 130px; /* Aumenta pra deixar espaço pra navbar */
    }
  
    .navbar {
      flex-direction: column;
      height: auto;
      padding: 12px 0;
    }
  
    .navbar-container {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 0 16px;
    }
  
    .navbar-left {
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
  
    .nav-links {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
      padding: 0;
    }
  
    .nav-links li a {
      font-size: 0.9rem;
      padding: 6px;
    }
  
    .navbar-actions {
      flex-direction: row;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }
  
    .btn-forum,
    .btn-signin {
      font-size: 0.8rem;
      padding: 8px 14px;
      border-radius: 6px;
    }
  
    .breadcrumb {
      font-size: 1.2rem;
      margin: 0 auto 30px; /* ↓ Reduz o topo e dá espaço abaixo */
      padding: 0 20px;
      text-align: center;
    }
    .cart-container {
      padding: 20px;
      width: calc(100% - 32px);
      box-sizing: border-box;
    }
  
    .cart-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .cart-item-info h2 {
      font-size: 1.1rem;
    }
  
    .cart-summary {
      padding: 20px;
    }
  
    .cart-total p {
      font-size: 1.4rem;
      text-align: center;
    }
  
  
    .checkout-container {
      margin: 30px 16px;
      padding: 20px;
      width: calc(100% - 32px);
      box-sizing: border-box;
    }
    
    .cart-item {
      padding: 16px;
    }
    
    .form-group input {
      padding: 12px;
      font-size: 0.95rem;
    }
    
    .pix-image {
      height: 28px;
      margin: 12px auto 8px;
      display: block;
    }
   
    
    .btn-checkout i {
      display: none;
    }
    
  }
  @media (max-width: 480px) {
    body {
      display: block;
    }
  
    main {
      padding-top: 40px;
      display: block;
    }
  
    .qr-box {
      padding: 20px 15px;
      border-radius: 12px;
      width: 90%;
      margin: 0 auto;
    }
  
    .qr-frame {
      padding: 8px;
      border-radius: 10px;
    }
  
    .qr-frame img {
      width: 160px;
      height: 160px;
    }
  
    .qr-box h2 {
      font-size: 1rem;
      margin-bottom: 14px;
    }
  
    .qr-status {
      font-size: 0.95rem;
    }
  
    .btn-cancel {
      margin-top: 18px;
      padding: 8px 20px;
      font-size: 0.85rem;
    }
  
    .qr-timer {
      font-size: 0.8rem;
    }
  
    .payment-animation {
      max-width: 90%;
      padding: 20px 15px;
    }
  
    .checkmark-circle {
      width: 70px;
      height: 70px;
    }
  
    .checkmark {
      font-size: 2rem;
    }
  }
  /* Estilos responsivos mobile completos para a página do produto */
@media (max-width: 600px) {
  .product-wrapper {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 30px;
  }

  .product-image img {
    width: 100%;
    border-radius: 14px;
  }

  .specs {
    margin-top: 30px;
    font-size: 0.95rem;
  }

  .product-info h1 {
    font-size: 1.8rem;
  }

  .product-info p {
    font-size: 0.95rem;
  }

  .breadcrumbf {
    font-size: 1.2rem;
    padding: 0 20px;
    text-align: center;
    margin-top: 110px;
  }

  .features-section {
    padding: 60px 20px;
  }

  .features-warning {
    font-size: 0.9rem;
    padding: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-block h3 {
    font-size: 1.2rem;
  }

  .feature-block .desc {
    font-size: 0.85rem;
  }

  .feature-block ul li {
    font-size: 0.9rem;
  }

  .feature-block ul ul li {
    font-size: 0.85rem;
  }

  .pricing-container {
    padding: 0 20px;
    flex-direction: column;
  }

  .product-selection label {
    font-size: 1rem;
  }

  .product-selection select {
    width: 100%;
  }

  .btn-add-to-cart {
    width: 100%;
    font-size: 1rem;
  }

  .nav-links li a.active::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .auth-box {
    max-width: 75% !important;
    padding: 24px !important;
    margin-top: -100px !important;
  }
}
@media (max-width: 480px) {
  body {
    padding-top: 80px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .key-card,
  .dashboard-box {
    max-width: 80% !important;
    padding: 20px !important;
    margin-top: 20px !important;
    border-radius: 14px;
  }

  .field label {
    font-size: 0.85rem;
  }

  .input {
    font-size: 0.9rem;
    padding: 10px;
  }

  .btn-red {
    font-size: 0.95rem;
    padding: 10px;
  }

  .dash-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .dash-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px;
  }

  .dash-item .label {
    font-size: 0.9rem;
  }

  .dash-item .value {
    font-size: 0.9rem;
    max-width: 100%;
    word-break: break-word;
    text-align: left;
  }
}
