@media (max-width: 1024px) {

  #banner-xyy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
  }

  #banner-xyy a {
    display: block;
    background: #fff;
    position: relative; /* 🔥 nutné pro overlay */
  }

  #banner-xyy img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 🔥 OVERLAY */
  #banner-xyy .xy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 20px;
  }
}

/* TEXT */
#banner-xyy .xy-text {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
  font-family: inherit;
}

/* === TVOJE TLAČÍTKO (upravený vzhled) === */
#banner-xyy .shop-button {
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;                 /* 🔥 bílý text */
  border: 2px solid #fff;      /* 🔥 bílý rámeček */
  background: transparent;     /* 🔥 průhledné */
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  font-family: 'Inter', sans-serif;
}

#banner-xyy .shop-button:hover {
  background: #fff;            /* 🔥 vyplní se bíle */
  color: #343434;              /* 🔥 tmavý text */
}