﻿:root {
  --primary-color: #000;
  --secondary-color: #666;
  --border-color: #e5e5e5;
  --hover-color: #f5f5f5;
  --green-color: #22c55e;
}

/* Aplicando fonte Manrope 500 em todos os elementos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary-color);
  padding-top: 112px;
  transition: padding-top 0.3s ease;
}

body.banners-hidden {
  padding-top: 72px;
}

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

.promo-banners-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 98;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}

.promo-banners-container.scrolled {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  background: white;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  transition: top 0.3s ease;
}

.header.banners-hidden {
  top: 0;
}

.frete-banner {
  background: #2a2a2a;
  color: #e5e5e5;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frete-content {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}

.frete-text {
  letter-spacing: 0.3px;
  color: #e5e5e5;
}

.frete-highlight {
  color: #22c55e;
  font-weight: 600;
}

.countdown-banner {
  display: none;
}

.countdown-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.time-value {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.time-label {
  font-size: 9px;
  color: #ffffff;
  text-transform: lowercase;
  transition: all 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}

.time-separator {
  font-size: 16px;
  font-weight: 600;
  margin: 0 4px;
  padding-bottom: 10px;
}

.promo-code-btn {
  background: transparent;
  color: white;
  border: 2px dashed white;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.promo-code-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.promo-link {
  color: white;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.3s ease;
}

.promo-link:hover {
  opacity: 0.8;
}

.promo-link .arrow {
  font-size: 16px;
}

.promo-text {
  color: var(--green-color);
  font-weight: 500;
}

.header-main {
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
  align-items: center;
}

.logo img {
  height: 36px;
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 13px;
  white-space: nowrap;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.main-nav a:hover {
  text-decoration: underline;
}

.main-nav .outlet {
  color: #e74c3c;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  font-size: 14px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn img {
  display: block;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: #EA0029;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}

.breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--secondary-color);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

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

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}

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

.main-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pix-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #e4f6ed;
  color: #539c2e;
  padding: 4px 16px;
  border-radius: 4px;
  z-index: 10;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: none;
}

.pix-badge-text {
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  display: inline;
}

.pix-badge-method {
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  display: inline;
}

.discount-badge-47 {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: #000;
  color: white;
  padding: 6px 10px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  min-width: 50px;
}

.discount-number {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
}

.discount-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #ff0000;
  letter-spacing: 1px;
  margin-top: 2px;
  font-family: "Manrope", sans-serif;
}

.carousel-indicators {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicator.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

/* Added carousel arrow button styles */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  opacity: 0;
  transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.main-image:hover .carousel-prev,
.main-image:hover .carousel-next {
  opacity: 1;
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.zoom-overlay.active {
  display: flex;
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zoom-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

#zoomImage {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 500px;
}

.product-info h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.wishlist-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-btn img {
  display: block;
}

.shirt-selection-container {
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: transparent;
}

.shirt-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.selection-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.selection-group:last-child {
  margin-bottom: 0;
}

.selection-label {
  font-size: 14px;
  color: var(--secondary-color);
}

.selection-label span {
  color: var(--primary-color);
  font-weight: 500;
}

.color-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.color-btn {
  width: 36px;
  height: 36px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  background: white;
  padding: 4px;
  overflow: hidden;
}

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

.color-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.size-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.size-btn {
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  font-size: 14px;
}

.size-btn:hover {
  background: var(--hover-color);
}

.size-btn.active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
}

.price-section {
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.price-main {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.price-old {
  font-size: 16px;
  color: var(--secondary-color);
  text-decoration: line-through;
}

.price-current {
  font-size: 32px;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.price-installment {
  font-size: 14px;
  color: var(--secondary-color);
}

.savings {
  color: #22c55e;
  font-weight: 500;
}

.cart-section {
  display: flex;
  gap: 12px;
}

.add-to-cart-btn {
  flex: 1;
  background: #38ab6b;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-to-cart-btn:hover {
  background: #2d8a56;
}

.additional-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  padding: 8px 0;
}

.info-link img {
  display: block;
}

.info-link:hover {
  text-decoration: underline;
}

.info-link .chevron {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.info-link.active .chevron {
  transform: rotate(180deg);
}

.size-table-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.size-table-container.active {
  max-height: 400px;
  margin-top: 16px;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.size-table thead {
  background: var(--primary-color);
  color: white;
}

.size-table th,
.size-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
}

.size-table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

.size-table tbody tr:last-child {
  border-bottom: none;
}

.size-table tbody tr:hover {
  background: var(--hover-color);
}

.size-table td:first-child {
  font-weight: 600;
}

.tabs {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.tab-list {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--border-color);
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tab-btn.active {
  border-bottom-color: var(--primary-color);
  font-weight: 600;
}

.tab-content {
  padding: 20px 0;
}

.tab-panel {
  display: none;
}

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

.tab-panel p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--secondary-color);
}

/* Reviews Section */
.reviews-section {
  margin-top: 40px;
  padding: 32px;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

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

.reviews-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary-color);
  font-family: "Manrope", sans-serif;
}

.sort-reviews-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  background: white;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-reviews-btn:hover {
  border-color: var(--primary-color);
}

.sort-reviews-btn svg {
  width: 16px;
  height: 16px;
}

.reviews-summary {
  margin-bottom: 32px;
}

.stars-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.star {
  font-size: 20px;
  color: #ddd;
  line-height: 1;
}

.star.filled {
  color: #EA0029;
}

.average-rating {
  font-size: 14px;
  color: var(--secondary-color);
}

.reviews-list {
  margin-bottom: 24px;
}

.review-item {
  margin-bottom: 24px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars .star {
  font-size: 16px;
}

.review-product {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--primary-color);
}

.product-emoji {
  font-size: 16px;
}

.review-meta {
  font-size: 13px;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.review-divider {
  height: 1px;
  background: var(--border-color);
  margin-bottom: 16px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--primary-color);
}

.reviews-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.reviews-count {
  font-size: 14px;
  color: var(--secondary-color);
}

.reviews-nav-buttons {
  display: flex;
  gap: 8px;
}

.nav-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-color);
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover:not(:disabled) {
  border-color: var(--primary-color);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.nav-btn svg {
  width: 16px;
  height: 16px;
}

.write-review-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}

.write-review-btn:hover {
  background: #333;
}

.mobile-search {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border-color);
  margin-top: 12px;
}

.mobile-search-input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

.mobile-search-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.mobile-search svg {
  flex-shrink: 0;
}

.similar-products {
  padding: 60px 0;
  background: white;
}

.similar-products-title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.similar-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card[onclick] {
  cursor: pointer;
}

.product-card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 8px 8px 0 0;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-card-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 12px 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(5px);
  overflow-y: auto;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.product-card:hover .product-card-overlay {
  opacity: 1;
  visibility: visible;
}

.product-card-overlay-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: 100%;
  justify-content: center;
  overflow-y: auto;
}

.product-card-overlay-colors {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card-overlay-color-btn {
  width: 30px;
  height: 30px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  background: white;
  padding: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.product-card-overlay-color-btn:hover {
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.product-card-overlay-color-btn.active {
  border-color: var(--primary-color);
  border-width: 3px;
}

.product-card-overlay-color-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.product-card-overlay-sizes {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card-overlay-size-btn {
  padding: 5px 9px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 34px;
  text-align: center;
}

.product-card-overlay-size-btn:hover {
  background: var(--hover-color);
  border-color: var(--primary-color);
}

.product-card-overlay-size-btn.active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .product-card-overlay {
    top: 0;
    bottom: 0;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.5);
  }

  .product-card-overlay-content {
    gap: 6px;
  }

  .product-card-overlay-color-btn {
    width: 28px;
    height: 28px;
  }

  .product-card-overlay-size-btn {
    padding: 4px 7px;
    font-size: 11px;
    min-width: 30px;
  }

  .product-card-overlay-colors {
    gap: 6px;
  }

  .product-card-overlay-sizes {
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .product-card-overlay {
    top: 0;
    bottom: 0;
    padding: 8px 6px;
    background: rgba(255, 255, 255, 0.5);
  }

  .product-card-overlay-content {
    gap: 5px;
  }

  .product-card-overlay-color-btn {
    width: 24px;
    height: 24px;
  }

  .product-card-overlay-size-btn {
    padding: 3px 6px;
    font-size: 10px;
    min-width: 28px;
  }

  .product-card-overlay-colors {
    gap: 4px;
  }

  .product-card-overlay-sizes {
    gap: 3px;
  }
}

.wishlist-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s;
  color: rgba(255, 255, 255, 0.8);
}

.wishlist-icon:hover {
  transform: scale(1.1);
  color: rgba(255, 255, 255, 1);
}

.out-of-stock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.out-of-stock-overlay span {
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-card-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card-info h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.product-card-info h3:hover {
  color: var(--hover-color);
}
  min-height: 34px;
  display: flex;
  align-items: flex-start;
}

.product-card-prices {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card-prices .old-price {
  font-size: 14px;
  color: var(--secondary-color);
  text-decoration: line-through;
}

.product-card-prices .new-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.product-card-installment {
  font-size: 12px;
  color: var(--secondary-color);
  margin-top: 4px;
  line-height: 1.2;
}

.add-to-cart-similar-btn {
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  background: #38AB6B;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.add-to-cart-similar-btn:hover {
  background: #2d8a56;
}

/* Similar Products Selection */
.similar-product-selection {
  margin-top: 8px;
  padding: 8px;
  background: var(--light-gray);
  border-radius: 4px;
  margin-bottom: 6px;
  display: none; /* Escondido por padrão, só aparece se necessário */
}

.similar-selection-label {
  font-size: 11px;
  color: var(--secondary-color);
  margin-bottom: 4px;
  line-height: 1.3;
}

.similar-selected-color,
.similar-selected-size {
  color: var(--primary-color);
  font-weight: 600;
}

.similar-color-options {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.similar-color-btn {
  width: 28px;
  height: 28px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  background: white;
  padding: 2px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  flex-shrink: 0;
}

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

.similar-color-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.similar-size-options {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.similar-size-btn {
  padding: 4px 8px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  font-size: 11px;
  transition: all 0.3s ease;
  min-width: 28px;
  text-align: center;
}

.similar-size-btn:hover {
  background: var(--hover-color);
}

.similar-size-btn.active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
}

/* Carrinho Lateral */
.cart-sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-sidebar-overlay.active {
  display: block;
  opacity: 1;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: white;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
}

.cart-sidebar.active {
  right: 0;
}

.cart-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}

.cart-sidebar-header h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.close-cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: opacity 0.3s ease;
}

.close-cart-btn:hover {
  opacity: 0.7;
}

.cart-sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty-message {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.cart-empty-message.active {
  display: block;
}

.cart-empty-message p {
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 24px;
}

.continue-shopping-link {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.continue-shopping-link:hover {
  background: #333;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-sidebar-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: white;
}

.cart-sidebar-item-image {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.cart-sidebar-item-images-dual {
  display: flex;
  gap: 4px;
  width: 80px;
  height: 100px;
  flex-shrink: 0;
}

.cart-sidebar-item-images-dual .cart-sidebar-item-image {
  width: 38px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-sidebar-item-images-dual video {
  width: 38px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-sidebar-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-sidebar-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.4;
}

.cart-sidebar-item-variant {
  font-size: 12px;
  color: var(--secondary-color);
}

.cart-sidebar-item-price-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.cart-sidebar-item-old-price {
  font-size: 11px;
  color: var(--secondary-color);
  text-decoration: line-through;
}

.cart-sidebar-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.cart-sidebar-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-sidebar-quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 4px;
}

.cart-sidebar-quantity-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--primary-color);
  transition: background 0.3s ease;
}

.cart-sidebar-quantity-btn:hover {
  background: var(--hover-color);
}

.cart-sidebar-quantity-value {
  min-width: 30px;
  text-align: center;
  font-size: 14px;
}

.cart-sidebar-remove-btn {
  background: none;
  border: none;
  color: var(--secondary-color);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.cart-sidebar-remove-btn:hover {
  color: var(--primary-color);
}

.cart-sidebar-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: white;
  display: none;
}

.cart-sidebar-footer.active {
  display: block;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #38AB6B;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  transition: background 0.3s ease;
}

.checkout-btn:hover {
  background: #2d8a56;
}

.continue-shopping-btn-sidebar {
  width: 100%;
  padding: 12px;
  background: white;
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.continue-shopping-btn-sidebar:hover {
  background: var(--hover-color);
}

@media (max-width: 768px) {
  .cart-sidebar {
    max-width: 100%;
  }
}

.footer {
  background: #f5f5f5;
  margin-top: 60px;
}

.footer-newsletter {
  background: white;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
}

.newsletter-left {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.newsletter-icon {
  flex-shrink: 0;
  color: #e74c3c;
}

.newsletter-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.newsletter-text p {
  font-size: 14px;
  color: var(--secondary-color);
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-btn {
  padding: 12px 32px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #333;
}

.app-download p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-btn img {
  height: 40px;
  width: auto;
}

.footer-nav {
  padding: 40px 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary-color);
}

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

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

.footer-column ul li a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.whatsapp-link {
  color: #25d366 !important;
  font-weight: 600;
}

.contact-hours {
  font-size: 13px;
  color: var(--secondary-color);
  margin-top: 12px;
  line-height: 1.6;
}

.contact-email {
  font-size: 13px;
  color: var(--secondary-color);
  margin-top: 12px;
}

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

.social-links a {
  color: var(--secondary-color);
  font-size: 20px;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .product-card-prices {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .product-card-prices .old-price {
    font-size: 11px;
    order: 1;
  }

  .product-card-prices .new-price {
    font-size: 16px;
    order: 2;
  }

  .product-card-installment {
    font-size: 11px;
    margin-top: 2px;
  }

  .menu-btn {
    display: flex;
  }

  .mobile-search {
    display: flex;
  }

  .search-btn {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .main-nav {
    display: none;
  }

  .header-right {
    gap: 8px;
  }

  .discount-badge-47 {
    padding: 4px 8px;
    min-width: 45px;
  }

  .discount-number {
    font-size: 14px;
  }

  .discount-text {
    font-size: 14px;
  }

  .zoom-overlay {
    padding: 20px;
  }

  #zoomImage {
    max-width: 95%;
    max-height: 95%;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

  .similar-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Estilos para páginas de coleção */
.collection-section {
  padding-top: 112px;
  padding-bottom: 60px;
}

.collection-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--primary-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-nav .nav-link {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active {
  color: var(--green-color);
}

.header-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  font-size: 20px;
  color: var(--primary-color);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #EA0029;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background: #38AB6B;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 12px;
}

.add-to-cart-btn:hover {
  background: #2d8a56;
}

.product-main-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
  }
  
  .collection-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .header-nav {
    display: none;
  }
}
