* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
}

/* TOP BAR */
.top-bar {
  background-color: #01102b;
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-bar span {
  color: #00d5ff; /* 'em todo o Brasil!' color */
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 40px;
  object-fit: contain;
}

.search-container {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 5px 5px 5px 20px;
  width: 50%;
  max-width: 600px;
}

.search-container input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
}
.search-container input::placeholder {
  color: #666;
}

.search-btn {
  background-color: #01102b;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 15px;
  cursor: pointer;
}

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

.user-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.user-actions a {
  text-decoration: none;
  color: #333;
}
.user-actions .entrar {
  font-weight: 700;
  font-size: 14px;
}
.user-actions .cadastre {
  font-size: 12px;
  color: #888;
}

.cart {
  position: relative;
  cursor: pointer;
}
.cart svg {
  width: 24px;
  height: 24px;
  color: #333;
}
.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #e51010;
  color: white;
  font-size: 10px;
  font-weight: bold;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* NAVBAR */
nav {
  padding: 0 4%;
  max-width: 1400px;
  margin: 0 auto 10px auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #1a4ef4;
  transition: width 0.3s ease;
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

nav a:hover, nav a.active {
  color: #1a4ef4;
}
nav a svg {
  width: 12px;
  height: 12px;
}

/* HERO BANNER */
.hero-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px; /* Slight edge smooth */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.hero-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  height: 320px; /* Banner mais fino/menor a pedido */
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* Centraliza a área principal de imagens não projetadas pra banner fino */
}

/* CAROUSEL ARROWS */
.arrow-left, .arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: none;
  font-size: 40px;
  cursor: pointer;
  padding: 20px;
}
.arrow-left { left: 20px; }
.arrow-right { right: 20px; }

.dots {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: white;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot:hover {
  opacity: 0.8;
  transform: scale(1.2);
}
.dot.active {
  background: #1a4ef4;
  opacity: 1;
  width: 25px; /* Pílula ativa mais interativa */
}

/* CATEGORIAS */
.section-title {
  font-size: 20px;
  font-weight: 400;
  color: #333;
  margin: 40px auto 20px auto;
  max-width: 1400px;
  padding: 0 4%;
  text-transform: uppercase;
}

.categories {
  display: flex;
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto 40px auto;
  padding: 0 4%;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
}
.categories::-webkit-scrollbar { display: none; }

.category-card {
  min-width: 180px;
  flex: 1;
  aspect-ratio: 4/5;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img {
  transform: scale(1.1);
}
.category-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 15px 15px 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: white;
  font-size: 20px;
  font-weight: bold;
}

/* FEATURES BAR */
.features-bar {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px 4%;
  max-width: 1400px;
  margin: 0 auto 40px auto;
}
.feature {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature svg {
  width: 32px;
  height: 32px;
  color: #01102b;
}
.feature h4 {
  font-size: 15px;
  color: #333;
  font-weight: 600;
}
.feature span {
  font-size: 13px;
  color: #666;
  font-weight: normal;
}
.feature b {
    font-weight: 700;
}

/* PRODUCT SLIDER */
.products-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto 40px auto;
  padding: 0 4%;
}
.product-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 20px;
}
.product-slider::-webkit-scrollbar { display: none; }

.product-card {
  min-width: 250px;
  flex: 1;
  background: white;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.product-card::before {
  content: "Visualizar";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1a4ef4;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: #1a4ef4;
}
.product-card:hover::before {
  opacity: 1;
  top: 50%; /* Drop in effect */
}
.product-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fafafa;
  transition: opacity 0.3s;
}
.product-card:hover .product-image {
  opacity: 0.8;
}
.product-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.product-title {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  text-transform: uppercase;
}
.rating {
  color: #ffaa00;
  font-size: 14px;
}
.rating span {
  color: #aaa;
  font-size: 12px;
  margin-left: 5px;
}
.price {
  font-size: 18px;
  font-weight: bold;
  color: #0b9511;
  margin-top: auto;
}
.price span {
  font-size: 13px;
  color: #666;
  font-weight: normal;
}
.installments {
  font-size: 12px;
  color: #0b9511;
  font-weight: 600;
}

/* FLOATING BUTTON */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1a4ef4;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  z-index: 100;
  font-size: 15px;
}
.floating-btn svg {
  width: 18px;
  height: 18px;
}
.floating-btn::after {
  content: "×";
  position: absolute;
  top: -8px;
  right: -8px;
  background: white;
  color: #333;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border: 1px solid #1a4ef4;
}

/* SLIDER ARROWS */
.nav-arrow {
  position: absolute;
  top: 40%;
  background: white;
  border: 1px solid #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 10;
}
.nav-arrow.left { left: 10px; }
.nav-arrow.right { right: 10px; }

/* SECOND BANNER */
.second-banner {
  max-width: 1400px;
  margin: 0 auto 60px auto;
  padding: 0 4%;
}
.second-banner img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* ===== HERO BANNER 5: TRIPARTIDO (Grama Sintética) ===== */
.hero-slide--custom {
  display: flex !important;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Painel Esquerdo */
.hb-left {
  flex: 0 0 30%;
  background: #f5f0e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  position: relative;
  z-index: 2;
  /* Subtle grid texture */
  background-image:
    linear-gradient(rgba(180,170,140,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,170,140,0.15) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hb-house-icon {
  width: 80px;
  height: 60px;
  margin-bottom: 12px;
}
.hb-house-icon svg {
  width: 100%;
  height: 100%;
}
.hb-sub {
  font-size: 13px;
  color: #555;
  font-style: italic;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}
.hb-headline {
  font-size: 34px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 16px;
}
.hb-headline span {
  font-style: italic;
  font-size: 40px;
}
.hb-cta-btn {
  display: inline-block;
  background: #e8b800;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.hb-cta-btn:hover {
  background: #d4a900;
  transform: scale(1.03);
}
.hb-cta-btn strong {
  font-weight: 800;
}

/* Painel Central */
.hb-center {
  flex: 0 0 38%;
  position: relative;
  overflow: hidden;
}
.hb-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.hb-center:hover img {
  transform: scale(1.04);
}
/* Diagonal amarela separadora (esquerda→centro) */
.hb-diagonal {
  position: absolute;
  top: 0;
  right: -1px;
  width: 0;
  height: 0;
  border-top: 320px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 0px solid transparent;
  /* Thin yellow accent line via drop-shadow */
  filter: drop-shadow(-4px 0 0 #e8b800);
  pointer-events: none;
}

/* Painel Direito */
.hb-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.hb-right > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.hb-right:hover > img {
  transform: scale(1.04);
}
.hb-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,60,20,0.72) 0%, rgba(10,60,20,0.35) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  gap: 8px;
}
.hb-right-label {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.hb-right-headline {
  font-size: 30px;
  font-weight: 800;
  color: #a5e878;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 4px;
  font-family: Georgia, 'Times New Roman', serif;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hb-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a4ef4;
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 5px;
  width: fit-content;
  letter-spacing: 0.3px;
}
.hb-discount-badge span {
  color: #e8b800;
  font-size: 16px;
}
.hb-right-btn {
  display: inline-block;
  background: #e8b800;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.2s;
  margin-top: 4px;
}
.hb-right-btn:hover {
  background: #f5cc00;
  transform: scale(1.04);
}

/* SECTIONS BANNERS (SATISFAÇÃO & FOOTER) */
.satisfaction-wrapper {
  display: flex;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto 40px auto;
  padding: 0 4%;
  height: 350px;
}
.support-banner {
  flex: 1;
  background-color: #1a4185;
  background: linear-gradient(to bottom, #1a4185 55%, #9bc2ef 55%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  color: white;
  padding-top: 30px;
  position: relative;
  overflow: hidden;
}
.support-banner h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  padding: 0 20px;
}
.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #ffaa00;
  border: 1px solid #ffaa00;
  padding: 8px 20px;
  border-radius: 8px;
  margin: 15px auto;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}
.support-banner img {
  width: 50%;
  margin: 0 auto;
  display: block;
}

.store-banner {
  flex: 2;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.store-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* REVIEWS CARD SLIDER */
.review-card {
  min-width: 250px;
  flex: 1;
  background: white;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.review-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
}
.review-text {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  flex-grow: 1;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px dotted #ccc;
  padding-top: 15px;
}
.review-user .avatar {
  width: 32px;
  height: 32px;
  background: #333;
  border-radius: 50%;
}
.review-user-info p {
  font-size: 13px;
  font-weight: 600;
}
.review-user-info span {
  font-size: 11px;
  color: #888;
}

/* PRE-FOOTER */
.pre-footer {
  background-color: #eaeaea;
  padding: 40px 4%;
  margin-top: 60px;
}
.pre-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.social-links {
  flex: 1;
}
.social-links h3 {
  font-size: 20px;
  color: #1a4185;
  margin-bottom: 15px;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons svg {
  width: 28px;
  height: 28px;
  color: #1a4185;
  cursor: pointer;
  transition: transform 0.3s;
}
.social-icons svg:hover {
  transform: scale(1.2);
}
.pre-footer-banners {
  display: flex;
  gap: 15px;
  flex: 2;
}
.pre-footer-banner {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.pre-footer-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FOOTER */
.main-footer {
  background-color: #f2f2f2;
  padding: 40px 4%;
}
.footer-columns {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-col {
  flex: 1;
  min-width: 200px;
}
.footer-col h4 {
  color: #316eed;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block;
  color: #666;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-col a:hover {
  text-decoration: underline;
  color: #316eed;
}
.footer-btn {
  background-color: #1a4185;
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
}
.footer-btn.green {
  background-color: #17bb52;
}
/* BOTTOM FOOTER */
.bottom-footer {
  border-top: 1px solid #ddd;
  max-width: 1400px;
  margin: 40px auto 0 auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.bottom-col p {
  font-size: 12px;
  color: #aaa;
  margin-top: 5px;
}
.bottom-col h5 {
  color: #92bdf2;
  font-size: 13px;
  font-weight: 500;
}

/* --- TELA DE PRODUTO INDIVIDUAL --- */
.product-page-layout {
  display: flex;
  max-width: 1400px;
  margin: 40px auto;
  gap: 40px;
  padding: 0 4%;
  flex-wrap: wrap;
}
.product-gallery {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}
.product-gallery img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #eee;
  object-fit: cover;
  aspect-ratio: 1;
}
.product-details {
  flex: 1;
  min-width: 350px;
}
.variation-selector {
  margin-bottom: 30px;
}
.variation-group {
  margin-bottom: 15px;
}
.variation-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.variation-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.var-btn {
  background: white;
  border: 1px solid #ccc;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}
.var-btn.selected, .var-btn:hover {
  border-color: #1a4ef4;
  color: #1a4ef4;
  background: #f0f4ff;
  font-weight: 600;
}
.cep-calculator {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid #eee;
}
.buy-button {
  width: 100%;
  background-color: #17bb52;
  color: white;
  border: none;
  padding: 18px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.buy-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(23, 187, 82, 0.3);
}
.product-bottom-info {
  max-width: 1400px;
  margin: 0 auto 60px auto;
  padding: 0 4%;
}
.p-block {
  background: #fafafa;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #eee;
}
.p-block h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1a4185;
}
.cep-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* --- ADVANCED GALLERY --- */
.gallery-wrapper {
  display: flex;
  gap: 15px;
  height: 500px;
}
.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
  overflow-y: auto;
  scrollbar-width: none;
}
.gallery-thumbnails::-webkit-scrollbar { display: none; }
.gallery-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  object-fit: cover;
  transition: all 0.2s;
}
.gallery-thumb:hover, .gallery-thumb.active {
  border-color: #1a4ef4;
}
.gallery-main-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
}
.gallery-main-image img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  cursor: zoom-in;
}
.gallery-main-image img:hover {
  transform: scale(1.5);
}

/* --- REVIEWS UI --- */
.reviews-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.reviews-summary {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.summary-score {
  font-size: 48px;
  font-weight: 800;
  color: #333;
}
.summary-stars {
  color: #ffaa00;
  font-size: 24px;
  margin: 10px 0;
}
.summary-count {
  font-size: 13px;
  color: #888;
}

.reviews-form-box {
  flex: 2;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.form-input:focus {
  border-color: #1a4ef4;
}
.submit-btn {
  background: #1a4185;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
}

.review-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.rev-item-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.rev-item-name {
  font-weight: 600;
  color: #333;
}
.rev-item-date {
  font-size: 12px;
  color: #999;
}
.rev-item-text {
  color: #555;
  line-height: 1.5;
  font-size: 14px;
}

/* --- STICKY CART --- */
.sticky-cart-bar {
  position: fixed;
  bottom: -100px; /* Escondido inicial */
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
  padding: 15px 4%;
  z-index: 1000;
  transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  justify-content: center;
}
.sticky-cart-bar.show {
  bottom: 0;
}
.sticky-cart-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  gap: 20px;
}
.sticky-cart-content img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}
.sticky-info {
  flex: 1;
}
