@charset "utf-8";
/* CSS Document */

@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-family: sans-serif;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 999;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
  height: 100vh;
  font-family: 'Poppins';
}

/* Sign up page*/
/* prost divy */
.spcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.spbox {
  flex: 1; /* R�wna szerokosc dla obu div�w */
  padding: 20px;
  text-align: center;
}

.sptext-box {
  background-color: white;
}

.spimage-box img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

/* Responsywnosc - na telefonach divy ukladaja sie jeden pod drugim */
@media (max-width: 768px) {
  .spcontainer {
    flex-direction: column;
  }
}
/* koniec proste divy */

/* accordion */
.accordion {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.accordion-item {
  border-bottom: none;
}
.accordion-header {
  background: #fff;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
}
.accordion-content {
  display: none;
  padding: 3px 15px;
  background: #fff;
}
.active .accordion-content {
  display: block;
}
/* koniec accordion*/

img.myicon {
  padding: 10px;
  max-width: 30%;
  height: auto;
}

.red { color: #e98110; font-size: normal; font-size: inherit; }
.box { float: left; font-size: small; width: 50%; text-align: left; }
.nobull { list-style-type: none; }

.haslo {
  float: left;
  padding-right: 10px;
  vertical-align: middle;
  padding-top: 30px;
  flex: 1; /* Pozwala divowi na elastyczne dopasowanie */
  display: flex; /* Flexbox wewnatrz div-a */
  align-items: center;
}

.thin {
  font-weight: 300;
  color: black;
  font-size: inherit;
  font-size: 100% !important;
}

/* ===== TILES ===== */
.tiles-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.tiles-container2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

/* kafelek */
.tile {
  background: white;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  text-align: center;
  height: auto;
}

/* domyslnie (desktop/tablet) zostawiam Twoje 50% dla tiles og�lnie */
.tile img {
  max-width: 50%;
  height: auto;
  margin-bottom: 10px;
}

.tile p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.small {
  font-size: small;
  color: #555;
}

/* MOBILE: tiles-container -> 1 kolumna, kafelki wysrodkowane (jak miales) */
@media (max-width: 768px) {
  .tiles-container {
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
  }

  .tile {
    width: 90%;
    max-width: 300px;
    padding: 5px;
  }
}

/* MOBILE: tiles-container2 -> 1 kolumna, kafelki na full width + zdjecia na full width */
@media (max-width: 768px) {
  .tiles-container2 {
    grid-template-columns: 1fr;
    justify-items: stretch;   /* wazne: nie center */
    width: 100%;
    padding: 0 12px;          /* delikatny margines od krawedzi ekranu */
    box-sizing: border-box;
  }

  .tiles-container2 .tile {
    width: 100%;
    max-width: none;
    padding: 10px;
  }

  .tiles-container2 .tile img {
    width: 100%;
    max-width: 100%;          /* nadpisuje globalne 50% tylko dla container2 */
    height: auto;
    display: block;
    margin-bottom: 10px;
  }
}
/* ===== KONIEC TILES ===== */

.nopad {
  padding: 0px;
  margin: 2px;
  font-size: normal;
}

.mylist {
  color: #3d3d3d;
  text-align: left;
  font-size: smaller;
}

.tile2 {
  background: #f3f3f3;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px;
  text-align: center;
  aspect-ratio: 1 / 1;
  margin-top: 10px;
}

.tile i {
  font-size: 40px;
  color: #555;
  margin-bottom: 10px;
}

.checkout-btn {
  background-color: #e98110;
  color: white;
  font-size: smaller;
  font-weight: thin;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.checkout-btn:hover {
  background-color: #b71c1c;
  transform: scale(1.05);
}

.checkout-btn:active {
  transform: scale(0.95);
}

/* kooniec signup*/

.spinner-border {
  color: #e3233c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.main {
  margin: 0px auto;
  padding: 0;
  height: auto;
}

.header-banner {
  position: relative;
  height: 30vh;
  background-image: url("../images/black_belt_web.png");
  background-size: cover;
  background-position: center;
}

.header-logo {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  background-image: url("../images/logo_cirlces.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.footer {
  padding: 20px;
  width: 100%;
  text-align: center;
}

.title {
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: center;
  font-weight: bold;
}

.tag-line {
  margin-top: 0;
  color: #e3233c;
}

.btn {
  background-attachment: #e3233c;
}

.form-heading {
  text-align: center;
  padding: 20px;
}

.eye-icon {
  position: absolute;
  left: 60%;
  transform: translate(0, 150%);
  color: #333;
  cursor: pointer;
  border: 0;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  background: transparent;
  width: 25%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-bottom: 1px solid rgb(57, 56, 56);
  outline: none;
  text-align: center;
}

input[type="submit"] {
  background-color: #e3233c;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0px 70px;
  margin: 10px 0;
  cursor: pointer;
  font-size: 1.5rem;
}

.form-link {
  color: #e3233c;
  text-align: center;
  display: block;
  margin-top: 10px;
  text-decoration: none;
}

.subscription-manager {
  height: 60vh;
  font-size: 0.7rem;
}

.menu-tags p,
span {
  padding: 0;
  margin: 0;
  color: white;
  font-size: 0.6rem;
}

.icons {
  width: 60px;
  height: 60px;
}

.menu-tags {
  background-color: #e3233c;
}

.card-header h5 {
  font-size: 1rem;
  white-space: nowrap;
  margin: 0;
}

.card-header span {
  font-size: 0.7rem;
  white-space: nowrap;
}

.card-header button {
  font-size: 0.7rem;
  background-color: #e3233c;
  color: #f5f5f5;
  padding: 3px 16px;
}

.card-header button:hover {
  color: #f5f5f5;
  background-color: #c90520;
}

.card-description p {
  font-size: 0.7rem;
  margin-top: 0.5rem;
}

.line-container {
  width: 70%;
  margin: 10px 0;
  margin-bottom: 15px;
  position: relative;
  height: 3px;
  background-color: #e3233c;
  border-radius: 50%;
}

.card-1-line-container {
  width: 70%;
  margin: 10px 0;
  margin-bottom: 15px;
  position: relative;
  height: 3px;
  background-color: #afaeae;
  border-radius: 50%;
}

.card-1-line-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 67%;
  height: 3px;
  background-color: #e3233c;
  border-radius: 10px;
  z-index: 1;
}

.circle,
.twenty-circle,
.nine-circle,
.fifteen-circle,
.six-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e3233c;
  border: 2px solid #afaeae;
  z-index: 1;
}

.circle-last {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #afaeae;
  border: 1px solid #afaeae;
  z-index: 2;
}

.circle-number {
  position: absolute;
  bottom: 8px;
  transform: translateY(-50%);
  font-size: 0.5rem;
}

.circle-text {
  position: absolute;
  transform: translateY(50%);
  transform: translateX(-50%);
  font-size: 0.5rem;
  color: gray;
  margin-top: 16px;
  text-align: center;
  white-space: nowrap;
}

.nine-circle-text {
  position: absolute;
  transform: translateY(50%);
  transform: translateX(-50%);
  font-size: 0.4rem;
  color: gray;
  margin-top: 16px;
  text-align: center;
  white-space: nowrap;
}

/* pozycje kropek */
.circle:nth-child(1) { left: 0%; }
.circle:nth-child(2) { left: 22%; }
.circle:nth-child(3) { left: 44%; }
.circle:nth-child(4) { left: 66%; }
.circle:nth-child(5) { left: 88%; }

.nine-circle:nth-child(1) { left: 0%; }
.nine-circle:nth-child(2) { left: 12.5%; }
.nine-circle:nth-child(3) { left: 25%; }
.nine-circle:nth-child(4) { left: 37.5%; }
.nine-circle:nth-child(5) { left: 50%; }
.nine-circle:nth-child(6) { left: 62.5%; }
.nine-circle:nth-child(7) { left: 75%; }
.nine-circle:nth-child(8) { left: 87.5%; }
.nine-circle:nth-child(9) { left: 100%; }

.six-circle:nth-child(1) { left: 0%; }
.six-circle:nth-child(2) { left: 20%; }
.six-circle:nth-child(3) { left: 40%; }
.six-circle:nth-child(4) { left: 60%; }
.six-circle:nth-child(5) { left: 80%; }
.six-circle:nth-child(6) { left: 100%; }

.fifteen-circle:nth-child(1) { left: 0%; }
.fifteen-circle:nth-child(2) { left: 8.14%; }
.fifteen-circle:nth-child(3) { left: 15.28%; }
.fifteen-circle:nth-child(4) { left: 22.42%; }
.fifteen-circle:nth-child(5) { left: 30.56%; }
.fifteen-circle:nth-child(6) { left: 37.7%; }
.fifteen-circle:nth-child(7) { left: 44.84%; }
.fifteen-circle:nth-child(8) { left: 51.12%; }
.fifteen-circle:nth-child(9) { left: 58.12%; }
.fifteen-circle:nth-child(10) { left: 65.26%; }
.fifteen-circle:nth-child(11) { left: 72.4%; }
.fifteen-circle:nth-child(12) { left: 78.54%; }
.fifteen-circle:nth-child(13) { left: 85.68%; }
.fifteen-circle:nth-child(14) { left: 92.82%; }
.fifteen-circle:nth-child(15) { left: 99%; }

.twenty-circle:nth-child(1) { left: 0%; }
.twenty-circle:nth-child(2) { left: 4.3%; }
.twenty-circle:nth-child(3) { left: 8.6%; }
.twenty-circle:nth-child(4) { left: 12.9%; }
.twenty-circle:nth-child(5) { left: 17.2%; }
.twenty-circle:nth-child(6) { left: 21.5%; }
.twenty-circle:nth-child(7) { left: 25.8%; }
.twenty-circle:nth-child(8) { left: 30.1%; }
.twenty-circle:nth-child(9) { left: 34.4%; }
.twenty-circle:nth-child(10) { left: 38.7%; }
.twenty-circle:nth-child(11) { left: 43%; }
.twenty-circle:nth-child(12) { left: 47.3%; }
.twenty-circle:nth-child(13) { left: 51.6%; }
.twenty-circle:nth-child(14) { left: 55.9%; }
.twenty-circle:nth-child(15) { left: 60.2%; }
.twenty-circle:nth-child(16) { left: 64.5%; }
.twenty-circle:nth-child(17) { left: 68.8%; }
.twenty-circle:nth-child(18) { left: 73.1%; }
.twenty-circle:nth-child(19) { left: 77.4%; }
.twenty-circle:nth-child(20) { left: 81.7%; }
.twenty-circle:nth-child(21) { left: 86%; }
.twenty-circle:nth-child(22) { left: 90.3%; }
.twenty-circle:nth-child(23) { left: 94.6%; }
.twenty-circle:nth-child(24) { left: 98.9%; }

/* Styles for screens smaller than 768px */
@media screen and (max-width: 767px) {
  .header-logo { width: 110px; height: 110px; }
  .header-banner { height: 20vh; }

  input[type="username"],
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    background: transparent;
    width: 60%;
  }

  .eye-icon { left: 70%; }
  .error-message { width: 60%; }

  .card-header h5 { font-size: 0.6rem; }
  .card-header span { font-size: 0.4rem; }
  .card-header button { font-size: 0.3rem; padding: 3px 16px; margin: 4px 0; }
  .card-description p { font-size: 0.4rem; margin: 3px 0; }

  .line-container { width: 70%; margin: 15px 0; height: 2px; margin-bottom: 25px; }
  .card-1-line-container { width: 70%; margin: 15px 0; height: 2px; margin-bottom: 25px; }

  .line-container::before { height: 2px; }
  .card-1-line-container::before { height: 2px; }

  .circle,
  .nine-circle,
  .six-circle,
  .fifteen-circle {
    width: 10px;
    height: 10px;
    border: 2px solid #afaeae;
  }

  .twenty-circle {
    width: 4px;
    height: 4px;
    border: 1px solid #afaeae;
  }

  .circle-number { bottom: 4px; font-size: 0.4rem; }
  .circle-text { font-size: 0.3rem; margin: 16px; }
  .nine-circle-text { font-size: 0.3rem; margin-top: 16px; }

  .icons { width: 16px; height: 16px; }

  .menu-tags p,
  span { font-size: 0.2rem; }
}

/* Styles for screens larger than 992px */
@media screen and (min-width: 992px) and (max-width: 1080px) {
  .card-header h5 { font-size: 0.6rem; }
  .card-header span { font-size: 0.4rem; }
  .card-header button { font-size: 0.4rem; }
  .card-description p { font-size: 0.4rem; margin: 3px 0; }

  .line-container { width: 60%; margin: 15px 0; }
  .card-1-line-container { width: 60%; margin: 15px 0; }

  .circle .nine-circle,
  .six-circle,
  .fifteen-circle {
    width: 10px;
    height: 10px;
    border: 2px solid #afaeae;
  }

  .twenty-circle { width: 8px; height: 8px; border: 1px solid #afaeae; }

  .circle-number { bottom: 8px; font-size: 0.4rem; }
  .circle-text { font-size: 0.3rem; margin-top: 16px; }

  .nine-circle-text {
    font-size: 0.2rem;
    margin-top: 16px;
    white-space: nowrap;
  }
}

/* Styles for screens between 768px and 991px */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .card-header h5 { font-size: 0.6rem; }
  .card-header span { font-size: 0.4rem; }
  .card-header button { font-size: 0.4rem; }
  .card-description p { font-size: 0.4rem; margin: 3px 0; }

  .line-container { width: 60%; margin: 15px 0; }
  .card-1-line-container { width: 60%; margin: 15px 0; }

  .circle,
  .nine-circle,
  .six-circle,
  .fifteen-circle {
    width: 10px;
    height: 10px;
    border: 2px solid #afaeae;
  }

  .twenty-circle { width: 6px; height: 6px; border: 1px solid #afaeae; }

  .circle-number { bottom: 8px; font-size: 0.4rem; }
  .circle-text { font-size: 0.3rem; margin-top: 16px; }
  .nine-circle-text { font-size: 0.2rem; margin-top: 16px; }

  .icons { width: 50px; height: 50px; }

  .menu-tags p,
  span { font-size: 0.5rem; }
}

@media screen and (max-width: 412px) {
  .card-header h5 { font-size: 0.5rem; }

  .circle-number { bottom: 8px; font-size: 0.2rem; }

  .circle-text {
    font-size: 0.2rem;
    margin-top: 16px;
    transform: translateY(50%);
    transform: translateX(-100%);
  }

  .nine-circle-text { font-size: 0.2rem; margin-top: 16px; }

  .circle,
  .nine-circle,
  .six-circle,
  .fifteen-circle {
    width: 5px;
    height: 5px;
    border: 1px solid #afaeae;
  }

  .icons { width: 16px; height: 16px; }

  .menu-tags p,
  span { font-size: 0.2rem; }
}

@media screen and (min-width: 1080px) {
  .content-container { max-width: 70%; }
  .subscription-manager { height: 45vh; }
}

.striped-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.striped-list li {
  padding: 12px 16px;
}

.striped-list li:nth-child(even) {
  background-color: #f5f5f5;
}

/* ===== TESTIMONIAL SLIDER - ISOLATED (paste at end of signUp.css) ===== */

.testimonial-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* slider container must be the positioning context for arrows */
.testimonial-wrap .t-slider {
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  padding: 8px 44px 0 !important;
  padding-bottom: 50px !important;
  min-height: 360px !important;
}

/* track must be one row */
.testimonial-wrap .t-slider__track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  transition: transform 450ms ease !important;
  will-change: transform;
}

/* slide widths (mobile 1, desktop 2) */
.testimonial-wrap .t-slide { flex: 0 0 100% !important; }
@media (min-width: 650px) {
  .testimonial-wrap .t-slide { flex: 0 0 calc((100% - 16px) / 2) !important; }
}

/* card style (fixed height) */
.testimonial-wrap .t-card {
  height: 280px !important;
  background: #fff !important;
  border-radius: 14px !important;
  padding: 16px !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08) !important;
  display: flex !important;
  flex-direction: column !important;
}

/* arrows - force absolute inside slider (NOT fixed) */
.testimonial-wrap .t-slider__btn {
  position: absolute !important;
  top: 140px !important;
  transform: translateY(-50%) !important;
  z-index: 50 !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(0,0,0,0.5) !important;
  color: white !important;
  cursor: pointer !important;
  font-size: 18px !important;
}
.testimonial-wrap .t-slider__btn--prev { left: 8px !important; }
.testimonial-wrap .t-slider__btn--next { right: 8px !important; }
.testimonial-wrap .t-slider__btn:hover { background: rgba(0,0,0,0.7) !important; }

/* Ensure cards have proper styling */
.testimonial-wrap .t-card__top {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-wrap .t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-wrap .t-meta { flex: 1; }

.testimonial-wrap .t-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.testimonial-wrap .t-handle {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

.testimonial-wrap .t-stars {
  color: #ffc107;
  font-size: 14px;
}

.testimonial-wrap .t-text {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin: 0;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

/* Dots styling */
.testimonial-wrap .t-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.testimonial-wrap .t-slider__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  padding: 0;
}

.testimonial-wrap .t-slider__dots button[aria-current="true"] {
  background: #ac072b;
  width: 24px;
  border-radius: 4px;
}

.responsive-image {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
}

/* Desktop - ograniczenie maksymalnej szerokosci */
@media (min-width: 768px) {
  .responsive-image { max-width: 800px; }
}
/* Responsive YouTube embed */
.yt-wrap{
  width: 100%;
  max-width: 900px;      /* <-- ustaw ile chcesz na desktopie (np. 720/800/900) */
  margin: 20px auto;     /* wysrodkowanie */
  aspect-ratio: 16 / 9;  /* proporcje */
}

.yt-wrap iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* spinner */
  .checkout-loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }

  .checkout-loader.active {
    display: flex;
  }

  .lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }

  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
  }

  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }

  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }

  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }

  @keyframes lds-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


/* dodalem kod *//* CSS Document */

