/* =========================
   RESET
========================= */
*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%}

body{
  font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
  background:url('../img/fundo-versace.png') center/cover fixed no-repeat;
  background-color:#0b0b0b;
  color:#f2f2f2;
}

.bg-overlay{
  position:fixed;
  inset:0;
  background:radial-gradient(circle at top,rgba(0,0,0,.55),rgba(0,0,0,.88));
  z-index:-1;
}

/* =========================
   HEADER
========================= */
.top-bar{
  position:sticky;
  top:0;
  z-index:999;
  backdrop-filter:blur(8px);
  background:rgba(255,255,255,.92);
  border-bottom:2px solid #d4af37;
}

.top-content{
  max-width:1200px;
  margin:0 auto;
  padding:18px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  position:relative;
}

.logo{text-decoration:none}
.logo h1{
  display:flex;
  align-items:center;
  font-size:34px;
  letter-spacing:4px;
}
.logo .gold{color:#d4af37;font-weight:900}
.logo .secret{color:#000;font-weight:300;margin-left:8px}

/* MENU */
.menu{display:flex;align-items:center;gap:18px}
.menu a{
  text-decoration:none;
  color:#000;
  font-weight:700;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:1px;
  padding:8px 10px;
  border-radius:10px;
  transition:.25s;
}
.menu a:hover{color:#d4af37;background:rgba(212,175,55,.08)}
.menu a.active{color:#d4af37}

/* MENU MOBILE */
.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(0,0,0,.15);
  background:#fff;
  border-radius:12px;
  cursor:pointer;
  padding:10px;
}
.menu-btn span{
  display:block;
  height:2px;
  background:#000;
  border-radius:999px;
  transition:.25s;
}
.menu-btn span+span{margin-top:6px}

/* CARRINHO */
.cart{
  border:1px solid rgba(0,0,0,.15);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-size:18px;
  position:relative;
}
.cart span{
  position:absolute;
  top:-8px;
  right:-8px;
  background:#000;
  color:#d4af37;
  font-size:11px;
  padding:4px 7px;
  border-radius:999px;
  font-weight:900;
}

/* =========================
   PAGE / SEÇÕES
========================= */
.page{max-width:1200px;margin:0 auto;padding:0 22px 60px}
.section{margin-top:36px}
.section-head{margin-bottom:16px}

.section-head h3{
  font-size:22px;
  letter-spacing:2px;
  text-transform:uppercase;
}
.section-head p{
  margin-top:6px;
  color:rgba(255,255,255,.75);
}

/* =========================
   GRID PRODUTOS
========================= */
.produtos{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
}

/* CARD */
.card{
  background:rgba(255,255,255,.92);
  color:#000;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(212,175,55,.22);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  transition:.25s;
}
.card:hover{
  transform:translateY(-6px);
  border-color:rgba(212,175,55,.7);
}

.card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.badge{
  position:absolute;
  top:12px;
  left:12px;
  background:#000;
  color:#d4af37;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
}

.card h4{
  padding:14px 14px 6px;
  font-size:15px;
  text-transform:uppercase;
}
.desc{
  padding:0 14px 12px;
  color:rgba(0,0,0,.7);
  font-size:13px;
}
.row{
  padding:0 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.preco{font-size:16px;font-weight:900}

/* BOTÃO ADD */
.btn-add{
  background:#000;
  color:#d4af37;
  border:1px solid #d4af37;
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
  font-weight:900;
  text-transform:uppercase;
  font-size:11px;
}
.btn-add:hover{background:#d4af37;color:#000}

/* =========================
   CARD LINK (produto clicável)
========================= */
.card-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

/* =========================
   COLEÇÕES
========================= */
.colecoes-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:22px;
}

.colecao-card{
  position:relative;
  height:320px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(212,175,55,.28);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  display:flex;
  align-items:flex-end;
  text-decoration:none;
  color:#fff;
}

.colecao-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.colecao-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.78),rgba(0,0,0,.18));
}

.colecao-content{
  position:relative;
  z-index:2;
  width:100%;
  padding:18px;
}

.colecao-content h4{
  font-size:18px;
  letter-spacing:2px;
  text-transform:uppercase;
}

/* =========================
   PRODUTO DETALHE
========================= */
.produto-detalhe{display:flex;justify-content:center}

.produto-box{
  width:min(920px,92vw);
  margin:42px auto;
  display:flex;
  gap:22px;
  align-items:flex-start;
}

.produto-img{flex:0 0 480px}

.produto-img img{
  width:100%;
  max-width:480px;
  border-radius:16px;
}

.produto-info{flex:1;max-width:320px}

.produto-preco{
  font-size:34px;
  color:gold;
  margin:16px 0;
}

/* =========================
   FOOTER
========================= */
.footer{
  margin-top:50px;
  border-top:2px solid rgba(212,175,55,.65);
  padding-top:28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(212,175,55,.28);
  border-radius:18px;
  padding:18px;
}
.footer h5{
  color:#d4af37;
  letter-spacing:2px;
  text-transform:uppercase;
}
.footer-bottom{
  text-align:center;
  margin-top:14px;
  color:rgba(255,255,255,.65);
  font-size:11px;
}

/* ===== alinhar cards à esquerda de verdade ===== */
.produtos{
  justify-content: start !important; /* grid começa na esquerda */
  justify-items: start !important;   /* itens começam na esquerda */
}

/* o item do grid é o <a>, então ele não pode ter width:100% */
.card-link{
  width: auto !important;
  justify-self: start !important;
  display: block;
}

/* define uma largura fixa elegante pro card */
.card{
  width: 300px !important;    /* ajuste: 280/300/320 */
  max-width: none !important;
}