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

:root {
  --brand-1: #8b5cff;
  --brand-2: #d639ff;
  --brand-3: #2a0b4c;
  --white: #f8f7ff;
  --muted: #241636;
  --accent: #ff8b5b;
  --accent-soft: #3f1d4b;
  --gray: #c6b6ff;
  --light-gray: #342146;
  --cream: #21132f;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: radial-gradient(circle at top, #380f6d 0%, #12020e 40%, #09010a 100%);
  color: #f4ecff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.gm-header {
  background: var(--brand-1);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}

.gm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 24px;
  color: #ffffff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.no-logo .logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
}

.site-logo {
  display: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  color: var(--white);
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
}

.gm-nav {
  display: flex;
  gap: 25px;
  flex: 1;
}

.gm-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
  transition: all 0.2s;
}

.gm-nav a:hover,
.gm-nav a:focus {
  color: #ffffff;
  border-bottom: 2px solid rgba(255,255,255,0.15);
}

.gm-nav a.active {
  /* manter visual limpo quando não interagido: sem borda visível */
  color: rgba(255,255,255,0.95);
  border-bottom: 2px solid transparent;
}

.gm-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.currency {
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  font-size: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}

.btn.login {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn.login:hover {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.btn.register {
  background: rgba(255,255,255,0.15);
  color: #f4ecff;
}

.btn.register:hover {
  background: rgba(255,255,255,0.2);
}

/* BANNERS - 3 COLUMN PANELS */
main {
  padding-top: 20px;
  padding-bottom: 40px;
}

.carousel {
  width: 100%;
  max-width: 1160px;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
}

.carousel-inner {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease;
  }

  .carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
  }

  .carousel-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
  }

  /* imagem estática que substitui o carrossel principal */
  .carousel-static {
    width: 100%;
    display: block;
  }

  .carousel-static img {
    width: 100%;
    height: auto; /* manter proporção original */
    max-height: 140px; /* ajustar para o tamanho dos cards (prod-thumb) */
    object-fit: contain; /* evitar recorte; centraliza dentro do espaço */
    display: block;
  }

  /* Ajuste para telas pequenas */
  @media (max-width: 600px) {
    .carousel-static img {
      max-height: 120px;
    }
  }

  /* bloco que contém o banner principal, alinhado com a largura dos 3 cards */
  .hero-block {
    max-width: 1160px; /* mesma largura do .carousel */
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  }

  .hero-block img {
    width: 100%;
    height: 370px; /* aumentado 15% de 280px */
    object-fit: cover; /* recorta a imagem para preencher sem espaços vazios */
    display: block;
  }

  @media (max-width: 600px) {
    .hero-block img {
      height: 190px; /* aumentado 15% de 150px */
    }
  }

.carousel-actions {
  width: 100%;
  max-width: 1160px;
  margin: 20px auto;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(15, 12, 28, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.actions-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.action-pill {
  min-width: 98px;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 12, 28, 0.35);
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.action-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.action-pill.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* dropdown para service list na pill */
.nav-dropdown-pill {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu-pill {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px 0;
  /* reduzir a distância para evitar 'gap' entre botão e menu (impede fechamento acidental) */
  margin-top: 4px;
  z-index: 101;
  /* Fundo totalmente opaco para máxima legibilidade */
  background: rgba(15, 12, 28, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(22px);
}

.nav-dropdown-pill:hover .dropdown-menu-pill {
  display: flex;
}

/* mostrar dropdown quando a classe 'open' estiver presente (suporte a clique/touch) */
.nav-dropdown-pill.open .dropdown-menu-pill {
  display: flex;
}

.dropdown-menu-pill a {
  padding: 8px 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.dropdown-menu-pill a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.currency-pill {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 12, 28, 0.35);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.currency-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.currency-pill option {
  background: #0a0510;
  color: #fff;
}

.separator-pill {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  margin: 0 4px;
}

/* Agrupamento de botões de autenticação */
.auth-buttons {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(15, 12, 28, 0.35);
}

.auth-login,
.auth-register {
  flex: 1;
  border: none;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.2s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-register {
  border-right: none;
}

.auth-login:hover,
.auth-register:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* removido display: none para mostrar os novos botões */

.actions-row select:focus,
.actions-row .btn:hover {
  background: rgba(255,255,255,0.2);
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-button:hover {
  background: rgba(0,0,0,0.75);
}

.carousel-button.prev {
  left: 12px;
}

.carousel-button.next {
  right: 12px;
}

.banners {
  margin-bottom: 50px;
}

.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.col-panel {
  background: rgba(18, 10, 38, 0.92);
  border: 1px solid rgba(139,92,255,0.22);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.col-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.24);
  border-color: rgba(139,92,255,0.34);
}

.panel-top {
  width: 100%;
  height: 110px;
  background: linear-gradient(135deg, rgba(84,40,170,0.95) 0%, rgba(30,10,70,0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #dcd7ff;
  font-weight: 500;
}

.panel-list {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
  background: rgba(12, 8, 25, 0.82);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.panel-item:hover,
.panel-item:active,
.panel-item:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0,0,0,0.20);
  background: rgba(10, 7, 20, 0.96) !important;
  color: #fff;
  outline: none;
}

.panel-item:last-child {
  margin-bottom: 0;
}

.item-thumb {
  width: 72px;
  min-width: 72px;
  height: 72px;
  background: #e8e8e8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
  padding: 6px;
}

.item-thumb.rent-badge {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: var(--white);
  font-weight: bold;
  font-size: 10px;
}

.item-body {
  flex: 1;
  min-width: 0;
}

/* HERO GRADIENTS */
.hero-teal {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
}

.hero-dark {
  background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand-3) 100%);
}

.hero-blue {
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
}

.panel-list {
  padding: 0;
}

.panel-item {
  display: flex;
  gap: 12px;
  padding: 14px 14px 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: rgba(12, 8, 25, 0.85);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.panel-item:last-child {
  border-bottom: none;
}

.panel-item:hover,
.panel-item:active,
.panel-item:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
  background: rgba(10, 7, 20, 0.96) !important;
  color: #fff;
}

.item-thumb {
  width: 60px;
  min-width: 60px;
  height: 50px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  padding: 4px;
}

.item-thumb.rent-badge {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: var(--white);
  font-weight: bold;
  font-size: 10px;
}

.item-body {
  flex: 1;
  min-width: 0;
  color: var(--white);
}

.item-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.4;
}

.item-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--white);
}

.price-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: var(--brand-1);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 3px;
}

.time-badge {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  color: var(--brand-1);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 3px;
}

/* SELLERS */
.sellers {
  margin-bottom: 50px;
}

.sellers h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-1);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.seller-logos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.seller-item {
  width: 120px;
  height: 80px;
  background: var(--muted);
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}

.seller-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* BEST SELLING */
.best {
  margin-bottom: 50px;
}

.best h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-1);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.best-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.prod {
  background: rgba(19,10,40,0.92);
  border: 1px solid rgba(120, 69, 255, 0.18);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 42px rgba(79, 35, 128, 0.16);
}

.prod:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.12);
}

.prod-thumb {
  width: 100%;
  height: 140px;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prod-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 10px;
}

.prod-info {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prod-title {
  font-size: 12px;
  font-weight: 600;
  color: #f4ecff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.prod-meta {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 10px;
}

.prod-meta span {
  color: #999;
}

.buy {
  display: block;
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  padding: 8px 12px;
  background: var(--brand-1);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
}

.buy:hover {
  background: var(--brand-2);
}

/* RECENT ITEMS */
.recent {
  margin-bottom: 40px;
}

.recent h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-1);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.recent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
/* recent-controls removed to keep carousel automatic */

.recent-grid {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.recent-grid::-webkit-scrollbar {
  display: none;
}

.recent-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: rgba(19,10,40,0.92);
  border: 1px solid rgba(120, 69, 255, 0.16);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.recent-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.12);
}

.recent-badge {
  display: inline-block;
  background: var(--brand-1);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 4px 8px;
  margin: 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

.recent-image {
  width: 100%;
  height: 80px;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}

.recent-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.recent-text {
  font-size: 11px;
  font-weight: 500;
  color: #f4ecff;
  padding: 8px;
  line-height: 1.4;
  min-height: 40px;
}

.recent-meta {
  font-size: 10px;
  color: var(--gray);
  padding: 0 8px 8px;
}

/* SERVICE GROUP PAGE */
.service-group-page {
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at top, #380f6d 0%, #12020e 40%, #09010a 100%);
  padding: 40px 0;
}

.service-group-header {
  margin-bottom: 40px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-group-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #f4ecff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.search-service {
  width: 100%;
  max-width: 250px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #f4ecff;
  font-size: 13px;
  transition: all 0.2s;
}

.search-service::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-service:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(139, 92, 255, 0.4);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 14px;
  background: rgba(18, 10, 38, 0.92);
  border: 1px solid rgba(139, 92, 255, 0.22);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  border-color: rgba(139, 92, 255, 0.34);
}

.service-icon {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-info h3 {
  font-size: 13px;
  font-weight: 600;
  color: #f4ecff;
  margin-bottom: 8px;
  line-height: 1.5;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag.imei {
  background: rgba(22, 160, 133, 0.2);
  color: #16a085;
}

.tag.server {
  background: rgba(0, 150, 136, 0.2);
  color: #00968a;
}

.tag.count {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

/* Media query para mobile */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-group-header h1 {
    font-size: 22px;
  }

  .service-card {
    gap: 12px;
    padding: 12px;
  }

  .service-icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
  }

  .service-info h3 {
    font-size: 12px;
  }
}

/* FOOTER */
.gm-footer {
  display: block;
  width: 100%;
  background: rgba(12, 6, 22, 0.85);
  color: rgba(255,255,255,0.92);
  padding: 18px 20px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-center p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  max-width: 800px;
}

.gm-footer .col strong {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.gm-footer .col p,
.gm-footer .col a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}

.gm-footer .col a:hover {
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .best-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .recent-grid {
    display: flex;
    gap: 15px;
  }

  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .gm-header-inner {
    flex-direction: column;
    gap: 15px;
    padding: 12px;
  }

  .gm-nav {
    width: 100%;
    gap: 10px;
    font-size: 11px;
  }

  .gm-actions {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .btn {
    padding: 6px 12px;
    font-size: 10px;
  }

  .carousel-actions {
    padding: 0 20px 20px;
  }

  .actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .actions-row select,
  .actions-row .btn {
    width: auto;
  }

  .cols-3 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .best-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .recent-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .seller-logos {
    gap: 10px;
  }

  .seller-item {
    width: 100px;
    height: 70px;
  }
}
