* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #463333;
  background: #fff9f7;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 249, 247, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f1d0d0;
  padding: 14px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.logo-img {
  width: 75px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text h1 {
  font-family: 'Cormorant Infant', serif;
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  color: #463333;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.brand-text p {
  margin: 3px 0 0;
  color: #9a7474;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  color: #463333;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.nav a:hover {
  color: #c48c8c;
}

.nav-whatsapp {
  background: #d8a1a1;
  color: white !important;
  padding: 10px 18px;
  border-radius: 999px;
  transition: 0.3s ease;
}

.nav-whatsapp:hover {
  background: #c48c8c;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: none;
  background: #f4dada;
  color: #6a4a4a;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.promo-bar {
  background: #d8a1a1;
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: 0.6px;
}

.hero-banner {
  width: 100vw;
  height: 320px;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero,
.section {
  padding: 56px 7%;
}

.hero {
  background: linear-gradient(135deg, #fff9f7, #f7eaea);
}

.eyebrow {
  letter-spacing: 4px;
  color: #9a7474;
  font-size: 13px;
  margin: 0 0 12px;
}

.hero h2,
.section h2 {
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 18px;
  color: #3d3030;
}

.hero p,
.contact p {
  font-size: 20px;
  color: #7a5c5c;
  max-width: 900px;
  line-height: 1.5;
}

.main-btn,
.secondary-btn,
.cart-btn,
.whatsapp-btn {
  border: none;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  border-radius: 28px;
  font-weight: 600;
  transition: all 0.25s ease;
  display: inline-block;
}

.main-btn,
.cart-btn,
.whatsapp-btn {
  background: #d8a1a1;
  color: white;
  padding: 12px 28px;
}

.secondary-btn {
  background: white;
  color: #7a5c5c;
  border: 1px solid #e7bcbc;
  padding: 12px 24px;
}

.main-btn:hover,
.cart-btn:hover,
.whatsapp-btn:hover {
  background: #c48c8c;
  transform: translateY(-2px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 22px;
}

.category-card {
  background: white;
  border: 1px solid #f1d0d0;
  border-radius: 24px;
  padding: 34px;
  text-decoration: none;
  color: #463333;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(141, 90, 90, 0.06);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(141, 90, 90, 0.14);
  border-color: #d8a1a1;
  background: #fff5f5;
  color: #c48c8c;
}

.brand-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}

.filter-btn {
  border: 1px solid #f1d0d0;
  background: white;
  color: #7a5c5c;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #d8a1a1;
  color: white;
  border-color: #d8a1a1;
}

.blush {
  background: #fbefef;
}

.horizontal-products {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0 35px;
  scroll-snap-type: x mandatory;
  justify-content: flex-start;
  align-items: stretch;
}

.horizontal-products::-webkit-scrollbar {
  height: 10px;
}

.horizontal-products::-webkit-scrollbar-track {
  background: #f8e7e7;
  border-radius: 20px;
}

.horizontal-products::-webkit-scrollbar-thumb {
  background: #d8a1a1;
  border-radius: 20px;
}

.product-card {
  position: relative;
  flex: 0 0 320px;
  width: 320px;
  height: 520px;
  background: white;
  border: 1px solid #f1d0d0;
  border-radius: 26px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  box-shadow: 0 16px 34px rgba(141, 90, 90, 0.06);
  transition: all 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(141, 90, 90, 0.12);
}

.product-img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}

.image-placeholder {
  height: 190px;
  border-radius: 18px;
  border: 1px dashed #e4b7b7;
  background: linear-gradient(135deg, #fff6f3, #f7eaea);
  display: grid;
  place-items: center;
  color: #a77c7c;
  margin-bottom: 18px;
}

.product-card h3 {
  font-size: 22px;
  margin: 10px 0 8px;
  color: #3d3030;
}

.product-card p {
  font-size: 16px;
  line-height: 1.35;
  color: #7a5c5c;
  margin-top: 4px;
  margin-bottom: 8px;
}

.product-name {
  margin-bottom: 2px !important;
}

.kit-desc {
  display: block;
  font-size: 12px;
  color: #9f9494;
  margin-top: -4px;
  margin-bottom: 20px;
  line-height: 1.35;
}

.product-card .price {
  margin-top: auto;
  margin-bottom: 12px;
}

.old-price {
  display: block;
  color: #aa9a9a;
  text-decoration: line-through;
  font-size: 14px;
  margin-bottom: 4px;
}

.new-price {
  display: inline-block;
  color: #6a4a4a;
  font-size: 21px;
  font-weight: 800;
}

.discount-badge {
  display: inline-block;
  margin-left: 8px;
  background: #f4dada;
  color: #9a5f5f;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.product-card .cart-btn {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.product-card.sold-out::before,
.product-card[data-status="agotado"]::before {
  content: "Agotado";
  position: absolute;
  top: 18px;
  right: 18px;
  background: #6a4a4a;
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.product-card.sold-out .cart-btn,
.product-card[data-status="agotado"] .cart-btn {
  background: #d6cccc;
  cursor: not-allowed;
  pointer-events: none;
}

.product-card.sold-out,
.product-card[data-status="agotado"] {
  opacity: 0.72;
}

.floating-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  background: #d8a1a1;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(141, 90, 90, 0.25);
  transition: all 0.25s ease;
}

.floating-cart:hover {
  transform: translateY(-3px);
  background: #c48c8c;
}

#cart-count {
  background: white;
  color: #c48c8c;
  border-radius: 50%;
  padding: 3px 8px;
  margin-left: 6px;
  font-weight: bold;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 390px;
  max-width: 90%;
  height: 100vh;
  background: #fff9f7;
  z-index: 400;
  padding: 28px;
  box-shadow: -12px 0 30px rgba(141, 90, 90, 0.16);
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.cart-header h2 {
  margin: 0;
  color: #3d3030;
}

.cart-header button {
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: #7a5c5c;
}

#cart-items {
  flex: 1;
  overflow-y: auto;
  background: white;
  border: 1px solid #f1d0d0;
  border-radius: 20px;
  padding: 16px;
}

.cart-item {
  border-bottom: 1px solid #f0dada;
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.cart-item h4 {
  margin: 0 0 6px;
}

.cart-item p {
  margin: 4px 0;
  color: #7a5c5c;
}

.cart-footer {
  border-top: 1px solid #f0dada;
  padding-top: 16px;
}

#cart-total {
  font-size: 22px;
  font-weight: bold;
  color: #4b3838;
}

.whatsapp-btn,
.cart-footer .secondary-btn {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

.contact {
  text-align: center;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 52px 7%;
  background: #f7eaea;
  color: #6a4a4a;
  border-top: 1px solid #f1d0d0;
}

.footer h2,
.footer h3 {
  margin-top: 0;
  color: #463333;
}

.footer a {
  color: #9a5f5f;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    padding: 14px 5%;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
    background: #fff9f7;
    border: 1px solid #f1d0d0;
    border-radius: 22px;
    padding: 16px;
    margin-top: 12px;
  }

  .nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .brand-text h1 {
    font-size: 28px;
  }

  .brand-text p {
    font-size: 12px;
  }

  .logo-img {
    width: 62px;
  }

  .hero-banner {
    height: 210px;
  }

  .hero,
  .section {
    padding: 38px 5%;
  }

  .hero h2,
  .section h2 {
    font-size: 34px;
  }

  .hero p {
    font-size: 17px;
  }

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

  .category-card {
    padding: 22px 14px;
    font-size: 16px;
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
  }

  .horizontal-products {
    gap: 18px;
  }

  .product-card {
    flex-basis: 270px;
    width: 270px;
    height: 500px;
    padding: 20px;
  }

  .product-img,
  .image-placeholder {
    height: 170px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 42px 5%;
  }
}

@media (max-width: 480px) {
  .brand {
    gap: 12px;
  }

  .brand-text h1 {
    font-size: 24px;
  }

  .brand-text p {
    font-size: 11px;
  }

  .hero-banner {
    height: 170px;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card {
    flex-basis: 250px;
    width: 250px;
  }

  .floating-cart {
    right: 16px;
    bottom: 16px;
  }
}
.cart-sidebar {
  position: fixed !important;
  top: 0 !important;
  right: -420px !important;
  width: 390px !important;
  max-width: 92vw !important;
  height: 100vh !important;
  z-index: 9999 !important;
  background: #fff9f7 !important;
  overflow-y: auto !important;
}

.cart-sidebar.active {
  right: 0 !important;
}
.sold-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #463333;
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}.sold-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #463333;
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}.sold-out-btn {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: #d8d8d8;
  color: #777;
  font-weight: 600;
  cursor: not-allowed;
  margin-top: 10px;
}.help-section {
  width: 100%;
  padding: 120px 20px;
  text-align: center;
}

.help-section h2 {
  font-size: 50px;
  margin-bottom: 24px;
}

.help-section p {
  font-size: 30px;
  margin-bottom: 40px;
}

.help-section .main-btn {
  margin: 0 auto;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}.countdown-bar {
  background: #d8a1a1;
  color: white;
  text-align: center;
  padding: 14px 20px;
}

.countdown-bar p {
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: 1px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.countdown-timer div {
  background: rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 8px 14px;
  min-width: 72px;
}

.countdown-timer span {
  display: block;
  font-size: 26px;
  font-weight: 700;
}

.countdown-timer small {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .countdown-timer {
    gap: 8px;
  }

  .countdown-timer div {
    min-width: 60px;
    padding: 7px 9px;
  }

  .countdown-timer span {
    font-size: 22px;
  }
}.flip-countdown {
   background: #e3c3c3;
  padding: 20px;
  text-align: center;
}

.countdown-title {
  color: #fff7f4;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

.flip-timer {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}



@media (max-width: 768px) {

  .flip-timer {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .flip-box {
   padding: 0 8px !important;
  }

  .flip-box span {
    font-size: 28px !important;
  }

  .flip-box small {
    font-size: 8px;
    letter-spacing: 1px;
  }

}.flip-box {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: auto !important;
  padding: 0 18px !important;
  border-right: 1px solid rgba(255,255,255,0.45);
}

.flip-box:last-child {
  border-right: none;
}

.flip-box span {
  color: #c79a48 !important;
  font-size: 52px !important;
  font-family: 'Cormorant Infant', serif !important;
  font-weight: 600 !important;
  text-shadow: none !important;
}

.flip-box small {
  color: #fff7f4 !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
}