/* Estilos para sistema de carrito */

/* Notificación de carrito */
.cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 0;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-notification-content {
  display: flex;
  align-items: center;
  padding: 15px 20px;
}

.cart-notification-icon {
  background: linear-gradient(90deg, #3b82f6, #2dd4bf);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.cart-notification-text {
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
}

/* Icono de carrito y contador */
.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
  cursor: pointer;
}

.cart-icon {
  width: 24px;
  height: 24px;
  color: white;
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(90deg, #3b82f6, #2dd4bf);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Página del carrito */
.section_cart {
  padding: 12rem 0 5rem;
  min-height: calc(100vh - 5.2rem);
  display: flex;
  flex-direction: column;
}

.cart-page-container {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease forwards;
}

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

.section-title {
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--button-bg-gradient);
}

.cart-items-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 2rem;
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(25,25,25,0.5), rgba(15,15,15,0.5));
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.cart-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(30,30,30,0.6), rgba(20,20,20,0.6));
}

.cart-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--button-bg-gradient);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.cart-item:hover:before {
  transform: scaleY(1);
}

.cart-item-image-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cart-item:hover .cart-item-image {
  transform: scale(1.1);
}

.cart-item-details {
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.cart-item-price {
  font-size: 1.6rem;
  color: var(--text-color-muted);
  margin-bottom: 1rem;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  border-radius: 5px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.6rem;
}

.quantity-btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: scale(1.1);
}

.quantity-value {
  font-size: 1.6rem;
  font-weight: 600;
  min-width: 25px;
  text-align: center;
}

.cart-item-total {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color);
  align-self: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}

.cart-item-remove:hover {
  color: #ff3b30;
  transform: rotate(90deg) scale(1.2);
  background-color: rgba(255, 0, 0, 0.1);
}

.cart-summary {
  padding: 2.5rem;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(30,30,30,0.6), rgba(20,20,20,0.6));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cart-summary:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.12);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.summary-total-label {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-color);
}

.summary-total-value {
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--button-bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.checkout-button {
  width: 100%;
  padding: 1.4rem;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  background: var(--button-bg-gradient);
  color: var(--button-text-color);
  cursor: pointer;
  transition: all 0.4s ease;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.checkout-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(95, 164, 255, 0.3);
}

.checkout-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.checkout-button:hover:before {
  left: 100%;
}

.clear-cart-button {
  width: 100%;
  padding: 1.2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-color-muted);
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.clear-cart-button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Estilos para el carrito vacío */
.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  min-height: 300px;
}

.empty-cart h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #5fa4ff, #4fd1c5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(95, 164, 255, 0.4);
}

.empty-cart p {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  color: #999;
}

.continue-shopping-btn {
  display: inline-block;
  background: linear-gradient(135deg, #5fa4ff, #4fd1c5);
  color: #000;
  font-weight: 600;
  font-size: 1.6rem;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(79, 209, 197, 0.3);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.continue-shopping-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(79, 209, 197, 0.4);
}

.continue-shopping-btn:active {
  transform: translateY(-1px);
}

.continue-shopping-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

.continue-shopping-btn:hover::before {
  left: 100%;
}

/* Página de detalles de producto */
.section_product-details {
  padding: 6rem 0;
  background-color: #000;
  min-height: calc(100vh - 100px);
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.product-image-gallery {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.product-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnail.active {
  opacity: 1;
  box-shadow: 0 5px 15px rgba(59,130,246,0.3);
  transform: translateY(-3px);
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-name {
  font-size: 3.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-star-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.star {
  color: #f9ca24;
  font-size: 1.8rem;
}

.rating-count {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  margin-left: 10px;
}

.product-price-big {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #3b82f6, #2dd4bf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-description-full {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.spec-item {
  display: flex;
  gap: 10px;
}

.spec-icon {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8rem;
}

.spec-text {
  color: white;
  font-size: 1.4rem;
}

.product-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 5px;
}

.quantity-btn-big {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quantity-btn-big:hover {
  background: rgba(255, 255, 255, 0.2);
}

.quantity-value-big {
  color: white;
  font-size: 1.8rem;
  font-weight: 500;
  width: 40px;
  text-align: center;
}

.add-to-cart-big {
  flex: 1;
  background: linear-gradient(90deg, #3b82f6, #2dd4bf);
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(59,130,246,0.3);
}

/* Página de checkout */
.section_checkout {
  padding: 6rem 0;
  background-color: #000;
  min-height: calc(100vh - 100px);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.checkout-form {
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-section {
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  color: white;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 0 0 2px rgba(59,130,246,0.2);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group.card-details {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 15px;
}

.checkout-summary {
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-self: start;
  position: sticky;
  top: 100px;
}

.summary-title {
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.summary-item-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
}

.summary-item-quantity {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 5px;
}

.summary-item-price {
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
}

.summary-subtotal {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-subtotal-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
}

.summary-subtotal-value {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
}

.summary-shipping {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.summary-shipping-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
}

.summary-shipping-value {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
}

.place-order-button {
  width: 100%;
  margin-top: 30px;
  padding: 15px;
  background: linear-gradient(90deg, #3b82f6, #2dd4bf);
  border: none;
  color: white;
  border-radius: 10px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.place-order-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(59,130,246,0.3);
}

/* Adaptación responsiva */
@media screen and (max-width: 991px) {
  .product-details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-summary {
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .cart-item-image-wrapper {
    width: 80px;
    height: 80px;
    grid-row: span 2;
  }
  
  .cart-item-total {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.5rem;
  }
  
  .cart-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  
  .section_cart {
    padding: 8rem 0 4rem;
  }
  
  .summary-total-label {
    font-size: 1.8rem;
  }
  
  .summary-total-value {
    font-size: 2rem;
  }
}

@media screen and (max-width: 479px) {
  .product-thumbnails {
    justify-content: center;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .quantity-selector {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
  }
}

/* Estilos para el carrito lateral */
.side-cart-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.side-cart-container.is-open {
  pointer-events: all;
  opacity: 1;
}

.side-cart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.side-cart {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  max-width: 90vw;
  height: 100%;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border-left: 1px solid rgba(95, 164, 255, 0.3);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.side-cart-container.is-open .side-cart {
  transform: translateX(0);
}

.close-cart-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-cart-btn:hover {
  background: rgba(95, 164, 255, 0.2);
  color: #5fa4ff;
}

.side-cart-content {
  padding: 80px 30px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Estilos del contenido del carrito */
.empty-cart {
  text-align: center;
  color: #fff;
  padding: 4rem 2rem;
}

.empty-cart h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #5fa4ff;
}

.empty-cart p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.continue-shopping-btn {
  display: inline-block;
  background: linear-gradient(135deg, #5fa4ff 0%, #4fd1c5 100%);
  color: #000;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.continue-shopping-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(95, 164, 255, 0.3);
  color: #000;
  text-decoration: none;
}

.cart-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(95, 164, 255, 0.2);
  padding-bottom: 1rem;
}

.cart-header h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 2rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.cart-item-image-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.cart-item-price {
  color: #5fa4ff;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  background: rgba(95, 164, 255, 0.2);
  border: 1px solid rgba(95, 164, 255, 0.3);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: rgba(95, 164, 255, 0.4);
  border-color: #5fa4ff;
}

.quantity-value {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.cart-item-total {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  min-width: 100px;
  text-align: right;
}

.cart-item-remove {
  position: absolute;
  top: 10px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cart-item-remove:hover {
  color: #ff4757;
  background: rgba(255, 71, 87, 0.1);
}

.cart-summary {
  border-top: 1px solid rgba(95, 164, 255, 0.2);
  padding-top: 2rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.summary-total-label {
  color: #fff;
}

.summary-total-value {
  color: #5fa4ff;
}

.checkout-button {
  width: 100%;
  background: linear-gradient(135deg, #5fa4ff 0%, #4fd1c5 100%);
  color: #000;
  border: none;
  padding: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.checkout-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(95, 164, 255, 0.3);
}

#clear-cart {
  width: 100%;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#clear-cart:hover {
  color: #ff4757;
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.1);
}

/* Notificaciones del carrito */
.cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(25, 25, 25, 0.95);
  border: 1px solid rgba(95, 164, 255, 0.3);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateX(150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10002;
  max-width: 350px;
}

.cart-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.cart-notification-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.cart-notification-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #5fa4ff, #4fd1c5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 1.2rem;
}

.cart-notification-text {
  flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .side-cart {
    width: 100%;
    max-width: 100%;
  }
  
  .side-cart-content {
    padding: 80px 20px 20px;
  }
  
  .cart-header h3 {
    font-size: 2rem;
  }
  
  .cart-item-title {
    font-size: 1.6rem;
  }
  
  .cart-item-price {
    font-size: 1.4rem;
  }
  
  .quantity-value {
    font-size: 1.6rem;
  }
  
  .cart-item-total {
    font-size: 1.5rem;
  }
  
  .summary-total {
    font-size: 2rem;
  }
  
  .checkout-button {
    font-size: 1.8rem;
    padding: 1.8rem;
  }
  
  #clear-cart {
    font-size: 1.6rem;
    padding: 1.2rem;
  }
  
  .cart-notification {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-150%);
    font-size: 1.6rem;
    padding: 2rem;
  }
  
  .cart-notification.show {
    transform: translateY(0);
  }
  
  .cart-notification-content {
    gap: 1.5rem;
  }
  
  .cart-notification-icon {
    width: 28px;
    height: 28px;
    font-size: 1.4rem;
  }
} 