/* =========================================
1. RESET E VARIÁVEIS GLOBAIS
 ========================================= */
:root {
  /* Paleta de Cores JKB Store */
  --color-orange: #ff5722;
  --color-orange-hover: #e64a19;
  --color-blue-dark: #190068;
  --color-blue-btn: #2d1b70;
  --color-text-dark: #1f1f1f;
  --color-text-light: #64626b;
  --color-white: #ffffff;
  --color-bg-light: #f9f9f9;
  --color-gray-border: #e0e0e0;

  /* Configurações */
  --container-width: 1820px;
  --border-radius-pill: 50px;
  --border-radius-card: 16px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--border-radius-card);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-orange {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn-orange:hover {
  background-color: var(--color-orange-hover);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--color-blue-btn);
  color: var(--color-white);
}

.btn-dark:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

/* =========================================
2. NAVBAR
========================================= */
.navbar {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 24px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 1);
}

.navbar.scrolled .logo-img {
  height: 40px;
  width: 40px;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}

.navbar.scrolled .nav-links a {
  font-size: 1rem;
}

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

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-img {
  height: 70%;
  width: 70%;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-blue-dark);
  font-weight: 500;
  font-size: 1.2rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-orange);
}

.nav-icons {
  display: flex;
  gap: 60px;
  align-items: center;
}

.nav-icons i {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-blue-dark);
  transition: var(--transition);
}

.nav-icons i:hover {
  color: var(--color-orange);
}

.mobile-toggle,
.mobile-menu-left,
.mobile-inner-header {
  display: none;
}

.nav-header-mobile {
  display: contents;
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-blue-dark);
  cursor: pointer;
}

/* =========================================
   DROPDOWN MENU
========================================= */

.dropdown-trigger {
  position: relative;
  height: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: -20px;
  background-color: #fff;
  width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 15px 0;
  list-style: none;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 25px;
  font-size: 1rem;
  color: var(--color-text-light);
  font-weight: 400;
  transition:
    background 0.2s,
    color 0.2s;
}

.dropdown-menu li a:hover {
  background-color: #f5f5f5;
  color: var(--color-orange);
}

.dropdown-menu .divider {
  background-color: #eee;
  margin: 8px 0;
}

.dropdown-trigger:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-trigger.menu-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-trigger:hover .fa-chevron-down,
.dropdown-trigger.menu-open .fa-chevron-down {
  transform: rotate(180deg);
}

.fa-chevron-down {
  transition: transform 0.3s ease;
}

/* =========================================
   PÁGINA DE PRODUTO INDIVIDUAL
========================================= */

.product-detail-section {
  padding: 60px 0;
  background-color: #fff;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Galeria um pouco maior */
  gap: 60px;
  align-items: start;
}

/* --- COLUNA ESQUERDA: GALERIA --- */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image-container {
  position: relative;
  width: 80%;
  border-radius: 20px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.main-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

/* Botão Wishlist sobre a imagem */
.gallery-wishlist-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--color-blue-dark);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s;
}
.gallery-wishlist-btn:hover {
  transform: scale(1.1);
}

/* Setas de Navegação */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
  padding: 10px;
}
.gallery-arrow.prev {
  left: 15px;
}
.gallery-arrow.next {
  right: 15px;
}

/* Thumbnails */
.thumbnails {
  display: flex;
  gap: 15px;
}

.thumb {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition:
    opacity 0.3s,
    border 0.3s;
}

.thumb.active,
.thumb:hover {
  opacity: 1;
  border: 2px solid var(--color-orange);
}

/* --- COLUNA DIREITA: INFORMAÇÕES --- */
.product-info {
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 2.2rem;
  color: var(--color-blue-dark);
  line-height: 1.2;
  margin-bottom: 10px;
}

.product-subtitle {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 30px;
}

/* Color Picker */
.color-picker-section {
  margin-bottom: 30px;
}
.label-title {
  display: block;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.color-options {
  display: flex;
  gap: 10px;
}
.color-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s;
}
.color-circle:hover {
  transform: scale(1.2);
}

/* Tabs */
.product-tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 30px;
}

.tab-link {
  background: none;
  border: none;
  padding-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
}

.tab-link.active {
  color: var(--color-text-dark);
}

.tab-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px; /* Em cima da linha cinza */
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-text-dark); /* Cor escura ou roxa */
}

/* Conteúdo da Aba */
.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}
.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Atributos (Botões Pill) */
.attributes-group {
  margin-bottom: 25px;
}

.attr-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.attr-label {
  font-weight: 700;
  color: #444;
  min-width: 80px;
  font-size: 0.95rem;
}

.block-label {
  display: block;
  margin-bottom: 10px;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.attr-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

/* Botão Vermelho Sólido (Selecionado) */
.attr-btn.selected-red {
  background-color: #e60000;
  color: white;
  border: none;
}

/* Botão Outline */
.attr-btn.outline {
  background: transparent;
  border: 1px solid #ccc;
  color: #666;
}

.attr-btn.outline:hover,
.attr-btn.outline.active {
  border-color: var(--color-blue-dark);
  color: var(--color-blue-dark);
}

/* Descrição Texto */
.description-text p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Ícones de Feature */
.feature-icons {
  display: flex;
  gap: 25px;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #777;
  font-size: 0.85rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item i {
  font-size: 1.2rem;
}

/* Botão Adicionar ao Carrinho (Estilo Cinza conforme imagem) */
.btn-secondary-gray {
  background-color: #b0b0b0; /* Cinza */
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 15px 0;
  border-radius: 12px;
  width: 40%;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-secondary-gray:hover {
  background-color: var(--color-orange); /* Laranja no hover */
}

/* =========================================
11. FOOTER
========================================= */
.footer {
  background-color: #f0f0f0;
  padding: 60px 0 20px;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  padding-top: 20px;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 80px;
  margin-left: auto;
  margin-right: 60px;
}

.footer-links h4 {
  color: var(--color-blue-dark);
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--color-blue-dark);
  transition: var(--transition);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--color-orange);
}

.social-links {
  text-align: left;
  border-left: 2px solid #1a0b52;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 100px;
}

.social-links p {
  font-weight: 400;
  color: var(--color-blue-dark);
}

.social-links a {
  color: var(--color-blue-dark);
  font-size: 1.8rem;
  transition: var(--transition);
  display: inline-block;
}

.social-links a:hover {
  color: var(--color-orange);
  transform: translateY(-3px);
}

.copyright {
  text-align: left;
  border-top: 1px solid #d1d1d1;
  padding-top: 30px;
  color: var(--color-blue-dark);
  font-size: 0.85rem;
  max-width: 100%;
  margin: 0 auto;
}

/* Responsividade Produto */
@media (max-width: 992px) {
  .product-layout {
    grid-template-columns: 1fr; /* Coluna única */
    gap: 30px;
  }

  .main-image-container {
    height: 310px;
  }

  .btn-secondary-gray {
    width: 100%;
  }
}

@media (max-width: 1025px) {
  .nav-content {
    justify-content: space-between;
    padding: 0 20px;
  }

  .nav-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 1001;
  }

  .mobile-toggle {
    display: block;
    font-size: 1.8rem;
    color: var(--color-blue-dark);
    border: none;
    background: transparent;
    cursor: pointer;
  }

  /* --- 2. O MENU OVERLAY (Wrapper Geral) --- */
  .nav-menu-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: 2000;
    overflow: hidden;
  }

  .nav-menu-wrapper.active {
    display: grid;
    grid-template-columns: 35% 65%;
    animation: slideIn 0.3s ease-out;
  }

  /* --- 3. COLUNA ESQUERDA (ROXA) --- */
  .mobile-menu-left {
    display: none;
    align-items: center;
    background: linear-gradient(180deg, #1a0b52 0%, #2d1b70 100%);
    padding: 40px 20px;
    text-align: left;
    color: white;
    position: relative;
  }

  .mobile-promo-content h2 {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
  }

  .mobile-promo-content h2 strong {
    font-weight: 800;
    font-size: 2.2rem;
  }

  .btn-outline-white {
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 30px;
  }

  .promo-arrow {
    border: 1px solid white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }

  /* --- 4. COLUNA DIREITA (BRANCA - CONTEÚDO) --- */
  .mobile-menu-right {
    display: flex;
    flex-direction: column;
    background-color: white;
    height: 100%;
    overflow-y: auto;
  }

  .mobile-inner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    flex-direction: row-reverse;
  }

  .mobile-logo-inner {
    height: 40px;
    width: 40px;
    display: none;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .search-icon-mobile {
    font-size: 1.5rem;
    color: var(--color-blue-dark);
  }

  .nav-icons {
    display: flex;
    justify-content: space-around;
    padding: 30px 40px;
    gap: 20px;
  }

  .nav-icons i {
    font-size: 1.8rem;
  }

  .desktop-only {
    display: none !important;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0 40px;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-blue-dark);
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0 0 20px 20px;
    display: none;
    background: white;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-trigger.menu-open .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    font-size: 1rem;
    font-weight: 400;
    padding: 10px 0;
  }
}

@media (max-width: 600px) {
  .nav-menu-wrapper.active {
    grid-template-columns: 10% 90%;
  }
  .mobile-menu-left {
    display: none;
  }
  .mobile-promo-content {
    display: none;
  }
  .mobile-menu-left::after {
    content: "\f060";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
  }

  .nav-icons i {
    font-size: 1rem;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .dropdown-menu li a {
    font-size: 0.8rem;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 993px) {
  .mobile-menu-left,
  .mobile-inner-header {
    display: none !important;
  }

  .mobile-menu-right {
    display: flex;
    flex-direction: row-reverse;
    gap: 100px;
  }
}

@media (max-width: 930px) {
  .gallery-wishlist-btn {
    font-size: 1.2rem;
  }
  .product-gallery {
    align-items: center;
  }
  .product-title {
    text-align: center;
  }
  .product-info {
    align-items: center;
  }
  .tab-content.active {
    text-align: center;
  }
  .attr-row {
    justify-content: center;
  }
  .btn-wrap {
    justify-content: center;
  }
  .feature-icons {
    justify-content: center;
  }
}
@media (max-width: 1025px) {
  .nav-menu-wrapper.active {
    display: flex;
    justify-content: end;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background: transparent;
  }

  .mobile-close-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #1a0b52;
  }

  .mobile-menu-right {
    background: white;
    height: 100vh;
    width: 60vw;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .footer-links {
    margin: 0;
    gap: 10px;
    justify-content: center;
    flex-direction: column;
  }
  .social-links {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid #1a0b52;
    padding-top: 20px;
    width: 50%;
    align-items: center;
    text-align: center;
    min-height: auto;
  }
  .logo-img {
    height: 60%;
    width: 60%;
  }
}

/* =========================================
   POPUPS (LOGIN & CARRINHO) - ESTILO VISUAL
========================================= */

/* Fundo Escuro (Overlay) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;

  /* Escondido por padrão */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- ESTILOS COMUNS --- */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.modal-title {
  font-size: 2rem; /* Bem grande como na imagem */
  color: var(--color-blue-dark);
  font-weight: 800;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--color-blue-dark);
  cursor: pointer;
}

/* --- MODAL LOGIN (CENTRAL) --- */
.login-box {
  background: white;
  width: 90%;
  max-width: 800px; /* Mais largo conforme imagem */
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Lado a lado */
  gap: 30px;
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-blue-dark);
  font-weight: 500;
}

.input-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

/* Área do meio: Recaptcha e Botão */
.login-middle-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.recaptcha-placeholder {
  border: 1px solid #ddd;
  background: #f9f9f9;
  padding: 10px 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  color: #555;
  font-size: 0.8rem;
}

.login-btn-area {
  text-align: right;
}

.forgot-pass {
  display: block;
  color: var(--color-blue-dark);
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.btn-login {
  background-color: var(--color-blue-dark);
  color: white;
  padding: 12px 40px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

/* Footer do Login */
.login-divider {
  height: 1px;
  background-color: #ddd;
  margin-bottom: 30px;
}

.login-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text h3 {
  color: var(--color-blue-dark);
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.footer-text p {
  font-size: 0.9rem;
  color: #555;
  max-width: 400px;
}

.btn-register {
  background: transparent;
  border: 2px solid var(--color-blue-dark);
  color: var(--color-blue-dark);
  padding: 10px 30px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}
.btn-register:hover {
  background: var(--color-blue-dark);
  color: white;
}

/* --- MODAL CARRINHO (SIDEBAR) --- */
.cart-overlay-wrapper {
  justify-content: flex-end; /* Alinha à direita */
}

.cart-sidebar {
  background: white;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%); /* Escondido na direita */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active .cart-sidebar {
  transform: translateX(0);
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px; /* Espaço para scrollbar */
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.cart-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.cart-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-info {
  flex: 1;
}

.cart-info h4 {
  color: var(--color-blue-dark);
  font-size: 0.85rem;
  line-height: 1.2;
  margin-bottom: 5px;
}
.cart-desc {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 5px;
}
.cart-price {
  color: var(--color-blue-dark);
  font-weight: 800;
  font-size: 1.1rem;
}

/* Botão de Quantidade (Pílula) */
.cart-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--color-blue-dark);
  border-radius: 50px;
  padding: 5px 10px;
  min-width: 60px;
}

.cart-qty button {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: var(--color-blue-dark);
  font-weight: 700;
  cursor: pointer;
}

.cart-qty span {
  font-weight: 700;
  color: var(--color-blue-dark);
}

/* Footer Carrinho */
.cart-footer-area {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  color: var(--color-blue-dark);
  font-size: 1.2rem;
}
.cart-total-row .total-price {
  font-weight: 800;
}

.cart-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.btn-checkout {
  background-color: var(--color-blue-dark);
  color: white;
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
  .login-grid {
    grid-template-columns: 1fr;
  }
  .login-footer {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .login-box {
    padding: 20px;
    width: 75%;
  }
  .cart-sidebar {
    width: 80%;
    height: 70%;
  }
  .cart-sidebar {
    width: 80%;
    height: 70%;
  }
  .input-group input {
    font-size: 0.7rem;
  }
}
