<style>
@media (min-width: 1200px) {
  body.in-8-duvodu-proc-zvolit-billy-goat-bcr .content-inner {
    display: block !important;
    max-width: 1600px !important;
    margin: 0px auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    text-align: center;
  }
}

.hero-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
}

.hero-section {
  background: url('https://www.cime-shop.cz/user/documents/upload/Landing page/Billy Goat/BG_uvodni.jpg') center center / cover no-repeat;
  padding: 100px 20px;
  height: 353px;
  position: relative;
}

.hero-logo {
  position: absolute;
  top: 40px;
  right: 40px;
  height: 100px; /* desktop velikost */
  width: auto;
}

@media (max-width: 768px) {
  .hero-logo {
    top: 20px;
    right: 20px;  /* místo left */
    height: 80px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 250px;
    padding: 0;
  }
}

.benefits {
  padding: 20px 20px;
  background: #fff;
  text-align: center;
}

.benefits h2 {
  font-size: 2em;
  margin-bottom: 50px;
  color: #222;
  font-weight: 900;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop = 4 sloupce */
  gap: 40px;
}

.benefit {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 10px;
  transition: opacity 0.8s ease, transform 0.8s ease;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.benefit:hover {
  transform: translateY(-8px) scale(1.03);
}

.benefit img {
  max-width: 160px;
  margin-bottom: 10px;
}

.benefit h3 {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333;
  font-weight: 900;
}

.benefit p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.4em;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr); /* tablet = 2 sloupce */
  }
}
@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr; /* mobil = 1 sloupec */
  }
}

.benefit.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.comparison {
  padding: 20px 15px;
  text-align: center;
}

.comparison h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #222;
  font-weight: 900;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 12px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 0.95em;
}

.comparison-table th {
  background: #ff6600;
  color: #fff;
  font-size: 1em;
}

.comparison-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* zvýraznění sloupce BCR */
.comparison-table td:nth-child(2) {
  font-weight: bold;
  background: #eaf9ea;
}

@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    font-size: 0.8em;
    padding: 8px 6px;
  }

  .comparison h2 {
    font-size: 1.5em;
    font-weight: 900;
  }
}

.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px 20px;
  align-items: flex-start;
}

.product-gallery {
  flex: 1 1 50%;
  text-align: center;
}

.main-image {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: opacity 0.3s ease;
}

.thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s ease, transform 0.2s ease;
}

.thumbnails img:hover {
  border: 2px solid #ff6600;
  transform: scale(1.05);
}

.thumbnails img.active {
  border: 2px solid #f9f9f9;
}

.product-info {
  flex: 1 1 45%;
  text-align: left;
  background: #f9f9f9;
  padding: 30px 50px;
}

.product-info h2 {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 900;
}

.product-info p {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .product-detail {
    flex-direction: column;
    gap: 20px;
  }

  .product-gallery,
  .product-info {
    flex: 1 1 100%;
    text-align: center;
  }

  .product-info {
    text-align: left;
  }
}

</style>