/* 
  O BOTICÁRIO - DESIGN SYSTEM 
  Premium, Airy, and Elegant
*/

:root {
  --primary-color: #000000;
  --secondary-color: #513e33;
  --accent-color: #00826b;
  --bg-light: #f4f4f4;
  --header-bg: rgba(0, 0, 0, 0.4);
  --text-main: #333333;
  --text-muted: #666666;
  --white: #ffffff;
  --font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: #f4f4f4;
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

/* TOP BANNER */
.top-banner {
  background-color: #d8d3d0;
  padding: 8px 20px;
  text-align: center;
  font-size: 11px;
  color: #333;
  font-weight: 500;
}

.top-banner span {
  font-weight: 700;
}

/* HEADER */
.header-wrapper {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
  padding: 15px 20px;
  color: white;
}

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

.logo {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
}

.header-icons {
  display: flex;
  gap: 15px;
  font-size: 20px;
}

.header-search-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-trigger {
  font-size: 24px;
}

.search-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 25px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-bar input {
  background: none;
  border: none;
  color: white;
  width: 100%;
  outline: none;
  font-size: 14px;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

/* LOCATION BAR */
.location-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
}


/* BREADCRUMBS */
.breadcrumb-nav {
  padding: 15px 20px;
  font-size: 13px;
  color: #666;
  background: white;
}

.breadcrumb-nav span {
  color: var(--accent-color);
  margin-right: 5px;
}



/* HERO CAROUSEL */
.hero-section-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.hero-track {
  display: flex;
  transition: transform 0.5s ease-out;
}

.hero-slide {
  min-width: 100%;
  position: relative;
}

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

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  border: none;
  cursor: pointer;
  z-index: 5;
}

.hero-nav-btn.prev { left: 10px; }
.hero-nav-btn.next { right: 10px; }

.hero-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  cursor: pointer;
}

.hero-dot.active {
  background: var(--accent-color);
  width: 20px;
  border-radius: 4px;
}


.mais-sobre {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  font-size: 13px;
  color: #333;
  font-weight: 700;
}

/* FILTER SECTION */
.filter-section {
  padding: 20px;
  background: #f4f4f4;
}

.results-count {
  font-size: 18px;
  font-weight: 400;
  color: #333;
  margin-bottom: 5px;
}

.results-count span {
  color: #666;
  font-size: 16px;
}

.results-subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.filter-buttons {
  display: flex;
  gap: 10px;
}

.filter-btn {
  flex: 1;
  background: white;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.sort-btn {
  flex: 2;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: white;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.sort-btn span:last-child {
  color: #333;
  font-weight: 700;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

.dot.active {
  width: 24px;
  border-radius: 10px;
  background: var(--accent-color);
}

/* RECOMMENDATIONS SECTION */
.recommendations {
  background: #f4f4f4;
  padding: 20px 0;
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-left: 20px;
  padding-right: 20px;
  scrollbar-width: none;
}

.recommendations::-webkit-scrollbar {
  display: none;
}

.card {
  background: white;
  min-width: 170px;
  max-width: 170px;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.card-title {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin-bottom: 15px;
  min-height: 32px;
}

.card-img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  margin-bottom: 15px;
}

.card-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

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

@media (max-width: 480px) {
  .hero-title-main { font-size: 24px; }
}

/* PRODUCT CARDS SECTION */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #f1f1f1;
}

.product-card-vertical {
  background: white;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card-vertical .discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #006661;
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
}

.product-card-vertical .wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--accent-color);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.product-card-vertical .card-img-main {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-top: 25px;
  margin-bottom: 10px;
}

.promo-tag {
  background-color: #d51f7b;
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
  align-self: flex-start;
  text-transform: uppercase;
}

.promo-tag.amor {
  background-color: #7b8e72;
}

.promo-tag.retire {
  background-color: #8c3244;
}

.product-brand {
  font-size: 12px;
  font-weight: 800;
  color: #000;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.product-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 12px;
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
}

.rating-stars {
  color: #ff9900;
  font-size: 13px;
  margin-bottom: 6px;
}

.price-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
}

.price-info {
  display: flex;
  flex-direction: column;
}

.old-price {
  font-size: 12px;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 1px;
}

.new-price {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  margin-bottom: 1px;
}

.new-price span {
  font-size: 13px;
  font-weight: 400;
}

.installments {
  font-size: 12px;
  color: #333;
}

.btn-add-square {
  background-color: var(--accent-color);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
}

.stock-warning {
  font-size: 11px;
  color: #d32f2f;
  font-weight: 700;
  margin-top: 8px;
  background: #ffebee;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

.product-desc {
  font-size: 11px;
  color: #333;
  line-height: 1.4;
  margin-top: 5px;
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 400px;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-logo {
  height: 40px;
  margin-bottom: 20px;
}

.modal-body h2 {
  color: #8c3244;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 800;
}

.modal-body p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 15px;
}

.modal-timer {
  background: #fdf2f4;
  color: #8c3244;
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  margin: 20px 0;
  border: 1px dashed #8c3244;
}

.modal-btn {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 130, 107, 0.3);
  transition: transform 0.2s;
}

.modal-btn:active {
  transform: scale(0.95);
}$css
