/* ============================================
   GLAMGIRL.SK — iba nahradenie loga textom
   Vložiť cez: Správa obsahu → Globálny HTML kód
   ============================================ */

/* --- Import fontu pre logo --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

/* --- Nahradenie starého rozmazaného loga elegantným textovým logom --- */
#pageHeaderContent img {
  display: none !important;
}
#pageHeaderContent a {
  display: block;
  text-decoration: none;
}
#pageHeaderContent a:first-of-type {
  display: none;
}
#pageHeaderContent a:last-of-type::after {
  content: "GLAM GIRL";
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 46px;
  letter-spacing: 10px;
  color: #855d4a;
  text-align: center;
  padding: 45px 0 10px 0;
}
#pageHeaderContent::after {
  content: "DÁMSKA MÓDA & DOPLNKY";
  display: block;
  font-family: sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: #999;
  text-align: center;
  padding-bottom: 35px;
}

/* --- Jednotná veľkosť fotiek produktov --- */
.c-product .p-img {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 14px 14px 0 0;
}
.c-product .p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.c-product {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.c-product:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
}
.c-product:hover .p-img img {
  transform: scale(1.06);
}

/* --- Väčšie medzery medzi produktmi --- */
#mainPageProductsView {
  gap: 24px !important;
}
