@charset "utf-8";
    :root {
      --pink: #e91e8c;
      --pink-light: #ff6eb4;
      --gray-bg: #f8f8f8;
      --border: #ebebeb;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: #fff;
      color: #333;
      font-size: 14px;
    }

    /* Breadcrumb */
    .breadcrumb {
      background: transparent;
      padding: 10px 0 4px;
      margin-bottom: 0;
      font-size: 13px;
    }
    .breadcrumb-item a { color: #555; text-decoration: none; }
    .breadcrumb-item.active { color: #555; }
    .breadcrumb-item + .breadcrumb-item::before { color: #aaa; }

    /* Page title */
    .page-title {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }
    .page-title .cart-icon {
      color: var(--pink);
      font-size: 28px;
      border: 2.5px solid var(--pink);
      border-radius: 6px;
      padding: 6px 9px;
      line-height: 1;
    }
    .page-title h1 {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 1px;
      margin: 0;
      text-transform: uppercase;
    }
    .seguir-comprando {
      color: var(--pink);
      font-size: 13px;
      text-decoration: none;
    }
    .seguir-comprando:hover { text-decoration: underline; color: var(--pink); }

    /* Cart table */
    .cart-table thead th {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #666;
      border-bottom: 2px solid var(--border);
      border-top: none;
      padding: 10px 8px;
    }
    .cart-table tbody tr {
      border-bottom: 1px solid var(--border);
    }
    .cart-table tbody td {
      vertical-align: middle;
      padding: 16px 8px;
      border-top: none;
    }
    .product-img {
      width: 72px;
      height: 72px;
      object-fit: cover;
      border-radius: 6px;
      background: #eee;
    }
    .product-name { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
    .product-sub  { font-size: 12px; color: #888; }
    .price-cell   { color: var(--pink); font-weight: 700; font-size: 15px; }
    .subtotal-cell{ color: var(--pink); font-weight: 700; font-size: 15px; }

    /* Quantity control */
    .qty-control {
      display: inline-flex;
      align-items: center;
      border: 1px solid #ddd;
      border-radius: 4px;
      overflow: hidden;
    }
    .qty-control button {
      background: #fff;
      border: none;
      width: 28px;
      height: 28px;
      font-size: 15px;
      cursor: pointer;
      color: #333;
      line-height: 1;
    }
    .qty-control button:hover { background: #f0f0f0; }
    .qty-control input {
      width: 32px;
      text-align: center;
      border: none;
      border-left: 1px solid #ddd;
      border-right: 1px solid #ddd;
      font-size: 13px;
      font-weight: 600;
      height: 28px;
      outline: none;
    }
    .btn-delete {
      background: none;
      border: none;
      color: #bbb;
      font-size: 16px;
      cursor: pointer;
      padding: 0 4px;
    }
    .btn-delete:hover { color: #e74c3c; }

    /* Vaciar carrito */
    .btn-vaciar {
      border: 1.5px solid var(--pink);
      color: var(--pink);
      background: #fff;
      border-radius: 4px;
      padding: 7px 18px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
    }
    .btn-vaciar:hover { background: var(--pink); color: #fff; }
    .btn-vaciar i { margin-right: 5px; }

    /* Order summary box */
    .order-summary {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 22px 20px;
      background: #fff;
    }
    .order-summary h5 {
      font-weight: 800;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 18px;
    }
    .summary-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      font-size: 14px;
      color: #555;
    }
    .summary-row.total {
      font-weight: 800;
      font-size: 16px;
      color: #222;
      border-top: 1px solid var(--border);
      padding-top: 12px;
      margin-top: 6px;
    }
    .summary-row.total .total-price { color: var(--pink); font-size: 20px; }
    .tax-note { font-size: 11px; color: #aaa; margin-bottom: 16px; }

    .btn-finalizar {
      background: var(--pink);
      color: #fff;
      border: none;
      width: 100%;
      padding: 13px;
      font-size: 14px;
      font-weight: 700;
      border-radius: 5px;
      cursor: pointer;
      letter-spacing: .5px;
      transition: background .2s;
    }
    .btn-finalizar:hover { background: #c4177a; }
    .btn-finalizar i { margin-right: 6px; }

    /* Secure badge */
    .secure-badge {
      margin-top: 16px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 12px;
    }
    .secure-badge i { color: var(--pink); font-size: 22px; margin-top: 2px; }
    .secure-badge strong { font-size: 13px; display: block; margin-bottom: 2px; }
    .secure-badge p { color: #888; margin: 0; font-size: 11px; line-height: 1.4; }

    /* Payment icons */
    .payment-section { margin-top: 16px; }
    .payment-section span { font-size: 12px; color: #555; font-weight: 600; display: block; margin-bottom: 8px; }
    .payment-icons { display: flex; gap: 8px; align-items: center; }
    .payment-icons img { height: 24px; }
    .pay-visa   { background:#1a1f71; color:#fff; font-weight:800; font-size:13px; padding:2px 8px; border-radius:3px; }
    .pay-master { font-size:22px; color:#eb001b; letter-spacing:-6px; }
    .pay-paypal { color:#003087; font-weight:700; font-size:13px; }
    .pay-paypal span { color:#009cde; }
    .pay-paypal em { color:#012169; font-style:normal; }

    /* Features strip */
    .features-strip {
      background: var(--gray-bg);
      border-radius: 8px;
      padding: 22px 10px;
      margin-top: 30px;
    }
    .feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
    }
    .feature-item i { font-size: 26px; color: var(--pink); }
    .feature-item strong { font-size: 12px; font-weight: 700; display: block; }
    .feature-item p { font-size: 11px; color: #777; margin: 0; line-height: 1.4; }

    /* También te puede interesar */
    .also-like-title {
      text-align: center;
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: .5px;
    }
    .also-like-line {
      width: 40px;
      height: 3px;
      background: var(--pink);
      margin: 0 auto 28px;
      border-radius: 2px;
    }

    /* Product card */
    .prod-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: #fff; }
    .prod-card-img-wrap {
      position: relative;
      height: 180px;
      overflow: hidden;
      background: #f0f0f0;
    }
    .prod-card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .heart-btn {
      position: absolute;
      top: 8px;
      right: 8px;
      background: #fff;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #ccc;
      font-size: 14px;
      box-shadow: 0 1px 4px rgba(0,0,0,.12);
      transition: color .2s;
    }
    .heart-btn:hover { color: var(--pink); }
    .prod-card-body { padding: 12px 12px 14px; }
    .prod-card-name { font-weight: 700; font-size: 14px; margin-bottom: 1px; }
    .prod-card-sub  { font-size: 11px; color: #999; margin-bottom: 6px; }
    .prod-card-price{ color: var(--pink); font-weight: 700; font-size: 15px; margin-bottom: 10px; }
    .btn-agregar {
      background: var(--pink);
      color: #fff;
      border: none;
      width: 100%;
      padding: 9px;
      font-size: 12px;
      font-weight: 700;
      border-radius: 4px;
      cursor: pointer;
      transition: background .2s;
    }
    .btn-agregar:hover { background: #c4177a; }
    .btn-agregar i { margin-right: 5px; }

    /* Divider between sections */
    .section-divider { border-top: 1px solid var(--border); margin: 30px 0; }