
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f6f7fb;
  font-family: 'Inter', Arial, sans-serif;
  color: #22223b;
}

/* Wrapper centrado y con sombra */
.product-wrapper {
  max-width: 1100px;
  margin: 40px auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 36px rgba(44, 62, 80, 0.10);
  padding: 42px 48px;   
}
.breadcrumbs {
  font-size: 1rem;
  color: #8e9aaf;
  margin-bottom: 34px;
  letter-spacing: 0.02em;
}
.breadcrumbs .current {
  font-weight: bold;
  color: #22223b;
}
.product-container {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
.product-image {
  flex: 1 1 44%;
  min-width: 330px;
}
.product-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}
.product-info {
  flex: 1 1 56%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #181925;
  line-height: 1.1;
}

.product-desc {
  color: #3a405a;
  font-size: 1.1rem;
  line-height: 1.7;
}
.highlights h3 {
  font-size: 1.1rem;
  margin-bottom: 7px;
  color: #22223b;
}
.highlights ul {
  list-style: disc inside;
  color: #22223b;
  padding-left: 15px;
}
.highlights li {
  font-size: 1rem;
  margin-bottom: 6px;
}
.product-options {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 18px 0 10px 0;
}

.option {
  background: #f3f5fa;
  border-radius: 10px;
  padding: 16px 26px;
  min-width: 96px;
  text-align: left;
  font-size: 1rem;
}
.option .label {
  color: #8e9aaf;
  font-size: 0.93rem;
  display: block;
}
.option .value {
  font-weight: 700;
  color: #22223b;
  margin-top: 3px;
}
.option.price {
  background: #f3f5fa;
  font-size: 2rem;
  font-weight: 800;
  color: #181925;
  text-align: right;
  flex: 1;
}
.product-actions {
  margin-top: 22px;
  display: flex;
  gap: 16px;
}
.btn {
  padding: 15px 32px;
  font-size: 1.13rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s;
}
.add-to-cart {
  background: #9d7af2;
  color: #fff;
  box-shadow: 0 2px 8px #bfa7f6aa;
}
.add-to-cart:hover {
  background: #6c49be;
}
.wishlist {
  background: #fff;
  color: #181925;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wishlist:hover {
  border-color: #9d7af2;
}
.heart-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .product-container {
    flex-direction: column;
    gap: 36px;
  }
  .product-wrapper {
    padding: 24px 8px;
  }
}

@media (max-width: 600px) {
  .product-title {
    font-size: 1.55rem;
  }
  .option.price {
    font-size: 1.23rem;
  }
  .btn {
    padding: 11px 8px;
    font-size: 1rem;
  }
}