/* === ESTILO DE FICHAS DE PRODUCTO === */

.woocommerce ul.products li.product {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 20px;
  text-align: center;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Imagen del producto */
.woocommerce ul.products li.product img {
  border-radius: 12px;
  height: 260px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Título del producto */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

/* Precio */
.woocommerce ul.products li.product .price {
  color: #ff5b2e;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Botón */
.woocommerce ul.products li.product a.button {
  background-color: #ff5b2e;
  color: #fff;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  transition: 0.3s ease;
  text-transform: none;
}

.woocommerce ul.products li.product a.button:hover {
  background-color: #222;
  color: #fff;
}

/* === ESTILO DEL FILTRO / DESPLEGABLE === */

.woocommerce-ordering select {
  appearance: none;
  background-color: #fff;
  border: 2px solid #ff5b2e;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

/* Hover y focus */
.woocommerce-ordering select:hover,
.woocommerce-ordering select:focus {
  border-color: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  outline: none;
}

/* Alineación general del bloque */
.woocommerce-result-count {
  float: left;
  margin-left: 5%;
  font-size: 0.9rem;
  color: #444;
}

.woocommerce-ordering {
  float: right;
  margin-right: 5%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .woocommerce-result-count,
  .woocommerce-ordering {
    float: none;
    display: block;
    text-align: center;
    margin: 10px auto;
  }
}
/* === AJUSTE DE ALTURA DEL HERO === */

.hero {
  padding: 100px 20px 80px !important; /* antes era ~160px/140px */
  transition: padding 0.3s ease;
}

.hero h1 {
  font-size: 2.6rem !important;
}

.hero p {
  font-size: 1.1rem !important;
}

.hero .cta {
  margin-top: 15px !important;
}

/* Versión móvil */
@media (max-width: 768px) {
  .hero {
    padding: 80px 15px 60px !important;
  }
  .hero h1 {
    font-size: 2rem !important;
  }
  .hero p {
    font-size: 1rem !important;
  }
}
/* === AJUSTES DE ESPACIADOS Y MÁRGENES EN TIENDA === */

/* Contenedor principal de tienda */
.woocommerce-page .site-main,
.woocommerce .products {
  padding-left: 5%;
  padding-right: 5%;
}

/* Espaciado entre hero, filtro y productos */
.woocommerce-page .woocommerce-result-count,
.woocommerce-page .woocommerce-ordering {
  margin-top: 40px;
  margin-bottom: 25px;
}

/* Mayor separación entre filtro y productos */
.woocommerce-page ul.products {
  margin-top: 30px !important;
}

/* Centrar texto y filtro en pantallas grandes */
.woocommerce-page .woocommerce-result-count {
  float: left;
  margin-left: 2%;
}

.woocommerce-page .woocommerce-ordering {
  float: right;
  margin-right: 2%;
}

/* Responsive: centrar en móviles */
@media (max-width: 768px) {
  .woocommerce-page .site-main,
  .woocommerce .products {
    padding-left: 3%;
    padding-right: 3%;
  }

  .woocommerce-page .woocommerce-result-count,
  .woocommerce-page .woocommerce-ordering {
    float: none;
    text-align: center;
    margin: 15px 0;
  }
}
/* === ESTILO PERSONALIZADO DE LA PAGINACIÓN === */

.woocommerce nav.woocommerce-pagination {
  text-align: center;
  margin: 60px 0 80px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 10px;
  border: none;
  background: transparent;
  padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-block;
  min-width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border: 2px solid #ff5b2e; /* Coral Miñu */
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: #ff5b2e;
  transition: all 0.25s ease;
  background-color: #fff8f4;
}

/* Hover */
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background-color: #ff5b2e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 91, 46, 0.25);
}

/* Página activa */
.woocommerce nav.woocommerce-pagination ul li span.current {
  background-color: #ff5b2e;
  color: #fff;
  border-color: #ff5b2e;
  cursor: default;
  box-shadow: 0 4px 10px rgba(255, 91, 46, 0.3);
}

/* Flechas (← y →) */
.woocommerce nav.woocommerce-pagination ul li a.next,
.woocommerce nav.woocommerce-pagination ul li a.prev {
  font-weight: bold;
  padding: 0 12px;
}

/* Responsive */
@media (max-width: 600px) {
  .woocommerce nav.woocommerce-pagination ul {
    gap: 6px;
  }
  .woocommerce nav.woocommerce-pagination ul li a,
  .woocommerce nav.woocommerce-pagination ul li span {
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 0.9rem;
  }
}
/* === ESTILO GALERÍA DE IMÁGENES EN PRODUCTO INDIVIDUAL === */

/* Imagen principal */
.woocommerce div.product div.images img {
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce div.product div.images img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Carrusel inferior */
.woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  list-style: none;
  flex: 0 0 auto;
}

.woocommerce div.product div.images .flex-control-thumbs img {
  border-radius: 12px;
  opacity: 0.8;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.woocommerce div.product div.images .flex-control-thumbs img:hover {
  opacity: 1;
  border-color: #ff5b2e;
  transform: scale(1.05);
}

/* Imagen activa */
.woocommerce div.product div.images .flex-control-thumbs img.flex-active {
  opacity: 1;
  border-color: #ff5b2e;
  box-shadow: 0 0 8px rgba(255, 91, 46, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce div.product div.images .flex-control-thumbs {
    gap: 6px;
  }
  .woocommerce div.product div.images img {
    border-radius: 16px;
  }
}
/* === ESTILO DE LAS PESTAÑAS DE PRODUCTO (Descripción, Info, Valoraciones) === */

/* Contenedor general */
.woocommerce div.product .woocommerce-tabs {
  margin-top: 60px;
  border-top: 1px solid #f2f2f2;
  padding-top: 30px;
}

/* Lista de pestañas */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 2px solid #ffe5dc;
  margin-bottom: 30px;
  gap: 8px;
  padding: 0;
  list-style: none;
}

/* Cada pestaña */
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: #fff8f4;
  border: 2px solid #ff5b2e;
  border-radius: 25px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ff5b2e;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover */
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover {
  background-color: #ff5b2e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 91, 46, 0.25);
}

/* Pestaña activa */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background-color: #ff5b2e;
  color: #fff;
  border-color: #ff5b2e;
}

/* Contenido de cada pestaña */
.woocommerce div.product .woocommerce-tabs .panel {
  background: #fffaf8;
  border-radius: 18px;
  padding: 30px 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
  transition: opacity 0.4s ease;
}

/* Título dentro del contenido */
.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 20px;
  border-bottom: 2px solid #ff5b2e;
  display: inline-block;
  padding-bottom: 4px;
}

/* Tablas (Información adicional) */
.woocommerce table.shop_attributes {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
  border-bottom: 1px solid #eee;
  padding: 10px;
}

.woocommerce table.shop_attributes th {
  color: #ff5b2e;
  text-align: left;
  width: 30%;
}

/* Valoraciones */
.woocommerce #reviews #comments ol.commentlist li {
  border: 1px solid #ffe5dc;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 15px;
  background-color: #fff;
}

.woocommerce #review_form #respond input[type="submit"] {
  background-color: #ff5b2e;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.woocommerce #review_form #respond input[type="submit"]:hover {
  background-color: #ff7a56;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 91, 46, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .woocommerce div.product .woocommerce-tabs .panel {
    padding: 20px;
  }
}
/* === ESTILOS DEL PRECIO, SELECTORES Y BOTÓN DE PRODUCTO === */

/* Precio principal */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ff5b2e;
  margin-bottom: 15px;
  display: block;
}

/* Select de variaciones */
.woocommerce div.product form.cart .variations select {
  appearance: none;
  background-color: #fff;
  border: 2px solid #ffd5c7;
  border-radius: 25px;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
}

.woocommerce div.product form.cart .variations select:hover {
  border-color: #ff5b2e;
  box-shadow: 0 0 6px rgba(255, 91, 46, 0.3);
}

/* Campo de cantidad */
.woocommerce div.product form.cart div.quantity input.qty {
  width: 70px;
  border-radius: 25px;
  border: 2px solid #ffd5c7;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px;
  transition: all 0.3s ease;
}

.woocommerce div.product form.cart div.quantity input.qty:focus {
  border-color: #ff5b2e;
  box-shadow: 0 0 5px rgba(255, 91, 46, 0.3);
}

/* Botón Añadir al carrito */
.single_add_to_cart_button,
.woocommerce div.product form.cart button.single_add_to_cart_button {
  background-color: #ff5b2e;
  color: #fff !important;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.single_add_to_cart_button:hover,
.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
  background-color: #ff7a56;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 91, 46, 0.25);
}

/* Espaciado general del bloque de compra */
.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

/* SKU, categoría y etiquetas */
.woocommerce div.product .product_meta {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #777;
}

.woocommerce div.product .product_meta a {
  color: #ff5b2e;
  text-decoration: none;
  font-weight: 500;
}

.woocommerce div.product .product_meta a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce div.product form.cart {
    flex-direction: column;
    align-items: flex-start;
  }

  .woocommerce div.product form.cart button.single_add_to_cart_button {
    width: 100%;
    text-align: center;
  }
}
/* === Galería de producto (Swiper) === */
.product-main-slider {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-main-slider .swiper-slide img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-main-slider .swiper-slide:hover img {
  transform: scale(1.02);
}

.product-thumbs-slider {
  margin-top: 10px;
}

.product-thumbs-slider .swiper-slide {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-thumbs-slider .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #ff5b2e;
}

.product-thumbs-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Flechas de navegación */
.swiper-button-next,
.swiper-button-prev {
  color: #ff5b2e;
  transition: color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #ff7a56;
}
/* === Miñu Lightbox para galería de producto === */
.minu-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.minu-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.minu-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.minu-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  object-fit: contain;
  animation: fadeIn 0.3s ease;
}

.minu-lightbox-close {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.minu-lightbox-close:hover {
  color: #ff5b2e;
}

.minu-lightbox-prev,
.minu-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  font-size: 36px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.minu-lightbox-prev:hover,
.minu-lightbox-next:hover {
  background-color: #ff5b2e;
}

.minu-lightbox-prev {
  left: -60px;
}

.minu-lightbox-next {
  right: -60px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* === Lightbox Miñu - estilo limpio === */
.pswp__bg {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.pswp__caption__center {
  display: none !important;
}

.pswp__img {
  border-radius: 20px !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.pswp__button--close {
  top: 15px !important;
  right: 15px !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;
  width: 42px !important;
  height: 42px !important;
  transition: all 0.3s ease;
}

.pswp__button--close:hover {
  background-color: #ff5b2e !important;
  transform: rotate(90deg);
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  opacity: 0.8 !important;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pswp__button--arrow--left:hover,
.pswp__button--arrow--right:hover {
  opacity: 1 !important;
  transform: scale(1.1);
}

.pswp__ui--fit .pswp__top-bar {
  background: transparent !important;
  box-shadow: none !important;
}
/* --- 🛒 Carrito ÑuTOP (estilo moderno) --- */

.woocommerce-cart {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.woocommerce-cart h1,
.woocommerce-cart h2 {
  text-align: center;
  color: #222;
}

.woocommerce-cart-form table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.woocommerce-cart-form th {
  background: #fafafa;
  padding: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #444;
}

.woocommerce-cart-form td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.woocommerce-cart-form img {
  max-width: 70px;
  border-radius: 10px;
}

.woocommerce button.button,
.woocommerce a.button {
  background: #ff6a3d;
  color: #fff !important;
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover {
  background: #ff8a60;
}

.cart_totals {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  margin-top: 40px;
}

.cart_totals h2 {
  border-bottom: 2px solid #ff6a3d;
  display: inline-block;
  padding-bottom: 5px;
}

.wc-proceed-to-checkout {
  text-align: center;
  margin-top: 20px;
}

.wc-proceed-to-checkout a.checkout-button {
  display: inline-block;
  background: #ff6a3d;
  color: #fff !important;
  padding: 15px 40px;
  border-radius: 40px;
  font-weight: bold;
  text-transform: uppercase;
}

.wc-proceed-to-checkout a.checkout-button:hover {
  background: #ff8a60;
}
/* --- 🛒 Estilos del Carrito ÑuTOP --- */
.miu-cart-page {
  background: #fdfbf7;
  padding: 80px 20px;
  min-height: 70vh;
}

.miu-cart-page .container {
  max-width: 1200px;
  margin: 0 auto;
}

.miu-cart-page .page-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.miu-cart-page .woocommerce {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}
/* --- 🎨 Mejora visual del carrito ÑuTOP --- */

/* Estilo del título principal */
.miu-cart-page .page-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ff6a3d;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.miu-cart-page .page-title::before {
  content: "🛍️";
  font-size: 2rem;
}

/* Enlaces de los productos */
.woocommerce-cart .product-name a {
  color: #222;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.woocommerce-cart .product-name a:hover {
  color: #ff6a3d;
  text-decoration: underline;
}

/* Tabla general */
.woocommerce-cart table.shop_table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.woocommerce-cart table.shop_table th {
  background: #fafafa;
  font-weight: 700;
  color: #444;
  padding: 15px;
}

.woocommerce-cart table.shop_table td {
  border-bottom: 1px solid #eee;
  padding: 15px;
  vertical-align: middle;
}

/* Imagen del producto */
.woocommerce-cart .product-thumbnail img {
  border-radius: 12px;
}

/* Campo de cupón */
.woocommerce-cart .coupon input.input-text {
  border: 1px solid #ddd;
  border-radius: 40px;
  padding: 10px 15px;
  margin-right: 10px;
  outline: none;
  transition: all 0.2s ease;
}

.woocommerce-cart .coupon input.input-text:focus {
  border-color: #ff6a3d;
}

/* Botones */
.woocommerce-cart button.button,
.woocommerce-cart a.button {
  background: #ff6a3d !important;
  color: #fff !important;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  transition: background 0.3s ease;
}

.woocommerce-cart button.button:hover,
.woocommerce-cart a.button:hover {
  background: #ff8a60 !important;
}

/* Botón de finalizar compra */
.wc-proceed-to-checkout a.checkout-button {
  background: #ff6a3d !important;
  color: #fff !important;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
  text-align: center;
  transition: background 0.3s ease;
}

.wc-proceed-to-checkout a.checkout-button:hover {
  background: #ff8a60 !important;
}
/* --- 🛍️ Modal Carrito ÑuTOP --- */

.miu-cart-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}

.miu-cart-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.miu-close-cart {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
  transition: color 0.2s ease;
}

.miu-close-cart:hover {
  color: #ff6a3d;
}

.miu-cart-modal h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ff6a3d;
}

#miu-cart-content {
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
}

#miu-cart-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#miu-cart-content li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  align-items: center;
}

#miu-cart-content img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 10px;
}

#miu-cart-content .cart-item-name {
  flex: 1;
  color: #333;
  font-weight: 500;
}

.miu-checkout-btn {
  display: block;
  background-color: #ff6a3d;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.miu-checkout-btn:hover {
  background-color: #ff8a60;
}
