/*
Theme Name:   Reco Child
Theme URI:    http://estudiopatagon.com/themes/wordpress/recov3
Author:       EstudioPatagon
Author URI:   https://1.envato.market/ep-portfolio-themes
Description:  Child theme, based on Reco
Template:     reco

*/

/* Add your custom code just below */


.cg-slider input[type="radio"] {
  display: none;
}

.cg-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cg-slider input:checked + .cg-slide {
  position: relative;
  opacity: 1;
  z-index: 2;
}

.cg-slide-img img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.cg-arrow-left, .cg-arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #c2185b;
  color: white;
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.cg-arrow-left { left: 10px; }
.cg-arrow-right { right: 10px; }

.cg-slider-thumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.cg-thumb-img {
  width: 70px;
  height: 50px;
  border-radius: 8px;
  opacity: 0.6;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.cg-thumb-img:hover,
.cg-slider-thumb label:focus img {
  opacity: 1;
  border-color: #c2185b;
}

#header nav {
    margin-top: 25px;
}


/* Prevent horizontal overflow globally */
html, body {
  overflow-x: hidden;
}


