/* ================================================================
   aaryans.cz — Hero fix: dots, category chips, hide mobile arrows
   ================================================================ */


/* 1. HIDE OLD CAROUSEL NAV TABS */
#carousel-navigation {
  display: none !important;
}

/* 2. HIDE ARROWS ON MOBILE */
@media screen and (max-width: 767px) {
  #carousel .carousel-control {
    display: none !important;
  }
}

/* 3. FORCE VISIBILITY — overrides any 3rd-party hiding */
#aaryans-dots-el {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  position: relative !important;
  z-index: 50 !important;
}
#aaryans-cat-chips-el {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  position: relative !important;
  z-index: 50 !important;
}

/* 4. DOTS */
#aaryans-dots-el {
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 0 4px !important;
  margin: 0 !important;
  background: transparent !important;
}
#aaryans-dots-el button {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  border: 2px solid rgb(0, 117, 160) !important;
  background: transparent !important;
  padding: 0 !important;
  cursor: pointer !important;
  outline: none !important;
  flex-shrink: 0 !important;
  transition: background 0.22s, transform 0.18s !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
#aaryans-dots-el button.active {
  background: rgb(0, 117, 160) !important;
  transform: scale(1.3) !important;
}
#aaryans-dots-el button:hover {
  background: rgba(0, 117, 160, 0.4) !important;
}

/* 5. CATEGORY CHIPS */

/* Outer wrapper — constrained to content width, centred */
.aaryans-cat-chips {
  width: 100% !important;
  max-width: 1200px !important;
  box-sizing: border-box !important;
  padding: 6px 40px 14px !important;  /* 40px sides clears the Hodnocení badge */
  margin: 0 auto !important;
  background: transparent !important;
}

/* Inner grid */
.aaryans-cat-chips__grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Individual chip */
.aaryans-cat-chips__chip {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  padding: 14px 16px !important;
  border-radius: 50px !important;
  border: none !important;
  outline: none !important;
  background: rgb(0, 117, 160) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease !important;
  box-shadow: 0 2px 6px rgba(0, 117, 160, 0.22) !important;
  -webkit-tap-highlight-color: transparent !important;
}
.aaryans-cat-chips__chip:hover,
.aaryans-cat-chips__chip:focus {
  background: rgb(0, 95, 130) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 117, 160, 0.32) !important;
}
.aaryans-cat-chips__chip:active {
  transform: translateY(0) !important;
}
.aaryans-cat-chips__chip--sale {
  background: rgb(220, 53, 69) !important;
}
.aaryans-cat-chips__chip--sale:hover,
.aaryans-cat-chips__chip--sale:focus {
  background: rgb(185, 40, 55) !important;
}

/* Tablet (768–1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .aaryans-cat-chips__chip {
    font-size: 12px !important;
    padding: 12px 10px !important;
  }
}

/* Mobile (≤767px): 2 chips per row */
@media screen and (max-width: 767px) {
  #aaryans-dots-el  { display: flex !important; }
  #aaryans-cat-chips-el { display: block !important; }
  .aaryans-cat-chips {
    padding: 6px 10px 12px !important;
    max-width: 100% !important;
  }
  .aaryans-cat-chips__grid {
    gap: 8px !important;
    justify-content: flex-start !important;
  }
  .aaryans-cat-chips__chip {
    flex: 0 0 calc(50% - 4px) !important;
    font-size: 12px !important;
    padding: 12px 8px !important;
    white-space: normal !important;
    text-align: center !important;
  }
}
