/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(225,192,106,.70);
  background: rgba(201,162,74,.20);
  color: var(--gold2);
  text-decoration:none;
  letter-spacing: .06em;
  cursor:pointer;
  transition: transform .2s, border-color .2s, background .2s;
}
.btn:hover{
  background: rgba(201,162,74,.28);
  transform: translateY(-1px);
}

.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(201,162,74,.28);
  color: rgba(255,255,255,.85);
}
.btn-ghost:hover{
  border-color: rgba(225,192,106,.70);
  color: var(--gold2);
}

/* Cards */
.card{
  margin:0;
  background: linear-gradient(180deg, rgba(18,18,18,.70), rgba(8,8,8,.92));
  border: 1px solid rgba(201,162,74,.18);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.card:hover{
  transform: translateY(-6px);
  border-color: rgba(225,192,106,.70);
  box-shadow: 0 28px 60px rgba(0,0,0,.55);
}

.product-card{
  display:flex;
  flex-direction:column;
  cursor:pointer;
  outline:none;
}
.product-card img{
  width:100%;
  height: 220px;
  object-fit: cover;
}
.product-card figcaption{
  padding: 14px 14px 16px;
  color: var(--gold);
  font-size: 16px;
  border-top: 1px solid rgba(201,162,74,.14);
  background: rgba(0,0,0,.35);
}

.product-card:focus{
  box-shadow: 0 0 0 4px rgba(201,162,74,.18), var(--shadow);
}

@media (max-width: 560px){
  .product-card img{ height: 240px; }
}

/* Social icons row */
.social-row{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:center;
  align-items:center;
}

.social-btn{
  width: 42px; height: 42px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(201,162,74,.35);
  background: rgba(255,255,255,.05);
  text-decoration:none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.social-btn i{ font-size: 16px; color: var(--gold2); }
.social-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.24);
  border-color: rgba(225,192,106,.85);
}

/* Inline link */
.inline-link,
.inline-link:visited{
  color: var(--gold) !important;
  text-decoration:none !important;
  border-bottom: 1px solid rgba(201,162,74,.35);
}
.inline-link:hover{
  color: var(--gold2) !important;
  border-bottom-color: rgba(225,192,106,1);
}

.small-note{
  text-align:center;
  margin-top: 14px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}

/* Floating WhatsApp */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #1ebd5a);
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  z-index: 90;
}
.wa-float i{ font-size: 22px; color: #07150d; }
