* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Pacifico', cursive;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #fcf4f9;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
:root {
  --lavender-violet: #7758A3;
  --ruddy-blue: #66A5ED;
  --honey-gold: #F6C45C;
  --lavender-rose: #FFAFEB;
  --deep-cerise: #DB3E8C;
  --main-color: var(--deep-cerise);
  --main-light-color: #fdf5fa;
  --second-color: var(--lavender-violet);
  --catalog-color: var(--ruddy-blue);
}
header {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 1000;
}
.header-top-bar {
  border-bottom: 1px solid #f5f5f5;
  padding: 10px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-top-bar span {
  color: var(--deep-cerise);
  font-size: 1.2rem;
  letter-spacing: 0.3px;
  font-weight: 500;
}
/*navigation*/
.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0px;
  max-width: 1200px;
  width: 90%;
  margin: auto;
}
.logo {
  height: 110px;
}
.logo img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  cursor: pointer;
}
.menu {
  display: flex;
}
.menu li a {
  padding: 3px 10px;
  margin: 0px 15px;
  color: #3b3b3b;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  transition: all ease 0.3s;
}
.menu li a:hover,
.menu li a.active {
  color: var(--main-color);
}
.right-nav {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 10px;
}
.right-nav a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--main-light-color);
  position: relative;
}
.right-nav a i {
  color: #4b4b4b;
}
.right-nav a span {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  background-color: var(--main-color);
  font-weight: 500;
  font-size: 0.6rem;
}
.header-fix {
  position: fixed;
  background-color: #fcf4f9;
  box-shadow: 2px 2px 40px rgba(0, 0, 0, 0.05);
  animation: animationnav 0.6s;
}
@keyframes animationnav {
  0% { top: -100%; }
  100% { top: 0%; }
}
.header-fix .header-top-bar {
  display: none;
}
.header-fix .navigation {
  padding: 12px 0px;
}
/*main banner*/
#main-banner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.main-banner-box {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  position: relative;
  background-color: #F9F6EE;
}
.mySwiperBanner {
  width: 100%;
  height: 100%;
}
.mySwiperBanner .swiper-slide {
  width: 100%;
  height: 100%;
}
.mySwiperBanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main-banner-text {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translate(-10%, -50%);
  z-index: 10;
}
.main-banner-text h1 {
  font-size: 3rem;
  max-width: 500px;
  line-height: 3.3rem;
  font-weight: 400;
  color: var(--second-color);
}
.main-banner-text p {
  color: #333333;
  font-size: 1.1rem;
  margin: 10px 0px;
  letter-spacing: 0.1px;
}
.main-banner-text a {
  color: #ffffff;
  background: linear-gradient(45deg, var(--deep-cerise), var(--lavender-violet));
  width: 150px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  border-radius: 30px;
  box-shadow: 0px 5px 15px rgba(219, 62, 140, 0.4);
  transition: all ease 0.3s;
}
.main-banner-text a:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 20px rgba(119, 88, 163, 0.5);
}
/*What we provide*/
.what-we-provide {
  max-width: 1200px;
  width: 90%;
  margin: 50px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.w-info-box {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.w-info-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin-right: 15px;
  font-size: 1.4rem;
  background-color: var(--main-light-color);
}
.w-info-icon i {
  color: var(--main-color);
}
.w-info-text strong {
  color: #3b3b3b;
  font-size: 0.9rem;
  font-weight: 500;
}
.w-info-text p {
  color: #535353;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}
/*grid product*/
.product-grid-half {
  max-width: 1200px;
  width: 90%;
  margin: 50px auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 20px;
  max-height: 300px;
}
.product-grid-box {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  background-color: #F9F6EE;
  position: relative;
}
.product-grid-text {
  position: absolute;
  left: 90%;
  top: 50%;
  transform: translate(-90%, -50%);
  display: flex;
  max-width: 130px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.product-grid-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center flex;
}
.product-grid-text strong {
  color: #1d1d1d;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.5rem;
}
.product-grid-text span {
  color: #5a5a5a;
  font-size: 0.8rem;
  font-weight: 400;
}
.product-grid-text a {
  color: #272727;
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  border-bottom: 1px solid #616161;
}
.product-grid-half .product-grid-box2 {
  grid-row: 1/3;
}
#new_product {
  max-width: 1200px;
  width: 90%;
  margin: 90px auto;
}
.new-product-heading {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 40px;
}
.new-product-heading h2 {
  font-size: 1.8rem;
  color: #202020;
  font-weight: 500;
}
.new-product-heading p {
  color: #707070;
  font-size: 0.8rem;
  font-weight: 400;
}
.new-product-box {
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}
.new-product-img {
  width: 100%;
  height: 250px;
  display: flex;
  margin: auto;
  overflow: hidden;
  position: relative;
  background-color: #F9F6EE;
}
.new-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.new-product-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5px 20px;
  flex-grow: 1;
}
.new-product-text .new-product-title {
  color: var(--catalog-color);
  font-weight: 500;
  font-size: 1rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-product-text span {
  color: var(--second-color);
  font-size: 1rem;
  font-weight: 600;
}
.new-product-img span {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: var(--main-color);
  color: #ffffff;
  padding: 3px 10px;
  font-weight: 400;
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}
.new-product-cart-btn {
  position: absolute;
  left: 50%;
  bottom: -100%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border: none;
  outline: none;
  width: 140px;
  height: 40px;
  border-radius: 30px;
  box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all ease 0.3s;
}
.new-product-cart-btn:hover {
  background: linear-gradient(45deg, var(--deep-cerise), var(--lavender-violet));
  color: #ffffff;
}
.new-product-cart-btn:hover i {
  color: #ffffff;
}
.new-product-img:hover .new-product-cart-btn {
  bottom: 20px;
}
.new-product-cart-btn i {
  color: var(--main-color);
  margin-right: 5px;
  transition: all ease 0.3s;
}
.swiper-pagination {
  position: static !important;
  margin: 10px !important;
}
.swiper-pagination-bullet-active {
  background-color: var(--main-color) !important;
}
/*Category*/
#category {
  width: calc(100% - 40px);
  max-width: 1550px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.category-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
.category-box {
  width: 100%;
  height: 400px;
  position: relative;
  transition: all ease 0.3s;
  background-color: #F9F6EE;
}
.category-box:hover {
  opacity: 0.8;
}
.category-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  object-fit: cover;
  object-position: center;
}
.category-box strong {
  position: absolute;
  left: 40px;
  bottom: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #313131;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.feature-product-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  margin-top: 20px;
}
/*Clientes*/
#clients {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f6f6f656;
  padding: 60px 0px;
  margin: 40px auto;
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
}
.client-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.client-heading h3 {
  font-size: 1.8rem;
  color: #202020;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0px 5px;
}
.client-heading p {
  color: #696969;
  font-size: 0.8rem;
}
.client-box-container {
  grid-gap: 20px;
  width: 90%;
  margin-top: 40px;
}
.client-box {
  background-color: #ffffff;
  padding: 30px 20px;
  border: 1px solid #f1f1f1;
  border-radius: 0px 30px 0px 30px;
}
.client-profile {
  display: flex;
  align-items: center;
}
.client-profile img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.profile-text {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}
.profile-text strong {
  color: #393939;
  font-size: 1rem;
  font-weight: 600;
}
.profile-text span {
  color: #949494;
  font-weight: 400;
  font-size: 0.7rem;
}
.rating {
  display: flex;
  margin: 10px 0px;
}
.rating i {
  color: var(--main-color);
}
.client-box p {
  color: #7c7c7c;
  font-size: 0.9rem;
}
/*BLOG*/
#blog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.blog-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.blog-heading h3 {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 600;
}
.blog-heading span {
  color: var(--main-color);
  font-size: 0.9rem;
}
.blog-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 20px 0px;
  flex-wrap: wrap;
}
.blog-box {
  max-width: 350px;
  background-color: #ffffff;
  border: 1px solid #ececec;
  width: 100%;
  margin: 20px;
  display: flex;
  flex-direction: column;
}
.blog-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-text {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-box span {
  color: var(--main-color);
  font-size: 0.9rem;
}
.blog-box .blog-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #272727;
}
.blog-box p {
  color: #9b9b9b;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0px;
}
.blog-box a {
  color: #0f0f0f;
  transition: all ease 0.3s;
}
.blog-box a:hover {
  color: var(--main-color);
}
/*Footer*/
footer {
  width: 100%;
  background-color: #B5E2FF;
}
.footer-container {
  max-width: 1200px;
  width: 90%;
  margin: 0px auto;
  padding: 50px 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-company-box {
  max-width: 330px;
}
.footer-company-box .logo {
  height: 70px;
  display: flex;
  margin-bottom: 20px;
}
.footer-company-box .logo img {
  height: 100%;
  object-fit: contain;
}
.footer-company-box p {
  color: #333333;
  margin: 5px 0px;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  line-height: 1.4rem;
}
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer-social a {
  margin-top: 10px;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #333333;
  font-size: 0.9rem;
  transition: all ease 0.3s;
}
.footer-social a:hover {
  background-color: var(--main-color);
  color: #ffffff;
}
.footer-link-box strong {
  font-size: 1.2rem;
  color: #1d1d1d;
  font-weight: 500;
}
.footer-link-box ul {
  margin-top: 5px;
}
.footer-link-box ul li a {
  color: #444444;
  font-size: 0.9rem;
  margin-bottom: 5px;
  display: flex;
  transition: all ease 0.3s;
}
.footer-link-box ul li a:hover {
  color: var(--main-color);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0px;
  max-width: 1200px;
  width: 90%;
  margin: auto;
}
.footer-bottom span {
  color: #252525;
  font-size: 0.9rem;
}

/* Floating Social Media */
.floating-social {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  transition: all 0.3s ease;
}
.floating-social.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(100px);
}
.floating-social a {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--deep-cerise), var(--lavender-violet));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-social a:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 2px 6px 20px rgba(119, 88, 163, 0.4);
}

/*Diseño responsivo*/
.menu-btn,
.menu-icon {
  display: none;
}
@media (max-width: 1000px) {
  .navigation {
    justify-content: space-between;
    height: 65px;
    padding: 35px 15px;
    position: relative;
  }
  .header-fix .navigation {
    padding: 35px 15px;
  }
  .navigation .menu {
    position: absolute;
    top: 100%;
    display: none;
    z-index: 100;
    padding: 0px;
    margin: 0px;
    border-bottom: 1px solid #f5f5f5;
    background-color: #ffffff;
    width: 100%;
  }
  .navigation .menu li {
    width: 100%;
    margin: 0px;
    padding: 0px;
  }
  .navigation .menu li a {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    margin: 0px;
    height: 50px;
    border-top: 1px solid #f5f5f5;
  }
  .menu-icon {
    display: block;
  }
  .navigation .menu-icon {
    cursor: pointer;
    float: right;
    padding: 5px;
    user-select: none;
    z-index: 2;
    position: relative;
  }
  .navigation .menu-icon .nav-icon {
    background-color: #141414cc;
    display: block;
    height: 2px;
    width: 25px;
    position: relative;
    transition: background 0.2s ease-out;
  }
  .navigation .menu-icon .nav-icon::before,
  .navigation .menu-icon .nav-icon::after {
    background-color: #141414cc;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    transition: all ease 0.2s;
  }
  .navigation .menu-icon .nav-icon::before {
    top: 7px;
  }
  .navigation .menu-icon .nav-icon::after {
    top: -7px;
  }
  .navigation .menu-btn:checked ~ .menu-icon .nav-icon::before {
    transform: rotate(-45deg);
    top: 0px;
  }
  .navigation .menu-btn:checked ~ .menu-icon .nav-icon::after {
    transform: rotate(45deg);
    top: 0px;
  }
  .navigation .menu-btn:checked ~ .menu-icon .nav-icon {
    background-color: transparent;
  }
  .navigation .menu-btn:checked ~ .menu {
    display: block;
  }
  .menu-btn {
    display: none;
  }
  .what-we-provide{
    grid-template-columns: 1fr 1fr;
    grid-gap:20px;
  }
  .product-grid-half{
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 180px);
    height: auto;
    max-height: none;
  }
  .product-grid-half .product-grid-box2{
    grid-column: auto;
    grid-row: auto;
  }
  .new-product-cart-btn {
    bottom: 20px; /* Make it permanently visible on mobile */
  }
}
@media(max-width: 800px){
    .main-banner-text{
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .mySwiperBanner .swiper-slide:nth-child(2) img {
        object-position: 80% center; /* Keep the girl in focus on mobile */
    }
    .product-grid-half .product-grid-box .product-grid-text{
        max-width: 220px;
    }
    .product-grid-half .product-grid-box2{
        grid-column: auto;
    }
    .category-container{
        grid-template-columns: 1fr 1fr;
        grid-gap:10px;
    }
    .feature-product-container{
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media(max-width: 620px){
    .main-banner-text h1{
        font-size: 1.8rem;
        line-height: 2rem;
    }
    .main-banner-text p{
        font-size: 0.9rem;
    }
    .what-we-provide{
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    .feature-product-container{
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
    }
}
@media(max-width:550px){
    .feature-product-container,
    .category-container{
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
    .blog-box{
        margin: 20px auto;
        width: 100%;
        max-width: 100%;
    }
}
@media(max-width:360px){
    .footer-container{
        grid-template-columns: 1fr;
    }
    .navigation{
        width: 100%;
        padding: 35px 15px;
    }
    .right-nav{
        grid-gap: 5px;
    }
}

/* --- Cart Sidebar --- */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  max-width: 100%;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open {
  right: 0;
}
.cart-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f1f1;
}
.cart-header h2 {
  font-size: 1.5rem;
  color: var(--main-color);
  font-family: 'Pacifico', cursive;
}
#close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}
.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #f9f9f9;
  padding-bottom: 10px;
}
.cart-item-info h4 {
  font-size: 1rem;
  color: #333;
}
.remove-item {
  background: none;
  border: none;
  color: var(--deep-cerise);
  cursor: pointer;
  font-size: 1.2rem;
}
.cart-footer {
  padding: 20px;
  border-top: 1px solid #f1f1f1;
}
.cart-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
.cart-form input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
}
.cart-form input:focus {
  border-color: var(--deep-cerise);
}
.checkout-btn {
  width: 100%;
  padding: 15px;
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
}
.checkout-btn:hover {
  background-color: #128C7E;
}

/* --- Toast Notification --- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 200px); /* Move off-screen relative to its own height */
  opacity: 0;
  visibility: hidden;
  background-color: var(--deep-cerise);
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 4000; /* Higher than modal (3000) */
  transition: all 0.4s ease;
  font-weight: 500;
  text-align: center;
}
.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

/* --- Product Quick View Modal --- */
.product-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}
.product-modal.show {
  display: flex;
}
.product-modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: modalFadeIn 0.3s;
}
@keyframes modalFadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}
.close-modal {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close-modal:hover,
.close-modal:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.product-modal-body {
  display: flex;
  gap: 20px;
}
.product-modal-img {
  flex: 1;
  background-color: #F9F6EE; /* Blanco hueso para la imagen */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-modal-img img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}
.product-modal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-modal-info h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
}
.product-modal-info p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}
.product-modal-info h4 {
  font-size: 1.5rem;
  color: var(--deep-cerise);
  margin-bottom: 20px;
}
@media(max-width: 600px) {
  .product-modal-body {
    flex-direction: column;
  }
}

/* --- Category Carousel Modal --- */
.category-modal-content {
  max-width: 500px;
  padding: 20px;
}
.mySwiperCategory {
  width: 100%;
  padding-bottom: 40px; /* Space for pagination */
}
.mySwiperCategory .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F9F6EE;
  border-radius: 10px;
  overflow: hidden;
  height: 350px;
}
.mySwiperCategory .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
