/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}


.wb-fullwidth {
  width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}




body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  line-height: 1.6;
  color: #111827;
  background: #fff;
} 

/* promenne*/
:root {
  --primary: #7c3aed;
  --primary-600: #6d28d9;
  --primary-50: #f5f3ff;
  --gray-600: #4b5563;
  --radius: 20px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Hero sekce */
.wb-hero {
  position: relative;
  overflow: hidden;
}
.wb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(53deg, rgba(242, 235, 255, 1) 0%, rgba(244, 233, 255, 1) 0%, rgba(252, 252, 252, 1) 49%, rgba(244, 233, 255, 1) 96%);
  z-index: 0;
  pointer-events: none;
}
.wb-hero .wb-copy,
.wb-hero .wb-nahled {
  position: relative;
  z-index: 1;
}

.wb-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  z-index: 1;
}
.wb-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  flex-shrink: 0;
}

/* Texty */
.wb-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 800;
  color: #48216b;
}
.wb-hero .wb-text {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--gray-600);
  margin: 0 0 28px;
  max-width: 38ch;
}

/* tlacitka */
.wb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.wb-btn {
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}
.wb-btn.wb-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.wb-btn.wb-secondary:hover {
  background: var(--primary-50);
}

.wb-guide {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 16px; /* stejný tvar jako vedlejší button */
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s, background 0.3s;
}

.wb-guide:hover {
  color: var(--primary-600);
}

/* Pulsující efekt */
.wb-guide-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(154, 97, 252, 0.25); 
  z-index: -1;

}









/* obrazek */
.wb-nahled {
  position: relative;
  top: 30px;
}
.wb-nahled img {
  width: 105%;
  height: 100%;
  max-width: none;
  margin-left: -5%;
}

/* fialovy pruh benefity */
.wb-benefity {
  background: var(--primary);
  color: #fff;
  padding: 18px 0;
}
.wb-benefity-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 500;
}
.wb-benefity-container span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}



.wb-benefity-container span {
  display: flex; /
  align-items: center; 
}

.wb-benefity-container span i {
  color: #f2e3ff; 
  font-size: 24px; 
  margin-right: 8px; 
}



/* Velikost */
.wb-velikost {
  padding: 30px 24px;
  margin-top: 40px;
  background: #fff;
}
.wb-velikost-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.wb-size-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.wb-size-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(124, 58, 237, 0.2);
}
.wb-size-card .wb-coded-bg {
  position: relative;
  width: 100%;
  padding-top: 90%;
  background: #f5f0e5;
  border-radius: 0;
  overflow: hidden;
}
.wb-size-card .wb-coded-bg img {
  position: absolute;
  top: 12%;
  left: 12%;
  width: 76%;
  height: 76%;
  object-fit: contain;
}
.wb-size-card .wb-coded-bg .wb-green-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #99a701;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wb-size-card .wb-coded-bg .wb-green-strip .wb-strip-text {
  color: #f0f0e1;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}


  
  .wb-orange-strip {
    background-color: #fc934c !important;
}

.wb-orange-strip .wb-strip-text {
    color: #fff !important;
}


.wb-recenze-card .wb-author-info span {
  color: #6b7280;
  font-size: 13px;
}
/* Dárkové balení */
.wb-darkove-baleni {
    padding: 60px 24px;
    background: #f9f7ff;
  }
  .wb-baleni-columns {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .wb-baleni-vlevo {
    padding-left: 0px;
  }
  .wb-baleni-vlevo h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: #48216b;
    margin-bottom: 20px;
  }
  .wb-baleni-vlevo .wb-gift-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 8px;
  }
  .wb-baleni-vpravo {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 140px;
    margin-left: 0px;
  }
  .wb-baleni-vpravo .wb-lead {
    font-size: clamp(16px, 2vw, 18px);
    color: #4b5563;
    margin-bottom: 16px;
  }
  .wb-baleni-vpravo .wb-gift-features {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    flex-wrap: nowrap;
  }
  .wb-baleni-vpravo .wb-gift-features li {
    position: relative;
    padding: 4px 10px 4px 22px;
    background: linear-gradient(90deg, rgba(124,58,237,0.15), rgba(109,40,217,0.15));
    border-radius: 6px;
    color: #374151;
    font-weight: 500;
    white-space: nowrap;
  }
  .wb-baleni-vpravo .wb-gift-features li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #7c3aed;
    font-size: 16px;
    line-height: 1;
  }
  
  /* Recenze */
  .wb-recenze {
    padding: 60px 24px;
    background: #f9f7ff;
    text-align: center;
  }
  .wb-recenze h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: #48216b;
    margin-bottom: 40px;
  }
  .wb-recenze-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
  }
  .wb-recenze-card {
    width: 300px;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
  }
  .wb-recenze-card .wb-stars {
    color: #fbbf24;
    font-size: 20px;
  }
  .wb-recenze-card p {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
  }
  .wb-recenze-card .wb-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
  }
  .wb-recenze-card .wb-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  .wb-recenze-card .wb-author-info {
    display: flex;
    flex-direction: column;
    font-size: 14px;
  }
  .wb-recenze-card .wb-author-info strong {
    color: #111827;
  }
  .wb-recenze-card .wb-author-info span {
    color: #6b7280;
    font-size: 13px;
  }
  
/* ===== Responzivita ===== */
@media (max-width: 980px) {
  .wb-hero {
    display: block;
    text-align: center;
  }
  .wb-hero .wb-nahled {
    margin-top: 30px;
    top: 0;
  }
  .wb-hero .wb-actions {
    justify-content: center;
  }
  .wb-baleni-columns {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .wb-baleni-vpravo {
    padding-top: 20px;
    max-width: 100%;
    text-align: center;
  }
  .wb-baleni-vlevo {
    padding-left: 0;
  }
  .wb-recenze-cards {
    justify-content: center;
  }
  .wb-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .wb-nahled img {
    width: 100%;
    margin-left: 0;
  }
  .wb-hero .wb-text {
    text-align: center;
    max-width: 90%;
    margin: 0 auto 28px;
    font-size: clamp(16px, 2vw, 20px);
  }
  
  .wb-velikost-container {
    grid-template-columns: 1fr;
  }
  .wb-baleni-vpravo .wb-gift-features {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }

 
  .wb-benefity-container {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    /* Add text-align to the container to center block-level children */
    text-align: center; 
  }

  /* This will align the icon and text to the left */
  .wb-benefity-container span {
    display: flex; /* Ensures flexbox properties work */
    justify-content: flex-start; /* Aligns content to the left */
    width: 100%; /* Spans the full width to allow for left alignment */
  }


}
@media (max-width: 600px) {
  .wb-sizes-container {
    grid-template-columns: 1fr;
  }
  .wb-nahled img {
    width: 120%;
    margin-left: -10%;
  }
}
@media (max-width: 480px) {
  .wb-hero h1 {
    font-size: 28px;
  }
  .wb-hero .wb-text {
    font-size: 14px;
  }
  .wb-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
  .wb-recenze-card {
    width: 100%;
    max-width: none;
  }
  .wb-baleni-vlevo img {
    max-width: 90%;
  }
}