/* Custom CSS for overriding category tree link colors */

/* Normal state - black/dark color */
.category-tree__item__link {
    color: #212529 !important;
}

/* Hover state - green */
.category-tree__item__link:hover {
    color: #4AB971 !important;
}

/* Active state - can stay green for better UX */
.category-tree__item.active>.category-tree__item__header.parent .category-tree__item__link {
    color: #4AB971 !important;
}

/* Title links - normal black, green on hover */
.category-tree__title__link {
    color: #212529 !important;
}

.category-tree__title__link:hover {
    color: #4AB971 !important;
}

/* All links in general for consistency */
.category-tree a {
    color: #212529 !important;
}

.category-tree a:hover {
    color: #4AB971 !important;
    text-decoration: underline;
}

.product-miniature .product-miniature__title {
    text-transform: lowercase;
}

.product-miniature .product-miniature__title::first-letter {
    text-transform: uppercase;
}


img.bemo-left-banner__image.scroll-to-top-disabled {
    width: -webkit-fill-available!important;
}

/* Bemo card styling */
.bemo-card-title {
    letter-spacing: -1px;
    color: #273048;
}

.bemo-card-label {
    font-weight: 800;
    font-size: 12px;
}

.bemo-card-button {
    padding: 9px 24px;
    font-size: 16px;
    font-weight: 800;
}


/*
=============================================
Klub Hodowców Bemo - CMS Page Styles
=============================================
*/

.bemo-breeders-club {
  padding: 40px 0;
}

/* Hero Banner */
.bemo-breeders-club .hero-banner {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
}

.bemo-breeders-club .hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Intro Text */
.bemo-breeders-club .intro-text {
  margin-bottom: 50px;
}

.bemo-breeders-club .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.bemo-breeders-club .brand-green {
  color: #52B86A;
}

/* Universal brand green color for all sections */
.brand-green {
  color: #52B86A;
}

.bemo-breeders-club .intro-description {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.bemo-breeders-club .intro-details {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* How to Join Section */
.bemo-breeders-club .how-to-join {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.bemo-breeders-club .join-left {
  flex: 1;
}

.bemo-breeders-club .join-right {
  flex: 0 0 400px;
}

.bemo-breeders-club .join-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bemo-breeders-club .section-subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

/* Steps */
.bemo-breeders-club .steps {
  margin-bottom: 30px;
}

.bemo-breeders-club .step {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.bemo-breeders-club .step-number {
  width: 45px;
  height: 45px;
  background: #52B86A;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.bemo-breeders-club .step-content {
  flex: 1;
  padding-top: 8px;
}

.bemo-breeders-club .step-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Before Join */
.bemo-breeders-club .before-join {
  margin-bottom: 30px;
}

.bemo-breeders-club .highlight-text {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.bemo-breeders-club .regulations-text {
  font-size: 15px;
  color: #555;
}

.bemo-breeders-club .brand-link {
  color: #52B86A;
  text-decoration: none;
  transition: color 0.3s;
}

.bemo-breeders-club .brand-link:hover {
  color: #3d9652;
  text-decoration: underline;
}

/* Join Button */
.bemo-breeders-club .btn-join {
  display: inline-block;
  background: #52B86A;
  color: white;
  padding: 15px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(82, 184, 106, 0.3);
}

.bemo-breeders-club .btn-join:hover {
  background: #3d9652;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(82, 184, 106, 0.4);
  color: white;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
  .bemo-breeders-club .how-to-join {
    flex-direction: column;
  }

  .bemo-breeders-club .join-right {
    flex: 1;
    width: 100%;
  }

  .bemo-benefits .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .bemo-benefits .benefits-title {
    font-size: 28px;
  }

  .bemo-benefits .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .bemo-breeders-club .section-title {
    font-size: 26px;
  }

  .bemo-breeders-club .intro-description {
    font-size: 16px;
  }

  .bemo-breeders-club .section-subtitle {
    font-size: 20px;
  }

  .bemo-benefits .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .bemo-benefits .products-grid {
    grid-template-columns: 1fr;
  }
}

/*
=============================================
Korzyści dla Członków Klubu - Benefits Section
=============================================
*/

.bemo-benefits {
  padding: 60px 0;
}

/* Benefits Title */
.bemo-benefits .benefits-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
}

/* Benefits Icons - Single Image */
.bemo-benefits .benefits-icons {
  margin-bottom: 50px;
  text-align: center;
}

.bemo-benefits .benefits-icons-image {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Bottom Banner */
.bemo-benefits .benefits-banner {
  margin-bottom: 50px;
  border-radius: 20px;
  overflow: hidden;
}

.bemo-benefits .benefits-banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Wyprawki Section */
.bemo-benefits .wyprawki-section {
  max-width: 100%;
  margin: 0 auto;
}

.bemo-benefits .wyprawki-description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

/* Wyprawki Notice */
.bemo-benefits .wyprawki-notice {
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 10px;
  padding: 20px;
  margin: 30px 0;
}

.bemo-benefits .wyprawki-notice p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

/* Wyprawki Variants */
.bemo-benefits .wyprawki-variants {
  margin-top: 40px;
}

.bemo-benefits .variants-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

.bemo-benefits .variant-box {
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.bemo-benefits .variant-header {
  background: #52B86A;
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.bemo-benefits .variant-price {
  font-size: 15px;
  margin-bottom: 20px;
  color: #333;
}

.bemo-benefits .variant-list {
  margin: 0;
  padding-left: 25px;
  list-style-type: decimal;
}

.bemo-benefits .variant-list li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Products Grid Placeholder */
.bemo-benefits .wyprawki-products {
  margin-top: 30px;
}

/* Products Grid */
.bemo-benefits .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

