:root {
  --dark-gray: #777676;
}
* {
  -webkit-tap-highlight-color: transparent; /* wyłącza niebieskie podświetlenie na iOS/Android */
  -webkit-touch-callout: none; /* wyłącza menu po długim przytrzymaniu (np. "Kopiuj link") */
}

h1 {
  padding: 0 !important;
}
.content {
  padding: 0 !important;
  height: auto !important;
}
.plany {
  display: flex;
  width: 100%;
  justify-content: space-around;
  min-height: calc(100dvh - 130px);
  align-items: center;
  flex-direction: column;
  gap:10px;
}
.plany .plan {
  display: flex;
  width: 100%;
  max-width: 600px;
  position: relative;
  flex-direction: column;
  /* margin:.5rem 0; */
  padding-bottom: 0.3rem;
  /* border-bottom: 1px solid #7776767c; */
  cursor: pointer;
  min-height:160px;
  align-items: center;
}
.bigger {
  padding: 0.5rem 0;
}
.top-row {
  display: flex;
  width: 100%;
}
.bottom-row {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.plan .dodatki {
  color: #777676;
  font-size: 0.8rem;
  /* text-align: justify; */
  padding: 0.5rem;
  transition: all 0.3s ease-in-out;
  /* height:380px; */
}

.plan .dodatki li {
  /* list-style-type: ; */
}

.plan .dodatki li {
  position: relative;
  color: #777676;
  padding-left: 1rem; /* miejsce na myślnik */
}

.plan .dodatki li::before {
  content: "–"; /* ← myślnik */
  position: absolute;
  left: 0;
  color: #777676;
}

.plan .dodatki li:last-child {
  padding-left: 0;
  margin-top: 1rem;
}

.plan .dodatki li:last-child::before {
  display: none;
}

.cut {
  height: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  /* display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis; */
}
.rotate {
  transform: rotate(180deg);
}
.plan .right-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 66%;
}
.plan .image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 33%;
  max-width: 200px;
}
.plan img {
  display: flex;
  width: 100%;
  height: auto;
}
.plan .cena {
  display: flex;
  position: absolute;
  color: var(--dark-gray);
  font-family: bukReg;
  top: 50%;
  width: 100%;
  justify-content: center;
  font-weight: bold;
  font-size: clamp(1rem, 4vw, 25px);
}

.plan .opis {
  display: flex;
  color: var(--dark-gray);
  font-family: bukReg;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  line-height: 1.4;
  font-size: 1rem;
  text-align: center;
  padding: 0.1rem;
  max-width: 170px;
}

/* .plan a {
    text-decoration: none;
    border: none !important;;
} */

.location {
  border: none !important;
  display: flex !important;
  flex-direction: column;
  padding-bottom: 3rem;
  text-decoration: none;
  color: #777676;
  font-family: bukReg;
}

.buy {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  margin: 0.3rem;
  height: 40px;
  font-size: 1.1rem;
  border: 1px solid #777676 !important;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
  background-color: #777676;
  font-family: bukReg;
  font-weight: normal;
  padding-top: 3px;
  cursor: pointer;
}

.arrow_down img {
  width: 44px;
  height: 44px;
}

a.buy.disabled {
 opacity:.55; 
  cursor:not-allowed; 
  pointer-events:auto; 
  position:relative; 
}
a.buy.disabled.has-tip:hover::after,
a.buy.disabled.has-tip:focus::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background: #000;
  color: #fff;
  font-size: 0.8rem;
  font-weight: normal;
  padding: 0.25rem 1rem;
  margin-top:1px;
  border-radius: 0.35rem;
  display:flex;
  width:200%;
  text-align:center;
  justify-content:center;
}
