:root {
  --black: #ffffff;
  --dark: #f5f5f5;
  --gray: #666666;
  --light: #1a1a1a;
  --primary: #e0f7fa;
  --accent: #00BCD4;
  --highlight: #00BCD4;
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
}

/* ============= STORE LAYOUT (Referência) ============= */
.store-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.15);
  z-index: 1000;
  transition: background 0.3s ease, top 0.3s ease;
}

.store-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.store-logo img {
  height: 38px;
}

.store-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: max-height 0.3s ease;
}

.store-nav-link {
  color: rgba(26, 26, 26, 0.8);
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.store-nav-link:hover,
.store-nav-link.active {
  color: #00BCD4;
  background: rgba(0, 188, 212, 0.1);
}

.store-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-greeting-btn {
  background: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-greeting-btn:hover {
  background: rgba(0, 188, 212, 0.1);
}

.user-greeting {
  margin: 0;
  color: #1a1a1a;
}

.store-actions.is-authenticated .auth-toggle {
  display: none !important;
}

/* Elementos Mobile - Escondidos por padrão */
.user-greeting-btn-mobile {
  display: none;
}

.my-orders-btn-mobile {
  display: none;
}

.cart-btn-mobile {
  display: none;
}

/* Elementos Desktop - Visíveis por padrão */
.auth-btn-desktop,
.user-greeting-desktop,
.my-orders-desktop,
.cart-btn-desktop {
  display: inline-flex;
}

.store-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(26, 26, 26, 0.4);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.store-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #1a1a1a;
  margin: 0 auto;
}

.store-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.store-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.store-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.store-header.is-fixed {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.store-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: radial-gradient(circle at top, rgba(0, 188, 212, 0.1), transparent),
    linear-gradient(160deg, #f0f9fa, #ffffff 70%);
}

.store-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.store-hero__content span {
  display: inline-block;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.store-hero__content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
  color: #1a1a1a;
}

.store-hero__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--accent);
  margin: 0.5rem 0 1rem;
}

.store-hero__content p {
  color: rgba(26, 26, 26, 0.75);
  margin-bottom: 1.25rem;
}

.store-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn.primary {
  background: #00BCD4;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 188, 212, 0.3);
}

.store-btn.ghost {
  background: rgba(0, 188, 212, 0.1);
  border-color: rgba(0, 188, 212, 0.3);
  color: #00BCD4;
}

.store-btn:hover {
  transform: translateY(-2px);
}

.store-hero__media img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.store-products {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
}

.store-section-header {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.store-section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.store-section-header p {
  color: rgba(26, 26, 26, 0.65);
}

.store-products-search {
  position: relative;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  width: 100%;
}

.product-search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: rgba(0, 188, 212, 0.05);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 12px;
  color: #1a1a1a;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.product-search-input::placeholder {
  color: rgba(26, 26, 26, 0.5);
}

.product-search-input:focus {
  outline: none;
  border-color: rgba(0, 188, 212, 0.6);
  background: rgba(0, 188, 212, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15);
}

.store-products-search .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(26, 26, 26, 0.5);
  pointer-events: none;
  transition: color 0.3s ease;
}

.product-search-input:focus + .search-icon {
  color: rgba(0, 188, 212, 0.8);
}

.store-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 280px));
  gap: 1.25rem;
  max-width: 100%;
  justify-content: center;
}

.store-products-grid .product-card {
  max-width: 280px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.store-products-placeholder {
  text-align: center;
  padding: 3rem;
  color: rgba(26, 26, 26, 0.7);
  background: rgba(0, 188, 212, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 188, 212, 0.2);
}

.store-products-grid .product-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 188, 212, 0.2);
  box-shadow: 0 25px 50px rgba(0, 188, 212, 0.15);
  padding: 1rem;
  color: #1a1a1a;
}

.store-products-grid .product-image {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 188, 212, 0.05);
  width: 100%;
  aspect-ratio: 1;
  position: relative;
}

.store-products-grid .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-products-grid .product-info {
  padding-top: 0.75rem;
}

.store-banner {
  padding: 80px 0;
  background: linear-gradient(120deg, #e0f7fa, #ffffff);
}

.store-banner__content {
  text-align: center;
  color: #1a1a1a;
}

.store-banner__content h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0.5rem 0 1rem;
}

.store-banner__content span {
  color: #00BCD4;
}

.store-about {
  padding: 80px 0;
  background: #ffffff;
}

.store-about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.store-about__text p,
.store-about__text ul {
  color: rgba(26, 26, 26, 0.75);
}

.store-about__card {
  background: #f5f5f5;
  color: #1a1a1a;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 50px rgba(0, 188, 212, 0.15);
  border: 1px solid rgba(0, 188, 212, 0.2);
}

.store-about__card .store-btn {
  width: 100%;
}

.store-newsletter {
  padding: 80px 0;
  background: #f5f5f5;
  color: #1a1a1a;
}

.store-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.store-newsletter__form input {
  flex: 1 1 220px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 188, 212, 0.3);
  background: rgba(0, 188, 212, 0.05);
  color: #1a1a1a;
}

.store-newsletter__form input::placeholder {
  color: rgba(26, 26, 26, 0.6);
}

.store-newsletter__form button {
  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .store-nav {
    position: absolute;
    left: 0;
    top: 64px;
    width: 100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    max-height: 0;
    overflow: hidden;
  }

  .store-nav.is-open {
    max-height: 260px;
    padding: 0.75rem 1rem;
  }

  .store-menu-toggle {
    display: inline-flex;
  }

  .store-header__inner {
    justify-content: space-between;
    padding: 0 1rem;
  }

  .store-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: auto;
  }

  /* Esconder elementos desktop no mobile */
  .auth-btn-desktop,
  .user-greeting-desktop,
  .my-orders-desktop,
  .cart-btn-desktop {
    display: none !important;
  }

  /* Mostrar elementos mobile */
  .user-greeting-btn-mobile,
  .my-orders-btn-mobile,
  .cart-btn-mobile {
    display: inline-flex !important;
  }

  /* Estilos para botão de nome mobile */
  .user-greeting-btn-mobile {
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
  }

  .user-greeting-btn-mobile:hover {
    background: rgba(0, 188, 212, 0.15);
  }

  .user-greeting-btn-mobile:active {
    opacity: 0.8;
  }

  .user-greeting-mobile {
    margin: 0;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
  }

  /* Estilos para carrinho mobile */
  .cart-btn-mobile {
    position: relative;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .cart-btn-mobile:hover {
    background: rgba(0, 188, 212, 0.15);
  }

  .cart-btn-mobile:active {
    opacity: 0.8;
  }

  /* Estilos para botão Minhas Compras mobile */
  .my-orders-btn-mobile {
    position: relative;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-right: 0.5rem;
  }

  .my-orders-btn-mobile:hover {
    background: rgba(0, 188, 212, 0.15);
  }

  .my-orders-btn-mobile:active {
    opacity: 0.8;
  }

  .my-orders-icon-mobile {
    font-size: 1rem;
    line-height: 1;
  }

  .cart-icon-mobile {
    font-size: 1rem;
    line-height: 1;
  }

  .cart-count-mobile {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent);
    color: #ffffff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    border: 2px solid #ffffff;
  }

  .cart-count-mobile:empty {
    display: none;
  }

  .store-hero {
    padding-top: 100px;
  }

  .store-newsletter {
    padding: 2.5rem 0;
  }

  .store-newsletter__wrapper {
    max-width: 100%;
    padding: 0 1rem;
    width: 100%;
  }

  .store-section-header {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .store-section-header h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .store-section-header p {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    margin-bottom: 0;
    line-height: 1.5;
  }

  .store-products-search {
    max-width: 100%;
    margin: 0 auto 1.5rem;
    padding: 0 0.5rem;
  }

  .product-search-input {
    padding: 0.75rem 0.875rem 0.75rem 2.75rem;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  .store-products-search .search-icon {
    left: 0.875rem;
    width: 18px;
    height: 18px;
  }

  .store-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    justify-content: stretch;
  }

  .store-products-grid .product-card {
    max-width: 100%;
    width: 100%;
    padding: 0.75rem;
    margin: 0;
  }

  .store-newsletter__form {
    flex-direction: column;
    gap: 0.875rem;
    margin: 1.25rem 0;
    width: 100%;
  }

  .store-newsletter__form input {
    flex: 1 1 auto;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    border-radius: 12px;
    min-height: 44px;
    box-sizing: border-box;
  }

  .store-newsletter__form button {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    min-height: 44px;
    border-radius: 12px;
    box-sizing: border-box;
  }

  .store-newsletter small {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    margin-top: 0.75rem;
    padding: 0 0.5rem;
    line-height: 1.4;
    color: rgba(248, 248, 251, 0.7);
  }
}
/* ============= END STORE LAYOUT ============= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remover todas as barras de rolagem */
* {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

*::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--light);
  font-family: inherit;
  line-height: 1.6;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

/* Espaçamento para header fixo no mobile */
@media (max-width: 900px) {
  main {
    padding-top: 48px; /* Altura do header fixo - será ajustado dinamicamente pelo JS */
    padding-bottom: 70px; /* Espaço para bottom nav */
  }
  
  body {
    background: var(--dark);
  }
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}

body.modal-open {
  overflow: hidden;
}

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

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.top-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(0, 188, 212, 0.2);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  gap: 1rem;
}

.brand img {
  height: 48px;
}

.auth-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.auth-actions .user-greeting {
  display: none;
  font-weight: 600;
  color: var(--accent);
}

.auth-actions .logout-btn {
  display: none;
}

.auth-actions.is-authenticated .auth-toggle {
  display: none;
}

.auth-actions.is-authenticated .user-greeting,
.auth-actions.is-authenticated .logout-btn,
.auth-actions.is-authenticated .my-orders-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.my-orders-btn {
  display: none;
}

.my-orders-btn:not([hidden]) {
  display: inline-flex;
}

/* No mobile, esconder saudação quando autenticado para economizar espaço */
@media (max-width: 900px) {
  .auth-actions.is-authenticated .user-greeting {
    display: none;
  }
}

.cart-btn {
  position: relative;
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a1a1a;
}

.cart-btn:hover {
  background: rgba(0, 188, 212, 0.15);
  border-color: var(--accent);
}

.cart-icon {
  font-size: 1.2rem;
}

.cart-count {
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 20px;
}

.primary-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.primary-nav a {
  color: var(--gray);
  transition: color 0.2s ease;
}

.primary-nav a:hover {
  color: #00BCD4;
}

.cta {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta.primary {
  background: linear-gradient(120deg, #00BCD4, #00BCD4);
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 188, 212, 0.35);
}

.cta.secondary {
  background: rgba(0, 188, 212, 0.1);
  color: #00BCD4;
  border: 1px solid rgba(0, 188, 212, 0.3);
}

.cta.ghost {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid rgba(0, 188, 212, 0.3);
}

.cta.full {
  width: 100%;
  text-align: center;
}

.cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 188, 212, 0.05), rgba(0, 188, 212, 0.02));
}

.hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
  min-height: 80vh;
  gap: 2rem;
}

.hero-content {
  max-width: 560px;
  margin-top: auto;
  margin-bottom: auto;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0.5rem 0;
  line-height: 1.1;
  color: #1a1a1a;
}

.hero-content h1 span {
  color: #00BCD4;
}

.hero-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.3);
  color: #00BCD4;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}

.quick-stats article {
  background: #ffffff;
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.1);
}

.quick-stats h3 {
  margin: 0;
  font-size: 1.5rem;
}

.collections-grid header,
.highlights header,
.about .about-text > p {
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 0.85rem;
}

.collections-grid h2,
.highlights h2,
.about h2 {
  margin-top: 0.3rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.collections-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.collections-grid article {
  padding: 1.7rem;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(0, 188, 212, 0.1), rgba(0, 188, 212, 0.05));
  border: 1px solid rgba(0, 188, 212, 0.2);
}

.collections-grid article a {
  color: var(--accent);
  font-weight: 600;
}

.highlights {
  background: radial-gradient(circle at top, rgba(0, 188, 212, 0.1), transparent);
  padding: 4rem 0;
  margin-top: 3rem;
}

.highlights .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlights article {
  padding: 1.8rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 188, 212, 0.2);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.1);
}

.highlights .tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.9rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 188, 212, 0.15);
  color: #00BCD4;
}

.price {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  margin: 1rem 0;
}

.price .old {
  color: var(--gray);
  text-decoration: line-through;
  font-size: 0.95rem;
}

.price .current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 2rem;
  padding: 4rem 0;
}

.about .about-text > p:last-of-type {
  margin-bottom: 1rem;
}

.about ul {
  padding-left: 1.4rem;
  color: var(--gray);
}

.about-card {
  background: #ffffff;
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.1);
}

.newsletter {
  background: rgba(0, 188, 212, 0.05);
  padding: 4rem 0;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 1rem;
}

.newsletter-form input {
  flex: 1 1 220px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 188, 212, 0.3);
  background: rgba(0, 188, 212, 0.05);
  color: #1a1a1a;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 120;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  width: min(420px, 100%);
  border: 1px solid rgba(0, 188, 212, 0.2);
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 188, 212, 0.25);
}

.modal h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  color: #1a1a1a;
}

.modal p {
  color: var(--gray);
}

.modal form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.2rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field span {
  font-size: 0.9rem;
  color: var(--gray);
}

.field input {
  border-radius: 12px;
  border: 1px solid rgba(0, 188, 212, 0.3);
  padding: 0.85rem 1rem;
  background: rgba(0, 188, 212, 0.05);
  color: #1a1a1a;
}

.modal .cta {
  width: 100%;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 1.4rem;
  cursor: pointer;
}

.form-note {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gray);
  margin: 1.5rem 0 1rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 188, 212, 0.2);
}

.google-auth {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.g_id_signin {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.g_id_signin > div {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.g_id_signin iframe {
  margin: 0 auto !important;
  display: block !important;
}

.link-button {
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color 0.2s ease;
}

.link-button:hover {
  color: var(--highlight);
}

/* Modal de Perfil */
.profile-modal-content {
  max-width: 400px;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.profile-details {
  flex: 1;
}

.profile-details h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  color: var(--light);
  font-weight: 600;
}

.profile-email {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .profile-info {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 0;
  }
  
  .profile-avatar {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
  }
}

footer {
  border-top: 1px solid rgba(0, 188, 212, 0.2);
  padding: 2.5rem 0;
  background: #ffffff;
  color: #1a1a1a;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.footer-grid img {
  width: 70px;
  margin-inline: auto;
}

/* Bottom Navigation - Mobile Only - Minimalista */

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1rem 0;
}

.product-card {
  background: #ffffff;
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 16px;
  padding: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.2);
  border-color: rgba(0, 188, 212, 0.4);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 188, 212, 0.05);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-add-btn {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00BCD4;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.product-add-btn:hover {
  transform: scale(1.1);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-title {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  color: #1a1a1a;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
    line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-sales {
  font-size: 0.75rem;
  color: var(--gray);
  margin: 0;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-rating .stars {
  color: #00BCD4;
  font-size: 0.85rem;
}

.product-rating .rating-value {
  font-size: 0.8rem;
  color: var(--gray);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.product-price .current-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.product-price .old-price {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: line-through;
}

/* Product Modal - Desktop */
.product-modal .modal-dialog {
  width: min(95%, 1100px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
  -webkit-overflow-scrolling: touch; /* Scroll suave */
}

.product-modal .modal-dialog::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}

/* Esconder header no desktop */
.product-modal-header {
  display: none;
}

.product-modal-back {
  display: none;
}

.product-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 0.5rem;
  overflow: visible;
}

.product-detail-left {
  position: sticky;
  top: 1rem;
  height: fit-content;
  align-self: start;
}

.product-gallery {
  display: flex;
  gap: 0.75rem;
}

.product-image-back {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  border: none;
  background: rgba(0, 188, 212, 0.9);
  color: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.product-image-back:hover {
  transform: translateY(-2px);
}

.product-image-back:active {
  opacity: 0.8;
}

.product-image-back-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.product-gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-gallery-thumbnails .thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.product-gallery-thumbnails .thumbnail:hover,
.product-gallery-thumbnails .thumbnail.active {
  opacity: 1;
  border-color: var(--accent);
}

.product-gallery-main {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 188, 212, 0.05);
}

.product-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}

.product-detail-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: visible;
}

.product-detail-title {
  font-size: 1.3rem;
  margin: 0;
  color: #1a1a1a;
  line-height: 1.3;
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-detail-rating .stars {
  color: #00BCD4;
  font-size: 1rem;
}

.product-detail-rating .rating-value {
  font-size: 0.9rem;
  color: #1a1a1a;
  font-weight: 600;
}

.product-detail-rating .rating-count {
  font-size: 0.85rem;
  color: var(--gray);
}

.product-detail-sales {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

.bundle-deal {
  background: rgba(0, 188, 212, 0.05);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 12px;
  padding: 1rem;
}

.bundle-label {
  display: inline-block;
  background: #00BCD4;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1rem 0;
}

.current-price-large {
  font-size: 2rem;
  font-weight: 700;
  color: #00BCD4;
}

.old-price-large {
  font-size: 1.2rem;
  color: var(--gray);
  text-decoration: line-through;
}

.bundle-note {
  color: var(--gray);
  font-size: 0.85rem;
  margin: 0.5rem 0;
}

.tax-note {
  color: var(--gray);
  font-size: 0.8rem;
  margin: 0;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-option-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-option-group label {
  font-size: 0.9rem;
  color: #1a1a1a;
  font-weight: 500;
}

.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.option-btn {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0, 188, 212, 0.3);
  background: rgba(0, 188, 212, 0.05);
  color: #1a1a1a;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.option-btn:hover {
  border-color: var(--accent);
  background: rgba(0, 188, 212, 0.1);
}

.option-btn.active {
  border-color: var(--accent);
  background: rgba(0, 188, 212, 0.2);
  color: var(--accent);
}

.product-shipping-info {
  background: rgba(0, 188, 212, 0.05);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 12px;
  padding: 1rem;
}

.product-shipping-info h4 {
  color: var(--accent);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.product-shipping-info p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.fast-delivery-benefits {
  margin-top: 1rem;
}

.fast-delivery-benefits h5 {
  color: #1a1a1a;
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
}

.fast-delivery-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.fast-delivery-benefits li {
  color: var(--gray);
  font-size: 0.85rem;
  margin: 0.4rem 0;
  padding-left: 0;
}

.return-policy {
  margin-top: 1rem;
  color: var(--accent);
  font-size: 0.85rem;
}

.product-quantity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-quantity label {
  font-size: 0.9rem;
  color: #1a1a1a;
  font-weight: 500;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 188, 212, 0.3);
  background: rgba(0, 188, 212, 0.05);
  color: #1a1a1a;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  border-color: var(--accent);
  background: rgba(0, 188, 212, 0.1);
}

#productQuantity {
  width: 60px;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid rgba(0, 188, 212, 0.3);
  background: rgba(0, 188, 212, 0.05);
  color: #1a1a1a;
  border-radius: 8px;
  font-size: 1rem;
}

.product-quantity small {
  color: var(--gray);
  font-size: 0.75rem;
}

.add-to-cart-btn {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.add-to-cart-btn.in-cart {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid #4caf50;
  color: #4caf50;
  cursor: not-allowed;
}

.add-to-cart-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.product-specs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 188, 212, 0.2);
}

.product-specs h4 {
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
}

.product-specs p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-specs .product-description {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.product-specs .product-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-specs .product-spec-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 188, 212, 0.1);
}

.product-specs .product-spec-item:last-child {
  border-bottom: none;
}

.product-specs .product-spec-item strong {
  color: #1a1a1a;
  font-weight: 600;
  min-width: 120px;
}

.product-specs .product-spec-item span {
  color: var(--gray);
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Cart Modal */
.cart-modal-content,
.my-orders-modal-content {
  width: min(95%, 600px);
  max-height: 85vh;
}

/* My Orders Modal - Desktop */
.my-orders-modal-content {
  width: min(95%, 800px);
}

.orders-list {
  max-height: calc(85vh - 120px);
  overflow-y: auto;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.orders-list::-webkit-scrollbar {
  display: none;
}

.order-card {
  background: #ffffff;
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.15);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.order-info h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  color: #1a1a1a;
  font-weight: 600;
}

.order-date {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray);
}

.order-status-badges {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.status-badge {
  padding: 0.35rem 0.875rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.status-pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-paid {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-processing {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.status-shipped {
  background: rgba(156, 39, 176, 0.2);
  color: #9c27b0;
  border: 1px solid rgba(156, 39, 176, 0.3);
}

.status-delivered {
  background: rgba(76, 175, 80, 0.3);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.4);
}

.status-cancelled {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.payment-pending {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
  border: 1px solid rgba(255, 152, 0, 0.3);
}

.payment-paid {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.payment-failed {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.payment-refunded {
  background: rgba(158, 158, 158, 0.2);
  color: #9e9e9e;
  border: 1px solid rgba(158, 158, 158, 0.3);
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 188, 212, 0.2);
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

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

.order-item-name {
  margin: 0 0 0.25rem 0;
  font-size: 0.95rem;
  color: #1a1a1a;
  font-weight: 500;
  word-wrap: break-word;
}

.order-item-details {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray);
}

.order-item-subtotal {
  margin: 0;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

.order-footer {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 188, 212, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}

.order-total span {
  color: var(--gray);
}

.order-total strong {
  color: var(--accent);
  font-size: 1.25rem;
}

.order-address {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray);
  word-wrap: break-word;
}

.cart-modal h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.cart-items {
  max-height: 50vh;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

.cart-items::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}

.cart-empty {
  text-align: center;
  color: var(--gray);
  padding: 2rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
  background: rgba(0, 188, 212, 0.05);
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item-info h4 {
  margin: 0;
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.3;
}

.cart-item-options {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
}

.cart-item-price {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.item-quantity {
  font-size: 0.85rem;
  color: var(--gray);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.cart-qty-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 8px;
  padding: 0.25rem;
  background: rgba(0, 188, 212, 0.05);
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.cart-qty-btn:hover {
  background: rgba(0, 188, 212, 0.1);
}

.cart-qty-selector span {
  min-width: 30px;
  text-align: center;
  color: #1a1a1a;
  font-size: 0.9rem;
}

.cart-remove-btn {
  padding: 0.4rem 0.8rem;
  background: rgba(255, 68, 68, 0.2);
  border: 1px solid rgba(255, 68, 68, 0.4);
  color: #ff4444;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.cart-remove-btn:hover {
  background: rgba(255, 68, 68, 0.3);
  border-color: #ff4444;
}

.cart-summary {
  border-top: 1px solid rgba(0, 188, 212, 0.2);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--light);
}

.total-price {
  font-size: 1.5rem;
  color: var(--accent);
}

.view-cart-btn {
  animation: slideIn 0.3s ease;
}

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

/* ============================================
   MOBILE FIRST - DESIGN APP-LIKE
   ============================================ */

/* Prevenir zoom e melhorar touch */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
}

/* Tablet e Desktop */
@media (min-width: 901px) {
  .container {
    width: min(1200px, 92%);
  }

  .my-orders-text-desktop {
    display: inline;
  }

  .my-orders-text-mobile {
    display: none;
  }
  }

/* Mobile - Design App-Like */
@media (max-width: 900px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }

  /* Header Mobile - Estilo Profissional */
  .top-bar {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 188, 212, 0.2);
    box-shadow: 0 2px 10px rgba(0, 188, 212, 0.1);
  }

  .nav-wrapper {
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
    flex-wrap: nowrap;
    min-height: 48px;
    max-height: 48px;
    align-items: center;
  }

  .brand {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .brand img {
    height: 28px;
    width: auto;
    flex-shrink: 0;
  }

  .primary-nav {
    display: none;
  }

  .auth-actions {
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: nowrap;
    align-items: center;
  }

  /* Esconder TODOS os botões desktop no mobile */
  .auth-actions .cart-btn-desktop,
  .auth-actions .auth-btn-desktop,
  .auth-actions .my-orders-desktop,
  .auth-actions .logout-desktop,
  .auth-actions .user-greeting {
    display: none !important;
  }

  /* Mostrar apenas ícones no mobile */
  .auth-actions .cart-btn-mobile,
  .auth-actions .auth-icon-mobile {
    display: flex !important;
  }

  /* Mostrar ícones quando autenticado */
  .auth-actions.is-authenticated .auth-icon-mobile {
    display: none !important;
  }

  .auth-actions.is-authenticated .my-orders-btn-mobile,
  .auth-actions.is-authenticated .logout-btn-mobile {
    display: flex !important;
  }

  /* Botões de ícone compactos */
  .icon-btn {
    position: relative;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: background 0.2s ease;
    flex-shrink: 0;
  }

  .icon-btn:active {
    background: rgba(255, 255, 255, 0.1);
  }

  .icon-btn-icon {
    font-size: 1.25rem;
    line-height: 1;
  }

  .icon-btn-text {
    display: none;
  }

  .icon-btn-badge {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    border: 2px solid var(--dark);
  }

  .icon-btn-badge:empty {
    display: none;
  }

  /* Esconder saudação no mobile */
  .auth-actions .user-greeting {
    display: none !important;
  }

  /* Garantir que ícones mobile sejam pequenos e compactos */
  .auth-actions {
    gap: 0.375rem;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
    padding: 0.375rem;
  }

  .icon-btn-icon {
    font-size: 1.1rem;
  }

  /* Hero Section Mobile */
  .hero {
    min-height: calc(100vh - 48px - 70px);
    min-height: calc(100dvh - 48px - 70px); /* Dynamic viewport height */
    margin-top: -48px; /* Compensar padding do main */
  }

  .hero-banner {
    object-fit: cover;
  }

  .hero-overlay {
    padding: 2rem 1rem;
    min-height: calc(100vh - 48px - 70px);
    min-height: calc(100dvh - 48px - 70px);
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding-top: calc(2rem + 48px); /* Espaço para header fixo */
  }

  .hero-content {
    max-width: 100%;
    margin: 0;
    padding-top: 0;
  }

  .hero-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.2;
    margin: 0.5rem 0;
  }

  .hero-content p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-actions {
    margin-top: 1.5rem;
    gap: 0.75rem;
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .cta {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  /* Quick Stats Mobile */
  .quick-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 1rem;
  }

  .quick-stats article {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .quick-stats h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .quick-stats p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  /* Collections Grid Mobile */
  .collections-grid {
    padding: 2rem 1rem;
  }

  .collections-grid header {
    margin-bottom: 1.5rem;
  }

  .collections-grid header p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .collections-grid h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.3;
  }

  .collections-grid .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .collections-grid article {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .collections-grid article h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .collections-grid article p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }

  /* Highlights/Products Grid Mobile */
  .highlights {
    padding: 2rem 1rem;
    margin-top: 1rem;
  }

  .highlights header {
    margin-bottom: 1.5rem;
  }

  .highlights header p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .highlights h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.3;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0;
  }

  .product-card {
    padding: 0.75rem;
    border-radius: 12px;
    gap: 0.5rem;
  }

  .product-image {
    border-radius: 10px;
    aspect-ratio: 1;
  }

  .product-add-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    bottom: 0.4rem;
    right: 0.4rem;
  }

  .product-title {
    font-size: 0.8rem;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .product-sales {
    font-size: 0.7rem;
  }

  .product-rating {
    gap: 0.3rem;
  }

  .product-rating .stars {
    font-size: 0.75rem;
  }

  .product-rating .rating-value {
    font-size: 0.7rem;
  }

  .product-price .current-price {
    font-size: 0.95rem;
  }

  .product-price .old-price {
    font-size: 0.75rem;
  }

  /* About Section Mobile */
  .about {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .about-text > p:first-of-type {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .about h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.3;
    margin: 0.5rem 0 1rem;
  }

  .about-text > p:last-of-type {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .about ul {
    padding-left: 1.2rem;
    font-size: 0.875rem;
  }

  .about-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .about-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .about-card p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  /* Newsletter Mobile */
  .newsletter {
    padding: 2rem 1rem;
  }

  .newsletter header p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .newsletter h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0 1rem;
  }

  .newsletter-form input {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .newsletter-form button {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  /* Footer Mobile */
  footer {
    padding: 2rem 1rem;
    padding-bottom: calc(2rem + 70px); /* Espaço para bottom nav */
    background: var(--black);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-grid img {
    width: 60px;
  }

  .footer-grid p {
    font-size: 0.875rem;
  }

  .footer-grid h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  /* Mostrar bottom nav apenas no mobile */
  .bottom-nav {
    display: flex;
  }
  
  /* Ajustar cores para contraste com bottom nav branco */
  .top-bar {
    background: rgba(255, 255, 255, 0.98);
  }
}

/* Esconder bottom nav no desktop */
@media (min-width: 901px) {
  .bottom-nav {
    display: none;
  }

  .auth-actions .cart-btn-mobile,
  .auth-actions .auth-icon-btn {
    display: none;
  }

  .auth-actions .cart-btn-desktop,
  .auth-actions .auth-btn-desktop,
  .auth-actions .my-orders-desktop,
  .auth-actions .logout-desktop {
    display: inline-flex;
  }

  .icon-btn .icon-btn-text {
    display: inline;
    margin-left: 0.5rem;
    font-size: 0.875rem;
  }

  .icon-btn {
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    color: #1a1a1a;
  }
}

/* Mobile Pequeno (até 480px) */
@media (max-width: 480px) {
  .nav-wrapper {
    padding: 0.625rem 0.875rem;
  }

  .brand img {
    height: 32px;
  }

  .auth-actions .cta {
    padding: 0.45rem 0.875rem;
    font-size: 0.8rem;
  }

  .cart-btn {
    padding: 0.35rem 0.625rem;
  }

  .hero-overlay {
    padding: 1.5rem 0.875rem;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }

  .product-card {
    padding: 0.625rem;
  }

  .product-title {
    font-size: 0.75rem;
  }

  .product-price .current-price {
    font-size: 0.875rem;
  }

  .container {
    padding: 0 0.875rem;
  }

  .quick-stats,
  .collections-grid,
  .highlights,
  .about,
  .newsletter,
  footer {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
}

/* Modais Mobile */
@media (max-width: 900px) {
  .modal {
    padding: 0.5rem;
    align-items: flex-end;
  }

  .modal.is-open {
    animation: fadeIn 0.2s ease;
  }

  .modal-dialog {
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    padding: 1.25rem;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
    margin: 0;
    animation: slideUp 0.3s ease;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .modal-dialog::-webkit-scrollbar {
    display: none;
  }

  .modal form {
    margin-bottom: 1rem;
  }

  .google-auth {
    margin-top: 1rem;
    padding-bottom: 1rem;
    min-height: 60px;
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
  }

  #loginModal .modal-dialog {
    min-height: auto;
  }

  #loginModal .google-auth {
    overflow: visible;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    margin-top: 1rem;
    padding-bottom: 1rem;
    align-items: center !important;
    justify-content: center !important;
  }

  #loginModal .g_id_signin {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 40px;
    margin: 0 auto !important;
  }

  #loginModal .g_id_signin > div {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  #loginModal .g_id_signin iframe {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
    visibility: visible !important;
  }

  #loginModal .g_id_signin div {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    visibility: visible !important;
  }

  #loginModal .g_id_signin button {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
    position: absolute;
    flex-shrink: 0;
  }

  .product-modal .modal-close {
    position: relative;
    top: auto;
    right: auto;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    margin: 0;
  }

  /* Botão fechar já está no header, não precisa esconder nada */

  .modal h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .modal p {
    font-size: 0.875rem;
  }

  /* Product Modal Mobile - TELA CHEIA */
  .product-modal {
    padding: 0;
    align-items: stretch;
  }

  .product-modal .modal-dialog {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height */
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  /* Prevenir overflow horizontal em todos os elementos do modal */
  .product-modal * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-modal-content > * {
    min-width: 0;
  }

  .product-modal-content {
    height: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch; /* Scroll suave no iOS */
    background: var(--dark);
  }

  .product-modal-content::-webkit-scrollbar {
    display: none;
  }

  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .product-detail-left {
    position: relative;
    max-height: none;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.02);
    order: -1; /* Garantir que a imagem fique no topo */
  }

  /* Header fixo com botão fechar - apenas mobile */
  .product-modal-header {
    display: flex; /* Mostrar apenas no mobile */
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 1rem;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 188, 212, 0.2);
    flex-shrink: 0;
  }

  .product-modal-header h2 {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    margin: 0;
    color: var(--light);
    font-weight: 600;
  }

  .product-modal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--light);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1;
  }

  .product-modal-back-icon {
    font-size: 1rem;
    line-height: 1;
  }

  .product-modal-back:active {
    opacity: 0.8;
  }

  .product-gallery {
    flex-direction: column;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
  }

  .product-image-back {
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.35rem 0.65rem;
  }

  .product-gallery-thumbnails {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: auto;
    max-width: calc(100% - 2rem);
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    z-index: 10;
    border: 1px solid rgba(0, 188, 212, 0.2);
  }

  .product-gallery-thumbnails::-webkit-scrollbar {
    display: none;
  }

  .product-gallery-thumbnails .thumbnail {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    box-sizing: border-box;
    border-radius: 6px;
  }

  .product-gallery-main {
    width: 100%;
    min-height: 300px;
    max-height: 60vh;
    box-sizing: border-box;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-gallery-main img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .product-detail-right {
    max-height: none;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
    flex: 1;
  }

  .product-detail-title {
    font-size: 1.25rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: var(--light);
  }

  .product-detail-rating {
    gap: 0.4rem;
    flex-wrap: wrap;
    width: 100%;
  }

  .product-detail-rating .stars {
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .product-detail-rating .rating-value {
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .product-detail-rating .rating-count {
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .product-detail-sales {
    font-size: 0.8rem;
    margin: 0;
    word-wrap: break-word;
  }

  .bundle-deal {
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .bundle-label {
    font-size: 0.75rem;
    padding: 0.2rem 0.625rem;
    display: inline-block;
    margin-bottom: 0.5rem;
  }

  .product-detail-price {
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-items: baseline;
  }

  .current-price-large {
    font-size: 1.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .old-price-large {
    font-size: 1rem;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .bundle-note,
  .tax-note {
    font-size: 0.75rem;
    margin: 0.5rem 0 0 0;
    word-wrap: break-word;
    line-height: 1.4;
  }

  .product-options {
    gap: 0.625rem;
    width: 100%;
    box-sizing: border-box;
  }

  .product-option-group {
    width: 100%;
    box-sizing: border-box;
  }

  .product-option-group label {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.4rem;
  }

  .option-buttons {
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .option-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
    max-width: calc(50% - 0.25rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-shipping-info {
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .product-shipping-info h4 {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
  }

  .product-shipping-info p {
    font-size: 0.8rem;
    margin: 0.5rem 0;
    word-wrap: break-word;
    line-height: 1.4;
  }

  .fast-delivery-benefits {
    margin-top: 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }

  .fast-delivery-benefits h5 {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }

  .fast-delivery-benefits ul {
    margin: 0.5rem 0;
    padding-left: 1.2rem;
  }

  .fast-delivery-benefits li {
    font-size: 0.8rem;
    margin: 0.4rem 0;
    word-wrap: break-word;
    line-height: 1.4;
  }

  .return-policy {
    font-size: 0.8rem;
    margin-top: 0.75rem;
    word-wrap: break-word;
  }

  .product-quantity {
    width: 100%;
    box-sizing: border-box;
  }

  .product-quantity label {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.4rem;
  }

  .quantity-selector {
    width: fit-content;
    box-sizing: border-box;
  }

  .product-specs {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .product-specs h4 {
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
  }

  .product-specs p {
    font-size: 0.85rem;
    word-wrap: break-word;
    line-height: 1.5;
  }

  .product-specs .product-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .product-specs .product-specs-list {
    gap: 0.625rem;
  }

  .product-specs .product-spec-item {
    font-size: 0.85rem;
    padding: 0.4rem 0;
    flex-direction: column;
    gap: 0.25rem;
  }

  .product-specs .product-spec-item strong {
    min-width: auto;
    font-size: 0.9rem;
  }

  .product-specs .product-spec-item span {
    font-size: 0.85rem;
  }

  .add-to-cart-btn,
  .view-cart-btn {
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0.5rem;
    font-weight: 600;
    min-height: 52px;
  }

  /* Sticky footer para botões de ação */
  .product-actions-sticky {
    position: sticky;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem;
    border-top: 1px solid rgba(0, 188, 212, 0.2);
    margin-top: auto;
    z-index: 50;
  }

  /* My Orders Modal Mobile */
  .my-orders-modal-content {
    width: 100%;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    padding: 1.25rem;
  }

  .orders-list {
    max-height: calc(90vh - 120px);
    overflow-y: auto;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .orders-list::-webkit-scrollbar {
    display: none;
  }

  .order-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .order-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: var(--light);
    font-weight: 600;
  }

  .order-date {
    margin: 0;
    font-size: 0.8rem;
    color: var(--gray);
  }

  .order-status-badges {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-end;
  }

  .status-badge {
    padding: 0.3rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
  }

  .status-paid {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
  }

  .status-processing {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
  }

  .status-shipped {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
    border: 1px solid rgba(156, 39, 176, 0.3);
  }

  .status-delivered {
    background: rgba(76, 175, 80, 0.3);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.4);
  }

  .status-cancelled {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
  }

  .payment-pending {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
  }

  .payment-paid {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
  }

  .payment-failed {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
  }

  .payment-refunded {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    border: 1px solid rgba(158, 158, 158, 0.3);
  }

  .order-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .order-item-name {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    color: var(--light);
    font-weight: 500;
    word-wrap: break-word;
  }

  .order-item-details {
    margin: 0;
    font-size: 0.8rem;
    color: var(--gray);
  }

  .order-item-subtotal {
    margin: 0;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    flex-shrink: 0;
  }

  .order-footer {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
  }

  .order-total span {
    color: var(--gray);
  }

  .order-total strong {
    color: var(--accent);
    font-size: 1.1rem;
  }

  .order-address {
    margin: 0;
    font-size: 0.8rem;
    color: var(--gray);
    word-wrap: break-word;
  }

  /* Cart Modal Mobile */
  .cart-modal-content {
    width: 100%;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    padding: 1.25rem;
  }

  .cart-items {
    max-height: 50vh;
    margin-bottom: 1rem;
  }

  .cart-item {
    flex-direction: row;
    padding: 0.875rem;
    gap: 0.75rem;
    align-items: center;
  }

  .cart-item img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

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

  .cart-item-info h4 {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .cart-item-options {
    font-size: 0.75rem;
  }

  .item-price {
    font-size: 0.9rem;
  }

  .item-quantity {
    font-size: 0.8rem;
  }

  .cart-item-actions {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
  }

  .cart-qty-selector {
    padding: 0.2rem;
  }

  .cart-qty-btn {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }

  .cart-remove-btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
  }

  .cart-total {
    font-size: 1.1rem;
    margin-bottom: 0.875rem;
  }

  .total-price {
    font-size: 1.3rem;
  }

  /* Payment Modal Mobile */
  .payment-modal-content {
    width: 100%;
    max-height: 95vh;
    border-radius: 20px 20px 0 0;
    padding: 1.25rem;
  }

  #deliveryForm input,
  #deliveryForm select {
    padding: 0.875rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  #deliveryForm label {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .payment-method-btn {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .payment-method-btn h4 {
    font-size: 1rem;
  }

  .payment-method-btn p {
    font-size: 0.85rem;
  }

  #qrCodeContainer {
    padding: 0.75rem;
    margin: 1rem 0;
  }

  #qrCodeImage {
    max-width: 250px;
  }

  .payment-total {
    padding: 0.875rem;
  }

  #pixTotal,
  #cardTotal {
    font-size: 1.5rem;
  }
}

/* Melhorias de Touch para Mobile */
@media (max-width: 900px) {
  button,
  .cta,
  .product-card,
  .cart-item,
  .option-btn,
  .payment-method-btn {
    min-height: 44px; /* Tamanho mínimo recomendado para touch */
  }

  input,
  select,
  textarea {
    min-height: 44px;
    font-size: 16px; /* Previne zoom no iOS */
  }

  a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Payment Modal Styles */
.payment-modal-content {
  width: min(95%, 600px);
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

.payment-modal-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}

/* Customer Data Form Styles */
#customerDataForm {
  max-width: 100%;
}

#customerDataForm h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: center;
}

#deliveryForm input,
#deliveryForm select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

#deliveryForm input:focus,
#deliveryForm select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
}

#deliveryForm select {
  color: #000000;
  background: rgba(255, 255, 255, 0.95);
}

#deliveryForm select option {
  background: var(--dark);
  color: var(--light);
}

#deliveryForm label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--light);
  font-size: 0.9rem;
}

.payment-modal h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: center;
}

.payment-info {
  margin-top: 1.5rem;
}

.payment-info p {
  margin-bottom: 1rem;
  text-align: center;
  color: var(--gray);
}

#qrCodeContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  margin: 1.5rem 0;
}

#qrCodeImage {
  max-width: 100%;
  height: auto;
}

.pix-code-container {
  margin: 1.5rem 0;
}

.pix-code-container label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--light);
}

.pix-code-container input,
.pix-code-container textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-family: monospace;
  font-size: 0.85rem;
}

.pix-code-container textarea {
  resize: none;
  word-break: break-all;
  line-height: 1.4;
}

.pix-code-container input:focus,
.pix-code-container textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.payment-status {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-align: center;
}

.payment-status p {
  margin: 0;
  color: var(--gray);
}

@media (max-width: 768px) {
  .payment-modal-content {
    width: 95%;
    padding: 1rem;
  }

  #qrCodeContainer {
    padding: 0.5rem;
  }

  .pix-code-container {
    margin: 1rem 0;
  }

  #deliveryForm {
    gap: 0.75rem;
  }

  #deliveryForm > div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }
}

/* Payment Method Selection Styles */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-method-btn {
  padding: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  color: var(--light);
  font-family: inherit;
}

.payment-method-btn:hover {
  border-color: var(--accent);
  background: rgba(125, 211, 255, 0.1);
  transform: translateY(-2px);
}

.payment-method-btn:active {
  transform: translateY(0);
}

.payment-method-btn h4 {
  margin: 0 0 0.5rem 0;
  color: var(--light);
}

.payment-total {
  text-align: center;
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* Error modal buttons alignment */
#paymentError {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#paymentError > div {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 1rem;
}

#paymentError button {
  min-width: 140px;
}

/* Payment Status Result Styles */
#paymentStatusResult {
  text-align: center;
  padding: 2rem;
}

#paymentSuccess,
#paymentRejected {
  animation: fadeIn 0.3s ease-in;
}

#paymentSuccess h3 {
  color: #4caf50;
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

#paymentRejected h3 {
  color: #d32f2f;
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .payment-methods {
    gap: 0.75rem;
  }

  .payment-method-btn {
    padding: 1rem;
  }
}

/* ============================================
   SISTEMA DE NOTIFICAÇÕES
   ============================================ */
.notification-container {
  position: fixed;
  top: 80px;
  right: 1rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  width: calc(100% - 2rem);
  pointer-events: none;
}

@media (max-width: 900px) {
  .notification-container {
    top: 60px;
    right: 0.75rem;
    left: 0.75rem;
    max-width: none;
    width: auto;
  }
}

.notification {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: #ffffff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 188, 212, 0.2);
  box-shadow: 0 8px 32px rgba(0, 188, 212, 0.2);
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  color: #1a1a1a;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification-icon {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.notification-success {
  border-left: 4px solid #4caf50;
}

.notification-success .notification-icon {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.notification-error {
  border-left: 4px solid #f44336;
}

.notification-error .notification-icon {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

.notification-info {
  border-left: 4px solid var(--accent);
}

.notification-info .notification-icon {
  background: rgba(0, 188, 212, 0.2);
  color: var(--accent);
}

.notification-message {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1a1a1a;
}

.notification-close {
  background: transparent;
  border: none;
  color: rgba(26, 26, 26, 0.6);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  background: rgba(0, 188, 212, 0.1);
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .notification {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
  
  .notification-icon {
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
  }
  
  .notification-close {
    font-size: 1.25rem;
    width: 20px;
    height: 20px;
  }
}

/* ============= BANNER DOWNLOAD APP ANDROID ============= */
.app-download-banner {
  padding-top: 60px;
  padding-bottom: 40px;
  background: #ffffff;
}

.app-download-banner__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.app-download-banner__content span {
  display: inline-block;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.app-download-banner__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--accent);
  margin: 0.5rem 0 0.75rem;
}

.app-download-banner__content p {
  color: rgba(26, 26, 26, 0.75);
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

.app-download-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.app-download-banner__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-download-image {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

/* Mobile - Banner Download App */
@media (max-width: 900px) {
  .app-download-banner {
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .app-download-banner__grid {
    gap: 2rem;
  }

  .app-download-banner__content {
    text-align: center;
  }

  .app-download-banner__actions {
    justify-content: center;
  }
}

