/* Más espacio entre filas de la tabla de la cesta */
.rdm-cart-table tbody tr {
  height: 48px;
}

.rdm-cart-table td {
  padding-top: 10px;
  padding-bottom: 10px;
}
.rdm-app {
  box-sizing: border-box;
  width: calc(100vw - 32px);
  max-width: calc(100vw - 32px);
  margin-left: calc(50% - 50vw + 16px);
  margin-right: 0;
  padding: 16px;
  font-size: 16px;
}

.rdm-banner,
.rdm-filters,
.rdm-cart,
.rdm-order-form,
.rdm-order-search,
.rdm-product-detail {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
}

.rdm-product-detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.2fr);
  gap: 16px;
  align-items: start;
}

.rdm-product-detail-main h2 {
  margin: 0 0 8px;
}

.rdm-product-detail-categories {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.rdm-category-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  background: #f7f7f7;
  padding: 3px 10px;
  font-size: 13px;
}

.rdm-filters {
  display: grid;
  grid-template-columns: minmax(208px, 1.6fr) repeat(2, minmax(180px, 1fr)) auto;
  gap: 10px;
  align-items: center;
}

.rdm-filters input,
.rdm-filters select,
.rdm-grid input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
}

.rdm-favorites-toggle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-self: end;
  white-space: nowrap;
}

.rdm-favorites-toggle input {
  width: auto;
  padding: 0;
  margin: 0;
}

.rdm-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rdm-product {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
}

.rdm-product-slider {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  margin-bottom: 10px;
}

.rdm-product-slider .rdm-product-image {
  display: none;
}

.rdm-product-slider .rdm-product-image.is-active {
  display: block;
}

.rdm-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #444;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.rdm-slider-prev {
  left: 6px;
}

.rdm-slider-next {
  right: 6px;
}

.rdm-slider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 6px 0 2px;
}

.rdm-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid #444;
  background: #ddd;
  padding: 0;
}

.rdm-slider-dot.is-active {
  background: #444;
}

.rdm-product-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.rdm-product-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  background: #fafafa;
}

.rdm-product h4 {
  margin: 0 0 8px;
}

.rdm-product-title-link {
  color: inherit;
  text-decoration: underline;
}

.rdm-product-title-link:hover,
.rdm-product-title-link:focus {
  text-decoration-thickness: 2px;
}

.rdm-product-price {
  font-weight: 700;
  margin: 6px 0;
}

.rdm-product-actions {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
}

.rdm-product-actions .rdm-action-qty {
  width: 60px;
  min-height: 36px;
  padding: 6px 4px;
  border: 1px solid #444;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  text-align: center;
  box-sizing: border-box;
}

.rdm-product-actions .rdm-action-add,
.rdm-product-actions .rdm-action-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-sizing: border-box;
  min-height: 36px;
  padding: 6px 8px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #f3f3f3;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.1;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  flex: 1 1 0;
  min-width: 0;
}

.rdm-product-actions .rdm-action-add::before,
.rdm-product-actions .rdm-action-cart::before {
  content: '';
  width: 12px;
  height: 12px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

.rdm-product-actions .rdm-action-add::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23111' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M8 3.25v9.5M3.25 8h9.5'/%3E%3C/svg%3E");
}

.rdm-product-actions .rdm-action-cart::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23111' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='13' r='1'/%3E%3Ccircle cx='11.5' cy='13' r='1'/%3E%3Cpath d='M1.75 2.5h1.5l1.3 6.2a1 1 0 0 0 .98.8h5.74a1 1 0 0 0 .97-.75l1.02-4.25H4.1'/%3E%3C/svg%3E");
}

.rdm-product button,
#rdm-search-order-btn,
.rdm-cart-item button {
  border: 1px solid #444;
  border-radius: 6px;
  padding: 8px 10px;
  background: #f3f3f3;
  cursor: pointer;
}

.rdm-product-actions .rdm-action-add:hover,
.rdm-product-actions .rdm-action-add:focus,
.rdm-product-actions .rdm-action-cart:hover,
.rdm-product-actions .rdm-action-cart:focus {
  background: #e9e9e9;
  border-color: #222;
  outline: none;
}

.rdm-cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.rdm-cart-controls {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.rdm-cart-controls input {
  width: 60px;
  padding: 6px;
}

.rdm-cart-product {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rdm-cart-product-meta {
  min-width: 0;
}

.rdm-cart-product-name {
  font-weight: 600;
}

.rdm-cart-thumb {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

.rdm-cart-thumb-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #777;
  background: #f7f7f7;
}

.rdm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.rdm-order-result {
  margin-top: 10px;
  white-space: pre-wrap;
}

.rdm-order-summary .rdm-order-result {
  white-space: normal;
  line-height: 1.4;
}

.rdm-product-detail .rdm-order-result {
  white-space: normal;
  line-height: 1.4;
}

.rdm-product-detail .rdm-order-result p {
  margin: 8px 0;
}

.rdm-order-search .rdm-order-result {
  white-space: normal;
  line-height: 1.4;
}

.rdm-order-search .rdm-order-result p,
.rdm-order-search .rdm-order-result h4,
.rdm-order-search .rdm-order-result div {
  margin: 8px 0;
}

.rdm-order-search .rdm-order-summary-table {
  margin-top: 6px !important;
}

.rdm-order-summary .rdm-order-result p,
.rdm-order-summary .rdm-order-result h4 {
  margin: 8px 0;
}

.rdm-order-summary .rdm-order-summary-table {
  margin-top: 6px !important;
}

.rdm-order-item-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.rdm-order-item-thumb-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #777;
  background: #f7f7f7;
}

.rdm-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #f3f3f3;
  color: #111;
  font-size: 14px;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.rdm-link-button:hover,
.rdm-link-button:focus {
  background: #e9e9e9;
  border-color: #222;
  outline: none;
}

.rdm-link-button-primary {
  background: #1f2937;
  border-color: #1f2937;
  color: #fff;
}

.rdm-link-button-primary:hover,
.rdm-link-button-primary:focus {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.rdm-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #1f2937;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  z-index: 99999;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.rdm-toast-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .rdm-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rdm-favorites-toggle {
    justify-self: start;
  }

  .rdm-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .rdm-filters {
    grid-template-columns: 1fr;
  }

  .rdm-product-detail-layout {
    grid-template-columns: 1fr;
  }

  .rdm-products {
    grid-template-columns: 1fr;
  }

  .rdm-grid {
    grid-template-columns: 1fr;
  }

  .rdm-cart-thumb {
    width: 44px;
    height: 44px;
  }
}
