/* Container principal */
.product-showcase {
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 1%, #000c7c 50%);
  overflow: hidden;
  position: relative;
}

.product-showcase__container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Layout principal de tres columnas */
.product-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  /* align-items: center; */
  min-height: 500px;
  position: relative;
}

/* Columna izquierda - Información del producto */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.product-info__breadcrumb {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.product-info__breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-size: 1.2rem;
}

.product-info__breadcrumb span {
  color: #ffffff;
  font-family: "Estricta Bold", sans-serif;
  font-size: 1.2rem;
}

.product-info__breadcrumb a:hover {
  opacity: 0.8;
}

.product-info__title {
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Estricta Black", sans-serif;
  line-height: 1.1;
  margin-bottom: 20px;
}

.product-info__category {
  font-size: 2.5rem;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Estricta Bold", sans-serif;
  display: none;
  /* Mostrar solo en mobile */
}

.product-info__pricing {
  margin-top: auto;
}

.pricing__label {
  font-size: 2.2rem;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Estricta Black", sans-serif;
  margin-bottom: 0px;
  line-height: 1.2rem;
}

.pricing__amount {
  font-size: 2.2rem;
  color: #ffffff;
  font-family: "Estricta Black", sans-serif;
  margin-bottom: 0px;
}

.pricing__terms {
  color: #ffffff;
  text-decoration: underline;
  text-transform: uppercase;
  font-family: "Estricta Regular", sans-serif;
  font-size: 0.7rem;
  transition: opacity 0.3s ease;
}

.pricing__terms:hover {
  opacity: 0.8;
}

/* Columna central - Imagen del producto */
.product-showcase__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.product-showcase__image {
  max-width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
  /* position: absolute;
       bottom: -20%; */
  max-width: 200%;
  width: 700px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.product-showcase__image picture {
  display: flex;
  justify-content: center;
}

/* Columna derecha - Opciones del producto */
.product-options {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
}

.product-options__category {
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Estricta Bold", sans-serif;
  text-align: right;
  margin-bottom: 20px;
}

/* Selector de colores */
.color-selector {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.color-selector__title {
  font-size: 1.5rem;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Estricta Bold", sans-serif;
}

.color-selector__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
}

.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: transparent;
}

.color-option:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.color-option--blue {
  background: linear-gradient(45deg, #1e3a8a, #000000);
}

.color-option--black {
  background: #000000;
}

.color-option.active {
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

/* Selector de talles */
.size-selector {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.size-selector__title {
  font-size: 1.5rem;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Estricta Regular", sans-serif;
}

.size-selector__options {
  display: flex;
  gap: 10px;
}

.size-option {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-family: "Estricta Bold", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-option:hover {
  background: #ffffff;
  color: #000c7c;
  transform: scale(1.05);
}

.size-option.active {
  background: #ffffff;
  color: #000c7c;
}

.product-description .description-content .section_title {
  text-align: left;
}

.product-description .description-details {
  padding: 1rem 0;
}

.product-description .description-details h3 {
  color: #094c7c;
  font-size: 1.4rem;
  line-height: 1rem;
  text-transform: uppercase;
  font-family: "Estricta Bold", sans-serif;
}

.product-description .description-details p {
  color: #545455;
  font-size: 1rem;
  text-transform: uppercase;
}

.galeria-container .product_gallery .close {
  top: 120px !important;
}

.sucursales-section .section_title {
  padding-top: 10px;
}

.sucursales-wrapper {
  padding: 20px 0px;
  position: relative;
}

.sucursales-wrapper h3 {
  font-family: "Estricta Bold", sans-serif;
  color: white;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.sucursales-wrapper p {
  font-family: "Estricta Regular", sans-serif;
  color: white;
  font-size: 1.4rem;
}

.sucursalesSwiper {
  padding: 10px 0px;
}

.sucursalesSwiper .card {
  border: none;
}

.sucursalesSwiper .card-header {
  background-color: #000c7c;
  padding: 20px 0px;
  text-align: center;
  font-family: "Estricta Bold", sans-serif;
  color: white;
  text-transform: uppercase;
  font-size: 2rem;
}

.sucursalesSwiper .card-body {
  padding: 30px;
  background-color: #f3f3f3;
  font-family: "Estricta Regular", sans-serif;
  color: #5c5454;
  font-size: 1rem;
  min-height: 220px;
}

.sucursalesSwiper .card-body ul {
  /* min-height: 200px; */
}

.sucursalesSwiper .card-body p {
  font-family: "Estricta Regular", sans-serif;
  color: #5c5454;
  font-size: 1rem;
  margin: 0;
}

.sucursalesSwiper .card-body a {
  font-family: "Estricta Regular", sans-serif;
  color: #5c5454;
  text-decoration: underline;
}

.sucursales-wrapper .swiper-button-prev {
  font-family: "Estricta Black", sans-serif;
  color: #000c7c;
  top: 50%;
  font-size: 1rem;
  left: -50px;
  text-shadow: 1px 0 currentColor, -1px 0 currentColor, 0 1px currentColor,
    0 -1px currentColor;
}

.sucursales-wrapper .swiper-button-next {
  font-family: "Estricta Black", sans-serif;
  color: #000c7c;
  top: 50%;
  font-size: 1rem;
  right: -50px;
  text-shadow: 1px 0 currentColor, -1px 0 currentColor, 0 1px currentColor,
    0 -1px currentColor;
}

.sucursales-wrapper .swiper-button-next:after,
.sucursales-wrapper .swiper-button-prev:after {
  font-size: 1.5rem;
}

.indumentaria-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .indumentaria-mobile {
    display: block;
  }

  .indumentaria-desktop {
    display: none !important;
  }

  .sucursales-section .section_title {
    padding-top: 10px;
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin: 0;
    padding: 20px 0px;
  }

  .sucursales-wrapper {
    padding: 5px 0px;
    position: relative;
  }

  .sucursales-wrapper h3 {
    font-size: 1.2rem;
  }

  .sucursales-wrapper p {
    font-size: 1rem;
  }

  .sucursalesSwiper {
    margin: 0px 30px;
  }

  .sucursalesSwiper .card-body {
    padding: 0;
    text-align: center;
    min-height: auto;
  }

  .sucursalesSwiper .card-body ul {
    min-height: 170px;
  }

  .sucursalesSwiper .card-body li {
    font-size: 0.8rem;
  }

  .sucursalesSwiper .card-body a {
    font-size: 0.8rem;
  }

  .sucursales-wrapper .swiper-button-prev {
    left: 0px;
  }

  .sucursales-wrapper .swiper-button-next {
    right: 0px;
  }

  .galeriaSwiperMobile .swiper-button-prev {
    color: white !important;
  }

  .galeriaSwiperMobile .swiper-button-next {
    color: white !important;
  }

  .galeriaSwiperMobile .swiper-button-next:after,
  .galeriaSwiperMobile .swiper-button-prev:after {
    font-size: 1.5rem;
  }

  .product-description .description-content {
    text-align: center;
  }

  .product-description .description-content .section_title {
    text-align: center;
  }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .product-showcase__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .product-info {
    text-align: left;
    gap: 0px;
  }

  .product-info__category {
    display: block;
    margin: 0;
    font-size: 1.2rem;
  }

  .product-options__category {
    display: none;
  }

  .product-options {
    align-items: center;
    margin-top: 50px;
  }

  .color-selector,
  .size-selector {
    align-items: center;
  }

  .product-showcase__image {
    max-height: 300px;
    order: -1;
    position: relative;
    /* margin-top: -70px; */
  }
}

@media screen and (max-width: 768px) {
  .product-showcase {
    padding-top: 50px;
  }

  .product-showcase__container {
    padding: 0px 15px 50px 15px;
  }

  .product-info__breadcrumb {
    padding-top: 60px;
    margin: 0;
  }

  .product-info__breadcrumb a,
  .product-info__breadcrumb span {
    font-size: 0.8rem;
  }

  .product-info__category {
    font-size: 1.2rem;
  }

  .product-showcase__grid {
    gap: 20px;
  }

  .product-info__title {
    font-size: 2.2rem;
    margin: 0;
  }

  .pricing__label,
  .pricing__amount {
    font-size: 1.5rem;
  }

  .color-option,
  .size-option {
    width: 35px;
    height: 35px;
  }

  .color-selector__options {
    flex-direction: row;
  }
}

.color-selector__title,
.size-selector__title {
  font-size: 1.2rem;
}

/* .color-selector__title {
       display: none;
   } */

/* Animaciones personalizadas */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
  animation: fadeInLeft 1s ease-out;
}

.fade-in-right {
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
