@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-blue: #3b82f6;
  /* Azul do logotipo oficial */
  --primary-blue-hover: #2563eb;
  --accent-purple: #8b5cf6;
  /* Roxo do logotipo oficial */
  --accent-purple-hover: #7c3aed;
  --secondary-yellow: #ffc107;
  /* Amarelo vibrante do botão de busca */
  --secondary-yellow-hover: #e0a800;
  --header-bg: #140026;
  /* Roxo escuro/Deep Violet do header na Imagem 1 */
  --dark-bg: #140026;
  /* Roxo escuro para o cabeçalho do admin */
  --light-bg: #f8fafc;
  --white: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --success-color: #22c55e;
  --danger-color: #ef4444;
  --card-shadow: 0 4px 20px -2px rgba(148, 163, 184, 0.12), 0 2px 8px -1px rgba(148, 163, 184, 0.08);
  --hover-shadow: 0 20px 25px -5px rgba(148, 163, 184, 0.15), 0 10px 10px -5px rgba(148, 163, 184, 0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* Header styles */
.top-discount-bar {
  background: linear-gradient(90deg, #004ed6 0%, #073484 50%, #800be6 100%);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-header {
  background: linear-gradient(90deg, #0b1a52 0%, #30085a 100%);
  color: var(--white);
  padding: 15px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-container a {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 400;
  letter-spacing: 1px;
}

.search-bar-container {
  flex: 1.5;
  max-width: 750px;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 50px;
  padding: 4px 4px 4px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-input {
  width: 100%;
  border: none;
  padding: 8px 10px;
  border-radius: 50px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.search-button {
  background: var(--secondary-yellow);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  transition: var(--transition);
  flex-shrink: 0;
}

.search-button:hover {
  background: var(--secondary-yellow-hover);
  transform: scale(1.05);
}

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

.header-action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.header-action-item:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.action-icon {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.action-text {
  font-size: 0.85rem;
  line-height: 1.2;
}

.action-text strong {
  display: block;
  font-size: 0.9rem;
}

/* Category menu bar */
.category-menu-bar {
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-color);
  padding: 0 5%;
}

.category-list {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

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

.category-item-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.category-item-link:hover,
.category-item-link.active {
  background-color: rgba(139, 92, 246, 0.08);
  color: var(--accent-purple);
}

.category-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

/* Home slider & banner */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 20px;
}

@keyframes floatBanner {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-banner-link {
  display: block;
  margin: 0 auto 40px auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 0, 38, 0.15);
  transition: var(--transition);
  animation: floatBanner 4s ease-in-out infinite;
}

.hero-banner-link:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(20, 0, 38, 0.28);
  animation-play-state: paused;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  max-width: 550px;
  z-index: 1;
}

.hero-tag {
  background-color: var(--secondary-yellow);
  color: #1e293b;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 25px;
}

.hero-btn {
  background-color: var(--secondary-yellow);
  color: #1e293b;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.hero-image-wrapper {
  position: relative;
  max-width: 450px;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-md);
  transform: rotate(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Info badges section */
.info-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.info-badge-card {
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-bottom-width: 4px !important;
  transition: var(--transition);
}

.info-badge-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hover-shadow);
}

.info-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Card-specific borders and circle colors (Mockup Imagem 1) */
#badgeDigital {
  border-bottom: 4px solid #3b82f6 !important;
}

#badgeDigital .info-badge-icon {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

#badgeParcelas {
  border-bottom: 4px solid #0b1a52 !important;
}

#badgeParcelas .info-badge-icon {
  background-color: rgba(11, 26, 82, 0.1);
  color: #0b1a52;
}

#badgeDesconto {
  border-bottom: 4px solid #f59e0b !important;
}

#badgeDesconto .info-badge-icon {
  background-color: rgba(245, 158, 11, 0.15);
  color: #d97706;
}

#badgeSeguro {
  border-bottom: 4px solid #8b5cf6 !important;
}

#badgeSeguro .info-badge-icon {
  background-color: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.info-badge-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.info-badge-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sections title */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  margin-top: 20px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding-left: 15px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 24px;
  background-color: var(--primary-blue);
  border-radius: 2px;
}

.section-action-link {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.section-action-link:hover {
  text-decoration: underline;
}

/* Product catalog grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

/* Product Card */
.product-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.product-card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* 1:1 Aspect Ratio */
  background-color: #f1f5f9;
  overflow: hidden;
}

.product-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-badges-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  z-index: 5;
}

.format-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 3px;
  color: var(--white);
  text-transform: uppercase;
}

.format-cdr {
  background-color: #1e824c;
}

.format-ai {
  background-color: #e67e22;
}

.format-pdf {
  background-color: #c0392b;
}

.format-png {
  background-color: #7f8c8d;
}

.product-card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 5px;
}

.product-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
}

.product-card-price-container {
  display: flex;
  flex-direction: column;
}

.product-card-price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.product-card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.product-card-buy-btn {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 15px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.product-card-buy-btn:hover {
  background: linear-gradient(135deg, var(--primary-blue-hover) 0%, var(--accent-purple-hover) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* Custom Art Banner CTA */
.custom-art-cta-banner {
  background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--secondary-yellow-hover) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px 0;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
  color: #1e293b;
}

.custom-art-text {
  max-width: 700px;
}

.custom-art-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.custom-art-desc {
  font-size: 1rem;
  opacity: 0.9;
}

.custom-art-btn {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 15px 30px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.custom-art-btn:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
}

/* Carousel controls */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* Footer Section */
.main-footer {
  background: linear-gradient(180deg, #090312 0%, #15002b 100%);
  color: #cbd5e1;
  padding: 50px 5% 20px;
  margin-top: 60px;
  border-top: 1px solid #2e1052;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
}

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

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

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-link-item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #1e1b4b;
  border: 1px solid #312e81;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-link-item:hover {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #1e293b;
  font-size: 0.8rem;
  color: #64748b;
}

/* Category Filter Layout (catalog) */
.catalog-layout {
  display: flex;
  gap: 30px;
}

.catalog-sidebar {
  width: 280px;
  flex-shrink: 0;
}

.catalog-main {
  flex: 1;
}

.filter-box {
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.filter-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
}

.filter-list {
  list-style: none;
}

.filter-list-item {
  margin-bottom: 10px;
}

.filter-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.filter-link:hover,
.filter-link.active {
  background-color: rgba(0, 86, 179, 0.05);
  color: var(--primary-blue);
  font-weight: 600;
}

.catalog-header-bar {
  background-color: var(--white);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.catalog-results-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sort-select-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-select-wrapper label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sort-select {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  cursor: pointer;
}

/* Product Detail & Checkout Layout */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.product-gallery-container {
  display: flex;
  gap: 15px;
  max-width: 600px;
  width: 100%;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
  flex-shrink: 0;
  max-height: 500px;
  overflow-y: auto;
}

.gallery-thumbnails::-webkit-scrollbar {
  width: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 4px;
}

.thumbnail-btn {
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 2px;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
}

.thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnail-btn.active {
  border-color: var(--primary-blue);
}

.gallery-main-image-wrapper {
  flex: 1;
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 10px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-height: 500px;
  overflow: hidden;
}

.gallery-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease;
}

.gallery-main-image-wrapper:hover .gallery-main-img {
  transform: scale(1.02);
}

.product-info-panel {
  display: flex;
  flex-direction: column;
}

.product-detail-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.rating-stars-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.stars-row {
  display: flex;
  color: var(--secondary-yellow);
}

.stars-row svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.rating-count-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-detail-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.product-features-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.feature-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #166534;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-badge-item svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
}

.product-specs-list {
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
  list-style: none;
}

.product-specs-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.product-specs-list li svg {
  width: 16px;
  height: 16px;
  color: var(--primary-blue);
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* Tabs: Descrição, Avaliações, Dúvidas */
.tabs-navigation {
  display: flex;
  border-bottom: 2px solid var(--border-color);
  margin-top: 40px;
  margin-bottom: 25px;
  gap: 20px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--primary-blue);
}

.tab-btn.active {
  color: var(--primary-blue);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 2px;
}

.tab-content {
  display: none;
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  margin-bottom: 40px;
}

.tab-content.active {
  display: block;
}

/* Form Styles */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--light-bg);
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
  color: var(--white);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-blue-hover) 0%, var(--accent-purple-hover) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

/* Review Form & List */
.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.review-stars {
  display: flex;
  color: var(--secondary-yellow);
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-comment {
  font-size: 0.9rem;
  color: #334155;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.star-rating-selector {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}

.star-rating-radio {
  display: none;
}

.star-rating-label {
  cursor: pointer;
  color: #cbd5e1;
  transition: var(--transition);
}

.star-rating-label svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.star-rating-radio:checked~.star-rating-label,
.star-rating-label:hover,
.star-rating-label:hover~.star-rating-label {
  color: var(--secondary-yellow);
}

/* Questions Q&A style */
.questions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.question-item {
  background-color: var(--light-bg);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--text-muted);
}

.question-item.answered {
  border-left-color: var(--primary-blue);
}

.question-text {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.question-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.answer-box {
  background-color: rgba(0, 86, 179, 0.04);
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 86, 179, 0.08);
  margin-top: 10px;
}

.answer-text {
  font-size: 0.9rem;
  color: #1e293b;
}

.answer-label {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--primary-blue);
  text-transform: uppercase;
  margin-bottom: 3px;
}

/* Transparent Checkout Page Layout */
.checkout-wrapper {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 25px;
  box-shadow: var(--card-shadow);
  margin-top: 20px;
}

.checkout-title {
  font-weight: 700;
  font-size: 1.15rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.payment-method-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.payment-method-btn {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.payment-method-btn.active {
  border-color: var(--primary-blue);
  background-color: rgba(0, 86, 179, 0.05);
  color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.payment-tab-content {
  display: none;
}

.payment-tab-content.active {
  display: block;
}

/* Polling & Success Page UI */
.success-page-container {
  max-width: 650px;
  margin: 40px auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  text-align: center;
}

.success-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success-color);
  margin: 0 auto 20px;
}

.success-icon-wrapper svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
}

.pix-qr-code-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 20px auto;
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: var(--radius-md);
  background-color: var(--white);
  display: block;
}

.copia-cola-container {
  display: flex;
  margin: 15px 0;
  gap: 8px;
}

.copia-cola-input {
  flex: 1;
  padding: 10px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-family: monospace;
}

.copy-btn {
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 15px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.copy-btn:hover {
  background-color: var(--primary-blue-hover);
}

.pix-polling-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 86, 179, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary-blue);
  animation: spin 1s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.pix-polling-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 15px 0;
}

/* Member Area (Meus Downloads) */
.members-lookup-card {
  max-width: 500px;
  margin: 50px auto;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 35px;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.downloads-list-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
}

.downloads-list-table th,
.downloads-list-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.downloads-list-table th {
  background-color: var(--light-bg);
  font-weight: 700;
}

.download-action-btn {
  background-color: var(--success-color);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.download-action-btn:hover {
  opacity: 0.9;
}

/* Admin Dashboard layout */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 80vh;
  gap: 30px;
}

.admin-sidebar {
  width: 260px;
  background-color: #0b0f19;
  border-radius: var(--radius-lg);
  border: 1px solid #1e293b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: flex-start;
}

.admin-sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-menu-item {
  margin: 0;
}

.admin-menu-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.admin-menu-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
}

.admin-menu-link:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.05);
}

.admin-menu-link.active {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.admin-main-panel {
  flex: 1;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  padding: 30px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.admin-table th,
.admin-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.admin-table th {
  background-color: var(--light-bg);
  font-weight: 700;
}

.admin-badge-status {
  padding: 4px 8px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-approved {
  background-color: rgba(34, 197, 94, 0.1);
  color: #166534;
}

.status-pending {
  background-color: rgba(234, 179, 8, 0.1);
  color: #854d0e;
}

.status-rejected {
  background-color: rgba(239, 68, 68, 0.1);
  color: #991b1b;
}

.admin-action-btn-group {
  display: flex;
  gap: 8px;
}

.admin-btn {
  border: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.admin-btn-edit {
  background-color: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
}

.admin-btn-edit:hover {
  background-color: #3b82f6;
  color: var(--white);
}

.admin-btn-delete {
  background-color: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
}

.admin-btn-delete:hover {
  background-color: #ef4444;
  color: var(--white);
}

.admin-btn-approve {
  background-color: rgba(34, 197, 94, 0.1);
  color: #166534;
}

.admin-btn-approve:hover {
  background-color: #22c55e;
  color: var(--white);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    flex-direction: column;
  }

  .catalog-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .main-header {
    flex-wrap: wrap;
    padding: 10px 15px;
  }

  .search-bar-container {
    order: 3;
    width: 100%;
    max-width: 100%;
  }

  .header-actions {
    gap: 15px;
  }

  .action-text {
    display: none;
  }

  .hero-banner {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .hero-image-wrapper {
    max-width: 250px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 15px;
  }

  .product-gallery-container {
    flex-direction: column-reverse;
  }

  .gallery-thumbnails {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
  }

  .thumbnail-btn {
    width: 60px;
  }

  .admin-layout {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
  }
}