﻿:root {
  --gold-main: #FFC72C;
  --gold-dark: #E5B220;
  --ink: #17110f;
  --muted: #665b54;
  --champagne: #f8f0e5;
  --cream: #fffaf3;
  --gold: #c99b3f;
  --header-h: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 243, 0.95);
  border-bottom: 1px solid rgba(23, 17, 15, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(130px, 14vw, 200px);
  height: auto;
  max-height: 65px;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.0);
  transform-origin: left center;
}

.header-actions-group {
  display: flex;
  align-items: center;
}

.cart-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.cart-icon-btn:hover {
  opacity: 1;
  color: var(--gold-dark);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 17, 15, 0.72);
}

.main-nav a,
.secondary-action {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.main-nav a:hover {
  color: var(--gold-dark);
}

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-action,
.primary-action {
  color: #fff;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
  box-shadow: 0 18px 36px rgba(166, 120, 40, 0.28);
}

/* ============================================================
   PRELOADER — Reference Style
   ============================================================ */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #000;
  transition: opacity 0.85s cubic-bezier(0.77,0,0.175,1),
              visibility 0.85s,
              transform 0.85s cubic-bezier(0.77,0,0.175,1);
}

/* Vignette escura nas bordas */
.pl-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(10,7,3,0)  30%,
    rgba(5,3,1,0.75) 100%);
  pointer-events: none;
}

/* Centro */
.pl-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
}

/* Símbolos ♀ ♂ */
.pl-symbols {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  opacity: 0;
  animation: plFadeIn 0.6s ease forwards 0.2s;
}
.pl-sym {
  font-size: 1rem;
  color: #b8963e;
  line-height: 1;
}

/* Ankh */
.pl-ankh-wrap {
  position: relative;
  margin-bottom: 20px;
  opacity: 0;
  animation: plFadeIn 0.7s ease forwards 0.4s;
}
.pl-ankh {
  width: clamp(90px, 18vw, 130px);
  height: clamp(90px, 18vw, 130px);
  object-fit: cover;
  animation: plAnkhSpin 5s linear infinite;
  filter: drop-shadow(0 4px 20px rgba(212,175,55,0.28));
}
.pl-ankh-glow {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  animation: plGlowPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes plAnkhSpin {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes plGlowPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.12); }
}

/* Pílula "COMING SOON" */
.pl-pill {
  border: 1px solid rgba(180, 140, 50, 0.55);
  border-radius: 99px;
  padding: 7px 22px;
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #c9a84c;
  margin-bottom: 22px;
  opacity: 0;
  animation: plFadeIn 0.5s ease forwards 0.7s;
}

/* Título CLEOPATRA letra a letra */
/* Reset do h1 global para não conflitar */
h1.pl-title {
  font-family: unset;
  font-size: unset;
  font-weight: unset;
  line-height: unset;
  max-width: unset;
  text-transform: unset;
  letter-spacing: unset;
  margin: 0 0 18px;
}
.pl-title {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin: 0 0 18px;
  line-height: 1;
}
.pl-tl {
  font-family: "Cinzel", "Georgia", serif;
  font-size: clamp(2rem, 8vw, 3.6rem);
  font-weight: 700;
  background: linear-gradient(to bottom, #fef9e4 0%, #dfba6b 38%, #9c7015 55%, #dfba6b 75%, #fef9e4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(12px);
  animation: plLetterIn 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: calc(var(--j) * 0.06s + 0.85s);
}
.pl-tl--tm {
  font-size: 1rem;
  vertical-align: super;
  margin-left: 4px;
}
@keyframes plLetterIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Subtítulo itálico */
.pl-sub {
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: #a08860;
  margin: 0 0 18px;
  opacity: 0;
  animation: plFadeIn 0.6s ease forwards 1.55s;
}

/* Cidades */
.pl-cities {
  font-family: "Inter", sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  color: #6e5e40;
  margin: 0 0 30px;
  font-weight: 500;
  opacity: 0;
  animation: plFadeIn 0.5s ease forwards 1.75s;
}

/* Linha separadora */
.pl-rule {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,140,50,0.45), transparent);
  margin-bottom: 20px;
  opacity: 0;
  animation: plFadeIn 0.5s ease forwards 1.9s;
}

/* Rodapé */
.pl-foot {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.63rem;
  color: #5a4b30;
  opacity: 0;
  animation: plFadeIn 0.5s ease forwards 2.05s;
}
.pl-foot p { margin: 0; }

/* Utilitário */
@keyframes plFadeIn {
  to { opacity: 1; }
}

/* Saída */
#preloader.pl-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
}

#preloader {
  background: #fff;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.preloader-logo {
  width: clamp(190px, 24vw, 340px);
  max-height: 28vh;
  object-fit: cover;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% {
    opacity: 0.82;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

#preloader.pl-hidden {
  transform: none;
}

/* ============================================================
   SEARCH BAR
   ============================================================ */

.search-bar-inner {
  width: clamp(160px, 15vw, 240px);
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fbfbfb;
  border: 1px solid rgba(23,17,15,0.15);
  border-radius: 50px;
  padding: 8px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-bar-inner:focus-within {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(229, 178, 32, 0.12);
}

.search-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: #999;
  transition: stroke 0.2s;
}

.search-bar-inner:focus-within .search-icon {
  stroke: var(--gold-dark);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  min-width: 0;
}

.search-input::placeholder {
  color: #bbb;
  font-weight: 400;
}

/* Remove o X nativo do input search */
.search-input::-webkit-search-cancel-button { display: none; }

/* ============================================================
   WAVE DIVIDER
   ============================================================ */

.wave-divider {
  position: relative;
  width: 100%;
  height: 48px;
  background-color: var(--cream); /* cor do carousel acima */
  overflow: hidden;
  margin-top: -1px; /* evita gap de 1px */
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero {
  position: relative;
  width: 100%;
  height: 120svh;
  margin-top: var(--header-h);
  background-color: #f5ecdf;
  overflow: hidden;
}

/* ============================================================
   MARQUEE DIVIDER
   ============================================================ */

.marquee-divider {
  width: 100%;
  background: #fff;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(23,17,15,0.08);
  border-bottom: 1px solid rgba(23,17,15,0.08);
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ink);
  text-transform: uppercase;
  padding: 0 24px;
}

.marquee-track .marquee-dot {
  font-size: 0.55rem;
  color: var(--gold);
  padding: 0;
  display: flex;
  align-items: center;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.shop-by-category {
  padding: 80px clamp(16px, 5vw, 72px);
  background-color: #fff;
  overflow: hidden;
}

.category-header {
  text-align: center;
  margin-bottom: 40px;
}

.category-header h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #3b2b20;
  text-transform: uppercase;
  margin: 0;
}

.category-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.category-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  padding-bottom: 16px; /* space for the hover zoom */
}
.category-track::-webkit-scrollbar {
  display: none;
}

.cat-card {
  flex: 0 0 calc( (100% - (20px * 4)) / 4.5 );
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

@media (max-width: 1024px) {
  .cat-card {
    flex: 0 0 calc( (100% - (20px * 3)) / 3.5 );
  }
}
@media (max-width: 768px) {
  .cat-card {
    flex: 0 0 calc( (100% - (20px * 2)) / 2.5 );
  }
}
@media (max-width: 480px) {
  .cat-card {
    flex: 0 0 calc( (100% - 20px) / 1.5 );
  }
}

.cat-img-wrapper {
  background-color: #f5f5f5;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cat-img-wrapper img {
  width: 75%;
  height: 75%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cat-card:hover .cat-img-wrapper img {
  transform: scale(1.08);
}

.cat-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #555;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
  border-bottom: 1px solid transparent;
  padding-bottom: 6px;
  transition: color 0.3s, border-color 0.3s;
}

.cat-card:hover h3 {
  color: #111;
  border-bottom-color: #aaa;
}

.cat-nav-btn {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: #777;
  transition: all 0.2s ease;
}
.cat-nav-btn:hover {
  background: #fafafa;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  color: #111;
}
.cat-nav-btn.prev {
  left: -22px;
}
.cat-nav-btn.next {
  right: -22px;
}

@media (max-width: 1440px) {
  .cat-nav-btn.prev { left: 16px; }
  .cat-nav-btn.next { right: 16px; }
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-watermark {
  display: none;
}



.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action {
  min-width: 150px;
}

.secondary-action {
  min-width: 176px;
  color: var(--ink);
  border: 1px solid rgba(23, 17, 15, 0.18);
  background: rgba(255, 250, 243, 0.72);
}

.secondary-action:hover {
  border-color: rgba(201, 155, 63, 0.72);
  background: rgba(255, 255, 255, 0.88);
}

/* --- Bestsellers --- */
.bestsellers {
  padding: 80px clamp(16px, 5vw, 72px);
  background-color: #fff;
  text-align: center;
}
.section-header h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 300;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
}
.section-header p {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 12px 0 40px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.nav-arrow.left-arrow {
  left: -16px;
}
.nav-arrow svg {
  width: 24px;
  height: 24px;
}
.product-card {
  display: flex;
  flex-direction: column;
}
.product-image-container {
  position: relative;
  background: #fff;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
}
.product-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.product-image-container img.primary-img {
  z-index: 1;
}
.product-image-container img.hover-img {
  opacity: 0;
  object-fit: cover;
  object-position: center 75%;
  z-index: 2;
}
.product-image-container:hover img.hover-img {
  opacity: 1;
  transform: scale(1.05);
}
.product-image-container:hover img.primary-img {
  opacity: 0;
  transform: scale(0.98);
}
.buy-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  z-index: 10;
  background-color: #222;
  color: #fff;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-image-container:hover .buy-button {
  background-color: rgba(34, 34, 34, 0.65);
  backdrop-filter: blur(4px);
}
.buy-button:hover {
  background-color: rgba(34, 34, 34, 0.45) !important;
}
.product-info {
  padding: 16px 0;
}
.product-title {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  margin-bottom: 4px;
}
.price-value {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
}
.price-method {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 4px;
}
.product-installments {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

/* --- Advantages --- */
.advantages {
  background-color: #000;
  color: #fff;
  padding: 80px clamp(20px, 5vw, 120px);
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 400px));
  justify-content: center;
  gap: 56px 80px;
  align-items: start;
  text-align: center;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.advantage-icon {
  width: 54px;
  height: 54px;
  stroke: #fff;
}

.advantage-item p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.advantage-item strong {
  font-weight: 700;
}

.mobile-bottom-nav {
  display: none;
}

/* ============================================================
   COLEÇÕES CLEOPATRA (Especial)
   ============================================================ */
.special-collections {
  padding: 60px clamp(16px, 5vw, 72px);
  background-color: #f5ecdf; 
}

.special-collections-header {
  text-align: center;
  margin-bottom: 40px;
}

.special-collections-header h2 {
  font-family: Cinzel, serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}

.special-collections-header p {
  font-family: Inter, sans-serif;
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.special-collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.special-col-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #f4f4f5;
  padding: 24px 16px 20px;
  text-decoration: none;
  align-items: center;
  transition: transform 0.3s ease;
  overflow: hidden;
  border-radius: 12px;
}

.special-col-card:hover {
  transform: translateY(-5px);
}

.special-badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #e57373;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 2;
  white-space: nowrap;
}

.special-img-wrapper {
  width: 100%;
  max-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 16px;
}

.special-col-card img {
  max-width: 80%;
  max-height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.special-col-card:hover img {
  transform: scale(1.05);
}

.special-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.special-label {
  font-family: Inter, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.2em;
}

.special-name {
  font-family: Cinzel, serif;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.1em;
  margin: 0;
  position: relative;
  display: inline-block;
}

.special-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--ink);
}

/* ============================================================
   COLEÇÕES CLEOPATRA — Joias Destaque
   ============================================================ */
.cleopatra-jewels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.cleopatra-jewel-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s ease;
  border: 1px solid rgba(199,155,63,0.1);
}

.cleopatra-jewel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 4px 12px rgba(199,155,63,0.15);
}

.cleopatra-jewel-img-wrap {
  position: relative;
  background: linear-gradient(160deg, #fdf6ed 0%, #f0e8d8 100%);
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  overflow: hidden;
}

.cleopatra-jewel-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(255,255,255,0.6), transparent);
  pointer-events: none;
}

.cleopatra-jewel-img-wrap .special-badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-main), var(--gold));
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 3px 14px rgba(199,155,63,0.4);
  z-index: 2;
}

.cleopatra-jewel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(.22,.68,0,1.2);
  position: relative;
  z-index: 1;
}

.cleopatra-jewel-card:hover .cleopatra-jewel-img-wrap img {
  transform: scale(1.05);
}

.cleopatra-jewel-info {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex: 1;
  width: 100%;
}

/* Divisor dourado decorativo */
.cleopatra-jewel-info::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-main), var(--gold));
  border-radius: 2px;
  margin-bottom: 2px;
}

.cleopatra-jewel-label {
  font-family: Inter, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.cleopatra-jewel-name {
  font-family: Cinzel, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.cleopatra-jewel-desc {
  font-family: Inter, sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 28ch;
}

.cleopatra-jewel-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.cleopatra-jewel-price .price-value {
  font-family: Cinzel, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}

.cleopatra-jewel-price .price-method {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.cleopatra-jewel-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 11px 32px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold));
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 18px rgba(199,155,63,0.35);
}

.cleopatra-jewel-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199,155,63,0.45);
}

@media (max-width: 900px) {
  .cleopatra-jewels-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .cleopatra-jewels-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cleopatra-jewel-img-wrap {
    height: 280px;
  }
}

@media (min-width: 769px) {
  .special-col-card.full-width {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-around;
  }
  .special-col-card.full-width .special-img-wrapper {
    width: 50%;
    margin: 0;
    max-height: 320px;
  }
  .special-col-card.full-width img {
    max-height: 280px;
  }
  .special-col-card.full-width .special-info {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .special-collections {
    padding: 40px 16px;
  }
  .special-collections-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .special-col-card {
    padding: 16px 12px 14px;
    border-radius: 10px;
  }
  .special-img-wrapper {
    max-height: 140px;
    margin: 16px 0 12px;
  }
  .special-col-card img {
    max-width: 85%;
    max-height: 120px;
  }
  .special-name {
    font-size: 0.85rem;
  }
  .special-label {
    font-size: 0.55rem;
  }
  .special-badge {
    font-size: 0.6rem;
    padding: 2px 10px;
    top: 10px;
  }
}

/* ============================================================
   DESKTOP ENHANCEMENTS (min-width: 921px)
   ============================================================ */
@media (min-width: 921px) {
  .bestsellers {
    padding: 80px clamp(16px, 5vw, 72px);
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }

  .advantages {
    grid-template-columns: repeat(2, minmax(200px, 400px));
    justify-content: center;
  }
}

/* ============================================================
   LARGE DESKTOP (min-width: 1200px)
   ============================================================ */
@media (min-width: 1200px) {
  .category-item {
    width: 280px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 920px) {
  .site-header { justify-content: center; }
  .header-action { display: none; }
  .desktop-only { display: none !important; }

  :root {
    --header-h: 80px;
  }

  .brand img {
    width: clamp(140px, 22vw, 210px);
    max-height: 60px;
  }

  .main-nav {
    font-size: 0.78rem;
    gap: clamp(10px, 1.8vw, 22px);
  }

  .cart-icon-btn {
    display: none;
  }
}

@media (max-width: 920px) and (min-width: 561px) {
  .advantages {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .category-item {
    width: clamp(130px, 18vw, 180px);
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 72px;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand img {
    width: clamp(120px, 38vw, 170px);
    max-height: 50px;
  }

  .main-nav {
    display: none;
  }



  main {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: var(--header-h);
    padding-bottom: 90px; /* Space for the bottom navbar */
  }

  /* Bottom Nav */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: #fff;
    border-radius: 24px 24px 0 0;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px 10px; /* padding bottom to push icons slightly up from the very edge */
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    z-index: 1000;
  }

  .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555555;
    text-decoration: none;
    font-size: 0.58rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    gap: 3px;
    transition: color 0.2s;
    min-width: 0;
  }
  .nav-item svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
    flex-shrink: 0;
  }
  .nav-item.active, .nav-item:hover {
    color: var(--gold-dark);
  }

  .nav-item-center-wrapper {
    flex: 0 0 64px;
    display: flex;
    justify-content: center;
    position: relative;
    height: 100%;
  }

  .nav-item-center {
    position: absolute;
    top: -26px;
    width: 58px;
    height: 58px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  }
  
  .nav-item-center svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-dark);
    stroke-width: 2;
  }

  .hero {
    height: auto;
    margin-top: 0;
  }

  .hero-img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Texto flui naturalmente */
  .title-line {
    display: inline;
  }

  .categories-carousel {
    order: 3;
    padding: 32px 16px 12px;
  }

  .category-item {
    width: clamp(110px, 30vw, 160px);
  }

  .wave-divider {
    order: 4;
  }

  .bestsellers {
    order: 5;
    padding: 32px 12px;
    position: relative;
    z-index: 2;
  }

  .bestsellers .section-header h2 {
    font-size: 1.6rem;
  }

  .bestsellers .section-header p {
    font-size: 0.7rem;
    margin: 8px 0 24px;
  }

  .bestsellers .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: none;
  }

  .bestsellers .nav-arrow {
    display: none;
  }

  .bestsellers .product-image-container {
    aspect-ratio: 1;
    border-radius: 6px;
    background: #f8f3ec;
  }

  .bestsellers .buy-button {
    padding: 10px 0;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    border-radius: 0 0 6px 6px;
  }

  .bestsellers .product-info {
    padding: 10px 2px 4px;
  }

  .bestsellers .product-title {
    font-size: 0.78rem;
    margin: 0 0 6px;
    line-height: 1.3;
  }

  .bestsellers .price-value {
    font-size: 0.95rem;
  }

  .bestsellers .price-method {
    font-size: 0.65rem;
  }

  .bestsellers .product-installments {
    font-size: 0.68rem;
    margin-top: 2px;
  }

  /* conteúdo abaixo da imagem */
  .hero-content {
    position: static;
    order: 2;
    width: 100%;
    margin-left: 0;
    padding: 8px 20px 36px;
    background: var(--cream);
  }

  .special-collections {
    order: 6;
  }

  .advantages {
    order: 7;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    padding: 40px 16px;
    gap: 32px 16px;
  }
  .advantages .advantage-icon {
    width: 36px;
    height: 36px;
  }
  .advantages .advantage-item {
    gap: 8px;
  }
  .advantages .advantage-item p {
    font-size: 0.75rem;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.74rem;
    text-align: center;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    min-height: 48px;
  }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-4px);
}

.wa-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #25d366;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  animation: waPulseAnim 2s infinite ease-out;
}

@keyframes waPulseAnim {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

@media (max-width: 560px) {
  .whatsapp-float {
    bottom: 90px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
}

/* ============================================================
   FAIXA AGUARDE (Coming Soon)
   ============================================================ */
.coming-soon-banner {
  width: 100%;
  background: #000000;
  padding: 80px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.coming-soon-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,199,44,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,199,44,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.coming-soon-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-main), var(--gold), var(--gold-main), transparent);
}

.coming-soon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.coming-soon-icon {
  font-size: 1.6rem;
  color: #ffffff;
  animation: coming-soon-pulse 2s ease-in-out infinite;
  display: block;
  line-height: 1;
}

.coming-soon-icon:last-child {
  animation-delay: 0.5s;
}

@keyframes coming-soon-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.coming-soon-title {
  font-family: Cinzel, serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3em;
  margin: 0;
  text-shadow: none;
}

.coming-soon-sub {
  font-family: Inter, sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0;
}

/* Hide search bar as requested */
.search-bar-wrap { display: none !important; }

/* Hide search bar inner as requested */
.search-bar-inner { display: none !important; }

/* Hide cart icon and actions group as requested */
.cart-icon-btn { display: none !important; }
.header-actions-group { display: none !important; }
