/* =========================================================
   PRODUCT CARD — Ambijent Dizajn / Alumera stil
   ========================================================= */

:root {
  --pc-bg: #1c1d21;            /* pozadina cele stranice */
  --pc-card-bg: #232427;       /* pozadina kartice */
  --pc-card-border: #2f3034;
  --pc-text-light: #f4f3f0;
  --pc-text-muted: #a8a8ac;
  --pc-accent: #c89b5c;        /* bronza/gold - cena, bedž */
  --pc-whatsapp: #25d366;      /* boja WhatsApp dugmeta */
  --pc-radius: 16px;
  --pc-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--pc-bg);
  padding: 60px 20px;

  /* Centrira karticu na stranici - ukloni ako ubacuješ u postojeći layout */
  display: flex;
  justify-content: center;
}

/* =========================================================
   KARTICA
   ========================================================= */

.product-card {
  width: 320px;
  background: var(--pc-card-bg);
  border: 1px solid var(--pc-card-border);
  border-radius: var(--pc-radius);
  overflow: hidden;
  box-shadow: var(--pc-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

/* ---- Slika ---- */

.product-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.06);
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pc-accent);
  color: #1c1d21;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

/* ---- Sadržaj ---- */

.product-card__body {
  padding: 20px 22px 22px;
}

.product-card__title {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: var(--pc-text-light);
  letter-spacing: 0.01em;
}

.product-card__desc {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--pc-text-muted);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--pc-card-border);
}

.product-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--pc-accent);
  white-space: nowrap;
}

/* ---- WhatsApp dugme ---- */

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pc-whatsapp);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card__cta:hover {
  background: #1ebc59;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.product-card__cta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---- Responsive (mobilni telefoni) ---- */

@media (max-width: 380px) {
  .product-card {
    width: 100%;
  }

  .product-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card__cta {
    width: 100%;
    justify-content: center;
  }
}
