/* Root variables
Definicje globalnych zmiennych CSS, które określają kolorystykę strony, w tym kolory tła, tekstów i akcentów.
*/

/* Body Styles
Podstawowe style dla całego dokumentu, ustawiające m.in. kolor tła, rodzinę czcionek, wyrównanie elementów i układ flex.
*/

/* Header Styles
Style dla nagłówka strony, określające jego pozycjonowanie, rozmiar i wyrównanie.
*/

/* Loading Bars
Style dla animowanych pasków ładowania na górze i dole strony, z określeniem pozycji, rozmiaru i gradientu kolorów.
*/

/* Blur Background
Style dla rozmytego tła, zdefiniowanie pozycji, rozmiaru, obrazu tła i filtru rozmycia.
*/

/* Header Text
Style dla tekstu w nagłówku, w tym rozmiar fontu, kolor, margines i efekt przejścia.
*/

/* Call to Action Button
Style dla przycisku zachęcającego do działania w nagłówku, określające jego wygląd i interakcje.
*/

/* Navigation Bar
Style dla paska nawigacji, w tym jego pozycjonowanie, układ, kolor tła i style dla logo oraz elementów nawigacyjnych.
*/

/* Footer Styles
Style dla stopki, określające tło, kolor tekstu, linki i ich interakcje oraz style dla obrazków.
*/

/* Media Queries for medium screens
Zestaw reguł dla responsywności strony na średnich ekranach, w tym zmiany w stylach nawigacji i nagłówka.
*/

/* Media Queries for small screens
Zestaw reguł dla responsywności strony na małych ekranach, w tym zmiany w stylach nawigacji, nagłówka i pozycjonowania elementów.
*/

:root {
  --bg-color: #d1c6c6;
  --bg2-color: #6693af;
  --blue: #0033a0;
  --black-color: #000;
  --white-color: #fefefe;
  --gray-color: gray;
  --red-color: #f55;
  --red2-color: #f40;
  --first-color: #193242;
  --second-color: #375465;
  --third-color: #183141;
  --fourth-color: #1a3344;
  --fifth-color: #385566;
  --sixth-color: #355264;
  --seventh-color: #1d384a;
  --eighth-color: #1e394b;
  --ninth-color: #395667;
  --ten-color: #203a4d;
}

@keyframes container {
  0% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

.logo img {
  border-radius: 50px;
  width: 90px;
}

.logo {
  transition: transform 0.2s;
}

.logo:hover {
  transform: scale(0.8);
}

#hamburger {
  display: none;
}

input#toggle {
  display: none;
}

.ui-widget-header{
background:rgb(10 10 10 / 8%) !important
}

.products label {
  border: 1px solid var(--white-color);
  padding: 10px 20px;
  margin-right: 5px;
  cursor: pointer;
  background: var(--white-color);
  border-radius: 3px;
  transition: 0.3s ease;
  width: fit-content;
  height: fit-content;
}

.products {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products > div {
  width: 90%;
  max-width: 400px;
  margin: auto;
}

.products label {
  margin: 5px;
  width: 100px;
  text-align: center;
}

.products input[type="radio"] + label {
  margin-right: 5px;
}

.products input:checked + label {
  background: var(--gray-color);
  color: var(--white-color);
}

input[type="radio"] {
  display: none;
}

.product_women-main,
.product_men-main,
.product_kids-main {
  display: none;
  width: 90%;
  justify-content: space-around;
  align-content: flex-end;
  flex-wrap: wrap;
  margin: 10px 10px 10px 10px;
}

.product_women {
  border: 1px solid var(--white-color);
  margin-bottom: 20px;
  background: var(--white-color);
  border-radius: 3px;
  padding: 20px;
  width: calc(33.333% - 40px);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.product_men {
  border: 1px solid var(--white-color);
  margin-bottom: 20px;
  background: var(--white-color);
  border-radius: 3px;
  width: calc(100% - 40px);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.product_kids {
  border: 1px solid var(--white-color);
  margin-bottom: 20px;
  background: var(--white-color);
  border-radius: 3px;
  padding: 20px;
  width: calc(33.333% - 40px);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}
/*INICIO GALERY*/
.container {
  background-color: white;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0px 0px 61px 7px #5e849c40;
  padding: 50px 20px;
  border-radius: 20px;
}

.gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 50px;
  grid-gap: 20px;
}

.item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  transition: 0.3s ease box-shadow;
}

.item:hover {
  box-shadow: 0px 0px 20px 3px #00000042;
}
.item:nth-last-child(1) {
  margin-bottom: 0;
}
.item h3 {
  width: 100%;
  padding: 20px;
  position: absolute;
  background-color: #00000040;
  color: aliceblue;
  bottom: -70px;
  font-weight: 300;
  transition: 0.5s ease-in-out bottom;
}
.item:hover h3 {
  bottom: 0;
}

.ui-galleria-panel{
	width: 100%!important;
    height: 100%!important;
	align-content:center!important;
		align-items:center!important;
}
.ui-galleria{
		width:100%!important;
		align-content:center!important;
		align-items:center!important;
		
	}
	
	
	.ui-galleria-caption{
		width:100%!important;
		text-align:center!important;
	}
	
	.li.ui-galleria-panel{
	width: 100%!important;
    height: 100%!important;
	align-content:center!important;
		align-items:center!important;
}

.ui-galleria-panel{
width: 100%!important;
    height: 100%!important;
}	
.ui-helper-hidden{
	width: 100%!important;
    height: 100%!important;
}


@media only screen and (min-width: 900px) {
  .container {
    max-width: 1160px;
    padding: 100px;
  }
  .header {
    flex-direction: row;
    justify-content: space-between;
  }
  .header h1 {
    font-size: 50px;
  }
  .header input {
    font-size: 24px;
  }
  .header ion-icon {
    font-size: 24px;
  }
  .gallery {
    grid-gap: 20px;
  }
}

@media ( max-width : 560px) {
	.ui-galleria{
		width:100%!important;
		
	}
	
	.item {
  width: 70%;
  height: 80%;
  object-fit: cover;
}
}

@media ( max-width : 470px) {
	.ui-galleria{
		width:100%!important;
		
	}
	
	.item {
  width: 55%;
  height: 80%;
  object-fit: cover;
}
}
@media ( max-width : 340px) {
	.ui-galleria{
		width:100%!important;
		
	}
	
	.item {
  width: 35%;
  height: 60%;
  object-fit: cover;
}
}

@media ( max-width : 240px) {
	.ui-galleria{
		width:100%!important;
		
	}
	
	.item {
  width: 25%;
  height: 40%;
  object-fit: cover;
}
}

/*FIN GALERY*/


/*
PARA RESPONSIVE TABLE
*/

.form {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    /*max-height: 600px;*/
    align-items: center;
}

.form h2 {
    color: var(--gray-color);
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: center;
}

.form p {
    margin-bottom: 20px;
    margin-left: 10px;
    width: 100%;
}

.form p:last-child {
    margin-bottom: 0;
}

.form input,
.form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid var(--white-color);
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 0.5rem;
}

.form input:invalid,
.form textarea:invalid {
    border: 2px solid var(--red2-color);
}

.form button {
    font-family: "Roboto", sans-serif;
    width: 200px;
    padding: 15px;
    border: none;
    background: var(--eighth-color);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: white;
    animation: fly 1000ms ease;
}

.form button:hover {
    background-color: var(--blue);
}


.form div {
    /*margin-top: 50px;*/
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

.form div span {
    margin-right: 10px;
}


.form textarea {
    resize: vertical;
    height: auto;
}
@media (max-width: 700px) {
    .form {
        max-width: 500px;
        width: 100%;
    }

    .form h2 {
        font-size: 1.5rem;
    }
}
/*
FIN PARA RESPONSIVE TABLE
*/


.product_women:hover,
.product_men:hover,
.product_kids:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation-name: container;
  animation-duration: 2s;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
}

.product_women img,
.product_men img,
.product_kids img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto 20px;
}

.product_women h3,
.product_men h3,
.product_kids h3 {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--bg-color);
}

.product_women p,
.product_men p,
.product_kid p {
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--gray-color);
}

.product_women a,
.product_men a,
.product_kids a {
  background: var(--black-color);
  color: var(--white-color);
  border: 0;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product a:hover {
  background: var(--bg-color);
}

#all:checked ~ .product_men-main,
#all:checked ~ .product_women-main,
#all:checked ~ .product_kids-main,
#men:checked ~ .product_men-main,
#women:checked ~ .product_women-main,
#kids:checked ~ .product_kids-main {
  display: flex;
}

#men:checked ~ .product_women-main,
#men:checked ~ .product_kids-main,
#women:checked ~ .product_men-main,
#women:checked ~ .product_kids-main,
#kids:checked ~ .product_men-main,
#kids:checked ~ .product_women-main {
  display: none;
}

a {
  color: var(--white-color);
  text-decoration: none;
}

a:hover {
  color: var(--gray-color);
  text-decoration: none;
}

footer {
  padding-top: 1rem;
  background-color: var(--fifth-color);
  color: var(--white-color);
  text-align: center;
  width: 100%;
}

.footer__text {
  font-size: 1.2rem;
  color: var(--white-color);
}

.footer__link {
  color: var(--red-color);
  text-decoration: underline;
  transition: transform 0.3s ease;
}

.footer__link:hover {
  transform: scale(1.2);
  color: var(--red2-color);
}

.footer__link:visited {
  color: rgba(0, 0, 0, 0.7);
}

footer img {
  width: 30px;
  height: 30px;
  margin: 10px;
  transition: all 0.3s ease;
}

footer img:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  #hamburger {
    display: flex;
    color: var(--white-color);
    text-decoration: none;
    transition: transform 0.2s;
    padding: 0px 10px;
    font-size: 1.5rem;
  }

  #toggle {
    display: none;
    border: 0px;
  }
}

@media (max-width: 650px) {
  #hamburger {
    display: flex;
    color: var(--white-color);
    text-decoration: none;
    transition: transform 0.2s;
    padding: 0px 10px;
    font-size: 1.5rem;
  }

  #toggle {
    display: none;
    border: 0px;
  }

  .logo img {
    border-radius: 50px;
    width: 80px;
    margin-top: 0px;
  }

  .logo {
    position: relative;
    left: 0;
    transform: none;
    margin-bottom: 10px;
    transition: transform 0.2s;
  }

  .logo:hover {
    transform: scale(0.8);
  }

  .header {
    margin-top: 60px;
  }

  .logo {
    position: absolute;
    top: 5px;
    left: 10%;
    transform: translateX(-50%);
  }

  .logo img {
    margin-left: 20px;
  }
}

/*@media (max-width: 960px) {
  .product_women,
  .product_men,
  .product_kids {
    width: calc(100% - 40px);
  }
}*/

@media (max-width: 640px) {
  .product_women,
  .product_men,
  .product_kids {
    width: 100%;
  }
}

